#header_top {
    padding-block: 16px;
    position: relative;
    z-index: 9;
    width: 100%;
}
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        max-width: clamp(128px, 9vw, 158px);
    }
}
#header {
    background: transparent;
    box-shadow: 0px 4px 16px 0px #6877822E;
    .site-header-main {
        background: #F1F5F9;
    }
    .wrap-menu {
        flex: 0 0 calc(100% - 160px);
    }
    .call-header {
        max-width: 160px;
        display: flex;
        align-items: center;
        gap: 6px;
        text-align: left;
        transition: 0.4s;
        i {
            width: 48px;
            height: 48px;
            background: var(--color2);
            color: white;
            font-size: 20px;
            flex: 0 0 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .call-header-text {
            font-size: 10px;
            font-family: var(--SemiBold);
            color: #707070;
            transition: 0.4s;
        }
        .call-header-number {
            font-size: 16px;
            font-family: var(--SemiBold);
            color: var(--black);
            transition: 0.4s;
        }
        :hover .call-header-number {
            color: var(--color2);
        }
    }
}
.call-header i {
    animation: animloader-btn 1s ease-in-out infinite alternate;
}
@keyframes animloader-btn {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
.btn-header {
    float: left;
    background: #F4832329;
    border: 2px solid #F4832333;
    border-radius: 80px;
    padding: 13px 26px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    font-size: 16px;
    font-family: var(--SemiBold);
    transition: 0.4s;
    i {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    &:hover {
        background: var(--color1);
        border-color: var(--color1);
        color: white;
    }
}
.wrap-mega-menu {
    box-shadow: 0px 4px 32px 0px #0000002B;
    background: white;
}
.header-menu-right {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
}
.wrap-menu > ul > li > a {
    padding-block: 12px !important;
    transition: 0.4s;
    position: relative;
    font-family: var(--Medium) !important;
    display: inline-block;
    font-size: 16px !important;
}
.search-by-json .input input {
    min-width: 320px;
    border-radius: 100px;
}
.header-right {
    display: flex;
    gap: 30px;
    align-items: center;
    position: inherit;
    & a {
        color: white !important;
    }
}
.header-left {
    display: flex;
    align-items: center;
}
.menu-mobile {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    & .header-mm {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        width: 60px;
        height: 60px;
        border-radius: 80px;
        border-width: 2px;
        background: #F1F5F9;
        border: 2px solid #DFE9F2;
        color: #707070;
    }
    & .header-search {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        width: 60px;
        height: 60px;
        border-radius: 80px;
        border-width: 2px;
        background: #F1F5F9;
        border: 2px solid #DFE9F2;
        color: #707070;
    }
}
@media screen and (min-width: 992px) {
    .search-by-json .body {
        right: 0;
        width: clamp(320px, 70vw, 1100px) !important;
    }
}
@media only screen and (max-width: 768px) {
    #header {
        background: none;
        padding: 12px 24px 12px 24px;
        box-shadow: 0px 4px 16px 0px #6877822E;
    }
}
/**********/
.wrap-header {
    width: 100%;
}
.custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* --------------------
    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:focus {
    border-color: var(--color1);
}
.search-pup-up #fast-search-input {
    width: 100%;
    text-align: right;
    border: none;
    background: #F7F7F7;
    color: #313233;
    font-size: 14px;
    padding: 16px 48px;
    border-radius: 12px;
    border: 1px solid #F7F7F7;
    transition: 0.4s;
}
.search-pup-up #fast-search-input::placeholder {
    color: #313233;
}
#search-text {
    padding-right: 3rem;
}
.search-pup-up .search-form:after {
    content: "\e90b";
    font-family: 'icomoon';
    font-size: 24px;
    position: absolute;
    right: 1rem;
    display: block;
    top: 0px;
    color: var(--black);
    transform: rotateY(180deg);
}
.search-pup-up .search-results-box {
    background: unset;
    position: relative;
    top: unset;
    overflow: auto;
}
.fd-outer {
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: 26px;
    right: 50%;
    z-index: 10;
    transform: translateX(50%);
}
.fd-inner {
    width: 30px;
    text-align: center;
}
.fd-inner:before,
.fd-inner:after {
    position: absolute;
    content: '';
    height: 2px;
    width: inherit;
    background: white;
    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-results-box .button {
    width: 100%;
}
.search-pup-up .empty .icon-close {
    color: white;
    transition: 0.4s ease;
    cursor: pointer;
    font-size: 15px;
}
.search-pup-up .empty .icon-close:hover {
    color: darkred;
}
.search-pup-up .empty {
    position: absolute;
    top: 50% !important;
    left: 1rem !important;
    background: var(--danger);
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    border-radius: 4px;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.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;
}
