/** Start Desktop Header **/
#header {
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    margin-top: 20px;
    transition: all 0.4s ease;
    &.active .container-medium {
        background: white;
        margin: 0;
        padding: 8px 12px;
        transition: all 0.4s ease;
        box-shadow: 0px 6px 20px -4px #0000001A;
        margin-inline: auto;
        border-radius: 24px;
        .header-center:before {
            content: none;
        }
        .call-header {
            background: var(--color1);
            color: white;
            &:hover {
                background: var(--color2);
            }
        }
        .header-mm {
            background: var(--color1);
            color: white;
        }
        .header-search {
            background: var(--color1);
            color: white;
            &:hover {
                background: var(--color2);
            }
        }
        .desktop-header {
            align-items: center;
        }
        .header-logo img {
            margin-top: 0;
            transition: all 0.4s ease;
        }
        .head_lang {
            background: var(--color1);
            color: white;
            &:hover {
                background: var(--color2);
            }
        }
    }
}
.desktop-header {
    display: none;
    align-items: flex-end;
    .header-center {
        display: flex;
        align-items: center;
        /*justify-content: space-between;
        padding-block: 10px;
        gap: clamp(12px, 2vw, 24px);*/
        &:before {
            content: "\e916";
            font-family: 'icomoon';
            position: absolute;
            top: -1px;
            font-size: clamp(54px, 5vw, 76px);
            right: 50%;
            transform: translateX(50%);
            color: white;
            line-height: 1;
        }
    }
    .custom-menu {
        display: flex;
        align-items: center;
        gap: clamp(12px, 1vw, 16px);
        position: relative;
        & > li {
            position: relative;
            min-height: 60px;
            display: flex;
            align-items: center;
            &:hover a:before {
                transition: 0.8s;
                transform: rotateX(180deg);
            }
        }
        .menu-item-has-children > a {
            padding-left: 16px;
            width: 100%;
            display: block;
            &:before {
                content: "\e927";
                font-family: icomoon;
                position: absolute;
                left: 0;
                font-size: 6px;
                top: 10px;
                transition: 0.8s;
            }
        }
        a {
            font-family: var(--Medium);
            font-size: clamp(12px, 1vw, 14px);
            color: var(--black);
            transition: 0.8s;
            &:hover {
                color: var(--color2);
            }
        }
        &#menu-header-right {
            justify-content: flex-end;
        }
    }
    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding-right: clamp(8px, 1vw, 16px);
        width: 100%;
    }
    .header-left {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding-left: clamp(12px, 1vw, 16px);
        width: 100%;
        .call-header {
            background: rgb(255 255 255);
            height: clamp(40px, 3vw, 52px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            font-size: 13px;
            gap: 8px;
            border-radius: 32px;
            color: black;
            transition: 0.8s;
            text-align: center;
            min-width: fit-content;
            i {
                width: 18px;
                height: 18px;
                flex: 0 0 18px;
                font-size: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            &:hover {
                background: var(--color1);
                color: white;
            }
        }
    }
}
.header-search {
    /* width: clamp(40px, 3vw, 52px); */
    /* flex: 0 0 clamp(40px, 3vw, 52px); */
    /* height: clamp(40px, 3vw, 52px); */
    background: rgb(255 255 255);
    border-radius: 32px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.8s;
    cursor: pointer;
    width: -webkit-fill-available;
    padding-inline: clamp(12px, 1vw, 16px);
    font-size: 14px;
    height: 52px;
    i {
        width: 20px;
        height: 20px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    &:hover {
        background: var(--color1);
        color: white;
    }
}
.head_lang {
    position: relative;
    height: clamp(40px, 3vw, 52px);
    background: rgb(255 255 255);
    border-radius: 32px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.8s;
    padding: 8px 12px;
    .lang-btn {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        transition: 0.8s;
        flex-direction: row-reverse;
        .icon-language {
            width: 20px;
            height: 20px;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 4px;
        }
        i {
            font-size: 8px;
            margin-left: 4px;
        }
    }
    .lang-content {
        opacity: 0;
        position: absolute;
        background-color: white;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 2;
        text-align: center;
        transition: 0.3s;
        border-radius: 8px;
        width: 100%;
        min-height: 48px;
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        display: flex;
        align-items: center;
        justify-content: center;
        a {
            color: var(--black);
            padding: 8px 8px 4px;
            text-decoration: none;
            display: flex;
            line-height: 1.1;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
    }
    &:hover .lang-content {
        opacity: 1;
        transition: 0.3s;
    }
}
.mobile-header {
    display: flex;
    align-items: center;
    .header-logo:after {
        content: "\e928";
        font-family: 'icomoon';
        position: absolute;
        top: -10px;
        font-size: 52px;
        right: 50%;
        transform: translateX(50%);
        color: white;
        line-height: 1;
        z-index: -1;
    }
    .header-mm {
        width: 36px;
        flex: 0 0 36px;
        height: 36px;
        border-radius: 32px;
        backdrop-filter: blur(20px);
        color: black;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: 0.8s;
        background: white;
        margin-right: 8px;
    }
    .col-4:nth-child(1) {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
    }
    .col-4:nth-last-child(1) {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
    }
    .head_lang {
        background: white;
        margin-left: 8px;
        width: 36px;
        height: 36px;
        &:hover {
            background: var(--color2);
        }
    }
    .header-search {
        background: white;
        color: black;
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        margin-right: 6px;
        justify-content: center;
        font-size: 16px;
        &:hover {
            background: var(--color2);
        }
    }
    .call-header {
        background: white;
        color: black;
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        margin-left: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        &:hover {
            background: var(--color2);
        }
    }
}
.header-logo {
    position: relative;
    overflow: hidden;
    &::before {
        content: "";
        position: absolute;
        right: -15%;
        top: -10%;
        width: 0;
        height: 100%;
        box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.72);
        -webkit-animation: button-glow 2.4s ease-in-out 5s infinite;
        animation: button-glow 2.4s ease-in-out 5s infinite;
    }
}
@-webkit-keyframes button-glow {
    0% {
        right: -15%;
    }
    50% {
        right: 120%;
    }
    100% {
        right: 120%;
    }
}
@keyframes button-glow {
    0% {
        right: -15%;
    }
    50% {
        right: 120%;
    }
    100% {
        right: 120%;
    }
}
.header-logo img {
    width: clamp(48px, 4vw, 74px);
    height: auto;
    margin-top: -8px;
    transition: all 0.4s ease;
}
.inner-page {
    .call-header,
    .header-search,
    .head_lang {
        background: white !important;
        color: black !important;
    }
    .active {
        .call-header,
        .header-search,
        .head_lang {
            background: var(--color1) !important;
            color: white !important;
        }
    }
}
@media only screen and (min-width: 1100px) {
    .desktop-header {
        display: flex;
    }
    .mobile-header {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    #main {
        padding-top: 16px;
    }
    #header {
        margin-top: 32px;
        /*position: relative;
        margin-block: 16px;*/
        .col-4:not(.col-4.text-center) {
            padding-top: 9px;
        }
        &.active {
            position: fixed;
            .container-medium {
                width: calc(100% - 32px);
            }
            .col-4 {
                padding-top: 0 !important;
            }
        }
    }
    .inner-page {
        .call-header,
        .header-search,
        .head_lang {
            background: var(--color1) !important;
            color: white !important;
        }
    }
}
/** End Desktop Header **/
/* --------------------
    Search Popup
-------------------- */
.bottom-head-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-search > span {
    margin-left: 5px;
    display: none
}
.search-pup-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    color: white;
    overflow: hidden;
    overflow-y: visible;
    display: none;
    background: #00000033;
    backdrop-filter: blur(12px);
}
.search-pup-inner {
    height: 100%;
    max-height: 100%;
}
.search-pup-up #fast-search-input {
    width: 100%;
    text-align: right;
    border: none;
    background: #F7F7F7;
    color: #313233;
    font-size: 14px;
    padding: 23px 72px !important;
    border-radius: 16px;
}
.search-pup-up #fast-search-input::placeholder {
    color: #313233;
}
.search-pup-up .search-form:after {
    content: "\e909";
    font-family: 'icomoon';
    font-size: 24px;
    position: absolute;
    right: 28px;
    display: block;
    top: 10px;
    color: #313233;
}
.search-pup-up .search-results-box {
    background: unset;
    position: relative;
    top: unset;
    overflow: auto;
}
.fd-outer {
    width: 30px;
    margin-top: 10px;
    cursor: pointer;
    position: absolute;
    top: 70px;
    right: 30px;
    z-index: 10;
}
.fd-inner {
    width: 30px;
    text-align: center;
}
.fd-inner:before,
.fd-inner:after {
    position: absolute;
    content: '';
    height: 2px;
    width: inherit;
    background: #000;
    right: 0;
    transition: all .3s ease-in;
}
.fd-inner:after {
    bottom: 48%;
    transform: rotate(-45deg);
}
.fd-inner:before {
    top: 48%;
    transform: rotate(45deg);
}
.fd-outer label {
    font-size: .8em;
    line-height: 3em;
    text-transform: uppercase;
    color: #000;
    transition: all .3s ease-in;
    opacity: 0;
    cursor: pointer;
}
.fd-outer:hover .fd-inner:before,
.fd-outer:hover .fd-inner:after {
    transform: rotate(0);
    background: var(--color1);
}
.fd-outer:hover .fd-inner:before {
    top: 0;
}
.fd-outer:hover .fd-inner:after {
    bottom: 0;
}
.fd-outer:hover label {
    opacity: 1;
}
.search-pup-up .search-form {
    transform: scale(0);
    opacity: 0;
    transition-duration: .6s;
    transition-delay: .5s;
    display: flex;
}
.search-pup-up.popup-search-active .search-form {
    transform: scale(1);
    opacity: 1;
}
/** Search **/
.search-pup-up .icons-wrapper .icon-close.search-remove {
    top: 0;
    left: 6px;
    color: rgb(210, 27, 27);
    transition: 0.4s ease;
    cursor: pointer;
    font-size: 15px;
}
.search-pup-up .icons-wrapper .icon-close.search-remove:hover {
    color: darkred;
}
.search-pup-up .icons-wrapper {
    position: absolute;
    top: 24px;
    left: 23px;
}
.search-pup-up .icons-wrapper i {
    position: absolute;
    top: 1px;
    left: 5px;
    display: none;
    font-size: 28px;
}
.single-title > .title-single {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
    line-height: normal;
}
.search-pup-inner .form-wrap {
    padding-top: 100px !important;
}
.search-by-json .body .is-search .list-products .item .on-sale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: auto;
    transform: unset;
    width: 36px;
    height: 16px;
    font-size: 11px;
}
.search-by-json .body .is-search .list-products .item .on-sale:before {
    content: none;
}
.search-by-json .body .is-search .list-products .item {
    position: relative;
    min-height: 120px;
}
.search-by-json .body .is-search .list-products .item .price {
    margin-top: 2rem;
    flex-direction: column;
    align-items: end;
    padding-left: 8px;
}
.search-by-json .body .is-search .list-products .item .price ins {
    padding-left: 22px;
}
.search-by-json .body .is-search .list-products .item .img {
    min-width: 100px;
    min-height: 100px;
    background: white;
    border-radius: 12px;
}
.search-by-json .body .is-search .list-products .item .img img {
    width: 84px !important;
    border-radius: 4px;
}
@media screen and (min-width: 992px) {
    .search-by-json .body {
        width: 100% !important;
    }
}
/* --------------------
    Modal bootstrap Css
-------------------- */
.modal-open {
    overflow: hidden;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: rgb(0 0 0 / 75%);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    width: auto;
    height: 100%;
    margin: 0.5rem;
    pointer-events: none;
    border-radius: 20px;
}
.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, 0);
}
.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 30%;
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: 20px;
    outline: 0;
    color: #313131;
    overflow: hidden;
    font-size: 14px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: clamp(14px, 2vw, 16px);
    display: flex;
    align-items: center;
}
.modal-title i {
    margin-left: 10px;
    font-size: 20px;
}
.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px 20px 30px;
    text-align: center;
}
.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
    margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
    margin-right: 0.25rem;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
