.product-card {
  background: #ffffff;
  border: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.product-card__remove {
  position: absolute;
  top: 13px;
  right: 13px;
}
.product-card__remove-text {
  display: none;
}
.product-card__remove-btn {
  display: flex;
  border: 1px solid #D8D8D8;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #212121;
  -webkit-transition: 0.3s color ease, 0.3s background-color ease;
  transition: 0.3s color ease, 0.3s background-color ease;
  background-color: #FFF;
}
.product-card__remove-btn:hover {
  background: rgba(216, 216, 216, 0.5);
}
.product-card__remove-icon {
  width: 8px;
  height: 8px;
  display: block;
/*  margin: 11px 0 0 11px;*/
  margin: auto;
}

.product-card__add {
  display: inline-block;
  border: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  color: #212121;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border-bottom: 1px dotted #212121;
}
@media (min-width: 568px) {
  .product-card__add {
    display: none;
  }
}

@media (max-width: 580px) {
  .product-card__remove {
    position: static;
    top: auto;
    right: auto;
    text-align: right;
    margin-top: 12px;
  }
  .product-card__remove-btn {
    display: inline-block;
    margin-left: 10px;
    border: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    color: #212121;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    border-bottom: 1px dotted #212121;
  }
  .product-card__remove-btn:hover {
    background: transparent;
  }
  .product-card__remove-text {
    display: block;
  }
  .product-card__remove-icon {
    display: none;
  }
}
.product-card__mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 10%;
  right: 3%;
  left: 3%;
  z-index: 15;
}

.product-card__mobile-buttons-button.active .product-card__icon {
  color: #ff0064;
}

.product-card__comparsion {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  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;
}

.product-card__favourite {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  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;
}

.product-card__icon {
  width: 20px;
  height: 20px;
  color: #b1b1b1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (min-width: 1024px) {
  .product-card__icon:hover {
    color: #ff0064;
  }
}

.product-card__action-button {
  position: relative;
}

.product-card__btn-hint {
  position: absolute;
  display: block;
  font-size: 10px;
  background: #fbfbfb;
  border-radius: 5px;
  width: 0px;
  padding: 2px 0px;
  transition-duration: 0.05s;
  overflow: hidden;
  border: 1px #f7f7f7 solid;
  opacity: 0;
  white-space: nowrap;
  text-transform: lowercase;
}

@media (min-width: 426px) {
  .product-card__btn-hint {
    font-size: 12px;
  }
}

.product-card__mobile-buttons-button:hover .product-card__btn-hint,
.product-card__action-button:hover .product-card__btn-hint {
  width: unset;
  padding: 2px 4px;
  opacity: 1;
}

.product-card__hint-right {
  top: 10px;
  right: 28px;
  left: auto;
}

.product-card__hint-left {
  top: 10px;
  left: 28px;
  right: auto;
}

.product-card__hint-right-dp {
  top: 25px;
  right: 30px;
  left: unset;
}

@media (min-width: 962px) {
  .product-card__hint-right-dp {
    right: 30px;
    left: unset;
    top: 23px;
  }
}

.product-card__addition {
  position: relative;
  background-color: #fff;
  width: 100%;
  align-self: flex-end;
  margin-top: 15px;
}

@media (max-width: 1099px) {
  .product-card__addition {
    padding-top: 10px;
  }
  .sku_params {
    padding-top: 10px;
  }
}

.product-card__addition-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (min-width: 1100px) {
  .product-card__addition-content {
    padding: 0 0 20px;
    background-color: #fff;
  }
}

.product-card__more,
.product-card__oneclick{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  margin-top: 0;
  border-radius: .5rem;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  padding: 8px 16px;
}

.product-card__oneclick {
  color: #878787;
  border-color: #878787;
}

@media (min-width: 1100px) {
  .product-card__oneclick {
    width: calc(50% - 5px);
  }

  .product-card__more {
    width: calc(50% - 5px);
  }
}

.product-card:hover .product-card__mobile-buttons {
  opacity: 1;
}

.product-card:hover .product-card__title {
  text-decoration: underline;
}

.product-card__image {
  min-height: 241px;
  overflow: hidden;
  margin: 0 14px;
  padding-bottom: 18px;
  position: relative;
  display: block;
  aspect-ratio: 308/222;
}
.product-card__image .splide__gallery .splide__pagination__page{
  cursor: pointer;
}
.product-card__image .splide__gallery .splide__slide img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card__image .splide__gallery .splide__slide {
  max-height: 206px;
  aspect-ratio: 16/9;
}

.product-card__image-single {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-card__image-box {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  bottom: 38px;
  gap: 5px;
  position: absolute;
  top: 20px
}

.product-card__image-box.--image-box-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.product-card__image-box.--image-box-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
}

