@import url(https://jbsistem.certa.ru/css/paced.css);
        :root {
            font-size: clamp(14px, 0.9vw, 29px);
        }
        
        /* Конвертация основных UIkit переменных */
        :root {
            /* Отступы и интервалы */
            --uk-margin: 1.25rem; /* 20px */
            --uk-margin-small: 0.625rem; /* 10px */
            --uk-margin-medium: 2.5rem; /* 40px */
            --uk-margin-large: 4.375rem; /* 70px */
            --uk-margin-xlarge: 8.75rem; /* 140px */
            
            /* Размеры контейнера */
            --uk-container-padding-horizontal: 0.9375rem; /* 15px */
            --uk-container-xsmall-max-width: 47.5rem; /* 760px */
            --uk-container-small-max-width: 56.25rem; /* 900px */
            --uk-container-large-max-width: 87.5rem; /* 1400px */
            --uk-container-xlarge-max-width: 100rem; /* 1600px */
            
            /* Ширина гридов */
            --uk-grid-gutter: 1.5625rem; /* 25px */
            --uk-grid-gutter-large: 2.5rem; /* 40px */
            
            /* Размеры шрифтов */
            --uk-global-font-size: 1rem; /* 16px */
            --uk-text-lead-font-size: 1.5rem; /* 24px */
            --uk-text-meta-font-size: 0.875rem; /* 14px */
            --uk-text-small-font-size: 0.8125rem; /* 13px */
            --uk-text-large-font-size: 1.125rem; /* 18px */
            
            /* Высоты элементов */
            --uk-navbar-nav-height: 5rem; /* 80px */
            --uk-navbar-height: 5rem; /* 80px */
            --uk-button-height: 2.5rem; /* 40px */
            --uk-button-small-height: 2rem; /* 32px */
            --uk-button-large-height: 3.25rem; /* 52px */
            
            /* Скругления */
            --uk-border-rounded: 0.3125rem; /* 5px */
            --uk-border-radius: 0.1875rem; /* 3px */
            
            /* Тени */
            --uk-box-shadow-small: 0 0.125rem 0.5rem rgba(0,0,0,0.08);
            --uk-box-shadow-medium: 0 0.3125rem 0.9375rem rgba(0,0,0,0.08);
            --uk-box-shadow-large: 0 0.875rem 1.5625rem rgba(0,0,0,0.16);
        }

        @font-face {
            font-family: 'Geometria';
            src: url('/font/geometria_light.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Geometria';
            src: url('/font/geometria_lightitalic.otf') format('opentype');
            font-weight: 300;
            font-style: italic;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Geometria';
            src: url('/font/geometria_medium.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Geometria';
            src: url('/font/geometria_mediumitalic.otf') format('opentype');
            font-weight: 500;
            font-style: italic;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Geometria';
            src: url('/font/geometria_bold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Geometria';
            src: url('/font/geometria_bolditalic.otf') format('opentype');
            font-weight: 700;
            font-style: italic;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Geometria';
            src: url('/font/geometria_extrabold.otf') format('opentype');
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }
        :root {
            --uk-global-font-family: 'Geometria', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        
        /* Применяем шрифт ко всем элементам */
        body {
            font-family: var(--uk-global-font-family) !important;
        }

        /* Глобальные исправления */
        html {
            font-size: 100%; /* 16px */
        }

        /* Исправление отступов */
        .uk-margin { margin-bottom: var(--uk-margin) !important; }
        .uk-margin-small { margin-bottom: var(--uk-margin-small) !important; }
        .uk-margin-medium { margin-bottom: var(--uk-margin-medium) !important; }
        .uk-margin-large { margin-bottom: var(--uk-margin-large) !important; }
        .uk-margin-xlarge { margin-bottom: var(--uk-margin-xlarge) !important; }

        .uk-margin-top { margin-top: var(--uk-margin) !important; }
        .uk-margin-small-top { margin-top: var(--uk-margin-small) !important; }
        .uk-margin-medium-top { margin-top: var(--uk-margin-medium) !important; }
        .uk-margin-large-top { margin-top: var(--uk-margin-large) !important; }
        .uk-margin-xlarge-top { margin-top: var(--uk-margin-xlarge) !important; }

        .uk-margin-bottom { margin-bottom: var(--uk-margin) !important; }
        .uk-margin-small-bottom { margin-bottom: var(--uk-margin-small) !important; }
        .uk-margin-medium-bottom { margin-bottom: var(--uk-margin-medium) !important; }
        .uk-margin-large-bottom { margin-bottom: var(--uk-margin-large) !important; }
        .uk-margin-xlarge-bottom { margin-bottom: var(--uk-margin-xlarge) !important; }

        /* Отступы слева/справа */
        .uk-margin-left { margin-left: var(--uk-margin) !important; }
        .uk-margin-right { margin-right: var(--uk-margin) !important; }

        /* Гриды */
        .uk-grid {
            margin-left: calc(-1 * var(--uk-grid-gutter)) !important;
        }
        .uk-grid > * {
            padding-left: var(--uk-grid-gutter) !important;
        }
        .uk-grid-small {
            margin-left: calc(-1 * 0.625rem) !important;
        }
        .uk-grid-small > * {
            padding-left: 0.625rem !important;
        }
        .uk-grid-medium {
            margin-left: calc(-1 * 1.5625rem) !important;
        }
        .uk-grid-medium > * {
            padding-left: 1.5625rem !important;
        }
        .uk-grid-large {
            margin-left: calc(-1 * var(--uk-grid-gutter-large)) !important;
        }
        .uk-grid-large > * {
            padding-left: var(--uk-grid-gutter-large) !important;
        }

        /* Контейнер */
        .uk-container {
            padding-left: var(--uk-container-padding-horizontal) !important;
            padding-right: var(--uk-container-padding-horizontal) !important;
        }

        /* Кнопки */
        .uk-button {
            min-height: var(--uk-button-height) !important;
            padding: 0 1.875rem !important;
            font-size: 1rem !important;
        }
        .uk-button-small {
            min-height: var(--uk-button-small-height) !important;
            padding: 0 0.9375rem !important;
            font-size: 0.875rem !important;
        }
        .uk-button-large {
            min-height: var(--uk-button-large-height) !important;
            padding: 0 2.5rem !important;
            font-size: 1.125rem !important;
        }

        /* Навигация */
        .uk-navbar-nav > li > a {
            min-height: var(--uk-navbar-nav-height) !important;
            font-size: 1rem !important;
            padding: 0 0.9375rem !important;
        }
        .uk-navbar-item {
            min-height: var(--uk-navbar-height) !important;
            padding: 0 0.9375rem !important;
        }

        /* Текст */
        .uk-text-lead {
            font-size: var(--uk-text-lead-font-size) !important;
        }
        .uk-text-meta {
            font-size: var(--uk-text-meta-font-size) !important;
        }
        .uk-text-small {
            font-size: var(--uk-text-small-font-size) !important;
        }
        .uk-text-large {
            font-size: var(--uk-text-large-font-size) !important;
        }
        h1, .uk-h1 {
            font-size: 2.25rem !important; /* 36px */
        }
        h2, .uk-h2 {
            font-size: 1.875rem !important; /* 30px */
        }
        h3, .uk-h3 {
            font-size: 1.5rem !important; /* 24px */
        }
        h4, .uk-h4 {
            font-size: 1.25rem !important; /* 20px */
        }

        /* Карточки */
        .uk-card-body {
            padding: 1.875rem !important; /* 30px */
        }
        .uk-card-small .uk-card-body {
            padding: 1.25rem !important; /* 20px */
        }
        .uk-card-large .uk-card-body {
            padding: 3.125rem !important; /* 50px */
        }

        /* Паддинги */
        .uk-padding {
            padding: 1.875rem !important;
        }
        .uk-padding-small {
            padding: 0.9375rem !important;
        }
        .uk-padding-large {
            padding: 3.125rem !important;
        }

        /* Отступы для хедеров */
        .uk-heading-medium {
            font-size: 2.625rem !important; /* 42px */
            line-height: 1.2 !important;
        }
        .uk-heading-large {
            font-size: 3.25rem !important; /* 52px */
            line-height: 1.1 !important;
        }

        /* Медиа-запросы для мобильных */
        @media (max-width: 640px) {
            h1, .uk-h1 { font-size: 1.875rem !important; }
            h2, .uk-h2 { font-size: 1.5rem !important; }
            h3, .uk-h3 { font-size: 1.25rem !important; }
            .uk-heading-medium { font-size: 2rem !important; }
            .uk-heading-large { font-size: 2.5rem !important; }
            .uk-card-body { padding: 1.25rem !important; }
        }
*+.uk-grid-margin-small, .uk-grid+.uk-grid-row-small, .uk-grid+.uk-grid-small, .uk-grid-row-small>.uk-grid-margin, .uk-grid-small>.uk-grid-margin {
    margin-top: 0.5rem;
}        
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-family: var(--uk-global-font-family) !important;
    font-weight: 400;
    color: #333;
    text-transform: none;
}        
.uk-button {
    min-height: 2.1rem !important;
    line-height: 2.1rem;
    padding: 0 1.375rem !important;
    font-size: 0.8rem !important;
    border-radius: 2rem;
}
.uk-button-default {
    background-color: transparent;
    color: #333;
    border: 0.1rem solid #e5e5e5;
}
.uk-button-primary {
    background-color: #e9e800;
    color: #000;
    border: 0px solid transparent;
    height: 2.5rem;
    line-height: 2.5rem;
}        
.uk-button-primary.uk-active, .uk-button-primary:active {
    background-color: #fdfc82;
    color: #000000;
}
.uk-button-primary:hover {
    background-color: #f3f34d;
    color: #000000;
}        
.slider-text_certa .uk-button{
    margin-top:1rem;
        display: block;
    width: fit-content;
}        
        
        
.uk-container-xlarge {
    padding: 0 0.8854166666666667rem;
    max-width: 85.1041666667rem;
    width: 100%;
    margin: 0 auto;
}
.to-hedder img{
width: 100%;
    margin: 1.2rem auto;
}
.to-hedder .phone {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    display: block;
    text-align: -webkit-right;
}
.to-hedder .city_cardinate{
    display: block;
    color: #333;
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
    font-weight: 300;
    line-height: 0.5rem;
    padding-top: 0.1rem;
}
.to-hedder .city_name{
    display: block;
    color: #333;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    line-height: 1rem;
}
.has_bg .to-hedder .city_cardinate,
.has_bg .to-hedder .city_name{
    color: #fff;
}
.navfixed_certa{
    background: #e9e800;
    width: calc(100% + 5rem);
    height: 3rem;
    border-radius: 2rem;
    margin: 0 -2.5rem;
    position: relative;
    z-index:2;

}
.has_bg .animated_bg .hasanima{
    width: 100%;
    height: auto;
    position: absolute;
}
.has_bg  .uk-button-default {
    color: #fff;
        float: right;
}
.has_bg .to-hedder .phone {
   color: #fff; 
}
.has_bg .to-hedder img{
    filter: brightness(0) invert(1); /* Делает изображение белым */
}
.hedder{
    position: relative;
    z-index:2;
}
.animated_bg{
    position: relative;
        z-index: 10;
}
.uk-navbar-dropdown-nav>li>a {
    color: #000000;
    padding: 0;
    font-weight: 500;
    font-size: 0.8rem;
}
.has_bg .animated_bg{
        height: 40rem;
            overflow: hidden;
}
.has_bg .animated_bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.9;
}


.uk-position-cover.slider_1_certaanimate {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
}
.article .statya img {
    width: 100%;
    border-radius: 2rem;
    height: 20rem;
    object-fit: cover;
    margin-bottom: 3rem;
}
.slider_1_certaanimate img.ci1{
        width: 28rem;
    position: absolute;
    right: 5rem;
    bottom: -8rem;
}
.slider_1_certaanimate img.ci2 {
    width: 25rem;
    position: absolute;
    right: 25rem;
    z-index:1;
    bottom: -7rem;
    filter: drop-shadow(0 0.2rem 0.3rem rgba(0, 0, 0, 0.2)) drop-shadow(0 0.5rem 0.8rem rgba(0, 0, 0, 0.15)) drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.1));
}
.slider_1_certaanimate img.ci3{
    width: 14rem;
    position: absolute;
    right: -1rem;
    bottom: -8rem;
    filter: 
        drop-shadow(0 0.2rem 0.3rem rgba(0, 0, 0, 0.2))
        drop-shadow(0 0.5rem 0.8rem rgba(0, 0, 0, 0.15))
        drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.1));
}
.slider-text_certa{
    position: absolute;
    width: 50rem;
    bottom: 5rem;
    box-sizing: border-box;
    padding: 4rem 13rem 4rem 4rem;
    border: 1rem solid #e5e5e5c4;
    border-radius: 4rem;

}
.slider_title{
    display: block;
    color: #fff;
    font-size: 2rem;
}
.slider_text{
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    padding-top: 2rem;
    display: block;
}



