/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* variables */
/* filters https://codepen.io/sosuke/pen/Pjoqqp */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes button-loading {
  0% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
  50% {
    background-color: #717171;
    border-color: #717171;
  }
  100% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
}
.layer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  outline: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 222ms ease-in;
  will-change: opacity;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layer-modal_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer-modal_active.hidden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer-modal__container {
  width: 100%;
  position: relative;
  background-color: #fff;
  opacity: 1;
  transition: opacity 222ms ease-in;
  will-change: opacity;
  z-index: 1;
  margin: 0 auto;
}
.layer-modal__content {
  position: relative;
}
.layer-modal__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.layer-modal__info {
  width: 100%;
}
.tingle-enabled {
  overflow: hidden;
  height: 100%;
}
.tingle-modal--overflow {
  overflow-y: auto;
  padding-top: 8vh;
}
.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  visibility: hidden;
  transition: all 0.35s;
  z-index: 100000;
}
@media (max-width: 768px) {
  .tingle-modal {
    padding-top: 50px;
  }
}
.tingle-modal * {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .tingle-modal.tingle-modal_related:has(.popup__related-bottom) {
    height: calc(100dvh);
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .tingle-modal.tingle-modal_related:has(.popup__related-bottom) .tingle-modal-box {
    max-height: calc(100dvh - 50px);
    overflow-y: hidden;
  }
}
@media (max-width: 768px) {
  .tingle-modal.tingle-modal_related:has(.popup__related-bottom) .tingle-modal-box__content {
    max-height: calc(100dvh - 114px);
  }
}
.tingle-modal.tingle-modal_related .tingle-modal-box {
  max-width: 830px;
}
.tingle-modal.tingle-modal_related .tingle-modal-box__footer {
  display: none;
}
.tingle-modal.tingle-modal_related .tingle-modal-box .tingle-modal-box__content {
  overflow-y: initial;
  overflow-x: visible;
  padding: 15px 0 10px;
}
@media (min-width: 575px) {
  .tingle-modal.tingle-modal_related .tingle-modal-box .tingle-modal-box__content {
    overflow-y: initial;
    padding: 25px 0 0;
  }
}
.tingle-modal.tingle-modal_related .tingle-modal-box .tingle-modal-box__content .popup_related {
  padding-bottom: 15px;
}
@media (min-width: 575px) {
  .tingle-modal.tingle-modal_related .tingle-modal-box .tingle-modal-box__content .popup_related {
    padding-bottom: 30px;
  }
}
.tingle-modal.tingle-modal--visible {
  background: rgba(0, 0, 0, 0.3);
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: none;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 575px) {
  .tingle-modal.tingle-modal--visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.tingle-modal.tingle-modal--visible .tingle-modal-box {
  opacity: 1;
  bottom: 0;
  overflow-y: auto;
}
.tingle-modal.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}
.tingle-modal .tingle-modal-box__header__title,
.tingle-modal__title {
  font-size: clamp(20px, 3vw, 22px);
  line-height: 120%;
  font-weight: 700;
  color: #000;
  margin: 0;
  padding: 0 30px 0 0;
}
.tingle-modal .tingle-modal-box__header__title:after,
.tingle-modal__title:after {
  content: '';
  display: block;
  height: 1px;
  border-bottom: 1px solid #ECECEC;
  width: calc(100% + 60px);
  margin: 0 -15px;
  padding: 15px 0 0;
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal-box__header__title,
  .tingle-modal__title {
    padding: 0 40px 0 0;
  }
  .tingle-modal .tingle-modal-box__header__title:after,
  .tingle-modal__title:after {
    width: calc(100% + 100px);
    margin: 0 -30px;
    padding: 30px 0 0;
  }
}
.tingle-modal .tingle-modal__close {
  position: absolute;
  top: 24px;
  right: 15px;
  left: auto;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s;
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/Dismiss_24_Filled.svg');
  background-position: center;
  background-color: transparent;
  filter: invert(92%) sepia(1%) saturate(0%) hue-rotate(176deg) brightness(86%) contrast(88%);
  width: 24px;
  height: 24px;
  background-size: contain;
}
.tingle-modal .tingle-modal__close:hover {
  filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(312deg) brightness(100%) contrast(107%);
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal__close {
    top: 30px;
    right: 30px;
    background-size: 20px;
  }
}
.tingle-modal .tingle-modal__close-swipe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 28px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  font-size: 0;
}
.tingle-modal .tingle-modal__close-swipe::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #C1C1C1;
  border-radius: 100px;
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal__close-swipe::after {
    display: none;
  }
}
.tingle-modal .tingle-modal__closeIcon,
.tingle-modal .tingle-modal__closeLabel {
  display: none;
}
.tingle-modal .tingle-modal-box {
  position: relative;
  bottom: -200px;
  width: 100%;
  max-width: 100%;
  border-radius: 5px 5px 0 0;
  padding: 24px 15px 15px;
  margin: auto auto 0;
  transform: none;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  background: #fff;
}
.tingle-modal .tingle-modal-box::-webkit-scrollbar {
  width: 3px;
  border-radius: 10px;
  background: #C1C1C1;
}
.tingle-modal .tingle-modal-box::-webkit-scrollbar-track {
  width: 3px;
  border-radius: 10px;
  background: #ECECEC;
}
.tingle-modal .tingle-modal-box::-webkit-scrollbar-thumb {
  width: 3px;
  border-radius: 10px;
  background: #C1C1C1;
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal-box {
    max-width: 700px;
    padding: 30px;
    margin: auto;
    border-radius: 5px;
  }
}
.tingle-modal .tingle-modal-box__content {
  padding: 25px 8px 0;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 140%;
  font-weight: 400;
  color: #000;
  max-height: calc(100dvh - 160px);
  overflow-y: auto;
  overflow-x: hidden;
}
.tingle-modal .tingle-modal-box__content::-webkit-scrollbar {
  width: 3px;
  border-radius: 10px;
  background: #C1C1C1;
}
.tingle-modal .tingle-modal-box__content::-webkit-scrollbar-track {
  width: 3px;
  border-radius: 10px;
  background: #ECECEC;
}
.tingle-modal .tingle-modal-box__content::-webkit-scrollbar-thumb {
  width: 3px;
  border-radius: 10px;
  background: #C1C1C1;
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal-box__content {
    padding: 30px 8px 0;
  }
}
.tingle-modal .tingle-modal-box__content p {
  margin: 0 0 20px;
}
.tingle-modal .tingle-modal-box__content a {
  color: #EF7D05;
  text-decoration: none;
  transition: all 0.35s;
}
.tingle-modal .tingle-modal-box__content a:hover {
  color: #CB6A04;
}
.tingle-modal .tingle-modal-box__content ul {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 140%;
  font-weight: 400;
  color: #000;
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}
.tingle-modal .tingle-modal-box__content li:not(:first-of-type) {
  margin-top: 10px;
}
.tingle-modal .tingle-modal-box__content li::marker {
  color: #EF7D05;
}
.tingle-modal .tingle-modal-box__footer {
  margin: 25px 0 0;
  padding: 0;
  background-color: #fff;
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal-box__footer {
    margin: 30px 0 0;
  }
}
.tingle-modal .tingle-modal-box__footer::before {
  content: '';
  display: block;
  height: 1px;
  border-top: 1px solid #ECECEC;
  background-color: #fff;
  width: calc(100% + 30px);
  margin: 0 -15px;
  padding: 15px 0 0;
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal-box__footer::before {
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 30px 0 0;
  }
}
.tingle-modal .tingle-modal-box__footer--sticky {
  position: fixed;
  z-index: 10001;
  opacity: 1;
  margin: 0;
  padding: 0 15px 15px;
}
@media (min-width: 575px) {
  .tingle-modal .tingle-modal-box__footer--sticky {
    padding: 0 40px 30px;
  }
}
.tingle-modal.stock-notification__modal .stock-notification__close {
  display: none;
}
.tingle-btn {
  margin: 0;
  padding: 13px;
}
.tingle-btn--primary {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #000;
  border-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
  width: 100%;
}
.tingle-btn--primary.disabled,
.tingle-btn--primary:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.tingle-btn--primary:hover,
.tingle-btn--primary:focus {
  background-color: #EF7D05;
  border-color: #EF7D05;
  color: #fff;
}
.tingle-btn--primary[disabled],
.tingle-btn--primary[disabled]:hover,
.tingle-btn--primary[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
@media (min-width: 768px) {
  .tingle-btn--primary {
    width: calc(50% - 10px);
  }
}
.tingle-btn--close {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
  width: 100%;
}
.tingle-btn--close.disabled,
.tingle-btn--close:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.tingle-btn--close:hover,
.tingle-btn--close:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #EF7D05;
}
.tingle-btn--close[disabled],
.tingle-btn--close[disabled]:hover,
.tingle-btn--close[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
@media (min-width: 768px) {
  .tingle-btn--close {
    width: calc(50% - 10px);
  }
}
.popup_related .tingle-modal-box__footer {
  display: none;
}
.popup_related .popup__swiper-container {
  position: relative;
  padding-bottom: 10px;
}
.popup_related .popup__swiper-container .js-slider.swiper-initialized {
  padding: 0;
}
.popup_related .popup__swiper-container .js-slider.swiper-initialized ~ .js-slider-navigation {
  top: calc(50% - 60px);
}
.popup_related .popup__swiper-container .js-slider.swiper-initialized .swiper-wrapper {
  gap: 0;
}
.popup_related .popup__swiper-container .swiper-wrapper {
  gap: 0 15px;
}
@media (min-width: 768px) {
  .popup_related .popup__swiper-container .swiper-wrapper {
    gap: 0 30px;
  }
}
.popup_related .popup__related-bottom:before {
  content: '';
  display: block;
  height: 1px;
  border-bottom: 1px solid #ECECEC;
  width: calc(100% + 15px);
  margin: 0 -15px 25px;
  padding: 25px 0 0;
}
@media (min-width: 575px) {
  .popup_related .popup__related-bottom:before {
    width: calc(100% + 30px);
    margin: 0 -30px 35px;
    padding: 30px 0 0;
  }
}
.popup_related .popup__related-bottom .products__nav {
  display: none;
}
@media (min-width: 575px) {
  .popup_related .popup__related-bottom .products__nav {
    display: flex;
    gap: 10px;
  }
}
.popup_related .popup__related-bottom .product {
  width: 100%;
}
@media (min-width: 768px) {
  .popup_related .popup__related-bottom .product {
    max-width: 170px;
  }
}
.popup_related .popup__related-bottom .product__image-wrapper {
  display: block;
  padding: 0 10px;
  position: relative;
  margin: 0 auto 10px;
}
@media (min-width: 575px) {
  .popup_related .popup__related-bottom .product__image-wrapper {
    max-width: 140px;
    padding: 0;
  }
}
.popup_related .popup__related-bottom .product__link {
  text-decoration: none;
}
.popup_related .popup__related-bottom .product__price_regular,
.popup_related .popup__related-bottom .product__price_new {
  display: block;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
}
.popup_related .popup__related-bottom .product__price_old {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #9D9D9D;
  text-decoration: line-through;
  text-decoration-color: #EF7D05;
}
.popup_related .popup__related-bottom .product__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px 0;
  margin: 0 0 16px;
}
@media (min-width: 375px) {
  .popup_related .popup__related-bottom .product__prices {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 4px;
  }
}
.popup_related .popup__related-bottom .product__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 5px;
  max-height: 54px;
  min-height: 54px;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
  transition: all 0.35s;
}
.popup_related .popup__related-bottom .product__name:hover {
  color: #EF7D05;
}
.popup_related .popup__related-bottom .product__btn {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #000;
  border-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
  width: 110px;
  height: 40px;
  padding: 11px 10px;
}
.popup_related .popup__related-bottom .product__btn.disabled,
.popup_related .popup__related-bottom .product__btn:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.popup_related .popup__related-bottom .product__btn:hover,
.popup_related .popup__related-bottom .product__btn:focus {
  background-color: #EF7D05;
  border-color: #EF7D05;
  color: #fff;
}
.popup_related .popup__related-bottom .product__btn[disabled],
.popup_related .popup__related-bottom .product__btn[disabled]:hover,
.popup_related .popup__related-bottom .product__btn[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
.popup_related .popup__related-bottom .product__btn_out-stock {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
}
.popup_related .popup__related-bottom .product__btn_out-stock.disabled,
.popup_related .popup__related-bottom .product__btn_out-stock:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.popup_related .popup__related-bottom .product__btn_out-stock:hover,
.popup_related .popup__related-bottom .product__btn_out-stock:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #EF7D05;
}
.popup_related .popup__related-bottom .product__btn_out-stock[disabled],
.popup_related .popup__related-bottom .product__btn_out-stock[disabled]:hover,
.popup_related .popup__related-bottom .product__btn_out-stock[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
.popup_related .popup__related-title {
  font-size: 18px;
  line-height: 120%;
  margin: 0;
}
.popup_related .popup__related-slider-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}
.popup_related .in-basket__info {
  width: 100%;
}
.popup_related .in-basket__image-wrapper {
  margin: 0 0 10px;
}
@media (min-width: 575px) {
  .popup_related .in-basket__image-wrapper {
    margin: 0;
  }
}
.popup_related .in-basket__image {
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}
@media (min-width: 575px) {
  .popup_related .in-basket__image {
    width: 180px;
    height: 180px;
  }
}
.popup_related .in-basket__product {
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 575px) {
  .popup_related .in-basket__product {
    grid-template-columns: 180px auto;
    gap: 20px;
  }
}
.popup_related .in-basket__prefix {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: #9D9D9D;
  margin: 0 0 10px;
}
.popup_related .in-basket__name {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 15px;
}
.popup_related .in-basket__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #000;
  gap: 0 10px;
}
.popup_related .in-basket__price.loading::before {
  left: 50px;
  width: 30px;
  height: 30px;
}
.popup_related .in-basket__price .price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 575px) {
  .popup_related .in-basket__price .price-wrapper {
    width: auto;
    margin-bottom: 0;
  }
}
.popup_related .in-basket__price .price.loading {
  color: #FFF;
}
.popup_related .in-basket__price .price.loading::before {
  width: 25px;
  height: 25px;
  left: 25px;
  top: 25px;
}
.popup_related .in-basket__change-qty {
  margin: 0 0 10px;
}
.popup_related .in-basket .bonuses-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 3px;
  font-size: 13px;
  line-height: 26px;
  font-weight: 400;
  color: #EF7D05;
  margin: 0 0 14px;
}
@media (min-width: 375px) {
  .popup_related .in-basket .bonuses-info {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.popup_related .in-basket .bonuses-info__text {
  white-space: nowrap;
}
.popup_related .in-basket .bonuses-info__link {
  text-decoration: none;
  color: #9D9D9D;
}
.popup_related .in-basket .qty-changer__title {
  font-size: 14px;
  line-height: 140%;
  color: #9D9D9D;
  margin-bottom: 5px;
}
@media (min-width: 575px) {
  .popup_related .in-basket .qty-changer__title {
    margin-bottom: 10px;
  }
}
.popup_related .in-basket .qty-changer__one-unit-price {
  font-size: 14px;
  line-height: 140%;
  color: #9D9D9D;
  margin-top: 10px;
}
.popup_related .in-basket .qty-changer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.popup_related .in-basket .qty-changer__btn {
  cursor: pointer;
  width: 20px;
  height: 20px;
  font-size: 0;
  border-radius: 50%;
  position: relative;
  border: none;
  outline: none;
  background-color: #000;
}
.popup_related .in-basket .qty-changer__btn::before {
  content: "";
  width: 9px;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup_related .in-basket .qty-changer__btn:hover {
  background-color: #EF7D05;
}
.popup_related .in-basket .qty-changer__btn.minus {
  order: 1;
}
.popup_related .in-basket .qty-changer__btn.plus {
  order: 3;
}
.popup_related .in-basket .qty-changer__btn.plus::after {
  content: "";
  width: 2px;
  height: 9px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup_related .in-basket .qty-changer__btn.disabled {
  background-color: #C1C1C1;
  pointer-events: none;
}
.popup_related .in-basket .qty-changer__input {
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  max-width: 56px;
  order: 2;
  -moz-appearance: textfield;
}
.popup_related .in-basket .qty-changer__input::-webkit-outer-spin-button,
.popup_related .in-basket .qty-changer__input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.popup_related .in-basket__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .popup_related .in-basket__buttons {
    grid-template-columns: 100%;
    gap: 20px 0;
  }
}
.popup_related .in-basket .tingle-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 44px;
  margin: 0;
}
.popup_related .in-basket .tingle-btn_continue {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
}
.popup_related .in-basket .tingle-btn_continue.disabled,
.popup_related .in-basket .tingle-btn_continue:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.popup_related .in-basket .tingle-btn_continue:hover,
.popup_related .in-basket .tingle-btn_continue:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #EF7D05;
}
.popup_related .in-basket .tingle-btn_continue[disabled],
.popup_related .in-basket .tingle-btn_continue[disabled]:hover,
.popup_related .in-basket .tingle-btn_continue[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
.popup_related .in-basket .tingle-btn_cart {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #000;
  border-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
}
.popup_related .in-basket .tingle-btn_cart.disabled,
.popup_related .in-basket .tingle-btn_cart:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.popup_related .in-basket .tingle-btn_cart:hover,
.popup_related .in-basket .tingle-btn_cart:focus {
  background-color: #EF7D05;
  border-color: #EF7D05;
  color: #fff;
}
.popup_related .in-basket .tingle-btn_cart[disabled],
.popup_related .in-basket .tingle-btn_cart[disabled]:hover,
.popup_related .in-basket .tingle-btn_cart[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
.popup_related .in-basket .price {
  display: flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #000;
  gap: 0 5px;
}
.popup_related .in-basket .special {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #000;
}
.popup_related .in-basket .old {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #9D9D9D;
  margin-left: 5px;
  text-decoration-color: #EF7D05;
}
.popup_related .in-basket .savings {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  border: 1px solid #000000;
  border-radius: 2px;
  padding: 2px 6px;
  display: inline-block;
}
.popup_related .js-slider-pagination {
  justify-content: center;
  display: flex;
  margin: 20px 0 0;
}
@media (min-width: 768px) {
  .popup_related .js-slider-pagination {
    display: none;
  }
}
.popup_related .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background: #ECECEC;
  opacity: 1;
}
.popup_related .swiper-pagination-bullet-active {
  background: #000;
}
@media (max-width: 768px) {
  .checkout-onepage-success .tingle-modal,
  .aristos-sbp-payment-create .tingle-modal {
    padding: 0;
  }
}
.checkout-onepage-success .tingle-modal .tingle-modal-box,
.aristos-sbp-payment-create .tingle-modal .tingle-modal-box {
  max-width: 540px;
}
.checkout-onepage-success .tingle-modal .tingle-modal-box__content,
.aristos-sbp-payment-create .tingle-modal .tingle-modal-box__content {
  overflow-y: auto;
  margin: 0 -8px;
  padding-top: 15px;
}
@media (max-width: 768px) {
  .checkout-onepage-success .tingle-modal .tingle-modal-box__content,
  .aristos-sbp-payment-create .tingle-modal .tingle-modal-box__content {
    height: calc(100vh - 79px);
    max-height: calc(100dvh - 79px);
  }
}
.checkout-onepage-success .page-wrapper.disabled,
.aristos-sbp-payment-create .page-wrapper.disabled {
  filter: blur(10px);
}
.checkout-onepage-success .content-loading,
.aristos-sbp-payment-create .content-loading {
  position: relative;
}
.checkout-onepage-success .content-loading::before,
.aristos-sbp-payment-create .content-loading::before {
  content: "";
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 2px solid #0070f0;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinner 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -18px 0 0 -18px;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

