.ruby-menu-mega a:hover {color: white !important;}
.ruby-col-3 ul li a:hover {color: #f25e18 !important;}
.back-ring-button {
    height: 40px !important; 
    font-size: 19px !important; 
    line-height: 35px !important; 
    padding: 2px 20px !important; 
}
.back-ring-button:hover {
  color: white !important;
}

.mg-back, .rss {color: #f25e18 !important;}

.mg-news-main-desc {
    max-height: 125px !important; 
}
.mg-main-news-item {
    background: #ffffff !important;
    border-radius: 20px;
    border: 1px solid #d2d2d2;
    padding: 10px;
    box-shadow: inset 4px 4px 7px rgb(33 33 33 / 12%);
}

.tags a {color: gray !important;}
.tags a:hover {color: #f25e18 !important}
.managerhelpbutton {margin-left: 30px;} 


/** actio buttons **/
/* Общие стили для сетки */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 20px;
        }

        /* Стили для кликабельных плиток */
        .category-item {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: left;
            position: relative;
            min-height: 50px;
            text-decoration: none;
            color: inherit;
        }

        .category-item div {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: calc(100% - 145px);
            margin-top: auto;
            z-index: 2;
            position: relative;
        }

        .category-item:hover div {
            color: white;
            transform: scale(1.1);
        }

        /* Стили для изображений */
        .category-item img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            margin-left: 15px;
            transition: transform 0.6s ease;
            z-index: 2;
            position: relative;
        }

        .category-item:hover img {
            transform: scale(1.5);
            z-index: 9999;
        }

        /* Эффект градиента при наведении */
        .category-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, #f25e18, crimson, orange);
            background-size: 200% 100%;
            background-position: 100% 0;
            transition: background-position 0.5s, opacity 0.5s;
            opacity: 0;
            z-index: 1;
            border-radius: 8px;
        }

        .category-item:hover::before {
            opacity: 0.8;
            background-position: 0 0;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-item {
                flex-direction: column;
                align-items: flex-start;
                width: 135px;
            }

            .category-item img {
                margin-left: 0;
                margin-bottom: 10px;
                order: -1;
            }

            .category-item div {
                overflow: visible;
            }
        }

        h2 {
            padding: 0 20px;
        }




/** dp ikons **/

/* Скрываем блок на мобильных устройствах */
@media (max-width: 768px) {
  .pd-ikons {
    display: none; /* Полностью скрываем блок */
  }
  .product__upsell {
    display: none; /* Полностью скрываем блок */
  }
}

/* Эффект черно-белого изображения */
.grayscale {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.icon:hover .grayscale {
  filter: grayscale(0%);
}

/* Подсказки */
.icon {
  position: relative;
  cursor: pointer;
}

.icon[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.icon:hover[data-tooltip]::after {
  opacity: 1;
  visibility: visible;
}

/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

/** END dp ikons **/














.footer__page-item a:hover {color: #f25e18 !important;}

.sub-categories-a {
    padding: 0;
    margin: 0 -1.5%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.sub-categories-a li {
    position: relative; /* Для правильного позиционирования дочерних элементов */
    display: inline-block;
    vertical-align: top;
    width: 23%; /* Можно изменить ширину по необходимости */
    margin: 0 0 1.5% 1.5%;
    overflow: hidden; /* Убираем выход за пределы блока */
    border: 2px solid #F6F6F6;
    transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
    cursor: pointer;
  border-radius: 20px;
}

.sub-categories-a li:hover {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    z-index: 1;
}

/* Стили для изображения */
.sub-categories-a li a.cat-image {
    display: block;
    width: 100%;
    height: 150px; /* Фиксированная высота для изображения */
    overflow: hidden;
    position: relative;
}

.sub-categories-a li img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение заполняет контейнер, сохраняя пропорции */
    position: absolute;
    top: 0;
    left: 0;
}

/* Белая плашка с названием поверх изображения */
.sub-categories-a li .sub-cat-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8); /* Полупрозрачный фон */
    color: #000;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    display: block;
}

.sub-categories-a li .sub-cat-name:hover {
    text-decoration: underline;
}



@media (max-width : 420px) {
  .managerhelpbutton {margin-left: 0 !important; zoom:0.9;} 
  #modal-window {
	zoom: 0.5;
	top: 60% !important;
	left: 35% !important;
	}
  .fire-decor {display: none;}
}
@media (max-width : 520px) {
  .managerhelpbutton {margin-left: 0 !important; zoom:0.9;} 
  #modal-window {
	zoom: 0.5;
	top: 60% !important;
	left: 35% !important;
	}
  .fire-decor {display: none;}
}
@media (max-width : 620px) {
  .managerhelpbutton {margin-left: 0 !important; zoom:0.9;} 
  #modal-window {
	zoom: 0.5;
	top: 60% !important;
	left: 35% !important;
	}
  .fire-decor {display: none;}
}
@media (max-width : 720px) {
  .managerhelpbutton {margin-left: 0 !important; zoom:0.9;} 
  #modal-window {
	zoom: 0.5;
	top: 76% !important;
	left: 35% !important;
	}
  .fire-decor {display: none;}
}





  .optbannerd {display: block;}
  .optbannerm {display: none;}
@media (max-width : 425px) {
  .optbannerd {display: none;}
  .optbannerm {display: block;}
}
.sub-categories li:hover {
        border-color: #fff !important;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1) !important;
        -webkit-transform: translateY(-1px) !important;
        transform: translateY(-1px) !important;
        background-color: #fff !important;
        z-index: 1 !important;
}

form .qform-field__submit.malachite .qform-field__submit__input, form.qform form.qform.qform-theme-black .qform-field__submit.malachite .qform-field__submit__input {
    background-color: #f25e1a;
}
.product__old-price {
    font-weight: 400;
    color: #aaa;
    font-size: 19px !important;
}
html {
  scroll-behavior: Instant;
}
.c-cart__small--text .countsht {
    color: #fff !important;
}
.check-all {display: none !important;
}
.bottombutton {
        background: var(--main-color);
    min-width: 170px;
    display: inline-block;
    font-size: 15px;
    color: white;
    font-weight: 500;
    margin-left: 30px;
    margin-top: 15px;
    padding: 8px 25px;
    border: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 20px;
    line-height: 25px;
    height: 40px;
}
.bottombutton:hover {
  color: white;
}