h1 span{
    
}

.category_prew img {
    z-index: 0;
    max-width: 100%;
    box-sizing: border-box;
    object-fit: contain;
    width: 100%;
    height: 10rem;
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    transition: .4s cubic-bezier(0.2, 0.9, 0.3, 1.0);
    filter: drop-shadow(0 0.3rem 0.4rem rgba(0, 0, 0, 0.0));
}
.clyacsa{
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: #e9e800;
    border-radius: 100%;
    z-index: -1;
    left: -2rem;
    top: -1rem;
    transition: .8s ease-in-out;
}
.category_prew:hover .clyacsa{
    width: 55rem;
    height: 55rem;
    left: -20%;
    top: -20rem;    
}
.category_prew .shadow-cone-1 {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: 5%;
    width: 90%;
    height: 5rem;
    background: radial-gradient(ellipse at 50% 0%, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(0, 0, 0, 0.15) 40%, 
                transparent 80%);
    filter: blur(0.6rem);
    transform: perspective(300px) rotateX(6deg);
    z-index: 1;
    transition: .4s ease-in-out;
    pointer-events: none;
}
.category_prew .shadow-cone-2 {
    content: '';
    position: absolute;
    bottom: -5rem;
    left: 0%;
    width: 100%;
    height: 6rem;
    background: radial-gradient(ellipse at 50% 0%, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.1) 30%, 
                transparent 70%);
    filter: blur(1.2rem);
    transform: perspective(400px) rotateX(4deg);
    z-index: 0;
    transition: .5s ease-in-out;
    pointer-events: none;
}
.category_prew .shadow-cone-3 {
    content: '';
    position: absolute;
    bottom: -6rem;
    left: -10%;
    width: 120%;
    height: 8rem;
    background: radial-gradient(ellipse at 50% 0%, 
                rgba(0, 0, 0, 0.1) 0%, 
                transparent 60%);
    filter: blur(2rem);
    transform: perspective(500px) rotateX(2deg);
    z-index: -1;
    transition: .6s ease-in-out;
    pointer-events: none;
}

