.mb_none{
    display: none;
}
header .brand_logo img{
    height: auto;
    display: block;
    object-fit: cover;
}
header .current_date{
    font-size:12px;
    line-height:18px;
    font-weight:var(--regular);
}

.header_top .header_top_left{
    margin-right: 30px;
}
.header_top {
    padding: 20px 0;
}

.header_top .header_top_articles .left_img_right_news{
    max-width: 288px;
}

.header_bottom .header_bottom_inner {
    height: 60px;
}

.header_bottom .header_main_menu {
    width: calc(100% - 128px);
    overflow-y: scroll;
}
.header_bottom .header_main_menu::-webkit-scrollbar{
    display: none;
}
.header_bottom .header_main_menu {
    scrollbar-width: none;
}
.header_bottom .header_main_menu {
    -ms-overflow-style: none;
}

.header_bottom .header_main_menu ul li a{
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--semiBold);
    width: max-content;
}

.header_bottom .ecommerce_btn_groups{
    width: 128px;
    margin-right: -16px;
}
.header_bottom .ecommerce_btn_groups,
.header_bottom .ecommerce_btn_groups ul,
.header_bottom .ecommerce_btn_groups ul li{
    height: 100%;
}
.header_bottom .ecommerce_btn_groups ul li{
    padding: 10px;
}
.header_bottom .ecommerce_btn_groups ul li a p{
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--regular);
}
.header_bottom .ecommerce_btn_groups ul li.glove_wrapper a p{
   font-family: "Anek Bangla", sans-serif;
}

.header_bottom .hamburger_btn{
    width: 44px;
}

.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility:hidden;
    transition: .3s ease-in-out;
    opacity: 0;
}
.sidebar.open_sidebar{
    visibility: visible;
    z-index: 90;
    opacity: 1;
}
.sidebar .sidebar_main{
    height: calc(100% - 95px);
    overflow-y: scroll;
}
.sidebar .sidebar_main_inner{
    padding-top: 10px;
}

.sidebar .sidebar_header_inner{
    padding: 20px 0px;
}

.sidebar .sidebar_top_menus{
    padding: 16px 0px;
}
.sidebar .sidebar_top_menus ul li a,
.sidebar .sidebar_bottom_menus ul li a{
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--semiBold);
}
.sidebar .sidebar_bottom_menus ul li:nth-child(1){
    margin-top: 11px;
}
.sidebar .sidebar_bottom_menus ul li .link_wrapper{
    height: 40px;
}
.sidebar .sidebar_bottom_menus ul li .nested_menus{
    padding-left: 16px;
}
.sidebar .sidebar_bottom_menus ul li .nested_menus a{
    font-weight: var(--regular);
    height: 38px;
}
.sidebar .sidebar_bottom_menus ul li .nested_menus a:nth-child(1){
    margin-top: 8px;
}
.sidebar .hidden {
    visibility:hidden;
}

.sidebar .nested_menus {
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
}

.sidebar .nested_menus.open {
    max-height: 1000px;
}

@media(min-width:768px){

    header .current_date{
        font-size:14px;
        line-height:20px;
    }
    .sidebar .sidebar_top_menus ul li a, 
    .sidebar .sidebar_bottom_menus ul li a {
        font-size: 20px;
        line-height: 28px;
    }
    .sidebar .sidebar_bottom_menus ul li .nested_menus a{
        font-size: 16px;
        line-height: 24px;
    }
}

@media(min-width:992px){
    .mb_none{
        display: flex;
    }

    .header_bottom .flex.gap_15{
        gap: 20px;
    }
    .header_bottom .ecommerce_btn_groups{
        width: 306px;
        margin-right:0px;
    }
    .header_bottom .glove_wrapper{
        background-color: transparent;
        box-shadow: none;
    }

   .sidebar .sidebar_main_inner {
        padding-top: 0px;
    }
    .sidebar .sidebar_top_menus ul.flex.gap_16{
        gap: 48px;
    }
    .sidebar .sidebar_bottom_menus ul li{
        display: flex;
        align-items: flex-start;
        gap: 32px;
        padding: 16px 0;
    }
    .sidebar .sidebar_bottom_menus ul li .link_wrapper {
        min-width: 288px;
        height: auto;
        border-bottom: unset;
    }
    .sidebar .sidebar_bottom_menus ul li .nested_menus.flex_column {
        padding-left: 0;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 16px;
    }
    .sidebar .sidebar_bottom_menus ul li .nested_menus a {
        height: auto;
        border-bottom: unset;
    }
    .sidebar .sidebar_bottom_menus ul li:nth-child(1),
    .sidebar .sidebar_bottom_menus ul li .nested_menus a:nth-child(1){
        margin-top: 0px;
    }
    .sidebar .hidden {
        visibility:visible;
    }

    .sidebar .nested_menus {
        transition:none;
        max-height: unset;
        overflow: hidden;
    }

}