.whitecolor {
  color: white !important;
  margin: 0 30px;
  text-transform: uppercase;
}
.whitecart .clearfix .footer-panel__button-wrap .footer-panel__button {
  color: white !important;
}
.whitecart .clearfix .footer-panel__button-wrap .footer-panel__button:hover {
  color: #f25e18 !important
}
  .lowercart {
	margin-left:15px;
	background: none !important;
	border-bottom: none !important;
	color: white !important;
}
.lowercart .c-cart__small--icon {display:none !important;}
.lowercart .mg-desktop-cart .c-cart__small {color:white !important;}
.lowercart .mg-desktop-cart .c-cart__small .pricesht {font-size: 25px !important;}
.bottomlink a:hover {color: #f25e18 !important; border-bottom:none;}
.bottomlink a {border-bottom: 1px solid white;}

.timlabel {
    cursor: pointer;
    padding: 5px 0;
    color: #f25e18 !important;
    font-weight: bold;
    font-size: 15.6px;
    text-transform: uppercase;
}
.rusomaptitle {
    text-transform: uppercase;
    text-decoration: none;
    color: #f25e18;
    font-size: larger !important;
}
.black {
    color: #212529;
}
.dilerformbutton {
    background: #f25e18;
    display: inline-block;
    font-size: 15px;
    color: white;
    padding: 8px 30px;
    border-radius: 20px;
    transition: color .3s;
}
/* Оформление панели */
#side-checkbox {
    display: none;
}
.side-panel {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: -360px;
    background: #f9f9f9;
    transition: all 0.5s;   
    width: 320px;
    height: 100vh;
    box-shadow: 10px 0 20px rgba(0,0,0,0.4);
    color: #FFF;
    padding: 40px 20px;
}
.side-title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #284153;
}
/* Оформление кнопки на странице */
.side-button-1-wr {
    text-align: center; /* Контейнер для кнопки, чтобы было удобнее ее разместить */
}
.side-button-1 {
    display: inline-block;
}
.side-button-1 .side-b {
    margin: 10px;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    line-height: 20px;
    padding: 12px 30px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase; 
    font-family: 'Roboto', Тahoma, sans-serif;
    background: #337AB7;
    cursor: pointer; 
    border: 2px solid #BFE2FF;
}
.side-button-1 .side-b:hover,
.side-button-1 .side-b:active,
.side-button-1 .side-b:focus {
    color: #FFF;
}
.side-button-1 .side-b:after,
.side-button-1 .side-b:before {
    position: absolute;
    height: 4px;
    left: 50%;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.side-button-1 .side-open:after,
.side-button-1 .side-open:before {
    background: green;
}
.side-button-1 .side-close:after,
.side-button-1 .side-close:before {
    background: red;
}
.side-button-1 .side-b:before {
    top: -6px;
}
.side-button-1 .side-b:hover:after,
.side-button-1 .side-b:hover:before {
    width: 100%;
    left: 0;
}
/* Переключатели кнопки 1 */
.side-button-1 .side-close {
    display: none;
}
#side-checkbox:checked + .side-panel + .side-button-1-wr .side-button-1 .side-open {
    display: none;
}
#side-checkbox:checked + .side-panel + .side-button-1-wr .side-button-1 .side-close {
    display: block;
}
#side-checkbox:checked + .side-panel {
    left: 0;
}
/* Оформление кнопки на панеле */
.side-button-2 {
    font-size: 30px;
    border-radius: 20px;
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    cursor: pointer;
    transform: rotate(45deg);
    color: #284153;    
    transition: all 280ms ease-in-out;    
}
.side-button-2:hover {
    transform: rotate(45deg) scale(1.1);    
    color: #FFF;
}



.rustcolor {
	color: #f25e18 !important;
	font-weight: 600;
 }
.smallfont {
	font-size: 1.25rem !important
 }
.a-images {background: white;}
.addToCart {
    display: inline-block !important;
    text-align: center;
    cursor: pointer;
    outline: none;
    height: 33px;
    font-size: 13px;
    line-height: 29px;
    color: #fff !important;
    text-decoration: none;
    padding: 0 18px !important;
    border: none !important;
    background: #f25e18 !important;
    -webkit-box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%) !important;
    box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%) !important;
    border-radius: 3px !important;
    -webkit-transition: background 0.2s ease-in-out !important;
    -o-transition: background 0.2s ease-in-out !important;
    transition: background 0.2s ease-in-out !important;
    font-weight: normal !important;
    text-transform: none !important;
    text-shadow: none !important;
}
/*fixed bar*/
.bar-height{
    height: 58px;
}

.fixed-bar{
    position: fixed;
    z-index: 51;
    bottom: -1px;
    left: 0;
    right: 0;
    background: #252F3F;
    padding: 10px 0 0 0;
  height: 80px;
}

.fixed-bar .mg-layer,
.fixed-bar .small-cart,
.fixed-bar .mg-fake-cart{
    display: none!important;
}

.fixed-bar .mg-contacts-block{
    float: left;
    color: #fff;
    font-family: 'Lato-Bold', sans-serif;
    font-size: 24px;
}

.fixed-bar .wrapper-back-ring{
    float: left;
    margin: 0 20px 0 0;
}

.fixed-bar .bar-left{
    float: left;
    margin: 3px 0 0;
}

.fixed-bar .bar-right{
    float: right;
}

.fixed-bar .mg-desktop-cart{
    position: static;
    float: right;
    margin: 5px 0 0 0;
}

.fixed-bar .mg-desktop-cart .count-text{
    display: none;
}

.fixed-bar .mg-desktop-cart .title{
    color: #ffffff;
    font-size: 14px;
    float: left;
    margin: 5px 15px 0 0;
}

.fixed-bar .mg-desktop-cart .small-cart-icon{
    width: 18px;
    height: 18px;
    background: url("../images/cart-icon.png") no-repeat;
    background-size: 18px 18px;
    top: 5px;
    left: 0;
}

.fixed-bar .mg-product-to-compare{
    padding: 6px 20px 6px 0;
    border-right: 1px solid #424A55;
    margin: 0 20px 0 0;
}

.fixed-bar .mg-product-to-compare a{
    border: none;
    padding: 7px 45px 6px 0;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    line-height: 14px;
}

.fixed-bar .mg-desktop-cart .title:hover,
.fixed-bar .mg-product-to-compare a:hover{
    text-decoration: underline;
}

.fixed-bar .mg-product-to-compare .compare-icon{
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px 0 0;
}

.fixed-bar .mg-desktop-cart .countsht {
    display: none !important;
    color: #fff;
    width: 38px;
    height: 38px;
    font-family: 'Lato-Bold', sans-serif;
    font-size: 14px;
    line-height: 30px;
    /* background: #2196f3; */
    border-radius: 14px;
    top: 16px;
    right: 0px;
    text-align: center;
}


.fixed-bar .mg-desktop-cart .countsht{
    display: inline-block;
}

.fixed-bar .mg-desktop-cart .cart-inner{
    padding: 0 0 0 28px;
    border-radius: 0;
    overflow: hidden;
}

.fixed-bar .mg-desktop-cart .cart-inner > a{
    overflow: hidden;
    color: #fff;
    float: left;
}

.fixed-bar .mg-desktop-cart .cart-list li .price-text{
    color: #5e646c;
}