/* При ховере все тени расширяются */
.category_prew:hover img {
    bottom: 0rem;
    filter: drop-shadow(0 0.5rem 0.8rem rgba(0, 0, 0, 0.25));
}
.category_prew:hover .shadow-cone-1 {

}
.category_prew:hover .shadow-cone-2 {

}
.category_prew:hover .shadow-cone-3 {

}
.category_prew .cattext {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 1rem;
    box-sizing: border-box;
    color: #000;
    padding: 0px 2rem;
}
.category_prew {
    border: 0.3rem solid #e5e5e5;
    height: 15rem;
    border-radius: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
        display: block;
     transition: .4s ease-in-out;
}
.category_prew:hover{
    border: 0.3rem solid #e9e800;
}
.padding_div{
    padding:2rem 0rem;
}
.titl_x50{
    width: 60%;
    font-weight: 700;
    margin-top: 3rem;
}






.products .color_grid{
  position: absolute;
    width: 2.4rem;
    height: 9rem;
    left: 1rem;
    top: 1rem;  
        z-index: 2;
}
.products .color_grid .color{
    background: #ccc;
    width: 1.1rem;
      position: absolute;
    height: 1.1rem;
    display: block;
    border-radius: 0.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: .4s ease-in-out;
}
.products .color_grid .color:hover{
    margin-left:-0.2rem;
    margin-top:-0.2rem;
    width: 1.4rem;
    height: 1.4rem;
}
.hardfix{
  height: 1.1rem;  
  position: relative;
}
.products .uk-card-body {
    padding: 0!important;
    border: 0.1rem solid #e5e5e5;
    border-radius: 1rem;
    transition: .4s ease-in-out;
}
.products .uk-card-body .uk-card-media-top{
    padding: 0.8rem;
    position: relative;
    overflow: hidden;
    height: 14rem;
}
.products .uk-card-body .uk-card-media-top img {
    position: absolute;
    min-width: 14rem;
    max-width: 14rem;
    max-height: 14rem;
    left: calc(50% - 5rem);
    object-fit: contain;
    transition: .4s ease-in-out;
    z-index: 0;
    bottom: 1rem;
}
.products .uk-card-body:hover .uk-card-media-top img{
  
}
.iposante{
     height: 14rem;
}

.products .uk-card-body .uk-button-primary {
        background-color: #eeeeed;
    color: #000;
    border: 0px solid transparent;
    height: 2.5rem;
    display: block;
    line-height: 2.5rem;
    border-radius: 0.9rem;
    margin: 1rem;
}
.price_typ{
    background: #e5e501;
    color: #000;
    width: fit-content;
    padding: 0.3rem 0.7rem;
    border-radius: 0.4rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: absolute;
    top: 13rem;
    left: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}
.uk-card-title.prod-title{
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.9rem !important;
    margin: 0;
    height: 2.3rem;
}
.tara_prototip {
    padding: 0 1rem;
    position: relative;
}
.tara_prototip:before {
    content: "";
    width: calc(100% - 2rem);
    position: absolute;
    height: 1rem;
    border-radius: 2rem;
    left: 1rem;
    top: 0.7rem;
    box-sizing: border-box;
    z-index: 0;
    border: 0.3rem solid #e5e5e559;
}
.tara_prototip a{
    position: relative;
     display: block;
}
.tara_prototip a:before{
    content: "";
    position: absolute;
    z-index: 0;
    background: #e5e501;
    width: 1.2rem;
    height: 1.5rem;
    border-radius: 0rem;
    top: calc(50% - 0.7rem);
    left: calc(50% - 0.6rem);
    transition: .4s ease-in-out;
}
.tara_prototip a:not(.taradata):before{
       width: 0.8rem;
      left: calc(50% - 0.4rem);
}
.tara_prototip .uk-active a:before,
.tara_prototip a:hover:before{
       width: 2.2rem;
    height: 2.2rem;
    top: calc(50% - 1.1rem);
    left: calc(50% - 1.05rem);
    border-radius: 3rem; 
}
.tara_prototip img{
    width: 70%;
    display: block;
    margin: auto;
    position: relative;
    z-index: 1;
}
.tara_prototip .uk-grid-small > * {
    padding-left: 0rem !important;
}
.tara_prototip  .uk-grid-small {
    margin-left: 0rem!important;
}


