.o-product__subscription {
  position: relative;
  opacity: 0.5;
  pointer-events: none;
}
.o-product__subscription--usps {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
}
.o-product__subscription--usps ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.o-product__subscription--options {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.o-product__subscription--option {
  position: relative;
}
.o-product__subscription--label {
  display: flex;
  justify-content: space-between;
}
.o-product__subscription--price {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .o-product__subscription--price {
    flex-direction: row;
    gap: 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--old-price {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  text-decoration: line-through;
  order: 2;
}
@media screen and (min-width: 768px) {
  .o-product__subscription--old-price {
    order: 1;
  }
}
.o-product__subscription--select {
  margin-top: 1.5rem;
  margin-bottom: 0;
  position: relative;
}
.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 var(--color-primary-border);
  border-radius: 0 0 1.5rem 1.5rem;
  padding-left: 4.7rem;
  font-size: var(--body-fs-md);
  color: var(--color-primary-body);
  background-color: transparent;
}
.o-product__subscription--select .custom-select .ts-control:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  background-image: url("icon-subscriptions.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  pointer-events: none;
  width: 1.8rem;
  height: 1.8rem;
}
.o-product__subscription.loaded {
  opacity: 1;
  pointer-events: all;
}