.fixed-bar .mg-desktop-cart .cart-list li.cart-qty{
    padding: 5px 15px;
    font-size: 14px;
    font-family: 'Lato-Bold', sans-serif;
}

.fixed-bar .mg-desktop-cart .cart-list li{
    font-size: 14px;
    float: left;
    margin: 0;
}

.fixed-bar .mg-desktop-cart .cart-list{
    float: left;
}

.fixed-bar .mg-desktop-cart .cart{
    padding: 0;
}

.cathead {
  font-size: 20px;
  font-weight: 600;
}
.b-block-wrap {
    background: #fff;
    border: 1px solid #f1f1f1;
    padding: 10px 20px;
  margin: 25px 0;
  letter-spacing: 1px;
    line-height: 25px;
}
.gray {
      font-size: 12px;
    color: gray;
    line-height: 13px;
  text-transform: none !important;
}
.sidephone {
  font-size: 20px;
    font-weight: 600;
}

.sidehead {
  font-size: 25px;
    line-height: 50px;
}
.bottomphone {
    font-size: 24px;
    font-weight: 500;
    color: white;
}
.bottomlink {
    font-size: 18px;
    font-weight: 500;
    color: white;
}




.wrapper-field.filter-buttons .filter-btn {
    color: white !important;
    /* margin-left: 85px; */
    font-size: 18px;
    font-weight: 600;
    padding: 5px 20px;
    /* width: 63%;*/
}
div[data-formid="form_F2r4N0kpBfm_YTyREr2Zwnjzy4kEtWEj"] form.qform .qform-field__submit:not(.qform-submit-disabled) .submit-box input {
	background-color: #f25e18 !important;
}
.prodsub {
    font-weight: 600;
    line-height: 1.1875;
    padding-left: 20px !important;
    font-size: 32px;
    color: #f25e18;
    margin-top: 60px !important;
    margin-bottom: 20px !important;
    border-bottom-width: 1px !important;
    padding-bottom: 17px !important;
    border-bottom-color: #eee !important;
    border-bottom-style: solid !important;
}

.prodsubt {
    font-weight: 600;
    line-height: 1.1875;
    padding-left: 20px !important;
    font-size: 25px;
    color: #f25e18;
    margin-top: 60px !important;
    margin-bottom: 20px !important;
    border-bottom-width: 1px !important;
    padding-bottom: 17px !important;
    border-bottom-color: #eee !important;
    border-bottom-style: solid !important;
}

#countdown {
  background-color: #333;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  padding: 1em;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  box-sizing: border-box;
}

#countdown:before {
  content: "Осталось: ";
  font-size: 0.7em;
  letter-spacing: 0.1em;
  margin-right: 0.5em;
}

#countdown:after {
  content: "";
  display: block;
  height: 0.2em;
  background-color: #fff;
  margin-top: 1em;
  width: 100%;
}


/*---изменение цвета кнопки Нашли дешевле*/
div[data-formid] div .btn_modal-box.qform-default.qform-radius-5px .btn-modal {
    color: #ffffff !important;
}


.indexbutton5 {
	display: inline-block; 
    font-size: 15px; 
    color: var(--button-color); 
     background: var(--main-color);
     font-weight: 700;
    padding: 8px 25px;
    border: none;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    border-radius: 20px;
}