.bg_news {
    background: #e9e800;
    width: calc(100% + 5rem);
    height: 15rem;
    border-radius: 2rem;
    margin-left: -2.5rem;
    margin-top: 2rem;
}

.statya img{
    width: 100%;
    border-radius: 2rem;
}

.statya .uk-card-title {
    font-size: 1.5rem!important;
    line-height: 1.4;
    color: #000;
    padding: 1rem 0;
}
address, dl, fieldset, figure, ol, p, pre, ul {
    margin: 0 0 20px 0;
    color: #000;
    font-weight: 300;
}
.certacart{
     position: relative;
    width: 100%;
    height: 25rem;   
}
.certacart img.carta{
        position: absolute;
    width: 34rem;
    z-index: 0;
    top: -5rem;
}
.certacart img.prodict{
       position: absolute;
    width: 34rem;
    right: 0; 
}
.certacart .titl_x50 {
    padding-bottom: 3rem;
}
.colorclock{
      color: red;
    display: inline-block;
    border: 0.1rem solid #ff0000;
    padding: 0.5rem 1rem;
    line-height: 1.5rem;
    border-radius: 2rem;
    height: 2rem;  
}
.titl_x50.fw{
        width: 100%;
        padding-bottom: 2rem;
}

.xslidprod .uk-dotnav li {
    flex: none;
    padding-left: 12px;
    display: block;
    width: 100%;
    position: relative;
    height: 5rem;
}
.xslidprod .uk-dotnav li img{
    width: 5rem;
    height: 4.5rem;
    object-fit: contain;
    border: 0.3rem solid #f8f8f8;
    border-radius: 1rem;
      transition: .4s ease-in-out;
}
.xslidprod .uk-dotnav li.uk-active img{
     border: 0.3rem solid #e9e800;
}
.sort-links .uk-button.uk-button-link{
        padding-left: 0 !important;
    color: #ccc;

}
.sort-links .uk-button.uk-button-link.uk-active{
    color: #000;

}
.category .titl_x50.fw{
    padding-bottom: 0rem;
}
.navfixed_certa .uk-navbar-nav{
    padding-left: 1.4rem;
}
.uk-navbar-dropdown {
    --uk-position-offset: 0;
    --uk-position-shift-offset: 0;
    --uk-position-viewport-offset: 0;
    width: 22rem;
    padding: 2rem;
    background: #fff;
    border-radius: 2rem;
    color: #000000;
        z-index: 666;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
}
.navfixed_certa .uk-navbar-nav>li>a {
    min-height: 3rem !important;
    max-height: 3rem !important;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.05rem;
    line-height: 3rem;
    text-transform: none;
    font-family: var(--uk-global-font-family) !important;
}
.uk-navbar-container:not(.uk-navbar-transparent) {
    background: transparent;
}
    .uk-navbar-nav {
        gap: 2rem;
        height: 3rem;
        line-height: 3rem;
    }


.prod_har{
    padding-top:2rem;
}
.artice_p{
    font-weight: 100;
}
.artice_p span {
    width: 12rem;
    display: inline-block;
    color: #000;
    font-weight: 400;
}
.prod_har .tara_prototip {
    padding: 0rem;
    position: relative;
    margin-left: -1rem;
}
.prod_har .tara_prototip:before {
    content: "";
    width: 100%;
    position: absolute;
    height: 2.5rem;
    border-radius: 2rem;
    left: 0;
    top: 1.2rem;
    box-sizing: border-box;
    z-index: 0;
    border: 0.3rem solid #e5e5e559;
}
.prod_har .tara_prototip a:before {
    width: 0;
    height: 0;
    top: calc(50%);
    left: calc(50%);
    transition: .4s ease-in-out;
}
.prod_har .tara_prototip a:hover:before,
.prod_har .tara_prototip a.active:before{
    width: 4.4rem;
    height: 4.4rem;
    top: calc(50% - 2.2rem);
    left: calc(50% - 2.1rem);
    transition: .4s ease-in-out;
    border-radius:100%;
}

.prod_har .pretext {
    padding: 1rem 0rem 0.5rem;
    font-weight: 100;
    color: #000;
}

.click{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.prod_har .color_grid {
    position: relative;
    width: 100%;
    height: fit-content;
    left: 0;
    top: 0;
    z-index: 4;
}
.prod_har .hardfix {
    height: 2.1rem;
    position: relative;
    width: 2.1rem;
}
.prod_har .color_grid .color {
    background: #ccc;
    width: 2.1rem;
    position: absolute;
    height: 2.1rem;
    display: block;
    border-radius: 0.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: .4s ease-in-out;
}
.prod_har .color_grid .color:hover{
    margin-left:-0.2rem;
    margin-top:-0.2rem;
    width: 2.4rem;
    height: 2.4rem;
}
.xslidprod .uk-slideshow-nav.uk-dotnav{
    position: absolute;
    top: 0;
    left: 0;
    width: 5rem;
}
.inprod .uk-position-relative {
    position: relative !important;
    height: 27rem;
}
.inprod .uk-slideshow-items {
    height: 27rem;
    
}
.termot {
    background: #e9e800;
    width: fit-content;
    height: 2rem;
    border-radius: 2rem;
    padding: 0 2rem;
    color: #000;
    position: relative;
        display: inline-block;
    z-index: 2;
    line-height: 2rem;
        margin-bottom: 0.5rem;
}
.color.active{
    box-shadow: 0 0.4rem 1rem rgb(0 0 0 / 53%)!important;
}
.text_configuration{
        font-size: 0.9rem;
            margin-top: 1rem;
    font-weight: 100;
}
.price {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1rem;
}
.price span{
        color: #ccc;
    font-size: 1.4rem;
    font-weight: 100;
}
.uk-button-primary.cart {
    background-color: #e9e800;
    color: #000;
    border: 0px solid transparent;
    height: 3.5rem;
    line-height: 3.5rem;
    padding: 0rem 4rem;
    text-align: center;
    width: 70%;
    margin: 0rem 0px 1rem;
    font-size: 1.4rem!important;
}


.article .dess .statya img {
    width: 100%;
    border-radius: 2rem;
    height: 20rem;
    object-fit: cover;
    margin-bottom: 1rem;
}



.prodinfo{
    padding-top:2rem;
}
.prodinfo h2,
.prodinfo h3,
.prodinfo .titl_x50.fw {
        font-weight: 700;
    width: 100%;
        margin-top: 1rem;
    padding-bottom: 0rem;
}
.inprod .uk-subnav-pill>.uk-active>a {
    background-color: #e9e800;
    color: #000000;
    border-radius: 2rem;
}
.inprod .uk-subnav>.uk-active>a {
    color: #333;
}
.inprod .uk-subnav-pill>*>:first-child {
    padding: 1rem 3rem;
    font-size: 1rem;
    background: 0 0;
    font-weight: 400;
    color: #999;
    border-radius: 2rem;
    background: #f8f8f8;
}

[data-uk-cover]:where(img,video), [uk-cover]:where(img,video) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
}

