.product .nice-select-dropdown {
  background-color: var(--bs-white);
  border: 1px solid transparent;
  box-shadow: 0 0 0 1px var(--bs-primary);
}
.product .nice-select-dropdown .list {
  max-height: none;
  padding: 16px;
}
.product .nice-select-dropdown .list li {
  padding-left: 0;
  border-bottom: 2px solid transparent;
}
.product .nice-select-dropdown .list li:hover {
  border-bottom: 2px solid var(--bs-primary);
  background-color: var(--bs-white);
}
.product .nice-select-dropdown .list li.selected.focus {
  background-color: var(--bs-white);
}

.product-card {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: min-content min-content min-content 1fr;
}
@media (min-width: 992px) {
  .product-card {
    grid-template-rows: 496px min-content min-content;
  }
}
.product-card__slider {
  margin-bottom: -16px;
  grid-column: 1/-1;
  grid-row: 1/2;
  position: relative;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.09) 84.68%, rgba(0, 0, 0, 0.14) 100%), var(--bs-white);
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 992px) {
  .product-card__slider {
    grid-column: 1/span 8;
    margin: 0;
    border-radius: 24px;
  }
}
@media (min-width: 992px) {
  .product-card-slider {
    max-height: 496px;
  }
  .product-card-slider .swiper-wrapper {
    height: 420px;
  }
}
.product-card-slider__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.product-card-slider__picture img {
  max-height: 496px;
  max-width: 85%;
}
.product-card-slider__navigation {
  position: relative;
  bottom: 100px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
}
.product-card-slider__navigation::-webkit-scrollbar {
  background: transparent;
  height: 0;
}
.product-card-slider__navigation::-webkit-scrollbar-track {
  background: transparent;
}
.product-card-slider__navigation::-webkit-scrollbar-thumb {
  background: transparent;
}
.product-card-slider__navigation .swiper-bullet-color {
  position: relative;
  cursor: pointer;
  padding: 2px;
  margin-right: 4px;
}
.product-card-slider__navigation .swiper-bullet-color span {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid var(--bs-white);
  transition: all 0.2s ease-in;
}
@media (min-width: 992px) {
  .product-card-slider__navigation .swiper-bullet-color span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}
