
#header_sticky{
    transition: top 0.7s ease, opacity 0.7s ease;
}
.header_sticky{
    position: fixed;
    top: -50px;
    width: 100%;
    z-index: 25;
    animation: smoothAppear 0.7s forwards;
    left: 0;
}
@keyframes smoothAppear {
    to {
        top: 0;
        opacity: 1;
    }
}

/* .header_absolute{
    position: absolute;
    width: 100%;
    top:21px;
    z-index: 90;
} */
.header_section .header_area{
    height: 60px;
    border-radius:50px;
}
.header_section .header_area_inner{
    padding: 6px 16px;
}

.header_section .brand_logo img{
    width: 119px;
    height: 42px;
    display: block;
    object-fit: cover;
}
.mb__sidebar_overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:var(--sidebar_overlay_color);
    visibility: hidden;
    opacity: 0;
    z-index: 80;
    transition: .3s;
}
.mb__sidebar_overlay.openSidebar{
    visibility: visible;
    opacity: 1;
}

/* sidebar */
.header_section .menu_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--sidebar_bg_color);
    z-index: 90;
    transition: .3s;
    @media (min-width: 1024px) {
        background: transparent;
    }
}
.header_section .menu_nav.openSidebar{
    right: 0;
}

.header_section .sidebar_close_btn_wrapper{
    height: 44px;
    padding: 10px;
    /* border-bottom: 1px solid var(--sidebar_menu_border_color); */
}
.header_section .menu_list li{
    height: 37px;
    /* border-bottom: 1px solid var(--sidebar_menu_border_color); */
}
.header_section .menu_list li a{
    font-size: 14px;
    line-height: 21px;
    font-weight: var(--medium);
    /* color: var(--sidebar_menu_color); */
    padding-left: 16px;
}

.header_section .cart_btn_wrapper{
    position: relative;
}
.header_section .notification{
    position: absolute;
    top: -4px;
    right: -5px;
    padding: 5px;
    text-align: center;
    height: 16px;
    width: auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #000;
    font-size: 9px;
}


@media(min-width:1024px){
    .header_section .header_area{
        height: 80px;
    }
    .header_section .header_area_inner {
        padding: 9px 30px;
    }
    .header_section .brand_logo img{
        width: 151px;
        height:56px;
    }
    .header_section .hamburger_btn {
        display: none;
    }
    .header_section .menu_nav{
        width: 100%;
        position: unset;
    }
    .header_section .menu_list{
        flex-direction: row;
        gap: 16px;
    }
    .header_section .sidebar_close_btn_wrapper{
        display: none;
    }
    .header_section .menu_list li{
        border-bottom: unset;
        height: 40px;
    }
    .header_section .menu_list li a{
        font-size: 16px;
        line-height: 24px;
        padding:8px 14px;
    }

}