@font-face{
    font-family: "poppins-light";
    src: url(../fonts/Poppins-Light.ttf);
    font-display: swap;
}

@font-face{
    font-family: "poppins-regular";
    src: url(../fonts/Poppins-Regular.ttf);
    font-display: swap;
}

@font-face{
    font-family: "poppins-medium";
    src: url(../fonts/Poppins-Medium.ttf);
    font-display: swap;
}

@font-face{
    font-family: "poppins-semibold";
    src: url(../fonts/Poppins-SemiBold.ttf);
    font-display: swap;
}

@font-face{
    font-family: "poppins-bold";
    src: url(../fonts/Poppins-Bold.ttf);
    font-display: swap;
}

@font-face{
    font-family: "poppins-extrabold";
    src: url(../fonts/Poppins-ExtraBold.ttf);
    font-display: swap;
}

:root{
    --dark-txt-color: #373737;
    --white-txt-color: #fff;
    --gray-txt-color: #787878;
    --light-gray-txt-color: #9e9e9e;
    --blue-txt-color: #0099c3;
    --gray-blue-txt-color: #4c5a65;
    --red-txt-color: #ff0000;
    --white-back-color: #fff;
    --blue-back-color: #0099c3;
    --black-back-color: #000;
    --dark-back-color: #373737;
    --light-gray-back-color: #ecf1f6;
    --light-gray-back-color-2: #f8f7fc;
    --light-gray-border: #e4e8ec;
    --placeholder-color: #7b7e83;
    --transparent-back: transparent;
    --font-size: 16px;   
}

*, *::before, *::after{
    box-sizing: border-box;
}

html{
    font-size: calc(var(--font-size) - 0.12em);
    overflow-x: hidden;
}

body{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-size: inherit;
    background-color: var(--white-back-color);
    color: var(--dark-txt-color);
    font-family: "poppins-regular", sans-serif;
    letter-spacing: 0.02em;
}

.freeze-body-scroll{
    overflow: hidden;
    position: fixed;
    width: 100%;
}

::-webkit-scrollbar{
    width: 0.5em; /* Adjust as desired */
    height: 0.5em;
}

::-webkit-scrollbar-track{
    background-color: var(--light-gray-back-color-2); /* Light gray background */
    -webkit-box-shadow: inset 0 0 5px rgb(192, 192, 192);
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    box-shadow: inset 0 0 5px rgb(192, 192, 192);
}

::-webkit-scrollbar-thumb{
    background-color: var(--blue-back-color); /* Blue background */
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover{
    background-color: var(--blue-back-color);
}

h1, h2, h3, h4, h5, h6, p, ol, ul, button, input, textarea, figure{
    margin: 0;
    padding: 0;
}

input, textarea, button, select, a, i, svg, img, span, div, .aside-products .wrapper-text p{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrapper-form input, .wrapper-form textarea{
    font-size: 1em;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, a, button, span, b, strong, li, i, textarea, figure, label, input, figcaption{
    font-weight: 400;
}

ol, ul{
    list-style-type: none;
}

a, button{
    color: inherit;
    cursor: pointer;
}

a{
    text-decoration: none;
}

button{
    border: 0;
    background-color: var(--transparent-back);
}

.container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}

.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, 
.col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, 
.col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, 
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, 
.col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, 
.col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, 
.col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, 
.col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, 
.col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12, .col-new-products, .col-brand, .col-product, .slider-col-brand{
    position: relative;
    min-height: 1px;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.no-scroll{
  overflow: hidden;
}

.wrapper-title h1, .main-section .wrapper-title h2{
    font-size: 3.3em;
    line-height: 1.3;
    /* color: var(--gray-blue-txt-color); */
    color: var(--dark-txt-color);
    font-family: "poppins-bold", sans-serif;
}

.wrapper-title h2{
    font-size: 2.3em;
    line-height: 1.4;
    /* color: var(--gray-blue-txt-color); */
    color: var(--dark-txt-color);
    font-family: "poppins-semibold", sans-serif;
}

.wrapper-title h3{
    font-size: 1.2em;
    line-height: 1.5;
    color: var(--dark-txt-color);
}

.wrapper-title + .wrapper-text{
    margin-top: 0.5em;
}

.title-part{
    margin-bottom: 1.5em;
}

.wrapper-text{
    margin-top: 1em;
}

.wrapper-text p{
    font-size: 1.2em;
    margin-bottom: 1em;
    line-height: 1.6;
}

.wrapper-text p:last-child{
    margin-bottom: 0;
}

.wrapper-btn{
    display: flex;
    align-items: center;
    margin-top: 1.5em;
}

/*.wrapper-btn a:not(#btn-brands), .wrapper-btn button:not(#btn-brands){*/
/*    padding: 0.7em 1.4em;*/
/*}*/

.wrapper-btn a, .wrapper-btn button{
    font-size: 1em;
    line-height: 1.6;
    border-width: 0.07em;
    padding: 0.7em 1.4em;
    border-style: solid;
    border-radius: 0.2em;
    align-items: center;
    transition: all 0.5s ease;
    font-family: "poppins-regular", sans-serif;
}

/*.wrapper-btn a#btn-brands, .wrapper-btn button#btn-brands{*/
/*    padding: 0.7em 1.3em;*/
/*}*/

.wrapper-btn a svg, .wrapper-btn button svg{
    font-size: 0.8em;
}

.wrapper-img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.flex{
    display: flex;
}

.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}

.inline-flex{
    display: inline-flex;
}

.block{
    display: block;
}

.none{
    display: none;
}

.inline-block{
    display: inline-block;
}

.inline{
    display: inline;
}

.relative{
    position: relative;
}

.static{
    position: static;
}

.absolute{
    position: absolute;
}

.fixed{
    position: fixed;
}

.align-center{
    align-items: center;
}

.align-end{
    align-items: flex-end;
}

.align-start{
    align-items: flex-start;
}

.align-baseline{
    align-items: baseline;
}

.align-content-center{
    align-content: center;
}

.align-content-start{
    align-content: flex-start;
}

.align-content-between{
    align-content: space-between;
}

.justify-center{
    justify-content: center;
}

.justify-between{
    justify-content: space-between;
}

.justify-around{
    justify-content: space-around;
}

.space-evenly{
    justify-content: space-evenly;
}

.justify-end{
    justify-content: flex-end;
}

.direction-column{
    flex-direction: column;
}

.direction-row{
    flex-direction: row;
}

.uppercase{
    text-transform: uppercase;
}

.lowercase{
    text-transform: lowercase;
}

.capitalize{
    text-transform: capitalize;
}

.pointer{
    cursor: pointer;
}

.text-left{
    text-align: left;
}

.text-center{
    text-align: center;
}

.text-right{
    text-align: right;
}

.dark-txt{
    color: var(--dark-txt-color);
}

.white-txt{
    color: var(--white-txt-color);
}

.gray-txt{
    color: var(--gray-txt-color);
}

.light-gray-txt{
    color: var(--light-gray-txt-color);
}

.gray-blue-txt{
    color: var(--gray-blue-txt-color);
}

.blue-txt{
    color: var(--blue-txt-color);
}

.red-txt{
    color: var(--red-txt-color);
}

@keyframes rotate_loader{
    0%{
        transform: translateY(-50%) rotateZ(0deg);
    }
    100%{
        transform: translateY(-50%) rotateZ(360deg);
    }
}

#overlay-submit{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 999999;
    display: none;
}

#clear-filters{
    font-size: 1em;
    padding: 0.5em 1.2em;
    border: 0;
}