.company .contact-card {
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    padding: 0rem !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .0);
    margin-top: 2rem;
}
.company .contact-info-item {
            padding: 12px 0;
            border-bottom: 1px solid #e5e5e5;
        }
.company .contact-info-item:last-child {
            border-bottom: none;
        }
.company .contact-icon {
            width: 2rem;
            color: #000;
            font-size: 2rem;
        }
.company #map {
            width: 100%;
            height: 20rem;
            border-radius: 8px;
        }
   /* Блоки инструкций */
        .instructions__items {
            margin-bottom: 2.5rem;
        }
.instruction .instruction__left {
    color:#f0506e;
}
.classsmain,
.disablet {
    color: #333333;
    cursor: default;
    text-decoration: none;
    pointer-events: none;
}
.instruction .instruction__left svg{
    width: 3rem;
}
        /* Карточка инструкции */
        .instruction {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            text-decoration: none;
            transition: all 0.25s ease;
            border: 0.0625rem solid #e2e8f0;
            box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.02);
            gap: 1.25rem;
        }

        .instruction:hover {
            border-color: #cbd5e1;
            box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
            transform: translateY(-0.125rem);
            text-decoration:none;
        }

        /* Левая часть */
        .instruction__left {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            flex: 1;
        }

        /* Блок с текстом */
        .instruction__info {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .instruction__info p {
            margin: 0;
            line-height: 1.2;
        }

        /* Первый параграф - название продукта */
        .instruction__info p:first-child {
            font-weight: 700;
            font-size: 1rem;
            color: #0f172a;
        }

        /* Второй параграф - описание */
        .instruction__info p:nth-child(2) {
            font-size: 0.875rem;
            color: #334155;
        }

        /* Третий параграф - ТУ */
        .instruction__info p:nth-child(3) {
            font-size: 0.8125rem;
            color: #64748b;
        }

        /* Правая часть */
        .instruction__right {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* Скрываем старые img */
        .instruction__left img,
        .instruction__right img {
            display: none;
        }

        /* Адаптив */
        @media (max-width: 48rem) {
            body {
                padding: 1rem;
            }
            
            .instruction {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem;
            }
            
            .instruction__right {
                align-self: flex-end;
                margin-top: 0.5rem;
            }
        }
        
        #filters-panel{
      
    box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, .2);
    border-radius: 2rem;
    padding: 2rem;
    position: absolute;
    width: calc(100% + 4rem);
    left: -2rem;
    top: 3rem;
    z-index: 10;
    background: #fff;
    box-sizing: border-box;


        }
        .realite{
                position: relative;
        }
        #toggleFilterBtn{
         position: absolute;
    right: 0;
    top: 0;       
        }
        
        
        
        /* Стили для фильтра */
.filter-group {
    padding: 1rem;
}

