.o-product__subscription.loading {
  pointer-events: none;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.o-product__subscription-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-basis: 100%;
}
.o-product__subscription-usps .m-product-usp__inner {
  width: fit-content;
}
.o-product__subscription-options {
  display: flex;
  flex-direction: column;
  gap: 2rem 1.5rem;
}
.o-product__subscription-options .a-radio__label {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}
.o-product__subscription-options .a-radio__label::before {
  top: 0.2rem;
}
.o-product__subscription-options .a-radio__input:checked + .a-radio__label::after {
  top: 0.6rem;
}
.o-product__subscription-option {
  border: 1px solid rgb(var(--color-border));
  border-radius: var(--border-radius);
}
.o-product__subscription-option .a-radio {
  margin: 1.5rem;
}
.o-product__subscription-option .a-radio__input:checked + .a-radio__label + .o-product__subscription-usps {
  display: block;
}
.o-product__subscription-option:has(.a-radio__input:checked) {
  border-color: rgb(var(--color-light-blue));
}
.o-product__subscription-label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-start;
}
.o-product__subscription-label-title-wrapper {
  font-weight: 600;
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.o-product__subscription-label-content {
  flex: 1;
  gap: 1rem 2rem;
}
@media screen and (min-width: 768px) {
  .o-product__subscription-label-content {
    gap: 1rem 4rem;
  }
}
.o-product__subscription-label-content-text {
  margin-top: 1rem;
}
.o-product__subscription-badge {
  white-space: nowrap;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-label));
  font-size: var(--product-badge-fs);
  line-height: var(--product-badge-lh);
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-product__subscription-badge--discount {
  position: absolute;
  right: 0rem;
  bottom: calc(100% + 0.5rem);
  width: fit-content;
}
.o-product__subscription-price {
  display: flex;
  flex-shrink: 1;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .o-product__subscription-price {
    flex-direction: row;
    gap: 0 0.5rem;
  }
}
.o-product__subscription-price .m-price-item {
  order: 1;
  line-height: var(--body-lh-sm);
}
@media screen and (min-width: 768px) {
  .o-product__subscription-price .m-price-item {
    order: 2;
    line-height: var(--body-lh-md);
  }
}
.o-product__subscription-price .m-price-item--regular {
  font-weight: 700;
}
.o-product__subscription-price--old {
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
  text-decoration: line-through;
  order: 2;
}
@media screen and (min-width: 768px) {
  .o-product__subscription-price--old {
    order: 1;
  }
}
.o-product__subscription-price .o-product__subscription-price-per-day {
  flex-basis: 100%;
  order: 3;
  text-align: right;
  color: rgb(var(--color-light_text));
}
.o-product__subscription-select {
  margin-top: 1.5rem;
  margin-bottom: 0;
  position: relative;
}
.o-product__subscription-select--hidden {
  display: none;
}
.o-product__subscription-select .custom-select.disabled .ts-control {
  opacity: 1;
}
.o-product__subscription-select .custom-select.disabled .ts-control::after {
  display: none;
}
.o-product__subscription-select .custom-select.input-active.dropdown-active .ts-control {
  background-color: transparent;
}
.o-product__subscription-select .custom-select.input-active.dropdown-active .ts-dropdown {
  margin-top: -1.1rem;
  width: calc(100% + 0.2rem);
  margin-left: -0.1rem;
  padding: 1rem 0 0;
}
.o-product__subscription-select .custom-select.input-active.dropdown-active .ts-dropdown .option {
  padding-left: 4.7rem;
}
.o-product__subscription-select .custom-select .ts-control {
  position: relative;
  border: none;
  border-top: 1px solid rgb(var(--color-border));
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding-left: 4.3rem;
  font-size: var(--body-fs-sm);
  color: rgb(var(--color-text));
  background-color: transparent;
}
.o-product__subscription-select .custom-select .ts-control:before {
  background-color: rgb(var(--color-text));
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.6rem;
  mask-image: url("icon-subscriptions.svg");
  -webkit-mask-image: url("icon-subscriptions.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center bottom;
  -webkit-mask-position: center bottom;
  mask-size: contain;
  -webkit-mask-size: contain;
  pointer-events: none;
  width: 1.8rem;
  height: 1.8rem;
}
.o-product__subscription-divider {
  text-align: center;
  font-size: var(--body-fs-xs);
  color: rgb(var(--color-border));
  position: relative;
  margin: -1rem 0;
}
.o-product__subscription-divider span {
  background-color: rgb(var(--color-background));
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.o-product__subscription-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(var(--color-border));
  z-index: 0;
}
