.all-fact { width:100%; clear: both; padding-bottom: 30px; padding-top: 10px;}
.all-fact span { }
.all-fact .l1 > span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #c0392b;
    margin: 14px 0 4px;
    padding-bottom: 3px;
    border-bottom: 2px solid #e8d0cc;
    line-height: 1.2;
}
.all-fact .lev2 a {
    color: #333;
    text-decoration: none;
    line-height: 1.8;
}
.all-fact .lev2 a:hover {
    color: #c0392b;
    text-decoration: underline;
}
.all-fact .country-link h3 { margin:0px!important;}
.country-link { clear: both; padding-bottom: 10px;}

.all-fact #factories { padding-top: 24px;}
.all-fact .fastlink_name { margin-right: 24px;  width: 130px;   display: inline-block;}
.all-fact .fastlink_name .flag-icon {margin-right:6px;}

.country-link-fact { clear: both; }
.country-link-fact h3 { margin-bottom: 0px!important;}

.li-inline { text-align: left;
    display: inline-block;
    vertical-align: top;
    width: 22%;

    font-size: 14px!important;
    /* line-height: 1.8em; */
}

.listNav { margin:0 0 10px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 12px auto;
  max-width: 100%;
  padding-bottom: 16px;
}
.review-card {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.review-toggle {
  display: none;
}

.review-content {
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.review-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
}

.review-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

.review-rating {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.review-body-wrapper {
  position: relative;
}

/* скрываем чекбокс */
.review-toggle {
  display: none;
}

/* по умолчанию обрезка */
.review-body {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  max-height: 7.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  transition: max-height 0.3s ease;
}

/* показываем весь текст только если соответствующий чекбокс активен */
.review-toggle:checked ~ .review-body {
  max-height: none;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* скрываем "Читать полностью" при раскрытии */
.review-toggle:checked ~ .review-more {
  display: none;
}

.review-more {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #0066cc;
  cursor: pointer;
  text-align: right;
  font-style: italic;
  opacity: 0.8;
}

/* ---------- FAQ base ---------- */
.faq {
  --faq-bg: #ffffff;
  --faq-text: #1f2937;
  --faq-border: #e5e7eb;
  --faq-accent: #111827;
  --faq-radius: 12px;
  --faq-space: 1.25rem;
  --faq-transition: 0.25s ease;
  max-width: 100%;
  margin: 8px auto 4px;
  padding-bottom:12px!important;
  color: var(--faq-text);
}

.faq__title {
  font-size: 1.75rem;
  line-height: 1.3;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.faq__item {
  background: var(--faq-bg);
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  padding: 0;
  margin-bottom: 12px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: box-shadow var(--faq-transition);
}

.faq__item[open] {
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Скрываем стандартный маркер <summary> */
.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q {
  cursor: pointer;
  position: relative;
  display: block;
  padding: var(--faq-space) calc(var(--faq-space) * 1.5) var(--faq-space) var(--faq-space);
  font-weight: 600;
  line-height: 1.4;
  outline: none;
  list-style: none;
}

/* Иконка +/– справа */
.faq__q::after {
  content: "+";
  position: absolute;
  right: var(--faq-space);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--faq-accent);
  transition: transform var(--faq-transition);
}

.faq__item[open] > .faq__q::after {
  content: "–";
  transform: translateY(-50%);
}

.faq__a {
  overflow: hidden;
  padding: 0 var(--faq-space) var(--faq-space);
  border-top: 1px solid var(--faq-border);
  animation: faq-fade-in 0.2s ease;
}

.faq__text {
  margin: 0.75rem 0 0;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ---------- Hover / focus states ---------- */
.faq__q:hover,
.faq__q:focus-visible {
  background: rgba(0,0,0,0.02);
}

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  .faq {
    --faq-bg: #111418;
    --faq-text: #e5e7eb;
    --faq-border: #22262b;
    --faq-accent: #f9fafb;
  }
  .faq__q:hover,
  .faq__q:focus-visible {
    background: rgba(255,255,255,0.04);
  }
}

/* ---------- Animations ---------- */
@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Small screens ---------- */


.card__price_nds { font-size: 16px; color: #979797;margin-top: 5px; width: 100%; text-align: right; line-height: 24px; font-weight: 400;}
.price_nds { font-size: 16px; color: #979797;margin-left: 5px; text-align:left; }

.gdprModal { display: none;}
.gdprModal a { text-decoration: underline;}
#cookies_notification {
    display: none;
    justify-content: space-between;
		position: fixed;
		left: 50%;
		background-color: white;
		border-radius: 4px;
		box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
		bottom: 15px;

        flex-direction: column;
        align-items: center;
        /*top: 50%;*/
        transform: translate(-50%, 0);
        padding: 25px 50px;
        font-size: 14px;
            z-index: 10;
}

#cookies_notification > div {
		margin: 15px 0;
}
#cookies_notification p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    color: #000;
}

#cookies_notification button {
    background: #002366;
    color: #fff!important;
    transition: all 0.5s;
    text-decoration: none;
    text-transform: uppercase!important;
    font-size: 14px;
    border: none;
    text-align: center;
    display: inline-block;
    box-shadow: none!important;
    padding: 5px 10px;
    cursor: pointer;
}

@media (min-width: 576px) {
    #cookies_notification.show {
        
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .cookie_accept {
        margin: 0 0 0 25px;
    }

    .item-cols-3 a.link-button {
        font-size: 11px !important;
        width: 115px;
    }
    .item-cols-3 a.link-button.getCalc.getPopup {
        width: 175px;
    }
}

.footer__bot { margin-top:6px!important;}
#search-mobile-btn {     margin: 8px 10px 0px 0px;}

.close-icon { cursor: pointer; width: 20px; height: 20px; position: relative;}

/* ===== БАЗОВАЯ МОДАЛКА ===== */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal__content {
    position: absolute;
    width: calc(100% - var(--header-search-left) - var(--header-search-right));
    height: 90vh;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    top: var(--header-search-top);
    left: var(--header-search-left);
    right: var(--header-search-right);
    margin: 0 auto;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.search-modal__content .shortcard__bot { 
    display: none !important;
}

.search-modal__form {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.search-modal__results {
    height: calc(90vh - 100px);
    overflow-y: auto;
    position: relative;
}

.search-modal.active {
    display: block;
    opacity: 1;
}

.search-modal.active .search-modal__content {
    transform: translateY(0);
    opacity: 1;
}

/* ===== ТЕКСТ / РЕЗУЛЬТАТЫ ===== */

.search-request {
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    font-size: 14px;
}

.search-modal__results__count { 
    text-align: center; 
}
.search-modal__results__count span { 
    font-weight: 700; 
}

.search-modal__results .catalog_short,
.search-modal__results .catalog_short__list {
    padding-top: 0 !important;
    padding-bottom: 15px !important;
}

/* ===== ЛОАДЕР ===== */

.search-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.header__search__form_v2 { border:0px!important;}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== ЛИНЕЙКА ПОИСКА (ПЕРЕКЛЮЧАТЕЛЬ + ПОЛЕ) ===== */

/* Вся строка внутри модального поиска */
.search-modal .header__search__form {
    display: flex;
    align-items: center;
    /*gap: 12px;      */        /* расстояние между переключателем и полем */
    height: 42px;           /* общая высота */
}

/* левая часть – переключатель */
.search-modal .search-mode-toggle {
    flex: 0 0 auto;
}

/* правая часть – поле */
.search-modal .search-main {
    flex: 1 1 auto;
    height: 100%;
}

.search-modal .header__search__form__row {
    height: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 21px;
    padding: 0 12px;
    box-sizing: border-box;
}

/* иконка + поле */
.search-modal .header__search__form__ico {
    margin-right: 8px;
}

.search-modal .search-request {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
}

/* крестик */
.search-modal .close-icon {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    position: relative;
}

/* ===== ПЕРЕКЛЮЧАТЕЛЬ РЕЖИМОВ (nav_toggler) ===== */

/* Контейнер-пилюля с общей рамкой вокруг всего переключателя */
.search-modal .search-mode-toggle.nav_toggler {
    height: 42px;
    display: flex;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 21px;
    font-weight: 500;
    margin-right:10px;
}

.search-modal .search-mode-toggle.nav_toggler::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #b4b4b4;
    border-radius: inherit;
}

/* Кнопки внутри переключателя */
.search-modal .search-mode-toggle .new_toggler__itm {
    flex: 1 1 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    color: #848484;
    font-size: 13px;
    padding: 0 18px;
    white-space: nowrap;    /* текст всегда в одну строку */
    cursor: pointer;
}

/* Активная – залитая #3e82d0 */
.search-modal .search-mode-toggle .new_toggler__itm.active {
    background: #3e82d0;
    color: #fff;
}

/* ===== РЕЖИМЫ: ТЕКСТ / ФОТО ===== */

.search-modal.mode-text .search-request {
    display: block;
}
.search-modal.mode-text .search-photo-area {
    display: none;
}

.search-modal.mode-photo .search-request {
    display: none;
}
.search-modal.mode-photo .search-photo-area {
    display: flex;
    flex: 1;
    height: 100%;
    align-items: center;
}

/* ===== БЛОК ФОТОПОИСКА ===== */

.search-photo-area {
    display: none;
    flex: 1;
}

.search-photo-file {
    display: none;
}

.search-photo-preview {
    margin-top: 6px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.search-photo-preview img {
    max-height: 50px;
    border-radius: 4px;
}

/* сам dropzone */
.search-modal .search-photo-dropzone {
    width: 100%;
    height: 32px;
    border: 1px dashed #bbb;
    border-radius: 16px;
    display: flex;
    align-items: center;    /* центрируем по вертикали */
    justify-content: center;/* общий центр, а внутри уже flex */
    padding: 0 12px;
    box-sizing: border-box;
    cursor: pointer;
    gap: 8px;               /* расстояние между миниатюрой и текстом */
}

/* миниатюра внутри dropzone */
.search-modal .search-photo-thumb {
    max-height: 28px;       /* ниже высоты строки поиска */
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
}


.search-modal .search-photo-dropzone.dragover {
    border-color: #000;
    background: #fafafa;
}

.search-modal .search-photo-dropzone__text {
    text-align: center;
    font-size: 13px;
    line-height: 14px;
}
.search-modal .search-photo-dropzone__text span {
    display: block;
    font-size: 11px;
    color: #777;
}




.header__search.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}



.product section.description ul
{
    list-style: disc;
      margin-left: 14px;
      margin-bottom:20px;
}

.typepage-collection .description article ul
{
    list-style: disc;
      margin-left: 14px;
      margin-bottom:20px;
} 
.typepage-collection .description  h2, .typepage-collection .description  h3 { padding-bottom: 14px; font-weight: 500;}
.typepage-collection .description  table { border: 3px solid #ccc; margin-bottom:20px; text-align: left;}
.typepage-collection .description  table th, .typepage-collection .description  table td { padding: 5px;  border: 1px solid #ccc;}
.typepage-collection .description  table th { font-weight: bolder;}

.banners h2 { text-align: center; padding-bottom: 10px;}
.banners {

  
  background-color: #fff; /* Темный фон */
  padding: 20px 0; /* Дополнительное пространство сверху и снизу */
}

.banners__slider_swiper {
    display: flex;
    justify-content: center; /* Центрируем слайды */
    align-items: center;
    width: 100%;
}

.mySwiperBanners .swiper-slide {
    max-height: 500px; /* Максимальная высота слайдов */
    display: flex;
    justify-content: center; /* Центрируем картинку внутри слайда */
    align-items: center;
    overflow: hidden;
}

.mySwiperBanners .swiper-slide img {
    height: 100%;
    max-height: 500px;
    width: auto;
    max-width: 100%; /* Изображение не будет превышать ширину слайда */
    object-fit: contain; /* Подгоняем изображение, сохраняя пропорции */
}

.banners__slider_swiper .slider_arrow { top:50%;}
.banners__slider_swiper .slick-prev { left:0px!important;}
.banners__slider_swiper .slick-next { right:0px!important;}

.banners .intro__slide__img {     margin-left: 0px!important;}

.shared_block { padding-top: 8px; width: 100%;}
.product .shortcard__manage_btns { display:inline-block; float:right; margin-right:24px;}
.product  .shortcard__price_block { width:100%;}
.share_link_userid a {color: #236dc1; margin-left: 6px; }
.share_link_userid a:hover { text-decoration: underline;}
.share_link_userid { display: none; font-weight: 500; 
    align-items: center;  /* Центрирование по вертикали */
    height: 28px;
    padding: 0 10px;  /* Если нужно добавить отступы */
    box-sizing: border-box; /* Чтобы padding не влиял на высоту элемента */}

.delivery .section-title { margin-bottom: 15px;}
.fabrika__card__info .shortcard__tag-example { width: max-content;  height: 45px; cursor:pointer; border-radius: 19px !important; font-size: 16px; font-weight: 400; padding: 10px 10px; } 
.fabrika__card__info .card__help__itm-video { border:none!important; padding:0px;  }
.fabrika__card__info .card__help__itm-video span {  color: #236dc1;  }
.fabrika__card__info .card__help__itm-video:hover { text-decoration: underline;}
.fabrika__card__info h1 { width:100%;}

.share_link { margin-right: 20px; display: inline-block;}
.share_link img { margin-right:6px; }
.share_link a { vertical-align: middle; }
.share_link a:hover { text-decoration: underline;  color: #236dc1;}

.rotate-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px;
    border-radius: 50%;
}
.goodTempStyle_0 { text-align: center;}
.card__help__title { align-items: end!important; }
.card__help__itm-video { background-image:none!important;}

.whatsapp-ico a {
    display: inline-block;
    width: 29px; /* Ширина изображения */
    height: 29px; /* Высота изображения */
    background-image: url('/theme/img/whatsapp-48.png');
    background-size: contain; /* Размер фона соответствует изображению */
    background-repeat: no-repeat; /* Изображение не повторяется */
    background-position: center; /* Изображение центрируется */
}

.whatsapp-link { width:28px!important; height:28px!important;  }
.whatsapp-link img {  width:28px!important; height:28px!important; }

.telegram-ico a {
    display: inline-block;
    width: 29px; /* Ширина изображения */
    height: 29px; /* Высота изображения */
    background-image: url('/theme/img/telegram-48.png');
    background-size: contain; /* Размер фона соответствует изображению */
    background-repeat: no-repeat; /* Изображение не повторяется */
    background-position: center; /* Изображение центрируется */
}

.telegram-link { width:28px!important; height:28px!important;  }
.telegram-link img {  width:28px!important; height:28px!important; }


.header__catalog__menu > ul > li > a .svg-ico { margin-right: 14px!important;}
.header__catalog__submenu .color_block { margin-right: 6px!important; margin-bottom: 4px;}

.branches_block { clear: both; width: 100%;}
    .sample_branch { display: inline-block; white-space: nowrap;  padding-right: 10px;}
    .sample_branch svg {
          color: #3e82d0;
        }

.new-badge {
    position: absolute;
    top: 8px;
    right: -32px;
    background-color: #3e82d0;
    color: white;
    padding: 2px 4px;
    font-size: 8px;
    font-weight: bold;
    border-radius: 13px;
    animation: flash 3s infinite;
}


@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0% {
        background-color: #3e82d0;
    }
    50% {
        background-color: #cc2035;
    }
    100% {
        background-color: #3e82d0;
    }
}

/* Применяем анимацию к классу .flashing */
.flashing {
    animation: flash 1s infinite;
}


.header__location { display: inline-block; max-width: 280px; margin-top: 10px;}
    .header__location__address a:hover {font-weight: 700;
        color: #bf1e2e;}

    .header__location__address svg  {color: #3e82d0;}

.contacts__info h4 { margin-top: 10px; color: #3e82d0;}
.contacts__info h2 { border-bottom: 1px #3e82d0 solid; }

.shortcard__nal { display: flex;
  align-items: center; }
.shortcard__nal .label { padding-right: 8px;}

.square-container {
    display: flex;
    align-items: center;
}

.shortcard__nal .label {
  display: inline-block; /* ��� �������� ����� �� ����� ������ */
}


.square-container span { padding-right: 10px; }
.square {
    width: 18px;
    height: 18px;
    margin-right: 3px;
    border: 1px solid #666; /* ���� ����� �������� */
}

/* ��������� ��� �������� */
.square.with-bg {
    background-color: #8cbe4f; /* ���� ���� �������� */
}

.hi-slider__sectors {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
}

.hi-slider__sector {
  flex-grow: 1;
}

.like-collect svg { margin-left: 4px; } 

.shortcard__tags { top:12px;left: 11px;  right: 11px;}
.shortcard__tag { margin-right: 0px!important;}
.shortcard__tag-video { width:43px; height:43px; background-image: url(../img/youtube.png);
    background-size: contain; /* �������������� ����������� ���, ����� ��� ��������� ���������� � ���� */
    background-repeat: no-repeat; /* ������������� ���������� �������� ����������� */
    margin-left: auto;
    background-position-y: -2px;
    background-color: #f00;
    border-radius: 0px 0px 0px 19px;
}

.shortcard__tag-panorama { 
    width: 55px; height:45px; background-image: url(../img/360-view-3.png);
    background-size: contain; /* �������������� ����������� ���, ����� ��� ��������� ���������� � ���� */
    background-repeat: no-repeat; /* ������������� ���������� �������� ����������� */
    border: 1px solid #6fb944;
    background-color: #fff;
    border-radius: 0px 0px 19px 19px;
    background-position-x: 5px;
}

.hi-slider:hover .hi-slider__dots {
  opacity: 1;
}
.hi-slider__dots {
  position: absolute;
        width: 100%;
        bottom: 0px;
        height: 4px;
        padding-top: 2px;
        background: #fff;
    
        display: flex;
        align-items: center;
        justify-content:space-around;
        pointer-events: none;
        opacity: 0;
}

.shortcard__thumb__img:hover .hi-slider__dots{
        opacity: 1;
    }
.hi-slider__dot {
        background-color: #d8dadf;
        height: 3px;
        flex-grow: 1;
        margin: 0 1px;  
    }
.hi-slider__dot--active {
            background-color: #236dc1;
        }


.card__manage_btn {
  float: left;
}
.shortcard__thumb::before { padding-bottom: 100%!important;}
/* Картинка коллекции кликабельна — переход на страницу коллекции */
.shortcard.collect .shortcard__thumb, .shortcard .shortcard__thumb { cursor: pointer; }
.card__params .show-more-btn { font-size:1.1em;}

.card__info__top { -webkit-box-align: center;
  -webkit-align-items: center; }

.btn-liked:hover, .btn-liked.active {
  color: #f9b043;
}

 .shortcard__thumb { max-height: 350px!important;}
 
.catalog__filter__manage .btn-blue { display: none;}

#gdprModal {}
.modal-active {
  pointer-events: none;
}

#video_click span { color: #bf1e2e!important; line-height: 40px; }
#video_click:hover { color: #3e82d0!important; }


.shortcard__tag-example {   border-radius: 0px 0px 19px 19px!important; }
.catalog_short__list .product  .shortcard__tag-example {   border-radius: 19px!important; }



.filesize { color: grey; border:0px!important; padding-left: 6px;}
#open-panorama { margin-top: 20px; color: #bf1e2e; }

.card__download_link span { line-height: 22.5px;  border-bottom: 0px!important;}
.card__download_link:hover span { color: #3e82d0; }
.card__download_link img {
  margin-right: 10px;
}

div#panorama_block { padding-bottom: 70px; display:none;}
.panorama_link {
            
            width: 100%;
            height: 70vh;}
.panorama_link iframe {
    width: 100%;
            height: 100%;
            border: none;
}

.attention-product { width:100%; text-align: right; color: #bf1e2e; font-weight: 400; padding: 6px 0px;}
    .attention-product-teaser { text-align: left; font-size:12px; padding-bottom: 8px; color: #bf1e2e; display: none;}
    .shortcard__params { padding-bottom: 90px!important;}
    
    .shortcard:hover .attention-product-teaser { display: inherit; }

.admin_link { padding: 10px; border:1px solid #eee;  display: inline-block; border-radius: 20px; background-color: #fffad3; font-size: 16px !important; margin: 6px 10px 6px 0px;}
.article table tr td { border: 1px #336 solid; margin: 5px; padding: 10px;}
.article table tr:nth-of-type(1) td { background-color: #eef; }
.article .plain_text a {     color: #266fc2;     text-decoration: underline; }
.article .swiper {
      width: 100%;
      height: 100%;
      background-color: #333;
        border-radius: 24px;
        margin: 20px 0px;
    }

    .article .swiper-slide {
      text-align: center;
      font-size: 18px;
      background-color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px;
    }

    .article .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 24px;
    }

    .article .swiper-slide {
      width: 60%;
    }

    .article .swiper-slide:nth-child(2n) {
      width: 60%;
    }

    .article .swiper-slide:nth-child(3n) {
      width: 60%;
    }
.product .description { padding: 40px 0px; font-size: 14px!important;}

.card__order__delivery { min-height:60px; display: flex; border:0px!important;}


.card__params li .val { font-weight: 400; overflow: auto;}
.delivery_info { padding-top: 20px;}
    .info__itm { font-size: 16px; display: flex;  cursor:pointer;  text-align:left;      text-transform: initial!important; }
    .info__itm img { margin-top:-5px; filter: brightness(0%) saturate(100%) invert(59%) sepia(98%) saturate(5897%) hue-rotate(176deg) brightness(104%) contrast(105%); }
    .info__itm__header {}
    .info__itm__header .h3 {
        text-transform: uppercase;
        font-size: 15px;
        line-height: 1.3125;
        font-weight: 500;
        margin-left:6px;
    }

.collection .info__itm {
    display:flex;
    padding: 0px;
}
   
.info__itm .top {
    min-width:200px; 
    max-width:550px;
    width: max-content;
    top:0px;
    left:50%;
    transform:translate(-50%, -100%);
    padding:10px 10px;
    color:#444444;
    background-color:#FFFFFF;
    font-weight:normal;
    font-size:13px;
    border-radius:8px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
    display:none;
}

.info__itm:hover .top, .info__itm:hover .right {
    display:block;
     text-transform: initial!important;
}

.info__itm .top i {
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}

.info__itm .top i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,-50%) rotate(45deg);
    background-color:#FFFFFF;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
}



.info__itm .right {
    min-width:200px; 
    max-width:550px;
    width: max-content;
        top: 70px;
    /* top:50%;
    left:100%;
    /*transform:translate(0, -50%); */
    padding:10px 10px;
    color:#444444;
    background-color: #fbfbfb;
    font-weight:normal;
    font-size:13px;
    border-radius:8px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
    visibility:hidden; opacity:0; transition:opacity 0.8s; 
}

.info__itm:hover .right {
    visibility:visible; opacity:1;
}

.info__itm .right img {
    width:400px;
    border-radius:8px 8px 0 0;
}
.info__itm .text-content {
    padding:10px 20px;
}

.info__itm .right i {
    position:absolute;
    bottom:100%;
    left:5%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}
.info__itm .right i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,50%) rotate(45deg);
    background-color:#FFFFFF;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
}


 .one_item  .item_delivery { display: flex; padding:0px!important;}
 .one_item  .item_lifter { display: flex; padding:0px!important; margin-left: auto;}
 .one_item  .info__itm__header .h3 { font-weight: 400;}
 .one_item .info__itm .right { right:0px; top:initial!important; }
 .one_item .info__itm .right i { display: none;}

.info__itm .top .link, .info__itm .right .link  { border:1px #339 solid; cursor:pointer; padding: 10px 20px; color: #236dc1; font-weight: 500; display: inline-block;
    margin: 10px 0px 0px 20px;}
    .info__itm .top .link:hover, .info__itm .right .link:hover  { color: #fff; background-color: #3e82d0;}
.info__itm .delivery__price ul { border:0px!important; -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;}
.info__itm .delivery__price ul li { padding: 0px!important; border:0px; min-height: inherit!important;}
.info__itm .delivery__price ul li:not(:last-child) { border-bottom: 1px solid #d6d6d6!important; min-height: inherit!important;}



.card__download_link { margin-right: 32px; height:35px; cursor: pointer!important; font-size:15px; font-weight: 500; color: #bf1e2e; margin-top: 4px!important; }
/*.svg-texture { margin-right: 4px!important;}*/

#gallery-videojs-demo, #gallery-panorama  { display: inline-block;}
.block_links_files { padding-bottom: 10px; display: inline-block;}

#numberSlides { display: block;
    /* width: 100%; */
    padding: 10px;
    border-bottom: 5px solid;
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    font-size: 30px;
    background-color: #444;}

.card__tag a:hover, a.goto_goods:hover { color: #3e82d0;}
 .card__tag { font-size: 16px!important; }

#gallery-panorama, #gallery-videojs-demo  { align-self: end;}
a.goto_goods {
    height: 35px;
    align-self: end;
    background-color: #ededed;
  -webkit-border-radius:20px;
  border-radius:  20px;
  font-weight:normal!important;
  margin-bottom: 4px!important;
  margin-right:24px;
}

a.samples_link { align-self: end;  margin-bottom: 4px!important; margin-right:24px;}
.collect .card__manage_btns a .shortcard__tag-example {
    border-radius: 19px!important;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 0px!important;
    width: 130px;
  height: 35px;
}

.btn-video {color: #f9b043;}
.btn-raskl {color: #3e82d0;}

.sub-title { color: #666; float:left; font-size: 20px;     margin: 0px 0px 10px; width:100%; clear: both;}

.fabrika__card__info .sub-title { width: inherit;   clear: none; margin-right:10px;}


.review_one { padding: 10px 0px; }
.review_one span { display: block;  font-size: 14px!important; }
    .review_img { float:left; padding: 0px 10px 10px 0px;}
    .review_date { color: #3c3c3c}
    .review_author { font-weight: bold; font-size:16px!important; color: #3c3c3c; }
    .review_stars {}
    .review_text {}
    
    #admin_tables table td { padding: 2px 6px;}
    #admin_tables table tr {border-bottom: 3px solid #ccc; }

.catalog_short__list .collect:hover {   }

.mc-noreviews,.mc-cr,.mc-breakdwn { display: none!important;}
.mc-btn2 {   background-color: #3e82d0!important;
  color: #fff!important;
  border: 1px solid #3e82d0!important;
  height: 55px!important;
  padding: 0 46px!important;
    font-weight: 500!important;
 }

.reviews { padding-top: 16px;}
.crr-cnt { display: block; margin-left:-8px;}
.form__consent { margin-top: 20px;}
.form__consent input { top: 0px!important;}
/*
.form__consent input[type="checkbox"]:checked + i::after {
    
    opacity: 0!important;
  }
  .form__consent input[type="checkbox"] + i {

    border: 0px!important;
  }
*/
.button-disabled { background-color: #e1e1e1!important; border: 1px #999 solid;}
.button-disabled:hover { color: #fff; }

.partner__thumb img { border-radius: 50%; width: initial!important;}
.factory_site { width: 100%; clear:both; }
.factory_site a:hover { color: #3e82d0; }
.admin-menu input[type=checkbox]{opacity:1!important;}

.header__catalog__submenu {
    min-height: 100%;
}
.notwork {
    display: none;
}

.podrazdel.active .openCatalog::after,
.razdel.active .openCatalog::after {
    transform: rotate(0);
}


.top_razdel { padding-top: 16px;}
.razdel_name_text {vertical-align: top;padding-top: 4px;display: inline-block;}
.razdel_name {width: 100%; vertical-align: top;padding-top: 4px;display: inline-block;}
.razdel { padding-top: 10px;}

.card .mySwiper2 { width:720px; height:720px;}

.mySwiper2 {border: 1px solid #b4b4b4;}
.mySwiper2 .swiper-slide { background-color: #fff; display: flex!important; height: auto; }
.mySwiper2 img {
    width: auto;
    margin: auto;
    display: flex!important;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* вписывать по ширине/высоте, НИКОГДА не растягивать */
}

.slider_videos #numberSlides { bottom:50px;}

#mySwiperCol .swiper-slide iframe {
        width: 100%; /* ������ iframe */
        height: 100%; /* ������ iframe */
        object-fit: cover; /* ��� �����������, ��� ����� ��������� ����� */
}

#mySwiperCol .swiper-slide video {
        width: 100%; /* ������ ����� */
        height: 100%; /* ������ ����� */
        object-fit: cover; /* �������� ����� ��������� �����, �������� ��������� */
    }

.imgage-vert {width:auto!important; height: 100%!important; object-fit: contain!important;}
.image-horiz {width:100%!important; height: auto!important; object-fit: contain!important;}
.image-kvadr { width:auto!important; height: auto!important; max-width:100%!important; max-height:100%!important; object-fit: contain!important;}

.header__callback_btn { color: #236dc1; }

 .card__preview .mySwiper2  {  /*max-height: 520px!important; */ }

.card__preview .swiper-zoom-container img {}

.cnt_block__btn { cursor: pointer; text-align: center; vertical-align: middle; display: inline-block; margin: auto;
    padding: 6px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

@keyframes scaleup {
        0% {
          transform: scale(0.2);
        }
        90% {
          transform: scale(1.2);
        }
        100% {
          transform: scale(1);
        }
      }

      .modal {
        display: none;
        position: fixed;
        z-index: 200;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: #333;
        background-color: rgba(0, 0, 0, 0.7);
        animation: scaleup 0.2s ease-in;
      }

      .modal-content {
        position: absolute;
        top: 50%;
        background-color: #f2f2f2;
        border-radius: 5px;
        padding: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
      }

      .modal-close-button {
        position: absolute;
        background-color: #3e82d0;
        padding: 10px;
        border-radius: 50%;
        color: #fff;
        right: -15px;
        top: -15px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        padding: 0px;
        text-align: center;
        font-size:20px;
      }
      .modal-close-button:hover {
        transform: rotate(15deg);
      }

      .show-modal {
        display: block;
      }


.noUi-horizontal .noUi-handle {
    width: 16px!important;
    height: 16px!important;
    margin-left: -8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff!important;
    border: 3px solid #2d2d2d!important;
    cursor: pointer;
}
.noUi-connect {
  background: #2d2d2d!important;
}
.noUi-handle::before, .noUi-handle::after { display:none!important;}
.catalog__filter__range .slider-range {
    margin: 12px 14px 24px 0px !important;
}


.collect_products .swiper, .related_products .swiper, .relinks .swiper,.home_products__content .swiper { overflow: initial!important;}
.collect_products .swiper-slide, .related_products .swiper-slide, .relinks .swiper-slide,.home_products__content .swiper-slide {  height: auto!important;}

.collect_products .swiper-slide .collect { margin-bottom: 80px;}
.collect_products .swiper-slide .shortcard, .related_products .swiper-slide .shortcard, .relinks .swiper-slide .shortcard,.home_products__content .shortcard {
    border: 1px solid #c4c4c4;
    margin-left: -1px;
    height:100%;
}

.brands {
  padding: 0px 0 0px;
}

.brands__slider_swiper {
    margin-top: 19px;
    border: 1px solid #e0e0e0;
}
.brands__slider_swiper .slider_arrow { top:50%;}
.brands__slider_swiper .slick-prev { left:0px!important;}
.brands__slider_swiper .slick-next { right:0px!important;}
.brands__slide { width:100%;}


.brands .swiper { padding: 10px!important;}
.brands .swiper-slide {
    width: 200px !important;
    height: 200px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Стили для картинок */
.brands .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.header__search__result__content .scroll_wrap, .header__search__result__nav,
    .catalog__filter__list, .card__reviews__list, .header__cart__list { overflow-y: scroll; scrollbar-width: thin;  -webkit-appearance: none; }


.mySwiperIntro .slick-prev {
    left: 0px;
}
.mySwiperIntro .slick-next {
    left: 71px;
}
.mySwiperIntro .slick-arrow, .mySwiper2 .slick-arrow {
    position: absolute;
    z-index: 5;
    width: 71px;
    height: 71px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(255,255,255,.58);
    bottom: 57px;
    color: #2e3644;
}

.mySwiperCol  { height:720px;}
.mySwiperCol .swiper-slide { background-color: #333; padding: 0px!important; display: flex!important;}
.mySwiperCol img {
    height: 100%;
    width:auto!important;
    margin: auto;
    display: flex!important;
    overflow: hidden;
}

.slider_arrow { top: 30%;}
.mySwiper2 .slider_arrow { top: 50%!important;}
.mySwiperColThumb .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.6;
}
.mySwiperColThumb .swiper-slide-thumb-active {
    opacity: 1;
}
.mySwiperColThumb .swiper-slide, .mySwiper .swiper-slide { padding: 15px 15px 0px 0px; }

.thumbsslider  .swiper-slide { max-height: 150px;}

/* Миниатюры в слайдере карточки (в т.ч. product-preview modal):
   переопределяем глобальный .swiper-slide { width:100% }, чтобы превью не растягивалось в одну широкую картинку. */
.card__preview .thumbsslider .swiper-slide,
#product-preview-modal .thumbsslider .swiper-slide {
    width: 90px !important;
    height: auto !important;
    flex: 0 0 90px;
}

.card__preview .thumbsslider .swiper-slide img,
#product-preview-modal .thumbsslider .swiper-slide img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

.my-video-dimensions { width:100%; height:100%;}


.b-tab {
    display: none;
}
.b-tab.active {
    display: block;
}


/* UPDATE V7 */
/* UPDATE V7 */
/* UPDATE V7 */


.opacity50 { opacity: 0.25;}
.opacity100 { opacity: 1;}
#tags_params { padding: 12px 0px 0px 0px; margin: 0 auto; }
.page-title { text-align: center; width: 100%;}
.tag_param {   font-size: 14px; font-weight: 400;
    display: inline-block;   position: relative;
    border: 1px solid #aaa; padding: 4px; margin: 0 3px;
    border-radius: 16px;
}
.tag_text .flag-icon { width: 12px; line-height: initial; margin-right: 3px;}
.tag_param .tag_text { display: inline-flex; padding: 0px 22px 0px 6px; }
.tag_param .tag_delete { background: transparent;
    border: none;
    color: #aaa;
    cursor: pointer;
    height: 16px;
    max-height: 16px;
    max-width: 16px;
    padding: 1px 6px;
    pointer-events: auto;
    position: absolute;
    right: 10px;
    top: 5px;
    width: 16px; }

#collect_button, #good_button { cursor:pointer!important; }

.tid_count { color: grey; font-size: 12px;}
#codeuser { display: none;}
.header__catalog__submenu .row>div { height: inherit!important;}
#filter-sort input {   -webkit-user-select: none;     user-select: none;}

.cnt_block__select_non{border-left:1px solid #e1e1e1;width:initial;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;position:relative;z-index:1}
.cnt_block__select_non .current{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;cursor:pointer;width:100%;height:100%;padding:0 15px 0 15px}

.cart__itm__result .label, .cart__itm__result  .val {display: inline-block;}
.shortcard-buy:hover::before {
  bottom: -186px!important;
}
.catalog__filter__itm__body { padding-top: 6px!important; }
.catalog__filter__itm {
    margin-bottom: 16px!important;
}

.benefits__itm__header .h3 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.3125;
    font-weight: 700;
}
.one_item  .card__help__itm  {
    padding-right: 10px;
    padding-left: 20px;
    padding-bottom: 16px;
    padding-top: 15px;
}

.card__help__itm-delivery { background-image: url(../img/help-ico-callback.svg); }
.popup .form__field textarea { height: 104px!important;}
.popup  p { margin-bottom: 14px;}
.popup  a { text-align:right; color:#3e82d0!important; cursor: pointer;}

.about_page .slick-prev, .about_page .slick-next { top:0px!important;}

.goodTempStyle_0 { display: block; clear:both; }
.item-list .pager { padding-top: 40px; text-align: left!important;}
.item-list .pager li { padding: 0px!important; display: inline; margin: 0 6px 0 0!important; list-style: none; }
.item-list .pager .pager-current, .item-list .pager .pager-current span { font-weight: 700; }
.item-list .pager a { color: #000; }
.item-list .pager a:hover { color: #3e82d0; }
.item-list ul li {      font-size: 16px!important;   margin: 0 0 0.25em 0.5em!important; }
.item-list ul li.first { margin-left: 0px!important;}

.btn_video .video-js { margin:  0 auto!important;}
.btn-disabled { opacity: 0.3!important; background-color: #333!important; cursor:inherit!important;}

#popup-oneclick img { max-width: 100%; max-height: 150px;}
.card__price .old_price { display: inline-block!important; margin-right: 12px!important;}
.home_about .one_article { width: 100%;}
.card__order__cnt { margin-top: 28px!important;}
.card__price { display: block!important; text-align: right;}
.card__order__result_sum { display: block;}
.card__order__result_sum .val, .card__order__result_sum .label { float: right!important;}
.card__order__result_sum .label { margin-right: 10px!important;}
.list_collect_name { display: none;}
.upak_text { text-align: right;
    color: #979797;
    padding: 10px 0px 0px 78px;}

.filter-controls { padding-bottom: 20px;}
.filter-controls table td { vertical-align: top;}
.filter-controls label { color: #888; padding-right: 10px; padding: 6px 6px 6px 0px;}
button.control { margin: 2px;
    white-space: nowrap;
    padding: 2px 6px;
    font-size: 14px;
    line-height: 180% !important;
    font-weight: 400;
    border: 1px solid #2e3644;
    color: #2e3644 !important;
    display: inline-block;
    border-radius: 20px;
    min-width: 30px !important;
    text-align: center;
    min-height: 28px !important;
    cursor: pointer;}
button.control sup { color: #888; }
button.mixitup-control-active, button.mixitup-control-active sup
    { background-color: #2e3644 !important; color: #fff !important; }

    /* LISTNAV */

.ln-letters  {
    text-align: left;
    line-height: 24px;
    padding-bottom: 15px;
    text-align: left;

}

.ln-letters a, .ln-letters span {
    margin: 2px;
    padding: 2px;
    font-size: 14px;
    line-height: 180%!important;
    font-weight: 400;
    border: 1px solid #2e3644;
    color: #2e3644 !important;
    display: inline-block;
    border-radius: 20px;
    min-width: 30px!important;
    text-align: center;
    min-height: 28px!important;
    cursor: pointer;

}

.ln-letters a:hover, .ln-letters span:hover, .ln-letters span.active{
    background-color: #2e3644!important;
    color: #fff!important;
}
.ln-letters a.ln-disabled:hover, .ln-letters span.ln-disabled:hover  {
    background-color: #C1C1C1!important;
}


.ln-letters a.ln-selected, .ln-letters span.ln-selected  {
    border: 1px solid #87899A;
    box-shadow: 2px 2px 8px rgba(10, 10, 10, 0.32);
    color: #FFFFFF;
    /* border-radius: 16px; */

    margin: 0px 1px;
    background-color: #6593B7!important;
}
.ln-letters a.ln-disabled, .ln-letters span.ln-disabled  { color:#dedede; }
.ln-letter-count {
    text-align:center; font-size:0.8em; line-height:1; margin-bottom:3px; color:#336699;
    position: relative!important;
    top:0; left:0;
}

.ln-letters  .ln-disabled { display: none!important;}

.catalog__filter__cansel_btn { margin: 0 auto; color: #bf1e2e;}
#module-filter-wrapper .checkbox input {
    opacity: 1!important;
}

.header__catalog__submenu {padding-left: 419px!important;}
.header__catalog__menu > ul {
    width: 394px !important;
}
.header__location__address { margin-left: 21px!important;  min-width: 150px; }
.attention { color:#bf1e2e; font-weight: bold; display: block; width: 100%; clear: both; text-align: center; padding-left: 20px;}

.show-more-wrapper { display: inline-block; }
.show-more-btn{  background:#0000;border:0;color:#0095e5;cursor:pointer;font-size:.8em;margin:auto;transition:color .3s ease-in-out;white-space:nowrap}.show-more-btn:hover{color:red}
article  .show-more-btn { }

.breadcrumb { min-height: 20px;}
ul.breadcrumbs { color: #919191; width: 100%; padding-top: 17px;}
ul.breadcrumbs li { float:left; padding-right: 10px;}
ul.breadcrumbs li a { text-decoration: underline;}
ul.breadcrumbs li:first-child a { color: #919191;     font-size: 16px;     font-weight: 500; }

.factory_nav { margin-top: 0px!important;}
.catalog { padding-top: 40px;}

.tags { padding-bottom: 20px; width: 100%; clear: both; overflow: hidden; max-height: 94px;}
.tags li { float:left; }
.tags .tag { color: #333; white-space:nowrap; display: inline-block; padding-right: 18px; }
.hidden { display: none!important;}
.tags span {color: #595959; font-size: 13px;}


.left_block_collect { float:left; width: 33%;}
.left_block_collect .h3 { font-weight: 700; }

.description { padding-top: 20px;}
.description p { margin-bottom: 16px;}

.old_collect_sale {    background-image: url(/sites/default/files/images/sale.png);
    z-index: 9999;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    /*display: inline-block!important; */   
    }
    
.old_collect .card__params {    background-image: url(/sites/default/files/images/sale.png);
    z-index: 9999;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /*display: inline-block!important; */   
    }
.old_collect .card__order { opacity: 0.7;} 

.card__params li { border-bottom: 1px solid #c4c4c4; border-top: 0px!important; align-items: flex-start; } 

.page-title, h1.section-title, .mob_menu__catalog li > a  { font-weight: 500!important; }
h1.section-title {  display: inline-block!important; }

.collection section.card { padding-top:14px!important;}

.mob_menu__catalog__submenu li > a { font-weight: 300!important; }

#favourite-count, #cart-count { min-width: 23px!important; min-height: 23px!important; line-height: 23px!important; border-radius: 30px!important;}

.menu_all_items { font-weight: normal; }
.shortcard__tag-zakaz {
    background-color: #9c233a;
    color: #fff;
    padding: 0 10px;
}

.old_collect .card__preview, .old_collect .card__info,
.old_collect .shortcard__thumb, .old_collect .shortcard__header, .old_collect .shortcard__brand, 
.old_collect .shortcard__bot, .old_collect .shortcard__bot
{ opacity: 0.4!important;} 

.fabrika__card { margin-top: 10px;}
.mob_menu { z-index:150; }
#block-favourites .catalog_short { padding-bottom: 10px; padding-top: 10px;}
a.cart__itm__title { width: initial; }
.card { padding-top: 34px!important; }

article { text-align: justify; }
article button { color: #3e82d0; }

.min_order { margin: 30px 0px 0px 0px; color: #bf1e2e; text-align: center; display: none;}
#block_skidka { display: none;
    border-bottom: 1px solid #b4b4b4;
    padding-bottom: 21px;
    margin-bottom: 26px;
}
.order__check__result { border: 0px!important; padding-top: 0px!important; margin-top: 0px!important;}

#find_coupon { margin-top: 20px; display: none; line-height: 54px; cursor: pointer;}
.cart__itm__price { width: 190px;}

.return_foto  { width: 100%; }
.return_foto img {
    width: calc(33% - 20px);
    height: inherit!important;
    display: inline-block;
    margin: 10px;
    border-radius: 10px;
}
.node-type-article #filter { padding-bottom: 30px;}
.link_all { width: 100%; text-align: right; color: #3e82d0;}
.block_articles { width: 100%; padding-top: 30px;}
.one_article { width: 50%; float:left; font-size:14px; padding-bottom: 6px;}
.date_article {width: 150px;
    background-color: #2570a2;
    float: left;
    padding: 0 8px;
    margin-right:8px;
    text-align: center;
    color: #fff;}
.title_article { display: table-cell; padding-right: 20px; }
.article p { margin-bottom: 20px;}
.article table { margin-bottom: 20px; }
.article ul { margin-bottom: 20px; }
.article h2 { margin-top: 20px; }

.node-type-article  .date_article { width: inherit; margin: 4px 8px; float:right;}

.page_header { margin-bottom: 17px!important; }
.minus-item, .plus-item {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 39px;
    background-color: #e7e7e7;
    cursor: pointer;
    transition: color .3s ease,background .3s ease,border .3s ease;
    padding: 0;
    border: none;
    text-align: center;
    line-height: 35px;
}

.delete-item svg {     cursor: pointer;}
.delete-item {
    position: absolute;
    top: 16px;
    right: 19px;
    background-color: #c4c4c4;
    width: 23px;
    height: 23px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.delete-item { cursor: pointer;}
.cnt_block__measure {
    border-left: 1px solid #e1e1e1;
    width: auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.cnt_block__measure .current {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 0 15px 0 15px;
}

.header { z-index:100!important;}
.one-click-img { max-width: 150px; max-height: 150px; text-align: center;}
.one-click-block { padding-bottom: 30px;}
.shortcard__buy_click { cursor: pointer;}
.page_header::after {
    width: 100%; /*0px;*/
}
.addtocart { cursor: pointer;}
.slick-slider { z-index: 10;}
.relinks { padding-top:40px; }
.relinks .shortcard__price_block { position: inherit!important;}
.relinks .shortcard::before { bottom:0px!important;}
.relinks .shortcard__title a { border-bottom: 0px!important;}

.related_products{ z-index:4;}
.collect_products {
    position: relative;
    z-index: 3;
    padding-top: 54px;
}
.relinks { z-index:2;}

.collect_products .section-title, .relinks .section-title {
    text-align: center;
    margin-bottom: 38px;
}

/* Навигация «пред./след. товар в коллекции» под карточкой (node-product.tpl.php) */
.product-collect-nav {
    padding: 28px 0 40px;
    position: relative;
    z-index: 2;
}
.product-collect-nav__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-collect-nav__cell {
    min-width: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.product-collect-nav__cell--prev {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.product-collect-nav__cell--next {
    margin-left: auto;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.product-collect-nav__hint {
    width: 100%;
    margin: 0 0 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #888;
    text-align: left;
}
.product-collect-nav__cell--next .product-collect-nav__hint {
    text-align: right;
}
.product-collect-nav__link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    text-decoration: none;
    color: #222;
    border-bottom: 0;
    font-size: 14px;
    line-height: 1.35;
}
.product-collect-nav__link:hover,
.product-collect-nav__link:focus-visible {
    color: #3e82d0;
}
.product-collect-nav__ico {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
}
.product-collect-nav__txt {
    min-width: 0;
    text-align: inherit;
}
.header__catalog__menu > ul > li.razdel { padding-top: 15px;}
.header__catalog__menu > ul > li > a.podrazdel, .header__catalog__menu > ul > li > a.razdel  { padding: 0px 14px!important;}

.product_utp .benefits__itm { float:left!important;  width: 25%!important; margin-bottom: 0px!important;}
.product_utp .benefits { width: 100%!important;}
.product_utp .benefits p { margin-right: 40px;}
.product_utp { padding: 33px 0 33px!important; margin-top:50px; }



.link_top { display: contents; }
.pager_block ul .active {
  font-weight: 400;
  color: #000;
  pointer-events: initial!important;
}
.pager_block ul .current {   
  color: #c4c4c4;
  pointer-events: none;
}

.mode_collect_count, .mode_tovar_count { display: contents;}
.shortcard__params .label {color: #444242;} 
.page_header__note {
  font-size: 30px;
  margin-left: 10px;
  font-weight: 100;
}
.new_toggler__itm {
    color: #848484;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
    -webkit-border-radius: 21px;
    border-radius: 21px;

}
.new_toggler__itm.active {
    background-color: #3e82d0;
    color: #fff;
}

.radio input[type="radio"], .radio input[type="radio"] + i {
    position: absolute;
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    accent-color: #bf1e2e;
}
.radio input[type="radio"]:checked + i::after {
    opacity: 1;
}
.radio input[type="radio"] + i::after
{
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.radio input[type="radio"] + i::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background-color: #bf1e2e;
  opacity: 0;
      border-radius: 32px;

}

.radio {
    cursor: pointer;
    padding-left: 32px;
    position: relative;
}

.color_block { border:1px #aaa solid;}


.shortcard__price_block { position: absolute!important; bottom: 0px;}

.factory_nav { z-index: 50!important;}
.factory_nav__alfabet > li > a,
.factory_nav__alfabet > li > span {
  width: initial !important;
  min-width: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.factory_nav__title .factory_nav__title-link {
  cursor: pointer;
}

.shortcard__title { margin-bottom: initial!important;}
.shortcard__title a
{
    font-size: 18px;
    line-height: 1.55556;
    letter-spacing: .02em;
}
.collect .shortcard__title a {     text-transform: uppercase; }

/* Как у .shortcard__title a — вид ссылки; превью по клику, не <a> */
.shortcard__title .product-preview-trigger {
    font-size: 18px;
    line-height: 1.55556;
    letter-spacing: .02em;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.collect .shortcard__title .product-preview-trigger {
    text-transform: uppercase;
}
.shortcard__title .product-preview-trigger:hover,
.shortcard__title .product-preview-trigger:focus-visible {
    color: #3e82d0;
    border-bottom-color: #3e82d0;
}

.catalog_short__list { margin-bottom: 32px; width: 100%;}
.catalog_short-example .catalog_short__list { margin-top: 10px;}


@media (max-width: 1535px)
{
    .header__location { display: none; }
    .card .mySwiper2 { width:inherit!important;}
}

/* Выпадающее меню "Сервисы" в header__nav */
.header__nav__services-item {
  position: relative;
}
.header__nav__services-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header__nav__services-trigger:hover {
  opacity: 0.85;
}
.header__nav__services-chevron {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.2s ease;
}
.header__nav__services-chevron svg {
  display: block;
}
.header__nav__services-item.open .header__nav__services-chevron {
  transform: rotate(180deg);
}
.header__nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin-top: 4px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 100;
}
.header__nav__dropdown[hidden] {
  display: none !important;
}
.header__nav__dropdown span,
.header__nav__dropdown a {
  display: block;
  padding: 8px 16px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.header__nav__dropdown span:hover,
.header__nav__dropdown a:hover {
  background: #f5f5f5;
}
.header__nav__dropdown a:hover {
  color: black !important;
}
.header__nav__dropdown span {
  cursor: pointer;
}

.header__catalog.active .header__catalog__content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 101;
}

.header__catalog__menu > ul > li > a { padding: 0px!important;}

.popup form {padding-top:16px;}

.card__params-col_2 ul { columns: 3!important; column-gap: 60px;}
.card__params-col_2 .delivery__price ul { columns: 2!important; column-gap: 30px;}

.typepage-collection section.card { padding-bottom: 0px!important;}
.typepage-collection #catalog_goods { padding-top: 0px!important;}

.card__manage_btn { align-self: center;}

/* Модальное окно предпросмотра товара (коллекция) */

.product-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}
.product-preview-modal.is-open {
  display: flex;
}
.product-preview-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.product-preview-modal__wrap {
  position: relative;
  width: 100%;
  max-width: 96vw;
  height: 92vh;
  max-height: 92vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
/* Кнопка закрытия превью — в стиле остальных модалок (.modal-close-button) */
.product-preview-modal__wrap .modal-close-button.product-preview-modal__close {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #3e82d0;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}
.product-preview-modal__wrap .modal-close-button.product-preview-modal__close:hover {
  transform: rotate(15deg);
}
.product-preview-modal__content {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.product-preview-modal__content .node-product,
.product-preview-modal__content .card,
.product-preview-modal__content section.card {
  margin: 0;
  max-width: none;
}
/* Лоадер превью: тот же спиннер, что у поиска (.search-loading), по центру экрана + подпись */
.product-preview-modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 2rem;
  box-sizing: border-box;
}
.product-preview-modal__loading .search-loading {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-bottom: 1rem;
  animation: spin-product-preview 1s linear infinite;
}
@keyframes spin-product-preview {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.product-preview-modal__loading-text {
  margin: 0;
  color: #666;
  font-size: 1rem;
}
.product-preview-modal__error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 2rem;
  text-align: center;
  color: #c00;
}
/* Триггер предпросмотра — без ссылки, кликабельный элемент */
.product-preview-trigger {
  cursor: pointer;
}
.shortcard__thumb[data-product-preview] {
  cursor: pointer;
}

/* Формы Fancybox (Заказать звонок, Уточнить цену, Заказ в 1 клик) поверх модалки превью товара */
.fancybox-container,
.fancybox-bg {
  z-index: 10100 !important;
}

#product-preview-content { padding-top:30px;}
/* Собственный свод описания в превью: 3 строки по умолчанию (без JS), кнопка «читать полностью» добавляется скриптом */
#product-preview-content section.description > main > article {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#product-preview-content section.description .description-read-more-wrap {
  margin-top: 0.5em;
}
#product-preview-content section.description .description-read-more-btn {
  background: transparent;
  border: 0;
  color: #0095e5;
  cursor: pointer;
  font-size: 0.95em;
  padding: 0;
  transition: color 0.2s;
}
#product-preview-content section.description .description-read-more-btn:hover {
  color: #c00;
}
/* Кнопка «Меньше» видна только в раскрытом состоянии */
#product-preview-content section.description:not(.description-expander-ready) .description-read-more-btn-less {
  display: none;
}
#product-preview-content section.description.description-expander-ready .description-read-more-btn-more {
  display: none;
}
/* После клика «читать полностью»: раскрыть текст */
#product-preview-content section.description.description-expander-ready > main > article {
  display: block !important;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Страница коллекции (node-descr_term): свой экспандер для article — 3 строки, «Читать полностью» / «Меньше» */
.collection-description-preview > article {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.collection-description-preview .description-read-more-wrap {
  margin-top: 0.5em;
}
.collection-description-preview .description-read-more-btn {
  background: transparent;
  border: 0;
  color: #0095e5;
  cursor: pointer;
  font-size: 0.95em;
  padding: 0;
  transition: color 0.2s;
}
.collection-description-preview .description-read-more-btn:hover {
  color: #c00;
}
.collection-description-preview:not(.description-expander-ready) .description-read-more-btn-less {
  display: none;
}
.collection-description-preview.description-expander-ready .description-read-more-btn-more {
  display: none;
}
.collection-description-preview.description-expander-ready > article {
  display: block !important;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset !important;
  max-height: none !important;
  overflow: visible !important;
}
/* Типографика editorial-описания коллекции: raw HTML из descr_term (h2/p/ul/li)
   — тема глобально сбрасывает отступы и маркеры списков, восстанавливаем их тут. */
.collection-description-preview article > *:first-child {
  margin-top: 0;
}
.collection-description-preview article p {
  margin: 0 0 1em;
  line-height: 1.6;
}
.collection-description-preview article h2 {
  margin: 1.5em 0 0.5em;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.3;
}
.collection-description-preview article ul {
  list-style: disc;
  margin: 0 0 1em;
  padding-left: 1.5em;
}
.collection-description-preview article ul li {
  margin: 0.35em 0;
  line-height: 1.55;
  list-style: inherit;
}
.collection-description-preview article a {
  color: #0095e5;
  text-decoration: underline;
}
.collection-description-preview article a:hover {
  color: #c00;
}
/* Структурная обрезка описаний с заголовками: в свёрнутом виде показываем только
   контент ДО первого h2/h3 (intro), чтобы заголовок не торчал крупным шрифтом.
   Разворачивается кнопкой «Читать полностью» (добавляет .description-expander-ready). */
.collection-description-preview.description-structural > article {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.collection-description-preview.description-structural:not(.description-expander-ready) > article h2,
.collection-description-preview.description-structural:not(.description-expander-ready) > article h3,
.collection-description-preview.description-structural:not(.description-expander-ready) > article h2 ~ *,
.collection-description-preview.description-structural:not(.description-expander-ready) > article h3 ~ * {
  display: none;
}

/* Страница карточки товара (node-product): свой экспандер для section.description — 3 строки, «Читать полностью» / «Меньше» */
.product-page-description > main > article {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.product-page-description .description-read-more-wrap {
  margin-top: 0.5em;
}
.product-page-description .description-read-more-btn {
  background: transparent;
  border: 0;
  color: #0095e5;
  cursor: pointer;
  font-size: 0.95em;
  padding: 0;
  transition: color 0.2s;
}
.product-page-description .description-read-more-btn:hover {
  color: #c00;
}
.product-page-description:not(.description-expander-ready) .description-read-more-btn-less {
  display: none;
}
.product-page-description.description-expander-ready .description-read-more-btn-more {
  display: none;
}
.product-page-description.description-expander-ready > main > article {
  display: block !important;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Только в модальном превью карточки: скрыть кнопки, подпись «В избранное» */
.product-preview-modal__content .card__order__buy_click,
.product-preview-modal__content .card__help__itm-video,
.product-preview-modal__content .card__help__itm-callback {
  display: none !important;
}
.product-preview-modal__content .btn-liked::before {
  content: "В избранное ";
  font-size: inherit;
}
.product-preview-content .card__params { margin-top:0px;}
/* Кнопка «В раскладку» в миниатюре товара — в стиле кнопки «В избранное». */
.shortcard__manage_btn.btn-to-planner{cursor:pointer;background:none;border:0;padding:0;line-height:0;color:inherit;}
.shortcard__manage_btn.btn-to-planner .svg-ico{margin-right:0;}
.shortcard__manage_btn.btn-to-planner.active,
.shortcard__manage_btn.btn-to-planner:hover{color:#c9963f;}