.product-card__image-sale {
  position: relative;
  z-index: 5;
}

.product-card__image-sale img {
  width: 44px;
  height: 24px;
}

.product-card__image-saleInfo {
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  top: -30px;
  left: 25px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #FF0064;
  padding: 5px 10px;
  border-radius: 0.3em;
  display: none;
}

.product-card__price-sale {
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  background-color: #FF0064;
  padding: 5px 10px;
  border-radius: 0.3em;
  margin-left: 10px;
}

.product-card__image-lable {
  padding: 5px 20px;
  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;
  background: #fec308;
  border-radius: 0.3em;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  z-index: 10;
}

.product-card__container {
  padding: 0 14px 21px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  margin-top: 10px;
}

.product-card.empty .product-card__addition {
  margin-top: 50px;
}

.product-card.empty .product-card__credit {
  margin-bottom: 0;
}

.product-card__title {
  width:100%;
  min-height: 4rem;
  margin-bottom: 15px;
  color: #262626;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  padding-top: 26px;
}

.product-card__price {
  width:100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
  color: #7e7e7e;
  font-size: 14px;
  line-height: 1.1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-self: flex-start;
  min-height: 1.45rem;
}

.product-card__price--actual-wrp {
  margin: 0 5px 0 0;
}
.product-card__price--actual {
  font-size: 16px;
  font-weight: 500;
  color: #00B9BF;
  text-transform: uppercase;
}

.product-card__price--old {
  text-transform: uppercase;
  text-decoration: line-through;
}

.product-card__credit {
  font-size: 12px;
  line-height: 1.1;
  color: #7e7e7e;
  margin-bottom: 15px;
  width:100%;
}

.product-card__credit--price {
  color: #212121;
  text-decoration: underline;
  font-size: 14px;
  text-transform: uppercase;
}

.product-card__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-right: 25px;
  line-height: 1;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
  width: 100%;
  align-items: flex-start;
  margin-top: 10px;
}

.product-card__data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  max-width: 55%;
}

.product-card__data-item-box {
  max-width: 200px;
}

.product-card__data-icon {
  min-width: 20px;
  min-height: 20px;
  margin-right: 14px;
  width: 20px;
  height: 20px;
  color: #231F20;
}

.product-card__data-itemTitle {
  font-weight: 500;
  font-size: 12px;
  color: #212121;
  margin-bottom: 3px;
}

.product-card__data-itemInfo {
  font-size: 14px;
  color: #878787;
}

@media (max-width: 1440px) {
  .product-card__price--actual-wrp {
    margin-right: 10px;
  }
}
@media (max-width: 1200px) {
  .product-card__image {
    min-height: 190px;
  }

  .product-slider-splide .splide__pagination {
    bottom: 0;
  }

  .product-card__data-icon {
    margin-right: 8px;
  }

  .product-card__image-box {
    padding: 0 5px 10px 0;
  }

  .product-card__data {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }

  .product-card__data-icon {
    height: 16px;
    width: 16px;
  }

  .product-card__data {
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
  }
}
@media (max-width: 1023px) {
  .product-card__image {
    min-height: 170px;
  }
}
@media (max-width: 920px) {
  .product-card__image {
    /*aspect-ratio: unset;*/
    /*padding-bottom: 86px;*/
    padding-bottom: 155px;
  }
}
@media (max-width: 768px) {
  .product-card__title {
    padding-top: 0;
    min-height: 40px;
  }

  .catalog .product-card__credit {
    display: none;
  }

  .catalog .product-card__image {
    min-height: calc((100vw - 32px - 16px - 32px) / (2 * 1.4177));
  }

  .catalog .product-card__image-box {
    bottom: 0;
  }

  .product-card__image {
    border: none;
    margin: 0 6px;
  }

  .product-card__image-box {
    padding-left: 8px;
  }
  .product-card__container {
    padding: 0 6px 18px;
  }
  .product-card__mobile-buttons{
    top: 12%;
  }
}