/* -- The popup for error input -- */

.err-input{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.err-input .popuptext{
    visibility: hidden;
    width: auto;
    font-size: 1.2em;
    background-color: red;
    color: var(--white-back-color);
    text-align: center;
    border-radius: 0.2em;
    padding: 0.6em 1.2em;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: -2.7em;
    z-index: 10;
}

aside .err-input .popuptext{
    left: 50%;
    transform: translateX(-50%);
}

/* Popup arrow */
.err-input .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: red var(--transparent-back) var(--transparent-back) var(--transparent-back);
}

/* Toggle this class - hide and show the popup */
.err-input .show{
    visibility: visible;
    -webkit-animation: popup_error_input 1s;
    animation: popup_error_input 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes popup_error_input{
    from{ opacity: 0; } 
    to{ opacity: 1; }
}

@keyframes popup_error_input{
    from{ opacity: 0; }
    to{ opacity: 1; }
}

/* -- End popup for error input -- */

/*#popup-show-msg{*/
/*    position: fixed;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    min-width: 10vw;*/
/*    max-width: 30vw;*/
/*    padding: 1.3em 1.9em;*/
/*    border-radius: 0.5em;*/
/*    box-shadow: 0 0.3em 0.8em rgba(0,0,0,0.3);*/
/*    color: #fff;*/
/*    font-family: Arial, sans-serif;*/
/*    font-size: 1em;*/
/*    text-align: center;*/
/*    z-index: 9999;*/
/*    opacity: 0;*/
/*    transition: opacity 0.5s;*/
/*}*/
  
/*#popup-show-msg.show{*/
/*    opacity: 1;*/
/*}*/

.light-grey-back{
    background-color: var(--light-gray-back-color);
}

.light-grey-back-2{
    background-color: var(--light-gray-back-color-2);
}

.white-back{
    background-color: var(--white-back-color);
}

.blue-back{
    background-color: var(--blue-back-color);
}

.black-back{
    background-color: var(--black-back-color);
}

.dark-back{
    background-color: var(--dark-back-color);
}

.transparent-back{
    background-color: var(--transparent-back);
}

.border-blue{
    border-color: var(--blue-back-color);
}

.border-light-gray{
    border-color: var(--light-gray-border);
}

.icon.small{
    width: 1.5em;
}

/* header{
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
} */

.top-header{
    padding: 0.7em 0;
}

.top-header .top-left-header > a{
    margin-right: 1.8em;
    font-family: "poppins-medium", sans-serif;
}

.top-header .top-left-header > a .icon{
    margin-right: 0.3em;
}

.top-header .top-right-header > a{
    margin-left: 1.8em;
}

.middle-header, .bottom-header{
    border-bottom: 0.07em solid #eeeeee;
}

.middle-header{
    padding: 1.5em 0;
}

.header .middle-header .middle-left-header img{
    max-width: 20em;
    width: 100%;
}

.header .middle-header .middle-center-header .hamburger svg{
    font-size: 2.7em;
}

.header .middle-header .middle-center-header input,
.search-aside .ui.fluid.input input{
    padding-right: 3em !important;
    border-color: #d4d4d4;
}

.header .middle-header .middle-center-header input + button,
.search-aside .ui.fluid.input input + button{
    position: absolute;
    line-height: 1;
    text-align: center;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
    width: 3em;
    background-color: var(--transparent-back);
}

.header .middle-header .middle-center-header input + button i.icon,
.search-aside .ui.fluid.input input + button i.icon{
    pointer-events: visible !important;
    cursor: pointer;
    font-size: 1.2em;
    opacity: 0.4;
    border-radius: 0 0.28571429rem 0.28571429rem 0;
    transition: opacity 0.3s ease;
}

.header .middle-header .middle-center-header input:focus + button i.icon,
.search-aside .ui.fluid.input input:focus + button i.icon{
    opacity: 0.6;    
}

.header .middle-header .middle-center-header input:focus{
    border-color: var(--blue-back-color);
    color: var(--dark-txt-color);
}

.ui.input{
    font-size: unset !important;
    display: flex !important;
    flex-wrap: wrap;
}

.ui.input input::selection, .ui.input textarea::selection{
    opacity: 1 !important;
}

.ui.fluid.input > input, .ui.fluid.input > textarea{
    font-family: "poppins-regular", sans-serif !important;
    display: flex;
    align-items: center;
    line-height: 1;
    min-height: 0;
    color: var(--dark-txt-color);
    outline: 0;
    font-size: 1em;
    opacity: 1 !important;
    border-radius: 0.3em;
    transition: all 0.3s ease;
}

.ui.fluid.input > input{
    height: 3.5em;
    padding: 0 1.2em;
}

.ui.fluid.input > textarea{
    padding: 1.2em 1.2em !important;
}

div.text, input.text{
    font-size: 1.1em !important;
    opacity: 1 !important;
    border-radius: 0.3em;
}

::selection{
    background-color: var(--blue-back-color);
    color: var(--white-txt-color);
}

.wrapper-table-products .ui.input.focus > input, .wrapper-table-products .ui.input > input:focus{
    border-color: var(--blue-back-color);
    color: var(--dark-txt-color);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="tel"]:focus, textarea:focus, input[type="number"]:focus{
    border-color: #979797;
    opacity: 1 !important;
}

input[type="number"]{
    font-size: 1.2em;
    font-family: "poppins-regular", sans-serif !important;
}

input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
    appearance: none;
}