.product-card-slider__navigation .swiper-bullet-color-active span {
  box-shadow: 0 0 0 2px var(--bs-primary);
}
.product-card-slider__navigation .swiper-bullet-color.-border span {
  box-shadow: inset 0 0 0 2px var(--bs-gray-200);
}
.product-card-slider__navigation .swiper-bullet-color-active.-border span {
  box-shadow: inset 0 0 0 2px var(--bs-gray-200), 0 0 0 2px var(--bs-primary);
}
.product-card__info {
  grid-column: 1/-1;
  grid-row: 2/3;
  height: 100%;
  padding: 7px 16px 24px;
  background-color: var(--bs-white);
  border-radius: 0 0 24px 24px;
  box-shadow: var(--bs-box-shadow);
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 992px) {
  .product-card__info {
    grid-column: 9/span 4;
    grid-row: 1/-1;
    margin: 0;
    padding: 24px 24px 24px;
    border-radius: 24px;
  }
}
.product-card__name {
  color: var(--bs-primary);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .product-card__name {
    font-size: 32px;
  }
}
.product-card-select__input {
  background-image: none;
  background-color: var(--bs-white);
}
.product-card-select__input:focus {
  border: 1px solid var(--bs-primary);
  box-shadow: none;
}
.product-card-select__input:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
.product-card-select__title {
  color: var(--bs-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .product-card-select__title {
    font-size: 20px;
  }
}
.product-card-content {
  border-radius: 12px;
  border: 1px solid var(--bs-gray-200);
  background: var(--bs-gray-100);
}
.product-card-content__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.product-card-content__item {
  color: var(--bs-primary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
}
.product-card-content__item:not(:last-child) {
  margin-bottom: 10px;
}
.product-card-content__icon {
  display: block;
  width: 32px;
  height: 32px;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-primary);
  border-radius: 8px;
  margin-right: 8px;
}
.product-card-content__discount {
  font-weight: 700;
  color: var(--bs-primary);
}
.product-card-content__price--current {
  font-weight: 700;
  color: var(--bs-primary);
  width: fit-content;
  font-size: 20px;
  line-height: 130%; /* 36.4px */
  border-bottom: 3px dashed var(--bs-primary);
}
@media (min-width: 992px) {
  .product-card-content__price--current {
    font-size: 32px;
  }
}
.product-card-content__price--old {
  color: var(--bs-gray-300);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-decoration: line-through;
}
@media (max-width: 575.98px) {
  .product-card-content__price--old {
    font-size: 0.875rem;
  }
}
.product-card-content__price--monthly {
  color: var(--bs-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.product-card__photo {
  grid-column: 1/-1;
  padding: 24px 16px 32px;
  background-color: var(--bs-white);
  border-radius: 24px;
  box-shadow: var(--bs-box-shadow);
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 992px) {
  .product-card__photo {
    margin: 0;
    padding: 24px 24px 32px;
    grid-column: 1/span 8;
  }
}
.product-card__photo .nav-tabs {
  border-bottom: none;
}
.product-card__photo .nav-tabs .nav-link {
  border: none;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--bs-gray-300);
}
.product-card__photo .nav-tabs .nav-link.active {
  color: var(--bs-primary);
  background-color: var(--bs-white);
  border: none;
}
@media (min-width: 992px) {
  .product-card__photo .nav-tabs .nav-link {
    font-size: 28px;
  }
}
.product-card-gallery__navigation {
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  top: -25px;
  gap: 16px;
}
.product-card-gallery__navigation .swiper-button-prev,
.product-card-gallery__navigation .swiper-button-next {
  position: static;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: var(--bs-primary);
  border: 1px solid var(--bs-gray-200);
}
@media (max-width: 991.98px) {
  .product-card-gallery__navigation .swiper-button-prev,
  .product-card-gallery__navigation .swiper-button-next {
    display: none;
  }
}
.product-card-gallery__navigation .swiper-button-prev::after,
.product-card-gallery__navigation .swiper-button-next::after {
  display: none;
}
.product-card-gallery__navigation .swiper-button-prev svg {
  transform: rotate(-180deg);
}
.product-card-gallery__row {
  position: relative;
  height: 150px;
}
.product-card-gallery__row .swiper {
  height: 100%;
}
.product-card-gallery__row .swiper-slide {
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.product-card-gallery__card {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card-gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__characteristics {
  grid-column: 1/-1;
}
@media (min-width: 992px) {
  .product-card__characteristics {
    grid-column: 1/span 8;
  }
}
.product-card-characteristics {
  padding: 24px 24px 32px;
  background-color: var(--bs-white);
  border-radius: 24px;
  box-shadow: var(--bs-box-shadow);
  margin-right: -15px;
  margin-left: -15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--bs-gray-300);
}
@media (min-width: 992px) {
  .product-card-characteristics {
    margin: 0;
  }
}
.product-card-characteristics__title {
  color: var(--bs-primary);
  font-size: 24px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .product-card-characteristics__title {
    font-size: 28px;
  }
}
.product-card-characteristics__wrapper {
  min-width: 100%;
  max-height: 188px;
  overflow: hidden;
  transition: max-height 0.2s ease-in;
}
.product-card-characteristics__table {
  display: none;
}
.product-card-characteristics__table.show {
  display: table;
}
.product-card-characteristics.active .product-card-characteristics__wrapper {
  max-height: none;
  overflow: unset;
}
.product-card-characteristics.active .product-card-characteristics__fade {
  display: none;
}
.product-card-characteristics.active .product-card-characteristics__shown span:after {
  transform: rotate(180deg);
}
.product-card-characteristics__table, .product-card-characteristics__table-top {
  width: 100%;
  border-collapse: collapse;
}
.product-card-characteristics__table td, .product-card-characteristics__table-top td {
  width: 50%;
  padding: 5px 15px;
  text-align: left;
}
.product-card-characteristics__table tr:last-child td, .product-card-characteristics__table-top tr:last-child td {
  border-bottom: none;
}
.product-card-characteristics__mod {
  font-weight: 700;
  background-color: var(--bs-primary);
  color: #fff;
}
.product-card-characteristics__subtitle {
  color: var(--bs-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.product-card-characteristics__fade {
  background: var(--bs-white);
  height: 16px;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product-card-characteristics__shown {
  padding-top: 12px;
  border-top: 1px solid var(--bs-gray-200);
  color: var(--bs-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  text-align: center;
}
.product-card-characteristics__shown span {
  position: relative;
  padding-right: 30px;
}
.product-card-characteristics__shown span:after {
  content: "";
  position: absolute;
  background-image: url("/local/templates/-esor/assets/images/svg-sprite/angle-down.svg");
  width: 20px;
  height: 20px;
  margin-left: 8px;
  top: 1px;
  transition: transrorm 0.2s ease-in;
}
.product-card-equipment {
  padding: 24px 16px 32px;
  background-color: var(--bs-white);
  border-radius: 24px;
  box-shadow: var(--bs-box-shadow);
  height: 100%;
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 992px) {
  .product-card-equipment {
    margin: 0;
    padding: 24px 24px 32px;
  }
}
.product-card-equipment__select {
  background-image: none;
  background-color: var(--bs-white);
}
.product-card-equipment__select:focus {
  border: 1px solid var(--bs-primary);
  box-shadow: none;
}
.product-card-equipment__select:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .product-card-equipment__select {
    max-width: 340px;
  }
}
.product-card-equipment__block {
  display: none;
}
.product-card-equipment .active.product-card-equipment__block {
  display: block;
}
.product-card-equipment__title {
  color: var(--bs-primary);
  font-size: 24px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .product-card-equipment__title {
    font-size: 28px;
  }
}
.product-card-equipment-editions__name {
  color: var(--bs-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  border-bottom: 1px solid var(--bs-gray-200);
}
.product-card-equipment-editions__name.collapsed svg {
  transform: rotate(0);
  transition: transform 0.2s ease-in;
}
.product-card-equipment-editions__name:not(.collapsed) svg {
  transition: transform 0.2s ease-in;
  transform: rotate(180deg);
}
.product-card-equipment-editions__name label {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1rem;
}
.product-card-equipment-editions__content {
  border-bottom: 1px solid var(--bs-gray-200);
}
.product-card-equipment-editions__line {
  border-radius: 12px;
  border: 1px solid var(--bs-gray-200);
  background: var(--bs-gray-100);
  cursor: pointer;
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .product-card-equipment-editions__btn {
    font-size: 0.875rem;
  }
}
.product-card-equipment-editions__price--current {
  font-weight: 700;
  color: var(--bs-primary);
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  line-height: 130%; /* 36.4px */
}
@media (min-width: 992px) {
  .product-card-equipment-editions__price--current {
    font-size: 28px;
  }
}
.product-card-equipment-editions__price--old {
  color: var(--bs-gray-300);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-decoration: line-through;
}
@media (max-width: 575.98px) {
  .product-card-equipment-editions__price--old {
    font-size: 0.875rem;
  }
}
.product-card-gifts__title {
  color: var(--bs-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .product-card-gifts__title {
    font-size: 20px;
  }
}
.product-card-gifts-swiper {
  padding-top: 2px;
  padding-bottom: 2px;
}
.product-card-gifts-swiper__slide {
  height: auto;
}
.product-card-gifts-swiper__slide label {
  height: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
  min-height: 66px;
  border: 1px solid var(--bs-gray-200);
  border-radius: 12px;
  background-color: var(--bs-gray-100);
  padding: 8px 10px 8px 38px;
  font-weight: normal;
}
.product-card-gifts-swiper__slide label:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--bs-primary);
  left: 8px;
  top: 10px;
  background-color: var(--bs-white);
}
.product-card-gifts-swiper__slide input:checked + label {
  border-color: var(--bs-primary);
  font-weight: 700;
}
.product-card-gifts-swiper__slide input:checked + label:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 13px;
  top: 15px;
  background-color: var(--bs-primary);
}
.product-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .product-card__title {
    flex-direction: column;
    justify-content: initial;
    align-items: flex-start;
  }
}
.product-card__parameters {
  max-width: 570px;
}
.product-card-parameters__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 25px;
}
.product-card-parameters__item {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding-left: 12px;
  padding-right: 12px;
  min-width: 100%;
  max-width: 100%;
}
@media (min-width: 425px) {
  .product-card-parameters__item {
    min-width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 576px) {
  .product-card-parameters__item {
    min-width: 25%;
    max-width: 25%;
  }
}
@media (min-width: 576px) {
  .product-card-parameters__item {
    min-width: initial;
    max-width: initial;
  }
}
.product-card-parameters__icon {
  width: 40px;
  height: 40px;
}
.product-card-parameters__icon svg {
  max-width: 100%;
  max-height: 100%;
}
.product-card-parameters__content {
  max-width: calc(100% - 40px);
  min-width: calc(100% - 40px);
  padding-left: 10px;
}
.product-card-parameters__title {
  font-size: 12px;
  color: var(--gray-font-color);
}
.product-card-parameters__text {
  font-weight: 700;
}
.product-card__offer {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--bs-border-color);
  border-radius: 40px;
}
.product-card-offer__title {
  font-size: 1.125rem;
}
.product-card-offer__countdown {
  display: flex;
  align-items: center;
  margin: 10px -8px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bs-border-color);
}
.product-card-offer-countdown__element {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
.product-card-offer-countdown__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--bs-border-color);
  border-radius: 24px;
  font-size: 1.125rem;
  font-weight: 700;
}
.product-card-offer-countdown__text {
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}
.product-card-info-block {
  margin-top: 24px;
}
.product-card-info-block__list {
  column-count: 2;
  column-width: 325px;
  column-gap: 30px;
}
.product-card-info-block-list__item {
  margin-bottom: 24px;
}
.product-card-info-block-list__title {
  margin-bottom: 5px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .product-card-info-block-list__title {
    font-size: 18px;
  }
}
.product-card-info-block-list ul {
  padding: 0 0 0 20px;
}
.product-card-info-block-list ul li {
  margin-bottom: 3px;
  font-size: 14px;
}
.product-card-info-block-list ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .product-card__banner {
    display: none;
  }
}
.product-card-banner__img {
  position: absolute;
  right: 120px;
  top: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .product-card-banner__img {
    right: 40px;
    justify-content: flex-end;
  }
}
.product-card-banner__img img {
  max-width: 95%;
  height: auto;
  object-fit: contain;
}
.product-card-banner__inner {
  min-height: 340px;
  background-color: #FFDECB;
  padding: 60px;
  border-radius: 40px;
}
.product-card-banner__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}
.product-card-banner__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.product-card__calculator {
  margin-top: 60px;
}
@media (max-width: 575.98px) {
  .product-card__calculator {
    margin-top: 30px;
  }
}