.filter-chip {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #f8f8f8;
    border: 0.2rem solid #e5e5e5;
    border-radius: 1rem;
    font-size: 0.5rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-chip:hover {
    background: #e8e8e8;
    border-color: #ccc;
    text-decoration: none;
    color: #333;
    transform: translateY(-2px);
}

.filter-chip.active {
    background: #e9e800;
    border-color: #e9e800;
    color: #000000;
}

/* Квадратики цветов */
.filter-color-btn {
    display: block;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.color-square {
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.3rem;
    border: 0.2rem solid #ddd;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.fixhellight{
        max-height: 10rem;
    overflow: auto;
}
.closer{
        position: absolute;
    right: 2rem;
    top: 0rem;
}
.closer svg{

    width: 2rem;
    border: 0.2rem solid #f0506e;
    border-radius: 1rem;
    box-sizing: border-box;
    padding: 0.5rem;
}
.closer a{
    color:#f0506e;
}
.filter-color-btn:hover .color-square {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.filter-color-btn.active .color-square {
    border: 3px solid #1e87f0;
    box-shadow: 0 0 0 2px rgba(30,135,240,0.3);
    transform: scale(1.05);
}
.taradata_a,
.taradata{
    color: #000;
    font-size: 0.45rem;
    font-weight: 800;
    position: absolute;
    z-index: 2;
    top: 0.8rem;
    left: 0;
    width: 100%;
}

.prod_har .taradata_a,
.prod_har .taradata{
    color: #000;
    font-size: 1rem;
    font-weight: 800;
    position: absolute;
    z-index: 2;
    top: 1.7rem;
    left: 0;
    width: 100%;
}


.uk-gap-small {
    gap: 0.5rem;
}

.filter-actions {
    margin-top: 1rem;
}
footer a{
    font-weight: 500!important;
    color:#000!important;
}

/* Анимация для появления фильтра */
@keyframes uk-fade-slide-bottom-small {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.uk-input, .uk-select:not([multiple]):not([size]) {
    height: 3rem;
    vertical-align: middle;
    display: inline-block;
    border-radius: 2rem;
    box-sizing: border-box;
    padding: 1rem 2rem;
}

.uk-modal .uk-button-primary {
    background-color: #f3f34d;
    color: #000000;
    height: 3rem;
}
.uk-modal .uk-text-small {
    font-size: 0.6rem;
    padding: 2rem 1rem 1rem;
}

.uk-modal-title.uk-text-center {
    font-size: 1.6rem;
    padding: 2rem 0rem 1rem;
    color: #000;
    font-weight: 700;
}

.search-wrapper {
position: absolute;
    max-width: 20rem;
    top: 0.4rem;
    right: 0.4rem;
}
#searchInput {
    width: 20rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
    border: 0.1rem solid #fff;
    border-radius: 2rem;
    height: 1.2rem;
    background: #e9e800;
    font-size: 1rem;
}
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    right: 0;
    background: #fff;
    border: 0px solid #ddd;
    border-radius: 2rem;
    max-height: 20rem;
    overflow-y: auto;
    display: none;
    z-index: 1000;
        box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, .2);
}
.search-item {
    display: flex;
        border-radius: 2rem;
    align-items: center;
    padding: 10px;
    border-bottom: 0px solid #eee;
    cursor: pointer;
    gap: 15px;
}
.search-item:hover {
    background: #f5f5f5;
}
.search-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.search-item-info h4 {
    margin: 0 0 5px 0;
        font-size: 1rem!important;
}
.search-item-info p {
    margin: 0;
    font-size: 12px;
    color: #666;
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 1rem 0;
    margin: 0 0 -3rem 0;
    background: transparent;
    font-size: 0.7rem;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #999;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #1e87f0;
    text-decoration: underline;
}

.breadcrumbs li:last-child a {
    color: #33333340;
    font-weight: 300;
    pointer-events: none;
    cursor: default;
}
#searchResults a{
       text-decoration:none; 
}
#searchResults a:hover{
    text-decoration:none;
}
.search-item img {
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    border-radius: 1rem;
}
.search-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.7rem !important;
}
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 12px;
        padding: 8px 0;
    }
}
  .tippy-box[data-theme~='dark'] {
        background-color: #2c3e50;
        color: #fff;
        border-radius: 8px;
        padding: 4px 0;
    }
    
    .tippy-box[data-theme~='dark'] .tippy-content {
        padding: 8px 12px;
    }
    
    .tippy-box[data-theme~='dark'] a {
        color: #ffd700;
        text-decoration: none;
    }
    
    .tippy-box[data-theme~='dark'] a:hover {
        text-decoration: underline;
    }
    
    .tippy-box[data-theme~='dark'] hr {
        border-color: rgba(255,255,255,0.2);
        margin: 8px 0;
    }
    
    .tippy-box[data-theme~='dark'] ul {
        margin: 0;
        padding-left: 16px;
    }
    
    .tippy-box[data-theme~='dark'] li {
        margin: 4px 0;
    }
    
    
@media (max-width: 1168px) {    
.has_bg .animated_bg {
    height: 47rem;
    overflow: hidden;
}    

}  
    
@media (max-width: 1068px) {    
.has_bg .animated_bg {
    height: 40rem;
    overflow: hidden;
} 
.uk-container-xlarge {
    padding: 0 0.8854166666666667rem;
    max-width: 65.104167rem;
    width: 100%;
    margin: 0 auto;
}
.apple-fix {
    display:none;
}
.taradata_a, .taradata {
    font-size: 0.65rem;
    top: 1rem;
}
.prod_har .taradata_a, .prod_har .taradata {
    top: 1.1rem;
}
.navfixed_certa .uk-navbar-nav>li>a{
  font-size: 1rem!important;  
  padding: 0px!important;
}
.slider_1_certaanimate img.ci2{
    display:none;
}
.slider-text_certa {
    width: 47rem;
}
}  
    
    /* ==================== МОБИЛЬНАЯ АДАПТАЦИЯ ==================== */