.ui.input > input::placeholder, .ui.input > textarea::placeholder{
    color: var(--light-gray-txt-color) !important;
    font-size: 1em !important;
}

.ui.input > input::-ms-input-placeholder, .ui.input > textarea::-ms-input-placeholder{
    color: var(--placeholder-color) !important;
    font-size: 1em !important;
}

.ui.input > input::-moz-placeholder, .ui.input > textarea::-moz-placeholder{
    color: var(--placeholder-color) !important;
    font-size: 1em !important;
}

.ui.input > input:-ms-input-placeholder, .ui.input > textarea:-ms-input-placeholder{
    color: var(--placeholder-color) !important;
    font-size: 1em !important;
}

/* ::placeholder{
    color: var(--placeholder-color);
    font-size: 1.1em;
    opacity: 1 !important;
}*/

.middle-header .middle-right-header > a, .middle-header .middle-right-header > .cart-part, .middle-header .middle-right-header > span, .top-header .top-right-header > a, .top-header .top-right-header > .cart-part, .top-header .top-right-header > span.account-info{
    margin-left: 1.5em;
}

.middle-header .middle-right-header > a:first-child, .top-header .top-right-header > a:first-child{
    margin-left: 0;
}

.middle-header .middle-right-header > .cart-part img, .middle-header .middle-right-header > a img, .middle-header .middle-right-header > span img, .top-header .top-right-header > a img, .top-header .top-right-header > .cart-part img, .top-header .top-right-header > span img{
    width: 2em;
    margin-right: 0.5em;
}

.middle-header .middle-right-header > a img:last-child, .middle-header .middle-right-header > span img:first-child, .top-header .top-right-header > .cart-part img:last-child, .top-header .top-right-header > span img:first-child{
    margin-right: 0;
}

.middle-header .middle-right-header .cart-items, .middle-header .middle-right-header .whish-items, .top-header .top-right-header .cart-items, 
.top-header .top-right-header .whish-items{
    font-size: 1.5em;
}

.middle-header .middle-right-header > span img + svg, .top-header .top-right-header > span img + svg{
    margin-left: 0.3em;
}

.header .account-info .dropdown-profile{
    position: absolute;
    width: 12em;
    right: 0;
    top: 100%;
    padding-top: 1em;
    z-index: 999999;
    display: none;
}

.header .account-info .dropdown-profile ul{
    /* padding: 0.6em 0; */
    border-radius: 0.3em;
    overflow: hidden;
    box-shadow: 0 0 10px -2px #cecece;
}

.header .account-info .dropdown-profile ul li a{
    color: var(--dark-txt-color);
    font-size: 1.2em;
    display: block;
    padding: 0.6em 2.5em 0.6em 1em;
    border-top: 0.07em solid #f1f1f1;
    transition: all 0.1s ease
}

.header .account-info .dropdown-profile ul li a:hover{
    background-color: var(--blue-back-color);
    color: var(--white-txt-color);
}

.overflow-cart, #popup-cart-dialog, .overflow-aside-menu, .aside-menu{
    position: fixed;
    opacity: 0;
    transition: all 0.3s ease;
    top: 0;
    right: 0;
    bottom: 0;
}