.product-bottom .section-slider--product {
  padding: 24px 16px 32px;
  background-color: var(--bs-white);
  border-radius: 24px;
  box-shadow: var(--bs-box-shadow);
  height: 100%;
  margin-right: -15px;
  margin-left: -15px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .product-bottom .section-slider--product {
    margin: 0;
    padding: 24px 24px 32px;
  }
}
.product-bottom .selection {
  height: 100%;
}
.product-bottom .selection__title {
  font-size: 24px;
  line-height: 1.3;
}
@media (min-width: 576px) {
  .product-bottom .selection__title {
    font-size: 28px;
  }
}
.product-bottom .selection__slogan {
  font-size: 1rem;
  line-height: 1.4;
}
.product-bottom .selection__input {
  height: 48px;
}
.product-bottom .selection__input::placeholder {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--bs-primary);
}
.product-bottom .selection textarea {
  resize: none;
}
.product-bottom .selection-checkbox__wrapper {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
  cursor: pointer;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .product-bottom .selection-checkbox__wrapper {
    height: max-content;
  }
}
.product-bottom .selection-checkbox__wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.product-bottom .selection-checkbox__wrapper input:checked ~ .selection-custom-checkmark:after {
  display: block;
}
.product-bottom .selection-checkbox__wrapper .selection-custom-checkmark:after {
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid var(--bs-gray-900);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.product-bottom .selection-custom-checkmark {
  position: absolute;
  top: -5px;
  left: 0;
  height: 32px;
  width: 32px;
  background-color: white;
  border: 1px solid black;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-bottom .selection-custom-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.product-bottom .selection__callback {
  margin: 0 auto;
}
.product-bottom-contacts {
  background-color: var(--bs-white);
  border-radius: 24px;
  box-shadow: var(--bs-box-shadow);
  margin-right: -15px;
  margin-left: -15px;
  padding: 24px 16px 32px;
}
@media (min-width: 992px) {
  .product-bottom-contacts {
    margin: 0;
    padding: 24px 24px 32px;
  }
}
.product-bottom-contacts__heading {
  color: var(--bs-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .product-bottom-contacts__heading {
    font-size: 28px;
  }
}
.product-bottom-contacts__text {
  color: var(--bs-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
.product-bottom-contacts__text-item {
  display: flex;
  align-items: center;
}
.product-bottom-contacts__text-item--schedule, .product-bottom-contacts__text-item--address {
  color: var(--bs-gray-300);
  font-weight: 400;
}
.product-bottom-contacts__text-item span,
.product-bottom-contacts__text-item a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.product-bottom-contacts__text-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 4px;
  padding: 4px;
  max-width: 100%;
}
.product-bottom-contacts__map {
  width: 100%;
  height: 330px;
  min-height: 1px;
  border-radius: 12px;
  border: 1px solid var(--bs-gray-200);
  overflow: hidden;
}
.product-bottom-contacts__map .bx-yandex-view-layout,
.product-bottom-contacts__map .bx-yandex-view-map {
  height: 100%;
  min-height: 1px;
}
@media (min-width: 992px) {
  .product-bottom-contacts__map .bx-yandex-view-layout,
  .product-bottom-contacts__map .bx-yandex-view-map {
    height: 100%;
  }
}

.form-agreement--new-detail {
  color: var(--bs-gray-300);
}

.section-slider__more {
  color: var(--bs-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
