#header {
    z-index: 4;
    top: 0;
    position: fixed;
    width: 100%;
}
#header a {
    font-size: 14px;
    color: var(--black);
    transition: 0.4s;
}
#header a:hover {
    color: var(--color1);
}
#header .container .row {
    position: relative;
}
.custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 73px;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    flex: 0 0 80px;
}
.header-left {
    display: flex;
    gap: 16px;
    align-items: center;
}
.header-search.search-btn-popup {
    display: flex;
}
.header-left .header-menu {
    display: flex;
    gap: clamp(12px, 4vw, 32px);
    margin-left: 16px;
}
.btn-header {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 6.5rem;
}
.websima-mega-menu {
    background: #f2f2f2;
    padding: 1px 24px;
    border-radius: 100px;
    gap: 28px;
}
.websima-mega-menu > li a {
    position: relative;
}
.websima-mega-menu > li:not(:nth-last-child(1)) > a:before {
    content: "";
    width: 1px;
    height: 10px;
    background: #D9D9D9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -14px;
}
/*.websima-mega-menu > li a:before {*/
/*    content: "";*/
/*    background-color: var(--color1);*/
/*    width: 100%;*/
/*    height: 4px;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*}*/
.blue-line:before {
    content: "";
    background: var(--color1);
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    transition: 0.4s;
}
.websima-mega-menu.header-menu > li:hover .blue-line:before {
    width: 100%;
}
.websima-mega-menu .level-0.sub-menu,
.websima-mega-menu .mega-menu > .sub-menu {
    top: 54px;
}

/** Lang Btn */
.lang-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 6px;
    font-size: 16px;
    transition: 0.4s;
    flex-direction: row-reverse;
    color: var(--black);
    max-height: 1.3rem;
}
.lang-btn > span {
    height: 2.1rem;
    padding-top: 5px;
}
.lang-btn .icon-arrow {
    font-size: 5px;
    color: #ADADAD;
}
.lang-content {
    opacity: 0;
    position: absolute;
    background-color: var(--color1);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-align: center;
    transition: 0.3s;
    border-radius: 0 0 0 1rem;
    width: 70px;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
}
.head_account .current-lng {
    display: inline-block;
    margin: 0 5px 0 7px;
}
#header .head_account:hover .lang-content a{
	color:#fff;
}
.lang-content a {
    color: white;
    padding: 0.75rem;
    text-decoration: none;
    display: flex;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.head_account a:before {
    content: "";
    background: white;
    width: 10px;
    height: 0;
    bottom: -6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    transition: 0.4s;
}
.head_account a:hover:before {
    height: 10px;
}
.lang-content a:not(:nth-last-child(1)) {
    border-bottom: 1px solid white;
}
.head_account:hover .lang-content {
    opacity: 1;
    transition: 0.3s;
}
.head_account .lang-btn i {
    transition: 0.4s;
}
.head_account:hover .lang-btn i,
.head_account:hover .lang-btn {
    color: var(--color1);
}
.head_account:hover .lang-arrow:before {
    border-color: var(--color1);
}
.head_account a:hover {
    color: var(--color2);
}
.head_account i.lang-arrow {
    font-size: 12px;
    transition: 0.3s;
}
.lang-btn i.icon-global {
    font-size: 20px;
    color: #495965;
}
.lang-arrow:before {
    content: "";
    border: solid #777777;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
#header .head_account {
    position: relative;
    margin-right: 12px;
    max-height: 1.5rem;
    align-items: center;
    display: flex;
}
.header-search i {
    transition: 0.4s;
    cursor: pointer;
    font-size: 21px;
}
.header-search:hover i {
    color: var(--color1);
}
/** loader Btn **/
.loader-btn {
    width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
    margin-bottom: 3px;
}
.loader-btn::after,
.loader-btn::before {
    content: '';
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color1);
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader-btn 2s linear infinite;
}
.loader-btn::after {
    animation-delay: 1s;
}
@keyframes animloader-btn {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
@media only screen and (max-width: 992px) {
    #header .container:before {
        clip-path: unset;
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    #header .container:before {
        content: none;
    }
    #header {
        background-color: var(--white);
    }
    .menu-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 11px 20px;
        box-shadow: 0px 3px 2px -1px #00000017;
    }
}
@media only screen and (min-width: 768px) {
    #header .container .row:before {
        content: "";
        width: calc(100% - 8rem);
        position: absolute;
        top: 0;
        right: 50%;
        transform: translateX(50%);
        background: var(--white);
        height: 73px;
        /*clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);*/
        clip-path: polygon(0% 0%, 100% 0%, 98.782% 89.234%, 98.782% 89.234%, 98.748% 91.063%, 98.701% 92.768%, 98.64% 94.332%, 98.567% 95.739%, 98.483% 96.974%, 98.39% 98.021%, 98.289% 98.863%, 98.18% 99.484%, 98.066% 99.868%, 97.948% 100%, 2.052% 100%, 2.052% 100%, 1.933% 99.868%, 1.819% 99.484%, 1.711% 98.863%, 1.61% 98.021%, 1.517% 96.974%, 1.433% 95.739%, 1.36% 94.332%, 1.299% 92.768%, 1.252% 91.063%, 1.218% 89.234%, 0% 0%);
    }
}
/* --------------------
    Search Popup
-------------------- */
/**    *************************************/
.search-pup-inner.container {
    background: white;
    max-height: 600px;
    top: 80px;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    border-radius: clamp(16px, 2vw, 20px);
    padding: clamp(16px, 3vw, 32px);
}
.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: #F2F2F2;
    color: #313233;
    font-size: 14px;
    padding: 12px 56px;
    border-radius: 100px;
}
.search-pup-up #fast-search-input:focus {
    border-color: var(--color2);
}
.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;
    cursor: pointer;
    position: absolute;
    top: clamp(40px, 6vw, 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: #fff;
    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: #fff;
    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 .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-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 .woocommerce-Price-amount.amount,
.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;
}
.search-by-json .input .empty {
    top: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 992px) {
    .search-by-json .body {
        width: 100% !important;
    }
}
@media only screen and (max-width: 768px) {
    .search-pup-inner.container {
        width: calc(100% - 32px);
    }
}