/*-----------------------------------------------
|   header section
-----------------------------------------------*/
.sticky_header {
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    height: auto;
    position: absolute;
}

.sticky_header.stuck {
    position: fixed;
    -webkit-animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
    animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}
.mh_action_btns {
    display: none;
}

.mh_action_btns>li:not(:last-child) {
    margin-right: 5px;
}

.mh_action_btns>li>button {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    font-size: 16px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: none;
    border: none;
    border: 1px solid #fff;
    cursor: pointer;
}

.sticky_header.stuck .mh_action_btns>li>button{
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*-----------------------------------------------
|   end header section
-----------------------------------------------*/

/*-----------------------------------------------
|   main_menu
-----------------------------------------------*/
.main_menu>ul>li>a {
    display: block;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    color: #2e2e2e;
}

.menu_item_has_child {
    position: relative;
}

.menu_item_has_child>a {
    position: relative;
}

.menu_item_has_child>a:after {
    font-size: 15px;
    content: '\f107';
    font-weight: 500;
    margin-left: 5px;
    display: inline-block;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    /* font-family: 'Font Awesome 6 Free'; */
}

.mega_menu {
    left: 0px;
    right: 0px;
    z-index: 999;
    display: none;
    position: fixed;
    padding-top: 30px;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.mega_menu .background {
    background: #fff;
    padding: 24px 0px;
    -webkit-box-shadow: -1px 2px 20px 3px rgba(14, 0, 40, 0.1);
    box-shadow: -1px 2px 20px 3px rgba(14, 0, 40, 0.1);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}
.mega_menu .title_text{
    font-weight: 300;
    position: relative;
    margin: 0 12px 12px 0;
}
.mega_menu .page_title{
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
}
.mega_menu .page_title img{
    width: 40px;
    height: 40px;
}
.mega_menu .page_link_group .page_link{
    color: var(--bs-gray);
    padding: 4px 0;
    display: inline-block;
}
.mega_menu .page_link_group .page_link:hover{
    color: var(--bs-primary);
}
.menu_item_has_child:hover .mega_menu{
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}
/*-----------------------------------------------
|   end main_menu
-----------------------------------------------*/

/*-----------------------------------------------
|   sidebar mobile manu & cart sidebar
-----------------------------------------------*/
.sidebar-menu-wrapper {
    display: block;
}

.sidebar-menu-wrapper .close_btn {
    cursor: pointer;
    position: absolute;
    right: 52px;
    top: 20px;
    width: 40px;
    height: 40px;
    color: var(--bs-primary);
    border-radius: 50%;
    background: none;
    border: 1px solid var(--bs-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-menu-wrapper .overlay {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sidebar-menu-wrapper .overlay.active {
    opacity: 1;
    display: block;
}

.sidebar_mobile_menu {
    top: 0px;
    width: 400px;
    right: -420px;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    overflow-y: scroll;
    padding: 100px 40px;
    background-color: #ffffff;
    -webkit-transition: 0.6s cubic-bezier(1, 0, 0, 1);
    transition: 0.6s cubic-bezier(1, 0, 0, 1);
}

.sidebar_mobile_menu.active {
    right: 0px;
}

/* .sidebar_mobile_menu .mCustomScrollBox {
    overflow: visible !important;
} */

.sidebar_mobile_menu .msb_widget {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f1f1f1;
}

.sidebar_mobile_menu .title_text {
    font-size: 18px;
}

/* .sidebar_mobile_menu .mobile_menu_list>ul {
    margin: -0px -15px;
} */

.sidebar_mobile_menu .mobile_menu_list>ul>li>a {
    padding: 15px;
    display: block;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    /* color: #6b6b6b; */
}

.sidebar_mobile_menu .mobile_menu_list>ul>li:hover>a,
.sidebar_mobile_menu .mobile_menu_list>ul>li.active>a {
    color: #000000;
}

.sidebar_mobile_menu .mobile_menu_list a[data-toggle=dropdown] {
    padding: 15px;
}

.sidebar_mobile_menu .mobile_menu_list a[data-toggle=dropdown][aria-expanded=true] {
    background-color: #f1f1f1;
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu {
    margin: 0px;
    width: 100%;
    float: none;
    border: none;
    display: none;
    line-height: 1;
    padding: 10px 0px;
    border-radius: 4px;
    -webkit-transform: unset !important;
    transform: unset !important;
    /* position: static !important; */
    /* background-color: red; */
    background-color: #f9f9f9;
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu.show {
    display: block;
    position: unset !important;
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu a {
    padding: 15px;
    display: block;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    padding-left: 25px;
    color: #6b6b6b;
    position: relative;
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu>li:hover>a,
.sidebar_mobile_menu .mobile_menu_list .dropdown-menu>li.active>a {
    color: #000000;
    background-color: #f1f1f1;
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu .dropdown-menu {
    padding-top: 0px;
    background-color: #f1f1f1;
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu .dropdown-menu a {
    padding-left: 35px;
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-toggle:after {
    margin: 0px;
    border: none;
    position: absolute;
    font-weight: 400;
    content: "\2b";
    font-size: 20px;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--bs-primary);
}

.sidebar_mobile_menu::-webkit-scrollbar {
    width: 0px;
}
/*-----------------------------------------------
|   end sidebar mobile manu & cart sidebar
-----------------------------------------------*/

/*-----------------------------------------------
|   custom_header
-----------------------------------------------*/
.custom_header .header_content_wrap {
    padding: 20px 40px;
    min-height: 80px;
    position: relative;
}

.custom_header .order_btn:hover {
    background-color: #051133;
}

.custom_header.stuck .header_content_wrap {
    min-height: auto;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.075);
}

.custom_header.stuck .main_menu>ul>li>a{
    color: var(--bs-gray);
}
.custom_header.stuck .main_menu>ul>li>a::after{
    bottom: -4px;
}

.custom_header .main_menu>ul>li {
    padding: 10px 20px;
    position: relative;
}

.main_menu>ul>li>a::after{
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--bs-secondary);
    bottom: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition-ease);
}
.main_menu>ul>li>a:hover::after{
    opacity: 1;
    transition: var(--transition-ease);
}

.custom_header .main_menu>ul>li>a {
    color: #ffffff;
    /* position: relative; */
    font-weight: 400;
}

.custom_header .main_menu .menu_item_has_child>a:after {
    display: none;
}

.custom_header .action_btns_group {
    margin-right: 160px;
}

.custom_header .action_btns_group button {
    width: 50px;
    height: 50px;
    border-radius: 0px;
    background-color: #2f383b;
}
/*-----------------------------------------------
|   end custom_header
-----------------------------------------------*/

.ul_li,
.ul_li_right,
.ul_li_center {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ul_li_right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.mh_action_btns {
    display: none;
}

@media screen and (max-width: 1199px) {

    .menu_item_has_child>a:after {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {

    .main_menu,
    .header_section .action_btns_group {
        display: none;
    }

    .mh_action_btns {
        display: block;
    }

    .header_section .brand_logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mh_action_btns {
        display: block;
    }

}

@media screen and (max-width: 575px) {

    .header_section .brand_logo .brand_link {
        max-width: 170px;
    }

    .mh_action_btns>li>button{
        width: 35px;
        height: 35px;
    }
    .sidebar-menu-wrapper .close_btn{
        width: 35px;
        height: 35px;
        right: 32px;
        top: 22px;
    }

    .mh_action_btns>li>button .btn_badge {
        top: -3px;
        right: -3px;
        width: 15px;
        height: 15px;
        font-size: 8px;
    }

    .sidebar_mobile_menu {
        width: 300px;
        right: -320px;
        padding: 70px 30px;
    }

    .sidebar_mobile_menu .title_text {
        font-size: 16px;
    }

    .custom_header .header_content_wrap{
        padding: 20px;
    }
}

@media screen and (max-width: 380px) {

    .header_section .brand_logo .brand_link {
        max-width: 140px;
    }

}