.modal-header .close {
    padding: 0.5rem 1rem;
    margin: -1rem auto -1rem -1rem;
    background: transparent;
    border: none;
    color: black;
    font-size: 29px;
    transition: 0.8s;
}
.modal-header .close:hover {
    transition: 0.8s;
    color: var(--danger);
}
/** Menu Mobile   *************************************/
#mask {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -350px;
    width: 300px;
    z-index: 99991;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
    overflow-y: auto;
    background-color: white;
    border-radius: 1rem 0 0 1rem;
}
#menumobile img {
    max-width: 80px;
    margin-left: 8px;
    height: auto;
}
.menu {
    list-style: none;
    padding: 0;
    padding-right: 8px;
}
#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: var(--primary);
    font-size: 24px;
    align-items: center;
    justify-content: center;
}
.tel-mm a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-align: center;
}
.tel-mm a:before {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 10px;
    display: inline-block;
    border-radius: 100%;
    animation: pulse 2s infinite;
    position: relative;
    top: -1px;
}
.come-menumobile {
    right: 0 !important;
}
.title-mm {
    background: var(--gray4);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub-menu.come-submenu::before {
    content: "";
    height: 70px;
    width: 100%;
    background: var(--black);
    position: absolute;
    top: 0;
    right: 0;
}
.title-mm img {
    user-select: none;
}
.btn-mm {
    padding: 0 20px;
    margin-top: 20px;
}
.btn-mm a {
    display: flex;
}
.title-sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-flow: row-reverse;
    color: var(--white);
}
.title-sub-head strong {
}
.main-mm {
    padding: 4px 8px;
}
.main-mm ul li a {
    color: var(--lightwhite) !important;
    display: block;
    padding: 8px 0;
    position: relative;
    width: 80%;
    font-size: 14px;
}
.main-mm ul li a:hover {
    color: var(--primary);
}
.main-mm ul li > .sub-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    background: var(--white);
    right: -300px;
    transition: 0.3s;
    z-index: 9;
    padding: 20px;
    border-radius: 1rem 0 0 1rem;
    list-style: none;
}
.childer i {
    cursor: pointer;
    border-width: 0 2px 2px 0;
    font-size: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.childer {
    position: absolute;
    left: -25%;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.come-submenu {
    right: 0 !important;
}
.sub-closer {
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
.sub-closer i {
    cursor: pointer;
    top: -1px;
    display: inline-block;
    padding: 3px;
    position: relative;
    left: -1px;
    font-size: 12px;
}
.title-subcome {
    font-weight: normal;
    position: relative;
    top: 2px;
}
.header-menu .navtop-right .menu-item-has-children > a:after {
    content: "\e902";
    font-family: "icomoon";
    margin-right: 1px;
    font-size: 7px;
    position: absolute;
    bottom: -2px;
    left: -12px;
    transform: rotate(-90deg) !important;
}
.menu-item > .sub-menu {
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    min-width: 250px;
    background: var(--white);
    visibility: hidden;
    z-index: 9;
    border-radius: 12px;
    top: 100%;
    right: 0px;
    box-shadow: 0px 6px 20px -4px #0000001A;
    padding: 16px 12px;
}
.wrap-menu .sub-menu > li:not(:nth-last-child(1)) {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.sub-menu > li a {
    font-size: 14px;
}
.menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}
li.simple-menu:hover > .sub-menu {
    opacity: 1;
    transition: 0.3s;
    visibility: unset;
}
.sub-menu .menu-item-has-children a:before {
    transform: rotate(90deg);
}
.menu-item > .sub-menu .menu-item-has-children .sub-menu {
    top: 0;
    right: 100%;
}