@media (max-width: 580px) {
  .catalog .product-card__data-icon {
    display: none;
  }

  .product-slider .splide__gallery .splide__track {
    padding-bottom: 0;
  }

  .product-card__image-lable {
    padding: 5px;
    min-width: 75px;
    font-size: 10px;
  }

  .product-card__image-saleInfo {
    font-size: 10px;
    display: block;
  }

  .product-card__price-sale {
    display: none;
  }

  .product-card.empty .product-card__addition {
    margin-top: 45px;
  }

  .product-card__image {
    padding: 0;
  }

  .product-card__title {
    padding-top: 0;
    font-size: 14px;
    min-height: 2rem;
  }

  .product-card__credit {
    display: none;
  }

  .product-card__price {
    font-size: 12px;
  }

  .product-card__price--actual {
    font-size: 14px;
  }

  .product-card__data-icon {
    margin-right: 10px;
  }

  .product-card__data-itemTitle {
    font-size: 10px;
  }

  .product-card__data-itemInfo {
    font-size: 12px;
  }

  .catalog__card-2 .product-card__data {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .catalog__card-2 .product-card__data-item + .product-card__data-item {
    margin-top: 4px;
  }

  .product-card__container {
    padding-bottom: 10px;
    max-height: 59%;
    min-height: max-content;
    height: 100%;
  }

  .catalog__wrapper .product-card__container {
    max-height: unset;
    min-height: unset;
  }

  .product-slider-splide .splide__pagination {
    bottom: 30px;
  }

  .product-card__image-box {
    max-height: calc(100% - 60px);
  }
}
@media (max-width: 520px) {
  .product-card__colors-label {
    margin-right: 4px;
  }

  .catalog .product-card__price {
    margin-bottom: 10px;
  }

  .catalog .product-card__price .product-card__price--actual-wrp {
    margin-right: 5px;
    font-size: 10px;
  }

  .catalog .product-card__container {
    padding: 0;
  }

  .card-popup__content {
    gap: 18px 20px;
  }

  .product-card__colors-box {
    width: 15px;/*11px*/
    height: 15px;/*11px*/
  }

  .product-card__colors-input:checked + .product-card__colors-box {
    width: 17px;
    height: 17px;
  }

  .product-card__title {
    /*min-height: 3rem;*/
    margin-bottom: 10px;
  }
}
@media (max-width: 425px) {
  .product-card__image-box {
    bottom: 14px;
  }

  .product-card__title {
    padding-top: 0;
    margin-bottom: 8px;
    min-height: 3rem;
  }

  .product-card__image {
    min-height: 150px;
    margin: 0;
  }

  .product-card__data {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  div.product-slider .splide__gallery .splide__track {
    padding: 0;
  }
  .product-card__container {
    padding: 0 0 18px;
  }
}

.card-v1 .product-card__comparsion,
.card-v1 .product-card__favourite
{
  width: 25px;
  height: 25px;
  border: 1px solid #d8d8d8;
}

.card-v1 .product-card__icon {
  width: 15px;
  height: 15px;
}

@media (max-width: 768px) {
  .card-v1 .product-card__favourite,
  .card-v1 .product-card__comparsion {
    width: 20px;
    height: 20px;
  }

  .card-v1 .product-card__icon {
    width: 10px;
    height: 10px;
  }

  .card-v1 .product-card__mobile-buttons {
    top: 6%;
  }
}

.pr-b {
  background-color: #fec308;
}

.b-online {
  background-color: #EB1D82;
}
.b-bf {

}
.b-httb {
  background-color: #9f4ac8;
}
.b-14feb {

}
.b-new {
  background-color: #8bc34a;
}
.b-sale {
  background-color: #ff9800;
}
.b-hero {
  background-color: #ffd54f;
}

.b-gift {
  background-color: #ff0064;
}
.b-zhuma-hit {
  margin-top: auto;
  order: 2;
  background-color: rgb(240, 70, 52);
  max-width: 55px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 425px) {
  .b-zhuma-hit {
      max-width: inherit;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .product-card__data {
    padding-right: 0;
  }

  .product-card__image {
    min-height: 192px;
  }
}
@media (min-width: 1600px) and (max-width: 1800px) {
  .product-card__image {
    min-height: 205px;
  }
}

.product-card .splide__gallery.splide__preload .splide__slide {
  opacity: 1;
  max-width: 100%;
  width: 100%;
}
.product-card .splide__gallery.splide__preload .splide__slide img {
  padding: 0px 5px;
}
@media (max-width: 919px) {
  .product-card .splide__gallery.splide__preload .splide__slide {
  }
}

.badge-container__in-slider {
  position: relative;
  bottom: 26px;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: -15px;
}

.card__badge-no-photo {
  text-align: center;
  background-color: #efeded;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pagination-extended {
  display: flex;
  justify-content: end;
  margin-top: 10px;
}

.pagination-extended__item {
  background: #ccc;
  border-radius: 0;
  height: 2px;
  margin: 0 .25rem 0 0 !important;
  transition: .2s;
  width: 4px;
}

.pagination-extended__item.active {
  background: #00b9bf;
  width: 16px;
}

.sku_params {
  width: 100%;
  align-self: flex-end;
  margin-top: auto;
}
.sku_params:empty {
    padding-top: 0;
}


/***** Стили для модального окна "Выберите конфигурацию" *****/
.product-card-options__size {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
  padding: 10px 20px;
  align-items: center;
  color: #000;
  font-size: 12px;
  height: 100%;
}

.product-card__item-input:checked + .product-card-options__size {
  border: 2px solid #00B9BF;
}

.product-card__item-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.product-card-options__item {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  margin-bottom: 15px;
}

.product-card-options__item .badges-container {
  margin-top: 10px;
}

.product-card-options__item:first-child:not(:empty) .card-options__header {
  margin-top: 15px;
}

/* Стили модалок */
.modal[id^="configuration_"] .modal__inner,
.modal[id^="productSizes"] .modal__inner {
  max-width: 400px;
  padding: 20px 0;
  border-radius: 8px;
}

.modal[id^="configuration_"] .modal__body,
.modal[id^="productSizes"] .modal__body {
  padding: 25px 20px;
}

.modal[id^="configuration_"] .modal__header,
.modal[id^="productSizes"] .modal__header {
  border-bottom: none;
  padding: 20px 20px 0 20px;
}

.modal[id^="configuration_"] .modal__header .modal__title,
.modal[id^="productSizes"] .modal__header .modal__title {
  font-size: 24px;
  font-weight: 700;
}

.modal[id^="configuration_"] .modal__header .modal__close:not(.btn),
.modal[id^="productSizes"] .modal__header .modal__close:not(.btn) {
  top: -15px;
  right: 0;
  color: #999999;
}

.product-card__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-card__modal-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #212121;
  font-size: 16px;
  font-weight: 700;
}

.product-card__modal-block {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  margin-bottom: 15px;
}

.product-card__modal-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.product-card__modal-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__modal-data span:nth-child(1) {
  color: #666666;
}

.product-card__modal-data span:nth-child(2) {
  color: #212121;
  font-weight: 700;
}

.product-card__modal-data span:nth-child(2) svg {
  fill: currentColor;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  position: relative;
  top: 2px;
}

.product-card__modal-data svg {
  display: none;
}

.product-card__modal-data.modal-btn svg {
  display: unset;
}

@media (max-width: 375px) {
  .modal[id^="configuration_"] .modal__body,
  .modal[id^="productSizes"] .modal__body {
    padding: 20px;
  }

  .modal[id^="configuration_"] .modal__header .modal__title,
  .modal[id^="productSizes"] .modal__header .modal__title {
    font-size: 20px;
  }
}
/* Конец стилей модалок */

/* Блок "Ткани" */
.product-card__btn-fabrics {
  white-space: nowrap;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  color: #00B9BF !important;
  font-weight: 700;
  font-size: 14px;
  height: 55px;
  padding: 6px 20px;
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card__btn-fabrics svg {
  fill: currentColor;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  position: relative;
}

.product-card__header-fabric {
  display: flex;
  align-items: center;
  height: 25px;
}

.product-card__header-fabric svg {
  fill: currentColor;
  width: 25px;
  height: 25px;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

.product-card__header-fabric .fabric-info__text::before {
  right: 225px;
  top: -15px;
}

.product-card__colors-label .product-card__colors-input:checked + .product-card__colors-label .product-card__colors-box {
  border: 1px solid #eee;
}

.product-card__count-text {
  color: #999999;
  font-size: 16px;
}

.fabrics-items-preview__container {
  margin: 10px 0;
}

.fabrics-items-preview__wrp {
  display: flex;
  flex-shrink: 0;
  margin: 0;
  gap: 5px;
}

.card-options__item-fabric-img {
  color: transparent;
  width: 70px;
  object-fit: cover !important;
  height: 100%;
}

.fabrics-items-preview__wrp .product-card-options__item {
  height: 56px;
  width: 56px;
  display: inline-block;
  margin: 0;
  padding: 1px;
  position: relative;
}

.fabrics-items-preview__wrp .product-card-options__item::before {
  background-image: url("/local/templates/Askona2023/images/icons/frame.svg");
  background-size: contain;
  color: hsla(0, 0%, 100%, 0);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: color .2s;
  width: 100%;
}

.fabrics-items-preview__wrp .product-card-options__item:has(input:checked)::before {
  font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  content: "\2713";
  font-size: 1.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 400 !important;
  line-height: 1;
  text-align: center;
  text-transform: none;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabric-info__icon {
  width: 25px;
  height: 25px;
  color: #00b9bf;
  cursor: pointer;
  top: -3px;
  position: relative;
}

.fabric-info__text {
  position: absolute;
  width: 100%;
  padding: 24px 24px 9px 24px;
  background: #FAE07B;
  font-weight: 500;
  color: #000000;
  font-size: 16px;
  line-height: 100%;
  top: 45px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s
}

.fabric-info__text::before {
  content: "▲";
  position: absolute;
  right: 250px;
  color: #FAE07B;
  top: -10px;
  font-size: 24px;
}

.fabric-info__text.visible {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.fabrics-items-preview__container {
  align-items: center;
  display: flex;
  gap: 8px;
}

.card-constructor__input {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 440px) {
  .product-card__fabrics-wrp .product-card__btn-fabrics {
    padding: 6px;
  }

  .product-card__fabrics-wrp .fabrics-items-preview__container {
    gap: 2px;
  }

  .product-card__fabrics-wrp .fabrics-items-preview__wrp {
    gap: 0;
  }

  .product-card__fabrics-wrp .fabrics-items-preview__container {
    flex-direction: row;
    align-items: flex-start
  }
}

/* Конец блока "Ткани" */

.product-card__configModal .product-card__more {
  width: 100%;
  font-size: 14px;
  padding: 12px 16px;
  gap: 5px;
}

.product-card__configModal .product-card-options__item {
  margin-bottom: 25px;
}

.product-card__configModal .fabrics-items-preview__wrp .product-card-options__item {
  margin-bottom: 0;
}

.product-card__configModal > .product-card-options__item:not(:last-of-type) {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 20px;
}

/* Модалка всех размеров */
.product-card__item {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
}

span + .product-card__item:first-of-type {
  margin-top: 30px;
}

.product-card__desc {
  color: #212121;
}

.product-card__size {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  gap: 3px;
  white-space: nowrap;
  padding: 25px;
  font-size: 14px;
  height: 100%;
}

.product-card__size-group {
  display: flex;
  flex-direction: column;
  color: #999999;
  gap: 4px;
}

.product-card__size-value {
  font-size: 18px;
  color: #212121;
}

.product-card__size-name {
  display: flex;
  gap: 4px;
}

.product-card__size-name span:last-child {
  font-weight: 700;
}

.product-card__size-price {
  color: #212121;
  font-weight: 700;
  display: flex;
  gap: 5px;
}

.product-card__item-input:checked + .product-card__size {
  border: 2px solid #00B9BF;
}

.product-card__productSizesModal span .product-card-options__size--availability_popup {
  display: flex;
}

.product-card-options__size--availability_popup {
  text-transform: lowercase;
  color: #00B9BF;
  font-weight: 700;
  font-size: 12px;
}

.product-card__item-input.uncheckable + .product-card__size {
  cursor: pointer;
  opacity: 0.5;
}

@media (max-width: 440px) {
  .product-card__productSizesModal .product-card__size-price,
  .product-card__productSizesModal .product-card__size-group {
    font-size: 10px;
  }
}
/* Конец модалки всех размеров */

/* Блок "Цвет" */
.product-card__configModal .product-card__wrp .product-card__header-color .product-card-options__label {
  margin-bottom: 25px;
  color: #666666;
  font-weight: 500;
}

.product-card-options__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
}

.product-card__configModal .product-card__color {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.product-card__configModal .product-card__color .product-card-options__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  cursor: pointer;
  margin-bottom: 0;
}

.product-card__configModal .card-options__image-color {
  width: 100% !important;
  height: 55px !important;
  border: 1px solid #E5E5E5;
  box-shadow: inset 0 0 0 5px white;
  border-radius: 14px !important;
  display: block;
  box-sizing: border-box;
  margin-bottom: 8px;
}

.product-card__configModal .product-card__color .product-card-options__item span:not(.card-options__image-color) {
  text-align: center;
  width: 100%;
  font-size: 12px;
  color: #212121;
}

.product-card__configModal .product-card__item-input:checked + .product-card-options__size.card-options__image-color {
  border: 2px solid #00B9BF;
}

@media (max-width: 768px) {
  .product-card__configModal .product-card__btn-fabrics {
    max-width: 100%;
    font-size: 10px;
  }

  .product-card__configModal .product-card__btn-fabrics svg {
    width: 8px;
    height: 8px;
  }
}
/* Конец блока "Цвет" */
/***** Конец стилей для модального окна "Выберите конфигурацию" *****/
.club-banner-section {
	margin-top: 148px;
	margin-bottom: 64px;
}

@media (max-width: 1700px) {
	.club-banner-section {
		margin-top: 64px;
	}
}

@media (max-width: 768px) {
	.club-banner-section {
		margin-top: 130px;
		margin-bottom: 32px;
	}
}

@media (max-width: 480px) {
	.club-banner-section {
		margin-top: 100px;
	}
}

.club-banner__container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
	background: #f4f4f4;
}

.club-banner__img {
	width: 50%;
	position: absolute;
	bottom: 0;
}

.club-banner__content {
	width: 50%;
	margin-left: 50%;
	padding: 40px 0;
}

.club-banner__content h3 {
	font-weight: 600;
	font-size: 36px;
	line-height: 48px;
	color: #212121;
	margin-bottom: 8px;
}

.club-banner__description {
	font-weight: 500;
	font-size: 12px;
	line-height: 12px;
	text-align: center;
	color: #212121;
	background: #D1E5AD;
	padding: 6px 8px;
	width: fit-content;
	border-radius: 3px;
	margin: 0;
}

.club-banner__info-items {
	margin: 32px 0;
	max-width: 85%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.club-banner__info-item {
	width: 29%;
}

.club-banner__info-item p:first-child {
	font-weight: 900;
	font-size: 34px;
	line-height: 60px;
	color:#00B9C0;
	white-space: nowrap;
	margin-bottom: 8px;
	/* Хот-фикс */
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 1820px) and (min-width: 1281px) {
	.club-banner__info-item p:first-child {
		font-size: 26px;
	}
}

.club-banner__info-item p:last-child {
	font-weight: 400;
	font-size: 16px;
	line-height: 18.56px;
	color:#7E7E7E;
	margin: 0;
}

@media (max-width: 1280px)  {
	.club-banner__img {
		width: 40%;
	}
	.club-banner__content {
		width: 60%;
		margin-left: 40%;
	}
	.club-banner__info-item {
		width: 30%;
	}
	.club-banner__content h3 {
		font-size: 32px;
	}
	
	.club-banner__info-item p:first-child {
		font-size: 22px
	}
	.club-banner__info-item p:last-child {
		font-size: 14px;
	}
}

@media (max-width: 860px) {
	.club-banner__container {
		flex-direction: column;
	}
	
	.club-banner__img {
		width: 80%;
		position: static;
		margin: 0 auto;
		margin-top: -120px;
	}
	
	.club-banner__content {
		margin-left: 0;
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 24px 0;
	}
	.club-banner__info-items {
		margin-top: 24px;
	}
	
	.club-banner__content h3 {
		font-size: 26px;
	}
	
	.club-banner__description {
		font-size: 10px;
	}
	
	.club-banner__info-item p:first-child {
		font-size: 24px;
	}
	
	.club-banner__info-item p:last-child {
		font-size: 12px;
	}
}

@media (max-width: 560px) {
	.club-banner__info-items {
		max-width: 90%;
	}
	
	.club-banner__info-item {
		width: calc(100%/3);
	}
	
	.club-banner__info-item p:first-child {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.club-banner__info-items {
		max-width: 97%;
	}
	.club-banner__img {
		margin-top: -85px;
	}

	.club-banner__info-item p:first-child {
		font-size: 20px;
	}
}

@media (max-width: 400px) {
	.club-banner__info-item p:first-child {
		font-size: 16px;
	}
}
.about-video {
	margin-top: 104px;
	margin-bottom: 64px;
}

.about-video__info-block-container {
	display: flex;
	justify-content: space-between;
	margin-bottom: 104px;
}

.about-video__first-block-item {
	width: 20%;
}

.about-video__general {
	width: 15%;
	margin-right: 15%;
}

@media (max-width: 1500px) {
	.about-video__general {
		width: 20%;
		margin-right: 10%;
	}
}

.about-video__general-title {
	font-weight: 600;
	font-size: 36px;
	line-height: 48px;
	color: #212121;
	margin-bottom: 24px;
	margin-top: 14px;
}

.about-video__general-description {
	font-weight: 400;
	font-size: 14px;
	line-height: 19.6px;
	color: #7E7E7E;
}

.about-video__benefits-container {
	display: flex;
	justify-content: space-between;
	width: 70%;
}

.about-video__benefits-item {
	width: 25%;
}

.about-video__benefits-slider {
	display: none;
}


.about-video__benefits-title svg {
	margin-bottom: 16px;
	width: 64px;
	height: 64px;
	color: #00B9BF;
}

.about-video__benefits-title p {
	font-weight: 500;
	font-size: 18px;
	line-height: 25.2px;
	color: #212121;
	margin-bottom: 16px;
}

.about-video__benefits-description {
	font-weight: 400;
	font-size: 14px;
	line-height: 19.6px;

}

.about-video__info-imgs {
	display: flex;
	flex-wrap: wrap;
	gap: 10%;
	width: 70%;
}

.about-video__info-imgs-item {
	width: calc(50% - 10%);
	display: flex;
	align-items: center;
	margin-bottom: 96px;
}

.about-video__info-imgs-item img {
	max-width: 182px;
	max-height: 102px;
	margin-right: 64px;
}
.about-video__info-imgs-title {
	font-weight: 900;
	font-size: 60px;
	line-height: 60px;
	color: #00B9C0;
	margin: 0;
}

.about-video__info-imgs-description {
	font-weight: 500;
	font-size: 24px;
	line-height: 33.6px;
	color: #212121;
	margin: 0;
}

.about-video__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 70vh;
  width: auto;
  margin: auto;
}
.about-video__video iframe {
	width: 100%;
	height: 100%;
}
.about-video__dop-text {
	width: 30%;
	margin-top: 32px;
}

.about-video__dop-text-title {
	font-weight: 600;
	font-size: 36px;
	line-height: 48px;
	margin-bottom: 24px;
	color: #212121;
}

.about-video__dop-text-description {
	font-weight: 400;
	font-size: 14px;
	line-height: 19.6px;
	color: #7E7E7E;
}


@media (max-width: 1280px) {
	.about-video {
		margin-top: 80px;
	}
	.about-video__info-block-container {
		margin-bottom: 56px;
	}
	.about-video__general {
		width: 25%;
		margin-right: 10%;
	}
	.about-video__benefits-container {
		width: 65%;
	}
	.about-video__benefits-item {
		width: 30%;
	}
	.about-video__info-imgs-item {
		margin-bottom: 0;
	}
	
	.about-video__general-title {
		font-size: 32px;
		line-height: 38.18px;
		margin-bottom: 24px;
	}
	.about-video__info-imgs-item img {
		margin-right: 16px;
		max-width: 152px;
		max-height: 85px;
	}
	.about-video__info-imgs-title {
		font-size: 50px;
		line-height: 60px;
	}
	.about-video__info-imgs-description {
		font-size: 22px;
		line-height: 30.8px;
	}
	
	.about-video__benefits-title p {
		font-size: 16px;
		line-height: 22.4px;
	}
	.about-video__dop-text {
		width: 50%;
		margin-top: 24px;
	}
	.about-video__dop-text-title {
		margin-bottom: 24px;
		font-size: 32px;
		line-height: 38.18px;
	}
}

@media (max-width: 959px) {
	.about-video {
		margin-top: 40px;
	}
	.about-video__info-block-container {
		flex-direction: column;
		gap: 32px;
	}
	.about-video__general {
		width: 100%;
		margin-right: 0;
	}
	.about-video__benefits-container {
		width: 100%;
	}
	
	.about-video__info-imgs {
		width: 100%;
	}
	.about-video__info-imgs-item {
		margin-bottom: 30px;
		justify-content: center;
	}
	.about-video__dop-text {
		width: 100%;
	}
	.about-video__dop-text-title {
		margin-bottom: 16px;	
	}
}

@media (max-width: 768px) {
	.about-video {
		margin-top: 40px;
	}
	.about-video__benefits-container {
		display: none;
	}
	.about-video__benefits-slider {
		display: block;
	}
	.about-video__general-title,
	.about-video__dop-text-title {
		font-size: 26px;
		line-height: 31.02px;
		margin-bottom: 16px;
	}
	
	.about-video__general-description,
	.about-video__dop-text-description {
		font-size: 12px;
		line-height: 16.8px;
	}
	.about-video__info-imgs {
		justify-content: center
	}
	.about-video__info-imgs-item {
		flex-direction: column;
	}
	.about-video__info-imgs-item img {
		max-width: 139px;
		max-height: 78px;
	}
	
	.about-video__info-imgs-title {
		font-size: 40px;
		line-height: 49.92px;
		text-align: center;
	}
	.about-video__info-imgs-description {
		font-size: 20px;
		line-height: 23.54px;
		text-align: center;
	}
}

.benefits-slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.benefits-slider__item-icon {
  margin-bottom: 16px;
  width: 54px;
  height: 54px;
  color: #00B9BF;
}

.benefits-slider__item-title {
  font-weight: 500;
  color: #212121;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 19.6px;
}

.benefits-slider__item-text {
  color: #7e7e7e;
  font-size: 12px;
  line-height: 16.8px;
  margin-bottom: 0;
}
.benefits-block {
	margin-top: 104px;
	margin-bottom: 80px;
}

@media (max-width: 1280px) {
	.benefits-block {
		margin-top: 80px;
	}
}

@media (max-width: 1024px) {
	.benefits-block {
		margin: 54px 0;
	}
}

@media (max-width: 768px) {
	.benefits-block {
		margin: 32px 0;
	}
}

.benefits__container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 16px;
}
.benefits__item {
	width: calc(100% / 3);
	align-items: center;
	display: flex;
	position: relative;
	cursor: pointer;
}

.benefits__item img {
	max-width: 200px;
}

.benefits__item-title {
	margin-left: 32px;
	font-weight: 500;
	font-size: 36px;
	line-height: 140%;
	color: #212121;
	max-width: 245px;
}

.benefits__item-tooltip {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #ffdf68;
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.benefits__item-note {
	display: none;
	position: absolute;
	background: #ffdf68;
	box-shadow: 0 14px 25px rgba(0, 0, 0, .16);
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	color: #212121;
	width: 90%;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	cursor: default;
}

.benefits__item-note a {
	color: #212121;
	cursor: pointer;
	text-decoration: underline;
}

@media (hover: hover) {
	.benefits__item:hover .benefits__item-note {
		display: block;
	}
}
@media (pointer: coarse) {
	.benefits__item.show-note .benefits__item-note {
		display: block;
	}
	.benefits__item-note {
		width: 300%;
	}
	.benefits__item:first-child .benefits__item-note {
		left: 150%;
	}
	.benefits__item:first-child .benefits__item-note .benefits__item-tooltip {
		left: 15%;
	}
	.benefits__item:last-child .benefits__item-note {
		left: -50%;
	}
	.benefits__item:last-child .benefits__item-note .benefits__item-tooltip {
		left: 85%;
	}
}

@media (pointer: coarse) and (min-width: 480px) {
	.benefits__item-note {
		width: 150%;
	}
	.benefits__item:first-child .benefits__item-note {
		left: 100%;
	}
	.benefits__item:last-child .benefits__item-note {
		left: 0;
	}
}

@media  (max-width: 1500px) and (min-width: 1281px) {
	.benefits {
		margin-bottom: 80px;
	}
}
@media  (max-width: 1400px) {
	.benefits__item-title {
		font-size: 28px;
		margin-left: 16px;
	}
}
@media  (max-width: 1200px) {
	.benefits {
		margin-top: 56px;
		margin-bottom: 80px;
	}
	.benefits__item-title {
		font-size: 24px;
		max-width: 152px;
	}
	.benefits__item img {
		max-width: 152px;
	}
}
@media  (max-width: 1080px) {
	.benefits {
		margin-bottom: 56px;
	}
	.benefits__item-title {
		font-size: 20px;
	}
}
@media  (max-width: 900px) {
	.benefits__item {
		flex-direction: column;
		gap: 20px;
	}
	.benefits__item-title {
		margin-left: 0;
		text-align: center;
	}
}
@media  (max-width: 860px) {
	.benefits {
		margin-bottom: 128px;
	}
}
@media  (max-width: 480px) {
	.benefits__item {
		gap: 8px;
	}
	.benefits__item img {
		max-width: 114px;
	}
	.benefits__item-title {
		font-size: 16px;
	}
}

@media  (max-width: 400px) {
	.benefits__item img {
		max-width: 90px;
	}
	.benefits__item-title {
		font-size: 14px;
	}
}
.timer {
    position: absolute;
    width: 100%;
    top: 100px;
    pointer-events: none;
    text-decoration: none;
    color: #212121;
}

@media (max-width: 1800px) {
    .timer {
        top: 80px;
    }
}

@media (max-width: 1580px) {
    .timer {
        top: 60px;
    }
}

@media (max-width: 1400px) {
    .timer {
        top: 50px;
    }
}

@media (max-width: 1300px) {
    .timer {
        top: 40px;
    }
}

@media (max-width: 1200px) {
    .timer {
        top: 25px;
    }
}

@media (max-width: 1050px) {
    .timer {
        top: 15px;
    }
}

@media (max-width: 1024px) {
    .timer {
        top: 22%;
    }
}

.preload {
    display: none;
}
.timer-digits {
    display: flex;
    justify-content: center;
    gap: 0px;
}
.timer-block {
    text-align: center;
    margin: 30px;
    padding: 30px;
    width: 108px;
    border: solid #212121 2px;
    border-radius: 10px;
    background: rgba(223, 226, 229, 0.6);
}
@media (max-width: 600px) {
    .timer-block {
        margin: 20px;
        padding: 20px;
        width: 75px;
    }
}

@media (max-width: 470px) {
    .timer-block {
        margin: 15px;
        padding: 15px;
        width: 75px;
    }
}

@media (max-width: 425px) {
    .timer-block {
        margin: 10px;
        padding: 15px;
        width: 75px;
    }
}

@media (max-width: 380px) {
    .timer-block {
        margin: 5px;
        padding: 10px;
        width: 65px;
    }
}

.timer-value {
    font-size: 40px;
    font-weight: 600;
}
.timer-day, .timer-hour, .timer-min, .timer-sec {
    font-size: 12px;
}

@media (max-width: 768px) {
    .timer-value {
        font-size: 32px;
        font-weight: 600;
    }
}

@media (max-width: 380px) {
    .timer-value {
        font-size: 24px;
        font-weight: 600;
    }
}
