.top_header {
    background: #fafafa;
    border-radius: 0px 0px 20px 20px;
    height: 40px;
}

.top_header .top_header_items {
    display: flex;
    align-items: center;
}

.top_header_left {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.announcement-swiper {
    height: 100%;
    width: 100%;
}

.announcement-swiper .swiper-wrapper {
    align-items: center;
}

.announcement-swiper .swiper-slide {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0 8px;
}

.slide-content {
    font-weight: 600;
    color: #0066b3;
    font-size: 14px;
    text-transform: uppercase;
}


.top_header p {
    color: #3b3b3b;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.top_header_items img {
    margin-right: 8px;
}

.top_header .header-container {
    justify-content: space-between;
    height: 100%;
}

.top_header .top_header_right {
    padding: 7.5px 0;
    display: flex;
    align-items: center;
    background: #fafafa;
    position: relative;
    z-index: 10;

}

.top_header .top_header_items+.top_header_items {
    padding-left: 10px;
    border-left: 1px solid #E6E7E8;
}

.top_header .top_header_items:not(:last-child) {
    padding-right: 10px;
}

.top_header .country_currency {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.top_header .country_currency>div {
    display: flex;
}

.top_header .country_currency>div p+p {
    padding-left: 5px;
    border-left: 1px solid #E6E7E8;
}

.top_header .country_currency>div p:not(:last-child) {
    padding-right: 5px;
}

.top_header .country_currency img {
    margin-right: 8px;
}

.header {
    width: 100%;
    padding: 16px 0 11px;
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    z-index: 99;
}

.header.header-sticky {
    padding: 11px 0 11px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}



/* ------------------------------------------------------------ */

.header_top {
    background: var(--color-primary);
}

.header_top_list {
    display: flex;
    flex-wrap: wrap;
}

.header_top_list a,
.header_top_list li {
    font-size: 13px;
    color: #ffffff;
}

.header_top_list li+li {
    margin-left: auto;
}


/* ------------------------------------------------------------ */

.menu-ul {
    display: flex;
    flex-wrap: wrap;
}

.menu-ul>li {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
}

.menu-ul>li>a,
.menu-ul>li>span {
    text-transform: uppercase;
    color: #3c3c3c;

    font-size: 14px;
    line-height: 22px;
    font-weight: 800;
    margin-bottom: 0;
    transition: all var(--time) ease;
}
.menu-ul>li.current-menu-ancestor>a{
     color: #0066b3;
}

.menu-ul>li:hover>a,
.menu-ul>li:hover>span {
    color: #0066b3;
}

.menu-ul>li:hover .mobile-icon.icon-arrow-sm-down::before {
    background: url(../images/menu-up-blue.svg) no-repeat center;
}

.menu-ul>li.current-menu-item .mobile-icon.icon-arrow-sm-down::before {
    background: url(../images/menu-down-blue.svg) no-repeat center;
}

.menu-ul>li.current-menu-item>a {
    color: #0066b3;

}

.menu-ul>li:hover img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(1091%) hue-rotate(181deg) brightness(98%) contrast(107%);
}

.menu-ul li+li {
    margin-left: 24px;
}

.menu-ul a:hover,
.current_page_item>a,
.current-menu-item>a {
    color: var(--color-primary);
}

.sub-arrow {
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.mobile-icon {
    width: 10px;
    height: 7px;
    margin-left: 5px;
    margin-bottom: 2px !important;
    position: relative;
    cursor: pointer;
    transition: transform .35s ease-in-out;
    will-change: transform;
}

.mobile-icon.icon-arrow-sm-down::before,
.mobile-icon.icon-arrow-sm-up::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.mobile-icon.icon-arrow-sm-down::before {
    background: url(../images/menu-down.svg) no-repeat center;
    transition: 0.4s background ease;
}

.mobile-icon.icon-arrow-sm-up::before {
    background: url(../images/menu-up-blue.svg) no-repeat center;
}


/* ------------------------------------------------------------ */

.sub-menu {
    position: absolute;
    top: 41px;
    width: 200px;
    max-height: 350px;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #ddd;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    overflow: auto;
    transition: opacity .35s ease-out, visibility.35s ease-out, top .35s ease-out, transform .35s ease-in-out;
    /* Firefox scrollbar */
    scrollbar-width: thin;
    /* scrollbar-color: #0065B3 transparent; */
}

.sub-menu.multi-column {
    width: 400px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 14px 20px;
}

.sub-menu::-webkit-scrollbar-track {
    background-color: transparent;
}

.sub-menu::-webkit-scrollbar {
    width: 5x;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #0065B3
}


.sub-menu li+li {
    margin: 15px 0 0 0;
    margin-left: 0 !important;
}

.sub-menu.multi-column li+li {
    margin: 0 0 0 0;
}

.sub-menu li a {
    text-transform: uppercase;
    color: #3c3c3c;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}
.sub-menu li.current-menu-item a{
    color: #0066b3;
}

.sub-menu li a:hover {
    color: #0066b3;
}

.header li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.header-options {
    padding-left: 25px;
    display: flex;
    align-items: center;
}

.header-options a {
    position: relative;
}

.header-options a .wishlist_products_counter_text img {
    width: 23px !important;
    max-width: 23px !important;
    height: 21px !important;
    max-height: 21px !important;
    margin: 0 !important;
    margin-top: 5px !important;
}

.wishlist_products_counter_number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    line-height: 11px;
    padding: 3px;
    color: #ffffff;
    background-color: #FF3E1C;
    top: -7px;
    right: -6px;
    z-index: 1;
    border: 3px solid #ffffff;
}

.search-pannel {
    position: relative;
}

.search-pannel .search_form {
    position: absolute;
    top: 0;
    right: calc(100% - 10px);
    height: 36px;
    display: flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transform: translateX(20px) scaleX(0.7);
    transition:
        opacity 0.3s cubic-bezier(.4, 0, .2, 1),
        transform 0.3s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
}

.search_form.active {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(50px) scaleX(1);
}

.search-expand {
    width: 250px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
    outline: none;
    font-size: 1rem;
    background: #fff;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.search_circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ecf0f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-options>* {
    padding-left: 10px;
}

.header-options a img {
    transition: filter 0.35s ease;
}

.header-options a:hover img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(1091%) hue-rotate(181deg) brightness(98%) contrast(107%);
}

.header-options .cart {
    position: relative;
}

.header-options .cart::after {
    /* content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #FF3E1C;
    top: 5px;
    right: 0;
    z-index: 1;
    border:1px solid #ffffff */
}

.cart-count {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    line-height: 11px;
    padding: 3px;
    color: #ffffff;
    background-color: #FF3E1C;
    top: -9px;
    right: -6px;
    z-index: 1;
    border: 3px solid #ffffff;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 25px;
    height: 27px;
    position: relative;
    margin-left: 10px;
}

.menu-icon span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--color-black);
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.menu-icon:hover span {
    background: #0066b3;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------------------------------------------------ */
@media (max-width: 1550px) {
    .menu-ul li+li {
        margin-left: 22px;
    }

}

@media (max-width: 1200px) {


    .menu-icon {
        display: flex;
    }

    .header-options {
        margin-left: auto;
        padding-left: 0;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 80px 30px 50px;
        background: #ffffff;
        z-index: 99999;

        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        overflow: auto;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-bar.mob-nav {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-icon.active {
        top: 30px;
        right: 22px;
        z-index: 99999999;
        position: fixed;
    }

    .mob-nav .menu-ul li+li {
        margin-left: 0;
    }

    .menu-ul {
        flex-direction: column;

    }

    .menu-ul>li {
        padding: 12px 0;
        justify-content: space-between;
        flex-wrap: wrap;
        border-bottom: 1px solid #eeeded;
    }

    .sub-menu {
        position: static;
        width: 100%;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        /* prevent content overflow */
        border-radius: 0;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 20px;
        transform: unset;
        /* padding collapsed initially */
        transition:
            opacity .35s ease,
            visibility .35s ease,
            max-height .35s ease,
            padding .35s ease;
    }

    .header li:hover .sub-menu {
        transform: unset
    }

    .header li .sub-menu.mob-submenu {
        max-height: 1000px;
        /* expands */
        opacity: 1;
        visibility: visible;
        padding: 20px 0 10px 20px;
        /* padding restored */
    }


    .arrow-mob {
        width: 14px;
        height: 13px;
        position: relative;
    }

    .arrow-mob::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 14px;
        height: 13px;
        background: url(../images/menu-down.svg) no-repeat center;
        background-size: 12px;
    }

    .current-menu-item .arrow-mob::after {
        background: url(../images/menu-down-blue.svg) no-repeat center;
        background-size: 12px;
    }

    .mob-menu-opened .arrow-mob {
        transform: scaleY(-1);
    }


    .mob-menu-opened .arrow-mob::after {
        background: url(../images/menu-down-blue.svg) no-repeat center;
        background-size: 12px;
    }

    .menu-ul>li:hover>a,
    .menu-ul>li:hover>span {
        color: #3c3c3c;
    }

    .nav-bar .menu-ul>li.mob-menu-opened>a {
        color: #0066b3;
    }

    .sub-menu.multi-column {
        display: block;
        width: 100%;
    }

    .sub-menu.multi-column li+li {
        margin: 15px 0 0 0;
    }

}


@media (max-width: 992px) {
    .top_header .top_header_items {
        display: none;
    }

    .top_header .country_currency {
        padding-left: 0;
    }

    .wishlist_products_counter_number {
        top: -6px;
    }
    .slide-content {
    font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        padding: 80px 25px 0;
    }
     .slide-content {
    font-size: 10px;
    }
}