.overflow-cart, .overflow-aside-menu{
    left: 0;
    background-color: hsl(0deg 0% 0% / 70%);
    z-index: -1;
}

#popup-cart-dialog{
    z-index: 999999;
    max-width: 45em;
    width: 100%;
    background-color: var(--white-back-color);
    transform: translateX(100%);
}

#popup-cart-dialog .header-dialog{
    padding: 1.2em 1.3em;
    border-bottom: 0.07em solid #eeeeee;
}

#popup-cart-dialog .header-dialog img{
    width: 2.5em;
    margin-right: 1em;
}

#popup-cart-dialog .header-dialog svg#close-cart-icon{
    font-size: 2.5em;
    width: 1em;
    cursor: pointer;
}

#popup-cart-dialog .header-dialog span{
    font-size: 1.4em;
}

#popup-cart-dialog .main-dialog{
    margin: 0;
    padding: 1em 1.3em;
}

#popup-cart-dialog .dialog-products{
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

#popup-cart-dialog .dialog-products::-webkit-scrollbar{
    width: 0.6em; /* Adjust as desired */
}

#popup-cart-dialog .dialog-products::-webkit-scrollbar-track{
    background-color: var(--light-gray-back-color-2); /* Light gray background */
    -webkit-box-shadow: inset 0 0 5px rgb(192, 192, 192);
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    box-shadow: inset 0 0 5px rgb(192, 192, 192);
}

#popup-cart-dialog .dialog-products::-webkit-scrollbar-thumb{
    background-color: var(--blue-back-color); /* Blue background */
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
}

/* Handle on hover */
#popup-cart-dialog .dialog-products::-webkit-scrollbar-thumb:hover{
    background-color: var(--blue-back-color);
}

#popup-cart-dialog .dialog-products .cart-item{
    padding: 1.2em;
    border-bottom: 0.07em solid #eeeeee;
}

#popup-cart-dialog .dialog-products .cart-item:last-child{
    margin-bottom: 0;
    border-bottom: unset;
}

#popup-cart-dialog .dialog-products .cart-item .left-cart-item{
    padding-right: 1em;
}

#popup-cart-dialog .dialog-products .cart-item .left-cart-item .wrapper-img{
    display: flex;
    align-items: center;
}

#popup-cart-dialog .dialog-products .cart-item .left-cart-item .wrapper-img a{
    display: block;
    position: relative;
}

#popup-cart-dialog .dialog-products .cart-item .left-cart-item .wrapper-img a img{
    width: 6.3em;
    aspect-ratio: 10 / 8;
    object-fit: contain;
}

#popup-cart-dialog .dialog-products .cart-item .left-cart-item .wrapper-img a .discount-info{
    position: absolute;
    top: -0.7em;
    left: 0;
    font-size: 0.85em;
    background-color: var(--blue-back-color);
    border-radius: 0.2em;
    padding: 0.2em 0.7em;
    color: var(--white-txt-color);
    font-family: "poppins-medium", sans-serif;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item{
    flex-grow: 1;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .product-info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
    width: 100%;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .product-info .product-code{
    font-family: "poppins-medium", sans-serif;
    line-height: 1.2;
    margin-bottom: 0.2em;
}

/* #popup-cart-dialog .dialog-products .cart-item .right-cart-item .product-info .name-product{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--blue-txt-color);
    font-family: "poppins-semibold", sans-serif;
    line-height: 1.2;
    font-size: 1.1em;
    margin-bottom: 0.4em;
} */

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .product-info .desc-product{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--blue-txt-color);
    font-family: "poppins-semibold", sans-serif;
    font-size: 1.05em;
    line-height: 1.4;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity{
    position: relative;
    height: 2.7em;
    border: 0.07em solid #dbdfe0;
    margin: 0.5em 1em 0 0;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity span,
#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity input{
    height: 100%;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity span.down-quantity,
#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity span.up-quantity{
    width: 1.5em;
    font-family: "poppins-bold", sans-serif;
    font-size: 1.3em;
    cursor: pointer;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity span.popuptext{
    width: 11em;
    font-size: 1em;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity input{
    width: 3.5em;
    background-color: var(--white-back-color);
    border: 0;
    text-align: center;
    padding: 0.5em;
    font-size: 1em;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .wrapper-quantity input:focus{
    outline: 0;
    border: unset;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .price-in-cart{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    width: 100%;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .price-product{
    line-height: 1.2;
    font-size: 1em;
    margin-top: 0.3em;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .price-product span{
    font-family: "poppins-bold", sans-serif;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .delete-item{
    width: 2em; 
    text-align: center;
    margin-left: 3em;
}

#popup-cart-dialog .dialog-products .cart-item .right-cart-item .delete-item svg{
    font-size: 1.4em;
}

#popup-cart-dialog .top-dialog, #popup-cart-dialog .bottom-dialog{
    background-color: var(--white-back-color);
    z-index: 999999;
}

/* #popup-cart-dialog .top-dialog{
    height: 100%;
} */

#popup-cart-dialog .bottom-dialog{
    width: 100%;
}

#popup-cart-dialog .bottom-dialog .total-dialog{
    padding: 1.2em;
    border-top: 0.07em solid #eeeeee;
    font-family: "poppins-medium", sans-serif;
}

#popup-cart-dialog .bottom-dialog .total-dialog .dialog-price{
    margin-bottom: 0.6em;
    font-size: 1.2em;
}

#popup-cart-dialog .bottom-dialog .total-dialog .dialog-price > span{
    font-family: "poppins-bold", sans-serif;
}

#popup-cart-dialog .bottom-dialog .total-dialog .dialog-price:last-child{
    margin-bottom: 0;
}

#popup-cart-dialog .bottom-dialog .continue-shopping{
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2em;
    background-color: var(--light-gray-back-color);
}