@media (max-width: 768px) {
    /* Отключаем clamp и фиксируем базовый размер */
    :root {
        font-size: 14px;
    }
    
    /* Контейнеры */
    .uk-container-xlarge {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    /* Хедер */
    .to-hedder .uk-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .to-hedder .uk-width-1-3,
    .to-hedder .uk-width-2-3 {
        width: 100% !important;
        text-align: center !important;
    }
    
    .to-hedder .phone {
        text-align: center !important;
        font-size: 1.2rem !important;
        margin-top: 0.5rem;
    }
    
    .to-hedder .city_cardinate,
    .to-hedder .city_name {
        text-align: center !important;
    }
    
    .to-hedder img {
        max-width: 33%;
        margin: 0 auto !important;
    }
    
    /* Навигация */
    .navfixed_certa {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 1rem !important;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .uk-navbar-nav {
        gap: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    
    .uk-navbar-nav > li > a {
        padding: 0 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Выпадающее меню */
    .uk-navbar-dropdown {
        width: calc(100vw - 2rem) !important;
        left: 1rem !important;
        right: 1rem !important;
        padding: 1rem !important;
    }
    
    /* Анимированный фон */
    .has_bg .animated_bg {
        height: auto !important;
        min-height: 25rem;
    }
    
    .slider_1_certaanimate {
        position: relative !important;
        height: auto !important;
        padding: 2rem 1rem;
    }
    
    .slider_1_certaanimate img.ci1,
    .slider_1_certaanimate img.ci2,
    .slider_1_certaanimate img.ci3 {
        display: none;
    }
    
    .slider-text_certa {
        position: relative !important;
        width: 100% !important;
        bottom: auto !important;
        padding: 1.5rem !important;
        border: 0.5rem solid #e5e5e5c4 !important;
        border-radius: 2rem !important;
        margin-top: 2rem;
    }
    
    .slider_title {
        font-size: 1.3rem !important;
    }
    
    .slider_text {
        font-size: 0.8rem !important;
        padding-top: 1rem !important;
    }
    
    .slider-text_certa .uk-button {
        margin-top: 1rem;
        width: 100% !important;
        text-align: center;
    }
    
    /* Заголовки */
    .titl_x50 {
        width: 100% !important;
        margin-top: 1rem !important;
        font-size: 1.4rem !important;
    }
    
    h1, .uk-h1 { font-size: 1.6rem !important; }
    h2, .uk-h2 { font-size: 1.4rem !important; }
    h3, .uk-h3 { font-size: 1.2rem !important; }
    .uk-heading-medium { font-size: 1.6rem !important; }
    .uk-heading-large { font-size: 2rem !important; }
    
    /* Карточки категорий */
    .category_prew {
        height: auto !important;
        min-height: 12rem;
        padding: 1rem !important;
        margin-bottom: 1rem;
    }
    
    .category_prew img {
        position: relative !important;
        bottom: 0 !important;
        height: auto !important;
        max-height: 8rem;
        margin-top: 2rem;
    }
    
    .category_prew .cattext {
        position: relative !important;
        top: 0 !important;
        padding: 0 !important;
        font-size: 0.9rem;
    }
    
    .category_prew .clyacsa {
        display: none;
    }
    
    /* Товары */
    .products .uk-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .products .uk-width-1-4 {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .products .uk-card-body .uk-card-media-top {
        height: 12rem !important;
    }
    
    .products .uk-card-body .uk-card-media-top img {
        min-width: 10rem !important;
        max-width: 10rem !important;
        left: calc(50% - 5rem) !important;
    }
    
    .price_typ {
        top: 11rem !important;
        font-size: 1rem !important;
        padding: 0.2rem 0.5rem !important;
    }
    
    .uk-card-title.prod-title {
        font-size: 0.8rem !important;
        height: auto !important;
    }
    
    /* Блок новостей */
    .bg_news {
        width: 100% !important;
        margin-left: 0 !important;
        height: auto !important;
        padding: 1rem !important;
    }
    
    .statya img {
        height: auto !important;
        max-height: 12rem;
    }
    
    .statya .uk-card-title {
        font-size: 1.1rem !important;
    }
    
    /* Сертификат карта */
    .certacart {
        height: auto !important;
        padding: 1rem 0;
    }
    
    .certacart img.carta,
    .certacart img.prodict {
        position: relative !important;
        width: 80% !important;
        margin: 0 auto !important;
        display: block;
    }
    
    .certacart img.carta {
        margin-bottom: 1rem;
    }
    
    /* Фильтр */
    #filters-panel {
            box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0);
        position: relative;
        top: auto;
        width: 100%;
        bottom: auto;
        left: auto;
        padding: 0!important;
        color: #000!important;
        right: auto;
        width: 100% !important;
        border-radius: 0;
        max-height: max-content;
        overflow-y: auto !important;
        z-index: 1;
        display: block !important;
        background: transparent;
    }
    #filters-panel .uk-text-right.uk-margin-top.closer{
        display:none;
    }
    .closer {
        position: sticky !important;
        top: 0 !important;
        right: 0 !important;
        display: flex;
        justify-content: flex-end;
        background: white;
        padding: 0.5rem;
        z-index: 10;
    }
    
    .filter-group {
        padding: 0.5rem;
    }
    
    .filter-chip {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.7rem !important;
        color: #000!important;
    }
    
    /* Поиск */
    .search-wrapper {
        position: relative !important;
        max-width: 100% !important;
        top: auto !important;
        right: auto !important;
        margin-top: 0rem;
    }
  .uk-offcanvas-bar {
    left: 0;
    background: #333!important;
}
    #searchInput {
        width: 100% !important;
    }
    
    /* Кнопки */
    .uk-button-primary.cart {
        width: 100% !important;
        font-size: 1.1rem !important;
        padding: 0 !important;
    }
    
    .uk-button {
        padding: 0 1rem !important;
    }
    
    /* Хлебные крошки */
    .breadcrumbs {
        margin: 0 0 1rem 0 !important;
        font-size: 0.6rem !important;
        flex-wrap: wrap;
    }
    
    /* Инструкции */
    .instruction {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1rem !important;
    }
    
    .instruction__right {
        align-self: flex-end !important;
        margin-top: 0.5rem !important;
    }
    
    /* Карточки на странице товара */
    .inprod .uk-position-relative {
        height: auto !important;
    }
    
    .inprod .uk-slideshow-items {
        height: 18rem !important;
    }
    
    .xslidprod .uk-dotnav {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        padding-bottom: 0.5rem;
    }
    
    .xslidprod .uk-dotnav li {
        width: auto !important;
        padding: 0 0.25rem !important;
    }
    
    .xslidprod .uk-dotnav li img {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }
    
    /* Характеристики товара */
    .prod_har .tara_prototip:before {
        height: 2rem !important;
        top: 0.8rem !important;
    }
    
    .artice_p span {
        width: 8rem !important;
    }
    
    .price {
        font-size: 1.8rem !important;
    }
    
    /* Цвета */
    .color_grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hardfix {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    /* Табы */
    .inprod .uk-subnav-pill>*>:first-child {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Компания */
    .company .uk-grid {
        flex-direction: column;
    }
    
    .company .uk-width-1-2 {
        width: 100% !important;
    }
    
    /* Футер */
    footer .uk-grid {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    footer .uk-width-1-4 {
        width: 100% !important;
    }
    
    /* Модальное окно */
    .uk-modal-title.uk-text-center {
        font-size: 1.2rem !important;
        padding: 1rem !important;
    }
    
    /* Отступы */
    .padding_div {
        padding: 1rem 0 !important;
    }
    
    .uk-card-body {
        padding: 1rem !important;
    }
    
    /* Переключатели тары */
    .tara_prototip .uk-grid-small {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tara_prototip .uk-width-1-5 {
        width: 20% !important;
    }
    
    /* Адаптация изображений в статьях */
    .article .statya img,
    .article .dess .statya img {
        height: auto !important;
        max-height: 12rem;
    }
    .uk-padding-large {
    padding: 1rem 0rem !important;
}
.phone{
    color: #000;
    font-size: 16px;
    text-align: right;
    padding: 2px 0px;
    display: block;
}
.top_logo{
    width: 115px;
}
.uk-offcanvas-flip .uk-open>.uk-offcanvas-bar {
    left: auto;
    right: 0;
    background: #333;
}
    body {
        padding: 1rem;
        box-sizing: border-box;
        max-width: 100%;
    }
        .uk-container-xlarge {
        padding: 0 0rem !important;
        max-width: 100% !important;
    }
    .products .color_grid {
    position: absolute;
    width: 5.4rem;
    height: 9rem;
    left: 1rem;
    top: 1rem;
    z-index: 0;
}
.products .color_grid .color {
    background: #ccc;
    width: 1.8rem;
    position: absolute;
    height: 1.8rem;
    display: block;
    border-radius: 0.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: .4s ease-in-out;
}
.taradata_a, .taradata {
    color: #000;
    font-size: 1rem;
    font-weight: 800;
    position: absolute;
    z-index: 2;
    top: 1.2rem;
    left: 0;
    width: 100%;
}
    .products .color_grid {
        position: absolute;
        width: 5.7rem;
        height: fit-content;
        left: 1rem;
        top: 1rem;
        z-index: 2;
        border-radius: 6px;
        border: 0.1rem solid #e5e5e559;
    }
    .uk-card-title.prod-title {
        font-size: 1rem !important;
        height: auto !important;
    }
    .tara_prototip:before {
    content: "";
    width: calc(100% - 2rem);
    position: absolute;
    height: 3rem;
    border-radius: 2rem;
    left: 1rem;
    top: 0.7rem;
    box-sizing: border-box;
    z-index: 0;
    border: 0.3rem solid #e5e5e559;
}
.tara_prototip .uk-active a:before, .tara_prototip a:hover:before {
    width: 3.2rem;
    height: 3.2rem;
    top: calc(50% - 1.6rem);
    left: calc(50% - 1.54rem);
    border-radius: 3rem;
}
    .products .uk-card-body .uk-card-media-top img {
        min-width: 10rem !important;
        max-width: 12rem !important;
        top: 0;
        left: calc(50% - 2rem) !important;
    }
    .color_grid .uk-grid-margin{
        margin:0!important;
    }
        .artice_p span {
        width: 13rem !important;
    }
    .prod_har .tara_prototip {
    padding: 0rem;
    position: relative;
    margin-left: 0rem;
}
.prod_har .taradata {
    color: #000;
    font-size: 1rem;
    font-weight: 800;
    position: absolute;
    z-index: 2;
    top: 1.4rem;
    left: 0;
    width: 100%;
}
    .inprod .uk-subnav-pill>*>:first-child {
        padding: 0.5rem 1rem !important;
        font-size: 1.8rem !important;
        height: 2.2rem;
    }
.prod_har .hardfix {
        width: 2rem !important;
        height: 2rem !important;
        margin-bottom: 1rem!important;
    }
    .asamob .uk-subnav>* {
    flex: none;
    padding-left: 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 1rem;
    font-size: 14px;
}
    .asamob  .uk-subnav-pill>*>:first-child {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        text-align: center!important;
        height: 2.2rem;
    }
        .statya img {
        height: auto !important;
        max-height: 17rem;
        object-fit: cover;
    }
    .colorclock {
        color: red;
        display: inline-block;
        border: 0.1rem solid #ff0000;
        padding: 0rem 0rem;
        line-height: inherit;
        border-radius: 0;
        height: 2rem;
        border: 0 !important;
}
.dess .prodanima{
    width: 100%; 
}
.statya{
    
}
.uk-nav-default {
    font-size: 1.5rem;
    line-height: 1.5;
}
.has_bg .animated_bg {
    position: relative;
    z-index: 10;
    margin: -2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}
.has_bg .animated_bg .hasanima {
    width: 100%;
    height: 200%;
    position: absolute;
    left: 0;
    top: 0;
}
    .has_bg .animated_bg {
        height: auto !important;
        min-height: 48rem;
                padding-bottom: 0;
    }
        .category_prew .cattext {
        position: absolute !important;
        top: 1rem !important;
        padding: 0 !important;
        font-size: 0.9rem;
    }
        .category_prew img {
        position: absolute !important;
        bottom: 0 !important;
        height: auto !important;
        max-height: 8rem;
        margin-top: 2rem;
    }
.certacart{
    display:none;
}
.uk-slideshow-items {
    height: 45rem!important;
}
    .slider_1_certaanimate img.ci1, .slider_1_certaanimate img.ci2, .slider_1_certaanimate img.ci3 {
        display: block;
    }
    
    .slider_1_certaanimate img.ci1 {
        width: 28rem;
        position: absolute;
        right: -1rem;
        bottom: -35rem;
        z-index: 1;
    }
.slider_1_certaanimate img.ci3 {
    width: 14rem;
    position: absolute;
    right: -2rem;
    bottom: -34rem;
    filter: drop-shadow(0 0.2rem 0.3rem rgba(0, 0, 0, 0.2)) drop-shadow(0 0.5rem 0.8rem rgba(0, 0, 0, 0.15)) drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.1));
}
.slider_1_certaanimate img.ci2 {
    width: 25rem;
    position: absolute;
    right: 2rem;
    z-index: 1;
    bottom: -32rem;
    filter: drop-shadow(0 0.2rem 0.3rem rgba(0, 0, 0, 0.2)) drop-shadow(0 0.5rem 0.8rem rgba(0, 0, 0, 0.15)) drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.1));
}
.city_name {
        text-align: left;
    }
        .to-hedder img {
        max-width: 54%;
        margin: 0 auto !important;
    }
    .ltlmobilefix{
    margin-top: 14px;
    padding-left: 1rem;
}
#searchInput {
    width: 20rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
    border: 0.1rem solid #fff;
    border-radius: 2rem;
    height: 1.2rem;
        background: #f0f0f0;
    font-size: 1rem;
}
.to-hedder .city_cardinate, .to-hedder .city_name {
        text-align: left!important;
    }
    
    .animated_bg {
        position: relative;
        z-index: 0;
        margin: 0rem;
        padding: 0rem;
        margin-bottom: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
        .products.uk-slider .uk-grid.uk-slider-items {
        display: flex;
        flex-wrap: nowrap!important;
    }
    .uk-slider-container-offset.products.uk-slider {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        .breadcrumbs {
        margin: 0 0 1rem 0 !important;
        font-size: 1rem !important;
        flex-wrap: nowrap;
        width: 1000%;
    }
    .ax_navx{
        width: 100%;
        overflow: hidden;
        
    }
    
}
.redionality{
    background: #e9e800;
    padding: 2rem;
    border-radius: 2rem;
    display: block;
    margin-top: 2rem;
}
.redionality a{
        display: block;
    color: #000;
}