.sc-pricing {
  padding-top: 48px;
}
.pricing-title__wrap {
  margin-bottom: 50px;
}
.pricing-title {
  margin-bottom: 0;
}
.pricing-title__btn-wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.pricing-item {
  display: inline-block;
  width: 100%;
}
.pricing-item__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 145.71%;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 10px;
}
.pricing-item__list {
  color: var(--black_60);
}
.pricing-item__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  border-bottom: solid 1.5px var(--black_10);
}
.pricing-item__list span {
  color: var(--black);
  flex-shrink: 0;
  margin-left: 16px;
  text-align: right;
}
@media (max-width: 767px) {
  .sc-pricing {
    padding-top: 40px;
  }
  .pricing-title__wrap {
    margin-bottom: 26px;
  }
}

.pricing-dropdown__item {
  overflow: hidden;
}
.pricing-dropdown__item-head {
  cursor: pointer;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 22px;
  font-family: 'Inter';
  line-height: 109.09%;
  letter-spacing: 0.01em;
  color: var(--black_60);
  transition: 0.3s ease;
  padding: 40px 70px 32px 0px;
  position: relative;
}
.pricing-dropdown__item-head:before {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border: solid 1.5px var(--black);
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  transition: 0.3s ease;
}
.pricing-dropdown__item-head:hover {
  color: var(--black);
}
.pricing-dropdown__item.is-open .pricing-dropdown__item-head {
  color: var(--black);
}
.pricing-dropdown__item.is-open .pricing-dropdown__item-head:before {
  transform: rotate(225deg);
}
.pricing-dropdown__item-panel {
  display: none;
  padding-bottom: 32px;
}
.pricing-dropdown__item-panel.is-open {
  display: block;
}
@media (max-width: 767px) {
  .pricing-title__btn-wrap{
    justify-content: flex-start;
    padding-top: 24px;
  }
  .pricing-dropdown__item-head{
    padding: 30px 40px 28px 0px;
    font-size: 18px;
    line-height: 160%;
  }
  .pricing-dropdown__item-head:before {
    width: 12px;
    height: 12px;
  }
  .pricing-dropdown__item-panel {
    padding-bottom: 24px;
  }
  .pricing-item__list{
    font-size: 14px;
  }
}