#popup-cart-dialog .bottom-dialog .continue-shopping > button{
    text-decoration: underline;
    font-family: "poppins-semibold", sans-serif;
    text-align: left;
    margin-right: 0.5em;
}

#popup-cart-dialog .bottom-dialog .continue-shopping .wrapper-btn{
    margin-top: 0;
}

#popup-cart-dialog .bottom-dialog .continue-shopping .wrapper-btn a{
    padding-left: 2em;
    padding-right: 2em;
}

/* .wrapper-aside{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow-y: hidden;
} */

.aside-menu{
    max-width: 27.5em;
    width: 100%;
    padding: 1.5em 1.5em 12em 1.5em;
    z-index: 999995;
    overflow-y: auto;
    transform: translateX(100%);
}

.aside-menu .close-aside svg{
    font-size: 2em;
    width: 1em;
}

.aside-menu .nav-aside{
    margin-top: 2em;
}

.aside-menu .nav-aside ul li a, .aside-menu .nav-aside ul li .aside-products .wrapper-text p{
    font-size: 1.25em;
    padding: 0.5em 0;
    color: var(--dark-txt-color);
}

.aside-products .wrapper-text{
    margin-top: 0;
}

.aside-products .wrapper-text p{
    margin-bottom: 0;
}

.aside-products .wrapper-text span, .aside-products .wrapper-link span{
    top: 50%;
    right: 0;
    width: 2em;
    height: 2em;
    transform: translateY(-50%);
}

.aside-products .wrapper-text svg, .aside-products .wrapper-link svg{
    font-size: 1.4em;
}

.aside-products .wrapper-link{
    padding-left: 1.5em;
}

.aside-category-links .link .wrapper-link a{
    margin-left: 1.5em;
    padding-left: 0;
    border-bottom: 0.07em solid #eeeeee;
}

.aside-menu .nav-aside ul li a{
    display: block;
}

.aside-menu .nav-aside ul li .aside-brands .wrapper-text{
    margin-top: 0;
}

.aside-menu .nav-aside ul li .aside-brands .wrapper-text p{
    margin-bottom: 0;
}

.aside-menu .search-part-aside{
    margin-top: 6em;
}

.aside-menu .bottom-aside{
    margin-top: 4em;
}

.aside-menu .contact-aside{
    margin-bottom: 4em;
}

.aside-menu .contact-aside .phone-aside{
    margin-bottom: 1.5em;
}

.aside-menu .contact-aside .phone-aside a, .aside-menu .contact-aside .email-aside a, .help-aside a{
    font-size: 1.2em;
}

.aside-menu .contact-aside .phone-aside a{
    margin-bottom: 0.5em;
}

.aside-menu .contact-aside .phone-aside a:first-child{
    margin-right: 1.5em;
}

.ui.icon.input>i.icon{
    color: var(--placeholder-color);
    font-size: 1.2em;
}

.bottom-header{
    padding: 1em 0;
}

.bottom-left-header .wrapper-btn{
    margin-top: 0;
}

.bottom-left-header .wrapper-btn button svg{
    margin-left: 1em;
    /* font-size: 0.95em; */
}

.bottom-left-header .wrapper-btn a{
    border: unset;
    padding: 0;
    border-radius: unset;
}

.dropdown-brands, .dropdown-products{
    z-index: 100;
    top: 100%;
    display: none;
}

.dropdown-brands{
    padding-top: 0.5em;
    left: 0;
}

.dropdown-products{
    width: 100%;
    left: 1rem;
    padding-top: 0.5em;
}

.dropdown-brands .wrapper-brands, .dropdown-products .wrapper-products{
    background-color: var(--white-back-color);
    padding: 0 1.5em 1em 1.5em;
    border-radius: 0.5em;
    box-shadow: 0 0 10px -2px #cecece;
}

.dropdown-products .wrapper-products{
    max-height: 80vh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.dropdown-products .wrapper-products::-webkit-scrollbar{
    width: 0.4em; /* Adjust as desired */
}

.dropdown-products .wrapper-products::-webkit-scrollbar-track{
    background-color: var(--light-gray-back-color-2); /* Light gray background */
    -webkit-box-shadow: inset 0 0 5px rgb(192, 192, 192);
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    box-shadow: inset 0 0 5px rgb(192, 192, 192);
}

.dropdown-products .wrapper-products::-webkit-scrollbar-thumb{
    background-color: var(--blue-back-color); /* Blue background */
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
}

/* Handle on hover */
.dropdown-products .wrapper-products::-webkit-scrollbar-thumb:hover{
    background-color: var(--blue-back-color);
}

.dropdown-brands .wrapper-brands .col-brand{
    margin-top: 1em;
}

.dropdown-brands .wrapper-brands .col-brand .wrapper-text{
    margin-top: 0.2em;
}

.dropdown-brands .wrapper-brands .col-brand .wrapper-text p{
    font-size: 1em;
    font-family: "poppins-semibold", sans-serif;
}

.dropdown-products .wrapper-products .col-product{
    margin-top: 0.5em;
}

.dropdown-products .wrapper-products .col-product .title-brand{
    padding-bottom: 0.4em;
    margin-top: 0.35em;
    margin-bottom: 0.6em;
    border-bottom: 0.07em solid #eeeeee;
}

.dropdown-products .wrapper-products .col-product .title-brand p{
    font-family: "poppins-semibold", sans-serif;
}

.dropdown-products .wrapper-products .col-product .title-brand a{
    font-size: 0.9em;
}

.dropdown-products .wrapper-products .col-product .category-links{
    max-height: 10.5em;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding-right: 0.45em;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-back-color) var(--light-gray-back-color-2);
}

