.prices__header {
  margin-bottom: 32px;
}
@media (min-width: 48em) {
  .prices__header {
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
  }
}
@media (min-width: 62em) {
  .prices__header {
    margin-bottom: 50px;
  }
}
@media (min-width: 87.5em) {
  .prices__header {
    margin-bottom: 70px;
  }
}
@media (min-width: 48em) {
  .prices__header .col-left {
    width: 70%;
  }
}
@media (min-width: 75em) {
  .prices__header .col-left {
    width: 60%;
  }
}
@media (min-width: 102.5em) {
  .prices__header .col-left {
    width: 55%;
  }
}

.card-price {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
}
.card-price > .card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.card-price__front {
  border: none;
  height: 100%;
}
.card-price__front .card-price__title {
  margin-top: 16px;
}
.card-price__price {
  font-size: 18px;
  line-height: 108%;
  color: var(--clr-02);
  opacity: 0.6;
}
@media (min-width: 62em) {
  .card-price__price {
    font-size: 30px;
  }
}
.card-price__text {
  line-height: 1;
  margin-top: 20px;
}
@media (min-width: 62em) {
  .card-price__text {
    margin-top: 40px;
  }
}
.card-price__text ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.card-price__text ul li {
  position: relative;
  padding-left: 20px;
}
.card-price__text ul li:before {
  content: "";
  display: block;
  width: 6px;
  border-radius: 100%;
  aspect-ratio: 1/1;
  height: auto;
  background-color: var(--clr-01);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-price__learn-more {
  display: flex;
  gap: 8px;
  font-size: 20px;
  text-decoration: none;
  color: var(--clr-02);
  border-bottom: 1px solid #fff;
  margin: 30px 0;
  width: fit-content;
  transition: border-color 0.3s;
}
@media (min-width: 62em) {
  .card-price__learn-more {
    margin: 40px 0;
    font-size: 24px;
  }
}
.card-price__learn-more:hover {
  border-bottom-color: transparent;
}
.card-price__img {
  display: block;
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 303/195;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  margin-top: auto;
}
@media (min-width: 48em) {
  .card-price__img {
    aspect-ratio: 453/258;
  }
}
@media (min-width: 62em) {
  .card-price__img {
    border-radius: 28px;
  }
}
.card-price__back {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.card-price__back .card-price__text {
  margin-bottom: auto;
  font-size: 14px;
}
@media (min-width: 62em) {
  .card-price__back .card-price__text {
    font-size: 16px;
  }
}
@media (min-width: 102.5em) {
  .card-price__back .card-price__text {
    font-size: 20px;
  }
}
.card-price__back.active {
  opacity: 1;
  visibility: visible;
}
.card-price__header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.card-price__close {
  box-shadow: inset 0 0 7px 0 #f5e18b;
  background: var(--clr-03);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 100%;
  flex-shrink: 0;
  border: 1px solid transparent;
}
@media (min-width: 62em) {
  .card-price__close {
    width: 54px;
    height: 54px;
  }
}
.card-price__close:hover {
  background: var(--clr-02);
  box-shadow: none;
  border: 1px solid var(--clr-09);
}
.card-price__close .hi {
  width: 16px;
  height: 16px;
}
@media (min-width: 62em) {
  .card-price__close .hi {
    width: 20px;
    height: 20px;
  }
}
.card-price__close .hi:after {
  background-color: var(--clr-01);
}

@media (min-width: 48em) {
  .prices-container--mob .swiper-wrapper {
    --containerPadding:20px;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: var(--containerPadding);
    margin-left: calc(-0.5 * var(--containerPadding));
    margin-right: calc(-0.5 * var(--containerPadding));
  }
}
@media (min-width: 87.5em) {
  .prices-container--mob .swiper-wrapper {
    --containerPadding:30px;
  }
}
@media (min-width: 48em) {
  .prices-container--mob .swiper-slide {
    width: 50%;
    padding: 0 calc(0.5 * var(--containerPadding));
  }
}
@media (min-width: 75em) {
  .prices-container--mob .swiper-slide {
    width: 33.333333%;
  }
}