/*---Удаление блоков*/
@media (max-width : 320px) {
  .hide320 {display: none;} /*---скрыть блок с мобильной версии до 320 пикселей*/
  div[data-formid] div .form-overlay .form-modal {
    margin: 10% auto !important;
    width: 80% !important;
	}

  .mdeliverybanner {
    background-image: url(https://tim-com.ru/mg-templates/del-tim-mobile-h280.png) !important;
        padding-left: 25%;
	}
  .mdeliverybannersubtitle {
    color: #ffffff;
    text-align: end !important;
    font-size: 14px !important;
    font-weight: 500;
	}
  .mdeliverybannercontent {
    width: 300px;
    text-align: end;
    margin-top: 10px;
    margin-left: -15% !important;
    margin-right: 0 !important;
	}
}
@media (max-width : 360px) {
.mdeliverybanner {
    background-image: url(https://tim-com.ru/mg-templates/del-tim-mobile-h280.png) !important;
      padding-left: 25%;
	}
  .mdeliverybannersubtitle {
    color: #ffffff;
    text-align: end !important;
    font-size: 14px !important;
    font-weight: 500;
	}
  .mdeliverybannercontent {
    width: 300px;
    text-align: end;
    margin-top: 10px;
    margin-left: -15% !important;
    margin-right: 0 !important;
	}
}


@media (max-width : 768px) {
  .hide768 {display: none;} /*---скрыть блок с мобильной версии до 768 пикселей*/
  div[data-formid] div .form-overlay .form-modal {
    margin: 10% auto !important;
    width: 80% !important;
	}
}
@media (min-width : 770px) {
  .hide770 {display: none;} /*---скрыть блок с десктоп версии от 770 пикселей*/
  .last-crumb {display: none;} /*---скрыть последний пункт хлебных крошек с десктоп версии от 770 пикселей*/
  div[data-formid] div .btn_modal-box.qform-default.qform-radius-5px .btn-modal {
    color: #ffffff !important;
	}
  /*.is_qform {margin: 10px 40% !important;} ---поправить расположение блока формы vip в десктоп версии от 770 пикселей*/
}
  
/*--/Удаление блоков*/

.alreadyInCart {
	background: #f25e1885 !important;
}
/** start стили баннера про доставку*/
.deliverybanner {
    background-image: url(https://tim-com.ru/mg-templates/lower-delivery-banner2.png);
    background-color: white;
    border: 3px solid #f25e18;
    border-left: none;
    background-repeat: no-repeat;
    background-position: right;
    position: fixed;
    height: 145px;
    width: 82%;
    bottom: 0;
    left: 0;
    padding: 5px;
    z-index: 999;
}
.deliverybannertitle {
    color: #f25e18;
    text-align: end;
    font-size: 21px;
    font-weight: 900;
    text-shadow: 1px 2px 1px black;
    margin-right: 75px;
}
.deliverybannersubtitle {
    color: #f25e18;
    text-align: end;
    font-size: 17px;
    font-weight: 900;
    margin-right: 165px;
}
.deliverybannercontent {
    text-align: end;
    margin-right: 161px;
}
.deliverybannersub {
    font-size: 11px;
    text-align: right;
    margin-right: 153px;
    color: #f25e18;
    text-shadow: 0 0 black;
}
.delivery-img {
    background-image: url(https://tim-com.ru/mg-templates/lower-delivery-man.png);
    position: absolute;
    bottom: 0;
    height: 220px;
    width: 270px;
    margin-left: 20%;
}

.mdeliverybanner {
    background-image: url(https://tim-com.ru/mg-templates/delivery-tim-mobile.png);
    background-color: white;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
 	 margin-top: 15px;
 	 margin-bottom: 15px;
}
.mdeliverybannertitle {
    color: #f25e18;
    text-align: end;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 1px 2px 1px black;
  margin-right: 5px;
}
.mdeliverybannersubtitle {
    color: #ffffff;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}
.mdeliverybannercontent {
    width: 300px;
    text-align: end;
    margin-top: 10px;
    margin-left: 15%;
}
.mdeliverybannersub {
    font-size: 11px;
    text-align: right;
    margin-top: 20px;
    color: #f25e18;
    text-shadow: 0 0 black;
}
/** END стили баннера про доставку*/
.winclose a {
    border-bottom: 1px solid #f25e18;
    color: #f25e18;
    padding: 5px 10px;
    margin-left: 50px;
    text-align: right;
}

.winclose {
    margin: 10px;
 	text-align: right;
}
.conftitle {
    font-size: 2.5rem;
	font-weight: 500;
    line-height: 1.2;
	color: #212529;
}
.menuslogan {
    text-align: center;
    font-size: 12px;
    margin: 5px 5px;
}
.menucontact {
	text-align: right;
      margin-right: 20px;
}
.menu-list li {
	
}
.menu-list a {
	
}

.menu-title {
    font-size: 14px;
    font-weight: 700;
    color: #f25e18;
}
.menulist-item {
    margin-left: 10px;
    font-size: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 5px;
}

.menulist-item a {
    color: black;
}


.catalog-title {
	
}
.catalog-title:before {
	width: 44px;
	height: 44px;
	background: #f25e18;
}
.cat-desc {
	margin-bottom: 40px;
}

/* Стили для блоков перелинковки в категориях */
.doph3 {
    color: #f25e18;
    text-align: center;
    margin-bottom: 10px !important;
    text-decoration: underline;
}
.up-categories {
  	margin-bottom: 0px !important;
}
.up-categories li {
    display: inline-block;
    vertical-align: top;
  	min-width: 50px;
    border: 2px solid #F6F6F6;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
    padding: 10px;
    margin: 0 0 0.5% 0;
}

.up-categories li:hover {
    border-color: #f25e18;
}

.up-categories li a {
    word-wrap: break-word;
    color: #000;
    text-decoration: none;
    display: block;
}

.up-categories li a:hover {
    text-decoration: underline;
  	color: #f25e18;
}

.up-categories li a {
    font-size: 13px;
    text-align: center;
}

.doph3 {
    color: #f25e18;
    text-align: center;
    margin-bottom: 10px !important;
    text-decoration: underline;
}
.dop-categories li {
    display: inline-block;
    vertical-align: top;
    width: 45%;
  	min-width: 100px;
    border: 2px solid #F6F6F6;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
    padding: 10px;
    margin: 0 0 1.5% 1.5%;
}
.dc-ultra100 {
  width: 98% !important;
}
.dop-categories li:hover {
    border-color: #f25e18;
}

.dop-categories li a {
    word-wrap: break-word;
    color: #000;
    text-decoration: none;
    display: block;
}

.dop-categories li a:hover {
    text-decoration: underline;
  	color: #f25e18;
}

.dop-categories li a {
    font-size: 13px;
    text-align: center;
}

/* END */

.bth-h-filter {
    background-color: #eff2f6;
    border: 2px solid #eff2f6;
	-webkit-appearance: none;
    appearance: none;
    background: 0 0;
    border: none;
    outline: none;
    border-radius: 4px;
    color: #1c1e21;
    margin: 0;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.h-filters-wrapper {
    position: relative;
    margin: 24px -16px 0;
    padding: 12px 16px;
    z-index: 1;
    box-shadow: 0 8px 32px #00000026;
}
.h-filters-inner {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 0 -4px;
}
.h-filters-inner-category {
    flex-grow: 2;
}
.h-filters-inner-filter {
    flex-grow: 2;
}


.hs-category {
	box-shadow: 0 0px 32px 10px #00000026;
  margin-bottom: 30px;
  padding: 5px 3%;
  width: 100%;
}

/*Component X-spoiler*/
.xspolshow,
.xspolhide {
    border-bottom: 1px dashed;
    cursor: pointer;
    padding: 0 25px 5px 25px;
}

.xspolhide,
.xspolcontent {
    display: none;
    margin: 25px 0 10px 10px;
}

.xspoiler_controler {
    display: none;
}

.xspoiler_controler:checked + label .xspolshow {
    display: none;
}

.xspoiler_controler:checked + label .xspolhide {
    display: inline;
}
.xspoiler_controler:checked ~ .xspolcontent {
    display: block;
}
/*End X-spoiler*/

.nav-controls, .hs-navigation {display: none;} 

.offcanvasmenu .c-menu {
    width: 120px;
    height: 40px;
}
.offcanvasmenu .c-menu .c-button {
    width: 125px;
    height: 40px;
}

.offcanvasmenu .c-menu .c-button .t-hamburger {display: block; color: white; margin-left: 10px;}
.t-hamburger {display: none;}



/*Component spoiler*/
.spolshow, .offcanvasmenu {
    color: #fff !important;
    display: inline-block;
    background-color: #f25e18 !important;
    width: 45%;
  	height: 40px;
    margin: 10px 2px;
    min-width: 140px;
    vertical-align: middle;
    font-size: 14px !important;
    cursor: pointer;
    line-height: 2em;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 10px 0;
    box-shadow: 1px 2px 1px #231f2063;
    padding: 4px 8px;
    text-align: center;
    text-shadow: 0 1px 1px rgb(255 255 255 / 75%);
    border: 1px solid #ccc;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    border-bottom-color: #b3b3b3;
}
.spolhide {
    color: black;
    background-color: #8080802b !important;
    vertical-align: middle;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.3em;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 10px 0;
    /* box-shadow: 1px 2px 1px #231f2063; */
    padding: 4px 8px;
    text-align: center;
    /* text-shadow: 0 1px 1px rgb(255 255 255 / 75%); */
    border: 1px solid #f25e18;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    border-bottom-color: #f25e18;
}
.spolshow {
  margin: 5px 0 5px 5px;
}
.spolhide,
.spolcontent {
    display: none;
    margin: 5px 0 10px 10px;
}

.spoiler_controler {
    display: none;
}

.spoiler_controler:checked + label .spolshow {
    display: none;
}

.spoiler_controler:checked + label .spolhide {
    display: inline;
}
.spoiler_controler:checked ~ .spolcontent {
    display: block;
}
/*End spoiler*/


/*.timtimertitle {display: none !important;}
.delsmalldes {display: none;}
.cat-image {display: none !important;}
.header-mobile__top {display: none;}*/
.row, .header-mobile__top, .footer {
    width: 100%;
}

.c-catalog .c-button:hover .c-catalog__burger span {
    border-bottom: 2px solid #000 !important;
}
@media (max-width: 1366px) {
.c-catalog .c-button > span:last-child {
    display: block !important;
	}
}


/*Переписываем стили костыли*/
.catalog__product-list {
    padding: 5px 3%;
}
.catalog .sidebar {
    padding-bottom: 0px !important;
}
.header__banner-title {
    font-size: 24px !important;
    color: #fff !important;
    text-align: left;
    margin-top: 150px !important;
    margin-bottom: 5px !important;
    font-weight: 600;
}
.header__banner-subtitle {
    color: #fff !important;
}
.c-catalog__categories {
    max-height: 400px !important;
}

.lowerdesc {
    padding-top: 160px;
    padding-bottom: 150px;
    padding-right: 3%;
    padding-left: 3%;
  box-shadow: 0 -8px 32px #00000026;
  margin-top: 35px;
  display: block;
}
.c-hamburger__row {
    margin: 5px 0;
}
.mg-filter-list li {
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.mg-filter-list {
    display: flex;
    justify-content: flex-start;
    align-content: stretch;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row;
}
.buy-click {margin: 5px 15px;}



@media (max-width : 768px) {
  .buy-click {margin: -5px 1px;}
  .buy-click .mg-buy-click-button {
    font-size: 0.65rem !important;
	}
  .css-modal-details summary {
    font-size: 0.65rem;
    line-height: 1.5;
    }
  .fa-chart-bar {display: none;}
  .sub-categories li {
    width: 45% !important;
	}
}

@media (max-width : 768px) {
  .header__logo {
    height: 40px;
    width: 100px;
	}
	.header__logo img {
    min-width: 110px !important;
	}
	.c-menu .c-button {
    margin-top: 5px;
	}
  .headclock {
    font-size: 0.5rem !important;
	}
  .headmail a {
    font-size: 12px !important;
	}
  .headphone {
    font-size: 1rem !important;
	}
}





/*........................*/
.footer-panel__button-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.art {
  text-align: right;
  color: gray;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin: 8px 0 !important;
    width: 100%;
}


.c-catalog__categories {
    overflow-y: scroll;
}
.header__logo img {
    min-width: 260px;
}
.menusubt a {color:#F25E18 !important;}
.timtimertitle {
    text-align: center;
    font-size: 1.4rem;
    text-shadow: 0px 1px 1px #878585;
    color: #f25e18;
}
.addToCart:hover {cursor: pointer;}
.sidephone {
    color: #f25e18;
    font-size: xx-large;
    font-weight: 600;
    margin: 10px 0;
}
.sidehead {
  margin-top: 15px;
}

[data-tooltip] {
  position: relative;
  cursor: pointer;
}
[data-tooltip]:before,
[data-tooltip]:after {
  line-height: 1;
  font-size: .9em;
  pointer-events: none;
  position: absolute;
  box-sizing: border-box;
  display: none;
  opacity: 0;
  filter: drop-shadow(0px 0px 1px #800000);
}
[data-tooltip]:before {
  content: "";
  border: 5px solid transparent;
  z-index: 100;
}
[data-tooltip]:after {
  content: attr(data-tooltip);
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 6px 8px;
  border-radius: 3px;
  background: #F25E18;
  color: #FFFFFF;
  z-index: 99;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  display: block;
  opacity: 1;
}
[data-tooltip]:not([data-flow])::before,
[data-tooltip][data-flow="top"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #F25E18;
}
[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::after {
  bottom: calc(100% + 5px);
}
[data-tooltip]:not([data-flow])::before, [tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::before,
[data-tooltip][data-flow="top"]::after {
  left: 50%;
  -webkit-transform: translate(-50%, -4px);
          transform: translate(-50%, -4px);
}
[data-tooltip][data-flow="bottom"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #F25E18;
}
[data-tooltip][data-flow="bottom"]::after {
  top: calc(100% + 5px);
}
[data-tooltip][data-flow="bottom"]::before, [data-tooltip][data-flow="bottom"]::after {
  left: 50%;
  -webkit-transform: translate(-50%, 8px);
          transform: translate(-50%, 8px);
}
[data-tooltip][data-flow="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #F25E18;
  left: calc(0em - 5px);
  -webkit-transform: translate(-8px, -50%);
          transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  -webkit-transform: translate(-8px, -50%);
          transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #F25E18;
  right: calc(0em - 5px);
  -webkit-transform: translate(8px, -50%);
          transform: translate(8px, -50%);
}
[data-tooltip][data-flow="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translate(8px, -50%);
          transform: translate(8px, -50%);
}
[data-tooltip=""]::after, [data-tooltip=""]::before {
  display: none !important;
}

.tooltipborder {
  border: 3px solid #f25e18;
    padding: 10px;
    margin: 10px 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    color: #f25e18;
  	width: 380px;
}
.tooltip {
    display:block;
    position:relative;
  	cursor: pointer;
}
.tooltip .bottom p {
    font-size: 13px;
    line-height: 14px;
    margin-block-start: 0;
}
.tooltip .bottom {
    min-width:500px; 
    max-width:501px;
    top:100px;
    left:50%;
    transform:translate(-50%, 0);
    padding:5px 15px;
    color:#FFFFFF;
    background-color:#F25E18;
    font-weight:normal;
    font-size:15px;
    border-radius:8px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    border:1px solid #F25E18;box-shadow:0 1px 8px rgba(0,0,0,0.5);
    display:none;
}

.tooltip:hover .bottom {
    display:block;
}

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

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


/* Accordeon styling */
.accordeon {}

.accordeon label {
    display: block;
    padding: 1em;
    font-weight: 700;
    font-size: 1.5em;
    background: #f25e18;
    color: #f5f5f5;
    cursor: pointer;
    border-bottom: 1px solid #91380e;
}

.accordeon label:hover {
	background: #91380e;
}

.accordeon .panel {
    height: 0;
    visibility: hidden;
    opacity: 0;
    background: #f25e18;
    color: #f0f0f0;
}

/* Hide checkboxes and radio-buttons */
.accordeon input[type="radio"], .accordeon input[type="checkbox"] {
    display: none;
}
/* Show .panel for corresponding to checked radio or checkbox */
.accordeon input[type="radio"]:checked + .panel, .accordeon input[type="checkbox"]:checked + .panel {
    height: auto;
    visibility: visible;
    opacity: 1;
    padding: 1.5em;
}



.sub-categories {
    padding: 0;
    margin: 0 -1.5%;
    list-style: none;
}

.sub-categories li {
    display: inline-block;
    vertical-align: top;
    width: 23%;
    border: 2px solid #F6F6F6;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
    padding: 10px;
    margin: 0 0 1.5% 1.5%;
}

.sub-categories li:hover {
    border-color: #3F97F6;
}

.sub-categories li a.sub-cat-name {
    word-wrap: break-word;
    color: #000;
    text-decoration: none;
    display: block;
}

.sub-categories li a.sub-cat-name:hover {
    text-decoration: underline;
}

.sub-categories li a {
    font-size: 13px;
    text-align: center;
}

.sub-categories li a.cat-image {
    width: 100px;
    height: 80px;
    margin: 0 auto 10px;
    display: block;
    position: relative;
}

.sub-categories li img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}


ul.ruby-menu > li {
    width: 145px !important;
	}
.padlink {
    padding: 20px 1px 15px 1px;
	}
/* Desktops and laptops ----------- 1024 */
@media only screen
and (min-width : 1024px) {
  ul.ruby-menu > li {
    width: 145px !important;
    max-width: none !important;
    min-width: 120px;
    height: 75px;
	float: left;
	}
  .padlink {
    padding: 20px 1px 15px 1px;
	}
}
/* Desktops and laptops ----------- 1000 */
@media only screen
and (min-width : 1000px) {
  .ruby-menu-demo-header {display:none;}
   ul.ruby-menu > li {
    max-width: 95px !important;
    min-width: 90px;
    height: 75px;
	float: left;
	}
 .padlink {
    padding: 20px 1px 15px 1px;
	}
  ul.ruby-menu > li > a {
    font-size: 12px !important;
  }
}
/* Desktops and laptops ----------- 1170 */
@media only screen
and (min-width : 1170px) {
  .ruby-menu-demo-header {display:block;}
  ul.ruby-menu > li {
    max-width: 110px !important;
    min-width: 105px;
    height: 75px;
	}
  .padlink {
    padding: 30px 1px 15px 1px;
	}
}
/* Desktops and laptops ----------- 1224 */
@media only screen
and (min-width : 1224px) {
  ul.ruby-menu > li {
    max-width: none !important;
    min-width: 145px;
    height: 75px;
	}
  .padlink {
    padding: 30px 1px 15px 1px;
	}
}
/* Desktops and laptops ----------- 1230 */
@media only screen
and (min-width : 1230px) {
  ul.ruby-menu > li {
    max-width: 120px !important;
    min-width: 110px;
    height: 75px;
}
  .padlink {
    padding: 30px 1px 15px 1px;
	}
}
/* Large screens ------------------ 1824 */
@media only screen
and (min-width : 1824px) {
  ul.ruby-menu > li {
    max-width: none !important;
    min-width: 200px;
    height: 75px;
	}
  .padlink {
    padding: 30px 1px 15px 1px !important;
	}
  .ul.ruby-menu > li > a {font-size: 15px;}
  .a-tabs__link {
    min-width: 140px;
}
}
/* Large screens ------------------ 2560 */
@media only screen
and (min-width : 2560px) {
  ul.ruby-menu > li {
    max-width: none !important;
    min-width: 215px;
    height: 75px;
	}
  .padlink {
    padding: 30px 1px 15px 1px !important;
	}
  .a-tabs__link {
    min-width: 160px;
}
}


.headphone {
    /*margin-top: 20px;*/
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
    color: #f25e18;
}
.headclock {
    font-size: 0.7rem;
    color: #212529;
}
.headmail a {
    margin: 5px 0;
    line-height: 1;
	color: #212529;
}

.toplinks a {color: #333;}
.toplinks a:hover {color: #f25e18;}




label .name {
    color: #fff !important;
    background-color: #f25e18 !important;
    /*background-image: -moz-linear-gradient(top,#f25e18,#ffb7b2) !important;
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f25e18),to(#ffb7b2)) !important;
    background-image: -webkit-linear-gradient(top,#f25e18,#ffb7b2) !important;
    background-image: -o-linear-gradient(top,#f25e18,#ffb7b2) !important;
    background-image: linear-gradient(to bottom,#f25e18,#ffb7b2) !important;*/
}

label .name {
    display: inline-block;
    margin: -2px;
    padding: 4px 8px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgb(255 255 255 / 75%);
    vertical-align: middle;
    cursor: pointer;
    background-repeat: repeat-x;
    border: 1px solid #ccc;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    border-bottom-color: #b3b3b3;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%), 0 1px 2px rgb(0 0 0 / 5%);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%), 0 1px 2px rgb(0 0 0 / 5%);
}

label .name {
  vertical-align: middle;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  line-height: 1.3em;
  -webkit-transition: all .3s;
  transition: all .3s; 
}

label:hover .name {
  color: var(--main-color); 
}

label .checkmark {
  position: relative;
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -3px;
  text-align: center;
  color: #222 !important; 
}

label .value-name {
    border-radius: 10px 0;
    /* transform: skew(-7deg); */
    box-shadow: 1px 2px 1px #231f2063;
}
  
.filter-form label .checkmark {
    display: none;
}

.ovwrflow {
	
}
.mg-filter-list {
    display: flex;
}
.mg-filter-list li {
    margin-left: 20px;
}
.mg-filter-item {
    display: flex;
} 

.mg-filter-head {display: none;}
/*.filter-buttons {display: none;}*/
label {margin-bottom: 0 !important;}


.producttopblock, .islandblock {
    box-shadow: inset 4px 4px 7px rgb(33 33 33 / 12%);
    border-radius: 16px;
    border: 1px solid #ccc;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 10px 0;
}
.product__upsell {
    max-height: 500px;
}
h2, .h2 {
    font-size: 1.75rem !important;
}
.primeroll {
	height:600px;
	overflow-y: scroll;
}
.middleproperty {
	min-height: 600px;
}
.timer-sale-block {
    box-shadow: none !important;
}

.product__buttons-bottom {
    margin: 20px 0;
}

.optovik {
	/*border-top: dotted 1px #f25e18; 
	border-bottom: dotted 1px #f25e18; */
	margin: 10px 0;
	padding: 10px 0;
}
.otpheader {
    margin: 20px 0 0 0;
    font-size: 1rem;
    line-height: 1.25;
 	text-align: center;
}
.deshevle {
	border-top: dotted 1px #f25e18;  
	margin: 10px 0;
}
.deshevleheader {
    margin: 20px 0;
    font-size: 1.25rem;
    line-height: 1.25;
}
.product__title {
    font-size: 2rem;
}

/* СТИЛИ СПОЙЛЕРА */

/* END СТИЛИ СПОЙЛЕРА */

/* перепись стилей кнопки купить */

/*.addToCart, .timbutton2, .timbutton {
	-webkit-transform: skew(-7deg);
    -moz-transform: skew(-7deg);
    -o-transform: skew(-7deg);
    transform: skew(-7deg);
    box-shadow: 3px 2px 1px #231f20;
}*/
.addToCart, .product-info {
	height: 40px;
    line-height: 2;
    color: #fff;
    text-decoration: none;
    padding: 0 18px;
    border: none;
    background: #f25e18 !important;
    -webkit-box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    font-weight: normal;
    text-transform: none;
    text-shadow: none;
}
.addToCart, .c-product__message-button {
    color: #fff;
    text-decoration: none;
    padding: 5px 18px;
    border: none;
    background: #f25e18 !important;
    -webkit-box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    font-weight: normal;
    text-transform: none;
    text-shadow: none;
}
.amount_change {
    border-radius: 0px !important;
}
  
.product .prop-string {
    font-size: small !important;
}
.product__title {
    font-size: 1.5rem !important;
    color: #f25e18;
}
.name-group {
    padding: 5px;
    border: none !important;
    border-top-right-radius: none !important;
    border-top-left-radius: none !important;
    color: #333;
    font-size: 1rem;
	margin-top: 15px;
}
.prop-item {
    border-bottom: 1px dotted #85888a7a !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}
.prop-name__inner {
    color: #333;
}
.c-search__button {
	display: inline-block;
    text-align: center;
    cursor: pointer;
    outline: none;
    height: 31px;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    padding: 0 18px;
    border: none;
    background: #f25e18 !important;
    -webkit-box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    font-weight: normal;
    text-transform: none;
    text-shadow: none;
}
.c-catalog .c-button {
    background: #f25e18;
}
.header__logo img {
    max-width: 260px !important;
}

.timslogan {
    color: #f25e18;
    font-weight: 600;
    text-transform: uppercase;
    font-size: larger;
}

.header__top {
    background-color: #ffffff !important;
    font-size: 13px;
    color: #555;
    /* border-bottom: 1px solid #f25e182e; */
    box-shadow: 0px 1px 5px -1px;
}
  

  
.container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: none !important;
    padding: 0px !important;
}
  
.c-cart__small .pricesht {
    color: #f25e18 !important;
}
.c-cart__small .currency {
    color:  #f25e18 !important;
}  
.c-catalog .c-button {
  background: #f25e1800 !important;
    border-radius: 80px !important;
    height: 60px !important;
}
.header__bottom {
    background: #fff !important;
}

.favourite__count {
    color: #333 !important;
}
.favourite--open  {
    color: #f25e18 !important;
}
.c-cart__small--text  {
    color: #f25e18 !important;
}
  
.back-ring-button {
	display: inline-block;
    text-align: center;
    cursor: pointer;
    outline: none;
    height: 33px;
    font-size: 13px;
    line-height: 29px;
    color: #fff;
    text-decoration: none;
    padding: 0 18px;
    border: none;
    background: #f25e18 !important;
    -webkit-box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    font-weight: normal;
    text-transform: none;
    text-shadow: none;
}
.timbutton {
	display: inline-block;
    text-align: center;
    cursor: pointer;
    outline: none;
    height: 33px;
    font-size: 14px;
    line-height: 29px;
    color: #fff;
    text-decoration: none;
    padding: 0 18px;
    border: none;
    background: #f25e18 !important;
    -webkit-box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    box-shadow: inset 0 -3px 0 rgb(0 0 0 / 40%);
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    font-weight: normal;
    text-transform: none;
    text-shadow: none;
}
.timbutton2 {
    border-right: none;
    border-bottom: solid 3px #f25e18;
    border-top: none;
    border-left: none;
    background: white;
    cursor: pointer;
    padding-right: 5px;
    padding-bottom: 5px;
    color: #f25e18;
    font-size: 1rem;
  margin-top: 10px;	
}

.buy-click .mg-buy-click-button {
    border-bottom: solid 2px #f25e18;
    background: #ffffff;
    cursor: pointer;
    padding: 5px;
    color: #f25e18;
    font-size: 0.8rem;
    font-weight: 600;
  border-radius: 0px !important;
}
.buy-click .mg-buy-click-button:hover {
    color: #333;
}

.timbutton3 {
    border-bottom: solid 2px #f25e18;
    background: #ffffff;
    cursor: pointer;
    padding: 5px;
    color: #f25e18;
    font-size: 0.8rem;
    font-weight: 600;
}
.timbutton3:hover {
    color: #333;
}
  
.c-catalog .c-button {
    min-width: 10px !important;
}
.c-catalog__burger {
    margin: 2px 0 2px 0 !important;
}
.c-search__form {
    display: flex;
    border-bottom: 2px solid #eee;
    border-radius: 40px;
    padding-right: 105px;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    position: relative;
    width: 527px;
    padding-left: 10px;
}


.sub-categories {
    padding: 0;
    margin: 0 -1.5%;
    list-style: none;
}

.sub-categories li {
    display: inline-block;
    vertical-align: top;
    width: 23%;
    border: 2px solid #F6F6F6;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
    padding: 10px;
    margin: 0 0 1.5% 1.5%;
}

.sub-categories li:hover {
    border-color: #3F97F6;
}

.sub-categories li a.sub-cat-name {
    word-wrap: break-word;
    color: #000;
    text-decoration: none;
    display: block;
}

.sub-categories li a.sub-cat-name:hover {
    text-decoration: underline;
}

.sub-categories li a {
    font-size: 13px;
    text-align: center;
}

.sub-categories li a.cat-image {
    width: 100px;
    height: 80px;
    margin: 0 auto 10px;
    display: block;
    position: relative;
}

.sub-categories li img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}



.mt-10 {
	margin-top: 10px;
}
.mt-50 {
	margin-top: 50px;
}
.m-4020 {
	margin: 40px 20px;
}
.paleisland {
	background: #f25e18; width: 98%; min-height: 90px; font-size: 17px; line-height: 1.5; text-align: left; text-transform: uppercase; transform: skew(1deg); margin: 50px 0; color:white;
}
.paleislandblock {
	border: 2px dotted #f25e18;
}
.paleislandblock div {
	text-align: center;
    padding: 10px;
    margin: 10px 0;
}
.paleislandblock div b {
	color:#f25e18; 
	font-size:18px;
}
.remark {
	font-size: 11px; color: #999999;
}
/* Контейнер для кнопки, чтобы не прыгал контент, когда она сменит позиционирование */
.css-modal-details {
    height: 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}
 
/* Кнопка для открытия */
.css-modal-details summary {
    background: var(--main-color);
    display: inline-flex;
    font-size: 15px;
    color: var(--button-color);
    font-weight: 700;
    padding: 8px 30px;
    border-radius: 20px;
    -webkit-transition: color .3s;
    transition: color .3s;
    border: none;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
	border-bottom: solid 2px #f25e18;
    background: #ffffff;
    cursor: pointer;
    padding: 5px;
    color: #f25e18;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0px !important;    
}
.css-modal-details summary:hover,
.css-modal-details summary:active,
.css-modal-details summary:focus {
    color: #333;
}
.css-modal-details summary:before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-top: 50px solid #2D6B9F;
    transition: transform 0.5s;
    transform: translateX(-100%);
    z-index: -1;
}
.css-modal-details summary:hover:before,
.css-modal-details summary:active:before,
.css-modal-details summary:focus:before {
    transform: translateX(0);
}
 
/* Кнопка при открытом окне переходит на весь экран */
.css-modal-details details[open] summary {
    cursor: default;
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}
 
/* Контейнер, который затемняет страницу */
.css-modal-details details .cmc {
    display:flex;
    align-items:center;
    justify-content:center;    
}
.css-modal-details details[open] .cmc {
    pointer-events: none;
    z-index: 4;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: bg 0.5s ease;
    background: rgb(27 27 27 / 80%);
}
 
/* Модальное окно */
.css-modal-details details .cmt {
    font-family: Verdana, sans-serif;  
    font-size: 16px;
    padding: 20px;
    width:80%;
    max-width: 640px;
    max-height: 70%;
    transition: 0.5s;
    border: 6px solid #f25e18;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
    text-align: center;
    overflow: auto;
}
.css-modal-details details[open] .cmt {
    animation: scale 0.5s ease;
    z-index: 4;
    pointer-events: auto;
}
 
/* Декоративная кнопка с крестиком */
.css-modal-details details[open] .cmc:after {
    content: "";
    width: 50px;
    height: 50px;
    border: 6px solid #f25e18;
    border-radius: 12px;
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23337AB7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
    background-color: #FFF;
    background-size: cover;
    animation: move 0.5s ease;
}
 
/* Анимации */
@keyframes scale {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes move {
    0% {
        right: -80px;
    }
    100% {
        right: 20px;
    }
}
@keyframes bg {
    0% {
        background: rgba(51, 122, 183, 0);
    }
    100% {
        background: rgba(51, 122, 183, 0.7);
    }
}
/*Кнопка qform в центре карточки*/
div[data-formid] div .btn_modal-box .btn-modal {
   	min-width: 120px;
    max-width: 140px;
    height: 30px;
    display: block;
    -webkit-transition: color .3s;
    transition: color .3s;
    border: none;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
    border-bottom: solid 2px #f25e18;
    border-right: solid 2px #f25e18;
    cursor: pointer;
    padding: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 5px !important;
}
/*Кнопка qform в основном блоке карточки*/
div[data-formid] div .btn_modal-box.qform-default.qform-radius-5px .btn-modal {
    min-width: 120px;
    max-width: 140px;
    height: 30px;
    display: block;
    -webkit-transition: color .3s;
    transition: color .3s;
    border: none;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
    border-bottom: solid 2px #f25e18;
    border-right: solid 2px #f25e18;
    cursor: pointer;
    padding: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 5px !important;
} 
div[data-formid] div .form-overlay .form-modal {
    margin: 10% auto !important;
    width: 50%;
}  
.qform-row .qform-field__textblock_label {
    font-size: 1.5em;
    text-align: center;
    margin: 10px !important;
}
.qform-row .qform-field__textblock_text {
    text-align: center;
}
form .qform-field__submit.blue .qform-field__submit__input, form.qform form.qform.qform-theme-black .qform-field__submit.blue .qform-field__submit__input {
  	background-color: #f25e18;
}
/*HOT_BANNER START*/
.hot-popup-title {
    color: red;
    font-size: x-large;
}
.hot-popup-banner {
  display: none;
      position: fixed;
    top: 69%;
        left: 13%;
    width: 520px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
  z-index: 999;
}
.hot-button-x {
	background: none;
    border: 1px solid dodgerblue;
    border-radius: 15px;
   margin-left: 80%;
    padding: 3px 15px;
  cursor: pointer;
}
.hot-button-l {
	background: none;
  border-top: none;
  border-left: none;
  border-right: none;
    border-bottom: 1px solid dodgerblue;
    border-radius: 15px;
    width: fit-content;
    padding: 3px 15px;
}


.hot-item-body {
	width: 100%;
    height: 125px;
  margin-top: 20px;
}
.hot-image {
	width: 30%;
    display: block;
    float: left;
}
.hot-image img {
      height: 100px;
}
.hot-item-content {
	width: 70%;
    display: block;
    float: left;
  text-align: left;
}
.hot-title {
	color: #ccc;
}
.hot-price {
	font-size: 14px;
}
.hot-old-price {
  font-size: 20px;
	color: darkgray;
    text-decoration: line-through;
  margin-left: 20%;
}
.hot-price span {
	    color: #e44a30;
    font-size: 26px;
    line-height: 26px;
}
.hot-old-price span {

}
/*HOT_BANNER END*/

    #modal-window {
    position: fixed;
      zoom: 0.7;
    top: 80%;
    left: 15%;
    width: 520px;
    transform: translate(-50%, -50%);
    background-color: rgba(250, 250, 250, 0.5);
    padding: 0px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
    text-align: center;
    z-index: 999;
      border-radius: 20px; 
    }

/* Styling the modal */
       
.hot16 {font-size: 16px !important;} 

        #modal-content {
            background-color: #ffffff00;
          border-radius: 20px;
            padding: 0px;
            
        }

        #close-modal {
                color: #ff5e03;
    text-align: right; font-weight: 900;
    font-size: 19px;
    /* text-decoration: underline; */
    /*border-bottom: 1px solid black;*/
    cursor: pointer;
        }


/* Основные стили баннера */
.banner {
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: white;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 8px 25px rgba(238, 9, 121, 0.4);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

/* Декоративные огоньки */
.fire-decor {
  position: absolute;
  font-size: 2.5rem;
  top: 15px;
  opacity: 0.8;
  animation: pulse 2s infinite;
}
.fire-decor:first-child { left: 20px; }
.fire-decor:last-child { right: 20px; }

/* Заголовок */
h1 {
  font-size: 1rem;
  font-weight: 900;
  margin: 10px 0 15px;
  letter-spacing: -0.5px;
}

/* Подзаголовок */
.subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Контейнер с ценами */
.prices-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 25px 0;
  background: rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

/* Блок цены */
.price-block {
  padding: 15px 25px;
}

.pipe-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffeb3b, #ff9800);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Разделитель цен */
.price-divider {
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0.7;
}

/* Акцентное предложение */
.offer-highlight {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 25px 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffeb3b;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Текст срочности */
.urgency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Дата */
.date {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Кнопка призыва к действию */
.cta-button {
  background: linear-gradient(to bottom, #ffeb3b, #ff9800);
  color: #d50000;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: linear-gradient(to bottom, #ffff72, #ffb300);
}

.cta-button:active {
  transform: translateY(1px);
}

/* Анимация пульсации для огоньков */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Адаптивность */
@media (max-width: 768px) {
  .banner { padding: 20px; }
  h1 { font-size: 1.3rem; }
  .subtitle { font-size: 1.5rem; }
  .prices-container { /*flex-direction: column;*/ gap: 15px; }
  .price-divider { transform: rotate(180deg); }
  .price-value { font-size: 2.8rem; }
  .offer-highlight { font-size: 1.5rem; }
  .pipe-name {font-size: 2.6rem;}
  .cta-button { font-size: 1rem; padding: 15px 30px; }
}