.dropdown-products .wrapper-products .col-product .category-links::-webkit-scrollbar{
    width: 0.4em;
}

.dropdown-products .wrapper-products .col-product .category-links::-webkit-scrollbar-track{
    background-color: var(--light-gray-back-color-2);
    -webkit-box-shadow: inset 0 0 5px rgb(192, 192, 192);
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    box-shadow: inset 0 0 5px rgb(192, 192, 192);
}

.dropdown-products .wrapper-products .col-product .category-links::-webkit-scrollbar-thumb{
    background-color: var(--blue-back-color);
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
}

.dropdown-products .wrapper-products .col-product .category-links::-webkit-scrollbar-thumb:hover{
    background-color: var(--blue-back-color);
}

.dropdown-products .wrapper-products .col-product .category-links a{
    font-size: 0.85em;
    padding: 0.2em 0;
    margin: 0.3em 0;
    color: var(--gray-txt-color);
    font-family: "poppins-regular", sans-serif;
    flex-shrink: 0;
}

.bottom-center-header nav li{
    margin: 0 0.8em;
}

.bottom-center-header nav > ul li a, .bottom-center-header nav > ul li span{
    font-family: "poppins-medium", sans-serif;
    color: var(--gray-blue-txt-color);
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.bottom-center-header nav > ul li > a, .bottom-center-header nav > ul li > span{
    padding: 0.7em 0.5em;
}

.bottom-center-header nav li span svg{
    margin-left: 0.5em;
    font-size: 0.75em;
}

.bottom-center-header nav li a#active-link{
    color: var(--blue-txt-color);
}

.bottom-center-header nav li a:hover, .bottom-center-header nav li span:hover{
    color: var(--blue-txt-color);
}

.main-section{
    padding: 3em 0 1em 0;
}

.main-section .wrapper-content{
    padding: 8em 4em;
}

.main-section .wrapper-content .wrapper-img{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2em;
    overflow: hidden;
}

.main-section .wrapper-text{
    margin-top: 0;
    margin-bottom: 0.5em;
}

.main-section .wrapper-text p{
    font-size: 1.8em;
}

.main-section #owl-home-slider .owl-nav, .latest-news #owl-latest-news-slider .owl-nav, .best-sell-products #owl-best-sell-slider .owl-nav, 
.new-products #owl-new-products-slider .owl-nav{
    display: none;
}

.main-section #owl-home-slider .owl-dots, .latest-news #owl-latest-news-slider .owl-dots, .best-sell-products #owl-best-sell-slider .owl-dots,
.new-products #owl-new-products-slider .owl-dots{
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-section #owl-home-slider .owl-dots{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.5em 0;
}

.latest-news #owl-latest-news-slider .owl-dots, .best-sell-products #owl-best-sell-slider .owl-dots, .new-products #owl-new-products-slider .owl-dots{
    margin-top: 2em;
}

.main-section #owl-home-slider .owl-dots button span, .latest-news #owl-latest-news-slider .owl-dots button span,
.best-sell-products #owl-best-sell-slider .owl-dots button span, .new-products #owl-new-products-slider .owl-dots button span{
    margin: 0 0.2em;
    width: 1.2em;
    height: 1.2em;
    border-radius: 1em;
    background-color: var(--blue-back-color);
    border: 0.2em solid var(--blue-back-color);
    background-color: var(--transparent-back);
    transition: all 0.3s ease;
}

.main-section #owl-home-slider .owl-dots button.active span, .latest-news #owl-latest-news-slider .owl-dots button.active span,
.best-sell-products #owl-best-sell-slider .owl-dots button.active span, .new-products #owl-new-products-slider .owl-dots button.active span{
    width: 3em;
    background-color: var(--blue-back-color);
}

.brands-section{
    padding: 4em 0 2em 0;
}

.brands-section .wrapper-img{
    padding: 1em;
    position: relative;
    border-radius: 1em;
    overflow: hidden;
    border: 0.3em solid var(--transparent-back);
    background-image: linear-gradient(to bottom, var(--blue-back-color), var(--white-back-color));
    background-origin: border-box;
    border-radius: 1em;
}

.brands-section .wrapper-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.4em solid var(--transparent-back);
    background-color: #fff;
    z-index: 5;
    border-radius: 0.5em;
}

.brands-section .wrapper-img img{
    position: relative;
    z-index: 6;
    border-radius: 1em;
}

.brands-section .owl-carousel.off, .new-products .owl-carousel.off{
    display: flex;
    justify-content: center;
    width: auto;
}

.brands-section .owl-carousel.on, .new-products .owl-carousel.on{
    display: block;
    width: 100%;
}

.brands-section .owl-carousel .owl-nav, .brands-section .owl-carousel .owl-dots{
    display: none;
}

.best-sell-products, .new-products{
    padding: 4em 0;
}

.new-products .col-new-products, .latest-news .owl-item{
    margin-top: 1.5em;
}

.wrapper-products figure.wrapper-content{
    border: 0.07em solid var(--light-gray-border);
    border-radius: 0.3em;
    margin-bottom: 0.2em;
    /* height: 100%; */
}

.wrapper-products figure.wrapper-content .wrapper-img{
    overflow: hidden;
}

.wrapper-products figure.wrapper-content .wrapper-img img{
    aspect-ratio: 16 / 13;
    object-fit: contain;
    transform: scale(1);
    transition: all 0.3s ease;
}

.wrapper-products figure.wrapper-content .wrapper-img:hover img{
    transform: scale(1.1);
}

.wrapper-products figure.wrapper-content .wrapper-img{
    padding: 1.2em;
}

.wrapper-products figure.wrapper-content .product-info{
    padding: 1em;
    border-top: 0.07em solid var(--light-gray-border);
}

.wrapper-products figure.wrapper-content .product-info .pro-number{
    margin-bottom: 1em;
}

.wrapper-products figure.wrapper-content .product-info .pro-number p{
    margin-bottom: 0.3em;
    display: flex;
    flex-wrap: wrap;
}

.latest-news figure.wrapper-content .news-info figcaption, 
.latest-news figure.wrapper-content .news-info .link a, 
.latest-news figure.wrapper-content .news-info .news-post .news-date{
    font-family: "poppins-medium", sans-serif;
}

.wrapper-products figure.wrapper-content .product-info .pro-number p span:first-child{
    margin-right: 1em;
}

.wrapper-products figure.wrapper-content .product-info .pro-number figcaption, .latest-news figure.wrapper-content .news-info figcaption{
    font-size: 1.25em;
    font-family: "poppins-semibold", sans-serif;
}

.wrapper-products figure.wrapper-content .product-info .pro-number figcaption{
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.wrapper-products figure.wrapper-content .product-info .pro-number figcaption + p,
.wrapper-products figure.wrapper-content .product-info .pro-number figcaption a{
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* ograniči na 2 reda */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wrapper-products figure.wrapper-content .product-info .pro-number figcaption + p{
    font-size: 1.05em;
}

.wrapper-products figure.wrapper-content .product-info .pro-number figcaption a{
    line-height: 1.3;
    font-family: "poppins-bold", sans-serif;
}

.wrapper-products figure.wrapper-content .product-info .see-all-sizes{
    color: var(--blue-txt-color);
}

.wrapper-pagination ul li{
    margin: 0.3em;
}

.wrapper-pagination ul li.active a{
    background-color: var(--blue-back-color);
    border-color: var(--blue-back-color);
    color: var(--white-txt-color);
}

.wrapper-pagination ul li a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3em;
    height: 3em;
    border: 0.07em solid var(--light-gray-border);
    cursor: pointer;
}

.promo-section{
    padding: 2em 0;
}

.promo-section .wrapper-img img{
    border-radius: 1em;
}

.latest-news{
    padding: 2em 0 8em 0;
}

.latest-news .left-title-part{
    margin-right: 1.5em;
}

.latest-news figure.wrapper-content a{
    overflow: hidden;
}

.latest-news figure.wrapper-content a img{
    border-radius: 1em;
}

.latest-news figure.wrapper-content .news-info{
    padding: 1.5em 0;
}

.latest-news figure.wrapper-content .news-info .news-post, .latest-news figure.wrapper-content .news-info .news-post .news-date{
    margin-bottom: 1.2em;
}

.footer{
    border-top: 0.07em solid var(--light-gray-border);
}

.footer .top-footer{
    padding: 4em 0 5em 0;
}

.footer .footer-item-1{
    padding-right: 4em;
}

.footer .footer-item-1 .wrapper-img img{
    width: 80%;
}

.footer .footer-item-1 .wrapper-text{
    margin-top: 2em;
}

.footer .footer-item-1 .wrapper-text p{
    color: var(--gray-blue-txt-color);
}

.footer .footer-item .footer-title{
    font-size: 1.4em;
    font-family: "poppins-semibold", sans-serif;
    padding-bottom: 0.8em;
    margin-bottom: 1.2em;
    border-bottom: 0.07em solid var(--light-gray-border);
}

.footer .footer-item ul li{
    margin-bottom: 1em;
    font-family: "poppins-medium", sans-serif;
    color: var(--gray-blue-txt-color);
}

.footer .footer-item ul li a{
    font-size: 1.2em;
}

.footer .bottom-footer{
    padding: 1.5em 0;
    background-color: var(--light-gray-back-color);
}

.footer .wrapper-text{
    margin-top: 0;
}

.footer .wrapper-text p{
    font-size: 1.1em;
}

.footer .social-media a{
    margin-left: 0.5em;
}

.footer .social-media .social-icon{
    width: 2.3em;
    height: 2.3em;
    background-color: var(--gray-blue-txt-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.3em;
}

.footer .social-media .social-icon svg{
    color: var(--white-txt-color);
    font-size: 1.2em;
}

.message-info{
    margin-top: 2em;
    padding: 0.8em 1.2em;
    border-radius: 0.3em;
}

.message-info .wrapper-text{
    margin-top: 0;
}

.message-info .wrapper-text p{
    font-size: 1em;
}

@media screen and (min-width: 100px){
    html{
        font-size: calc(var(--font-size) - 0.28em);
    }
    .col-xs-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xs-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xs-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xs-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xs-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xs-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xs-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xs-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xs-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xs-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xs-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xs-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-new-products{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 576px){
    html{
        font-size: calc(var(--font-size) - 0.35em);
    }
    .container{
        max-width: 560px;
    }
    .col-sm-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-sm-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-sm-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-sm-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-sm-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-sm-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-sm-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-sm-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-sm-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-sm-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-sm-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-sm-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-new-products{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 768px){
    html{
        font-size: calc(var(--font-size) - 0.32em);
    }
    .container{
        max-width: 760px;
    }
    .col-md-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-md-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-md-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-md-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-md-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-md-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-md-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-md-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-md-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-md-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-md-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-md-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-new-products{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-brand{
        max-width: 20%;
        flex-basis: 20%;
    }
    .col-product{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
}

@media screen and (min-width: 992px){
    html{
        font-size: calc(var(--font-size) - 0.30em);
    }
    .container{
        max-width: 970px;
    }
    .col-lg-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-lg-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-lg-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-lg-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-lg-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-lg-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-lg-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-lg-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-lg-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-lg-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-lg-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-lg-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-new-products{
        max-width: 100%;
        flex-basis: 100%;
    }
    .slider-col-brand{
        max-width: 12.5%;
        flex-basis: 12.5%;
    }
    .col-brand{
        max-width: 12.5%;
        flex-basis: 12.5%;
    }
    .col-product{
        max-width: 25%;
        flex-basis: 25%;
    }
}

@media screen and (min-width: 1200px){
    html{
        font-size: calc(var(--font-size) - 0.26em);
    }
    .container{
        max-width: 1120px;
    }
    .col-xl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-new-products{
        max-width: 20%;
        flex-basis: 20%;
    }
    .col-brand{
        max-width: 12.5%;
        flex-basis: 12.5%;
    }
    .col-product{
        max-width: 25%;
        flex-basis: 25%;
    }
    .new-products #row-new-products .title-part{
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (min-width: 1440px){
    html{
        font-size: calc(var(--font-size) - 0.17em);
    }
    .container{
        max-width: 1250px;
    }
    .col-xxl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xxl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xxl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xxl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xxl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xxl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xxl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xxl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xxl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xxl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xxl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xxl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-new-products{
        max-width: 20%;
        flex-basis: 20%;
    }
    .col-brand{
        max-width: 12.5%;
        flex-basis: 12.5%;
    }
    .col-product{
        max-width: 25%;
        flex-basis: 25%;
    }
}

@media screen and (min-width: 1920px){
    html{
        font-size: calc(var(--font-size) - 0.12em);
    }
    .container{
        max-width: 1500px;
    }
    .col-xxxl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xxxl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xxxl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xxxl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xxxl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xxxl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xxxl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xxxl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xxxl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xxxl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xxxl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xxxl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-new-products{
        max-width: 20%;
        flex-basis: 20%;
    }
    .col-brand{
        max-width: 12.5%;
        flex-basis: 12.5%;
    }
    .col-product{
        max-width: 25%;
        flex-basis: 25%;
    }
}

@media screen and (max-width: 1439px){
    .footer .footer-item-1{
        padding-right: 2em;
    }
}

@media screen and (max-width: 1199px){
    .footer .footer-item-1{
        padding-right: 2em;
    }
}

@media screen and (max-width: 991px){
    .bottom-center-header .nav ul{
        justify-content: flex-end;
    }
    .bottom-center-header nav li{
        margin: 0 0 0 3em;
    }
    .main-section .wrapper-content{
        padding: 6em 4em 7em 4em;
    }
    .main-section .wrapper-text p{
        font-size: 1.5em;
    }
    .footer .footer-item-1{
        padding-right: 0;
        margin-bottom: 4em;
    }
}

@media screen and (max-width: 767px){
    .bottom-header, .search-header, .middle-header .col-header-user-data, .top-left-header, .top-header .top-right-header > a.help-link{
        display: none;
    }
    .hamburger, .top-header .col-header-user-data{
        display: block;
    }
    .top-header .top-right-header > a.lang-link{
        margin-left: 0;
    }
    .middle-header{
        padding: 1em 0;
    }
    .col-header-logo{
        order: 3;
    }
    .col-header-search{
        order: 5;
    }
    .top-right-header{
        text-align: left;
    }
    .main-section .wrapper-content{
        padding: 4em 2.5em 6em 2.5em;
    }
    .main-section .wrapper-content .wrapper-title h1, .main-section .wrapper-content .wrapper-title h2{
        font-size: 2.7em;
    }
    .main-section .wrapper-text p{
        font-size: 1.3em;
    }
    .footer-column-2, .footer-column-3{
        margin-bottom: 2em;
    }
}

@media screen and (max-width: 575px){
    #popup-cart-dialog .dialog-products .cart-item{
        font-size: 0.93em;
    }
    .col-header-logo img{
        width: 4em;
    }
    .main-section .wrapper-content{
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    .main-section .wrapper-content .wrapper-title h1, .main-section .wrapper-content .wrapper-title h2{
        font-size: 2.5em;
    }
    .main-section .wrapper-text p{
        font-size: 1.2em;
    }
    .footer-column-1{
        max-width: 30em;
        width: 100%;
    }
    .footer-column-2, .footer-column-3{
        margin-bottom: 2em;
    }
}