﻿img {
    max-width: 100%;
    height: auto;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: initial;
    text-decoration: none;
    transition: all var(--transition-primary);
}

    a:hover {
        text-decoration: none;
        color: var(--bs-primary);
        transition: all var(--transition-primary);
    }

ul {
    padding: 0;
}

    ul li {
        list-style: none;
    }
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Poppins:wght@400;700&display=swap'); */

body {
    font-family: Poppins, "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}
/*-----------------------------------------------
|   variable
-----------------------------------------------*/

:root {
    --transition-primary: 0.15s ease-in-out;
    --transition-slow: 0.4s ease;
}
/*-----------------------------------------------
|   font size
-----------------------------------------------*/
@media (min-width: 576px) {
    .fs-sm-1 {
        font-size: calc(1.375rem + 1.5vw) !important;
    }

    .fs-sm-2 {
        font-size: calc(1.325rem + 0.9vw) !important;
    }

    .fs-sm-3 {
        font-size: calc(1.3rem + 0.6vw) !important;
    }

    .fs-sm-4 {
        font-size: calc(1.275rem + 0.3vw) !important;
    }

    .fs-sm-5 {
        font-size: 1.25rem !important;
    }

    .fs-sm-6 {
        font-size: 1rem !important;
    }

    .fs-sm-7 {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .fs-md-1 {
        font-size: calc(1.375rem + 1.5vw) !important;
    }

    .fs-md-2 {
        font-size: calc(1.325rem + 0.9vw) !important;
    }

    .fs-md-3 {
        font-size: calc(1.3rem + 0.6vw) !important;
    }

    .fs-md-4 {
        font-size: calc(1.275rem + 0.3vw) !important;
    }

    .fs-md-5 {
        font-size: 1.25rem !important;
    }

    .fs-md-6 {
        font-size: 1rem !important;
    }

    .fs-md-7 {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .fs-lg-1 {
        font-size: calc(1.375rem + 1.5vw) !important;
    }

    .fs-lg-2 {
        font-size: calc(1.325rem + 0.9vw) !important;
    }

    .fs-lg-3 {
        font-size: calc(1.3rem + 0.6vw) !important;
    }

    .fs-lg-4 {
        font-size: calc(1.275rem + 0.3vw) !important;
    }

    .fs-lg-5 {
        font-size: 1.25rem !important;
    }

    .fs-lg-6 {
        font-size: 1rem !important;
    }

    .fs-lg-7 {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .fs-xl-1 {
        font-size: calc(1.375rem + 1.5vw) !important;
    }

    .fs-xl-2 {
        font-size: calc(1.325rem + 0.9vw) !important;
    }

    .fs-xl-3 {
        font-size: calc(1.3rem + 0.6vw) !important;
    }

    .fs-xl-4 {
        font-size: calc(1.275rem + 0.3vw) !important;
    }

    .fs-xl-5 {
        font-size: 1.25rem !important;
    }

    .fs-xl-6 {
        font-size: 1rem !important;
    }

    .fs-xl-7 {
        font-size: 14px;
    }
}

@media (min-width: 1400px) {
    .fs-xxl-1 {
        font-size: calc(1.375rem + 1.5vw) !important;
    }

    .fs-xxl-2 {
        font-size: calc(1.325rem + 0.9vw) !important;
    }

    .fs-xxl-3 {
        font-size: calc(1.3rem + 0.6vw) !important;
    }

    .fs-xxl-4 {
        font-size: calc(1.275rem + 0.3vw) !important;
    }

    .fs-xxl-5 {
        font-size: 1.25rem !important;
    }

    .fs-xxl-6 {
        font-size: 1rem !important;
    }

    .fs-xxl-7 {
        font-size: 14px;
    }
}
/*-----------------------------------------------
|   hover
-----------------------------------------------*/
.hover_transform_scale {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.14, 0, 0, 1);
    transition: -webkit-transform 1s cubic-bezier(0.14, 0, 0, 1);
    transition: transform 1s cubic-bezier(0.14, 0, 0, 1);
    transition: transform 1s cubic-bezier(0.14, 0, 0, 1), -webkit-transform 1s cubic-bezier(0.14, 0, 0, 1);
    -webkit-transition: transform 1s cubic-bezier(0.14, 0, 0, 1);
}

    .hover_transform_scale:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: -webkit-transform 1s cubic-bezier(0.14, 0, 0, 1);
        transition: -webkit-transform 1s cubic-bezier(0.14, 0, 0, 1);
        transition: transform 1s cubic-bezier(0.14, 0, 0, 1);
        transition: transform 1s cubic-bezier(0.14, 0, 0, 1), -webkit-transform 1s cubic-bezier(0.14, 0, 0, 1);
        -webkit-transition: transform 1s cubic-bezier(0.14, 0, 0, 1);
    }

.hover_color_none:hover {
    color: initial;
}

.hover_color_trp:hover {
    color: #487690;
    transition: var(--transition-primary);
    -webkit-transition: var(--transition-primary);
}

.hover_opacity {
    transition: var(--transition-primary);
    -webkit-transition: var(--transition-primary);
}

    .hover_opacity:hover {
        opacity: 0.7;
        transition: var(--transition-primary);
        -webkit-transition: var(--transition-primary);
    }

.hover_text_underline:hover {
    text-decoration: underline;
}
/*-----------------------------------------------
|   utilities
-----------------------------------------------*/
.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.title {
    font-weight: bold;
    font-size: 24px;
}

.title_h2 {
    font-weight: bold;
    font-size: 20px;
}

.object-fit-cover {
    object-fit: cover;
}

.transition-slow {
    transition: all var(--transition-slow);
    -webkit-transition: all var(--transition-slow);
}

.break-word {
    word-break: break-word;
}

.w-15 {
    width: 15%;
}

@media (max-width: 767px) {
    .title {
        font-size: 20px;
    }

    .title_h2 {
        font-weight: bold;
        font-size: 18px;
    }
}

.fs-7 {
    font-size: 14px;
}

.ratio_outer {
    position: relative;
    width: 100%;
    height: 0;
    display: block;
    /* padding-bottom: ; 比例 */
}

.ratio_inner, .ratio_inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* bg-cover */
}
/*-----------------------------------------------
|   footer
-----------------------------------------------*/
.footer_logo {
    width: 60px;
    height: auto;
}

.footer_link {
    font-size: 14px;
    color: var(--bs-gray-light);
    padding-top: 6px;
    padding-bottom: 6px;
    display: inline-block;
    transition: color var(--transition-primary);
    -webkit-transition: color var(--transition-primary);
}

    .footer_link:hover {
        color: #fff;
        transition: color var(--transition-primary);
        -webkit-transition: color var(--transition-primary);
    }

.link-tektro {
    width: 170px;
    display: block;
}

.link-trp {
    width: 140px;
    display: block;
}

.logo_divider {
    height: 24px;
    width: 1px;
    background-color: var(--bs-gray-light);
    margin: 0 20px;
}

.footer_logo_group {
    border-top: 1px solid #393A3C;
    border-bottom: 1px solid #393A3C;
    padding: 20px 0;
}

@media (max-width: 1399px) {
    .link-tektro {
        width: 120px;
    }

    .link-trp {
        width: 100px;
    }
}

@media (max-width: 1199px) {
    .logo_divider {
        margin: 0 12px;
    }
}

@media (max-width: 767px) {
    /* .footer_logo{
        width: 40px;
    }    */
    .footer_media_group {
        border-bottom: 1px solid #393A3C;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
    }
}
/*-----------------------------------------------
|   btnGroup
-----------------------------------------------*/
.btnGroup {
    position: fixed;
    /* position: absolute; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 40px;
    bottom: 20px;
}

    .btnGroup .btnGroup_link {
        display: block;
        position: relative;
        width: 44px;
        height: 44px;
    }

    .btnGroup .btnGroup_top::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: url(../images/goTop.svg) no-repeat center;
        background-size: contain;
    }
    /* .btnGroup .btnGroup_contact{
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
} */
    .btnGroup .btnGroup_contact::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: url(../images/contact.svg) no-repeat center;
        background-size: contain;
    }

@media (max-width: 767px) {
    .btnGroup .btnGroup_link {
        width: 32px;
        height: 32px;
    }

    .btnGroup {
        right: 20px;
    }
}
/*-----------------------------------------------
|   header section
-----------------------------------------------*/
.sticky_header {
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    height: auto;
    position: absolute;
    background-color: var(--bs-dark);
}

    .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;
        flex-wrap: wrap;
        color: #fff;
        font-size: 16px;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        align-content: center;
        /* border-radius: 100%; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /* justify-content: center; */
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

/* .sticky_header.stuck .mh_action_btns>li>button{
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
} */
.nav_divider {
    height: 24px;
    width: 1px;
    background-color: var(--bs-gray-light);
    margin-left: 12px;
    margin-right: 32px;
}

.mh_action_btns .mobile_menu_btn span {
    display: block;
    position: relative;
    width: 32px;
    height: 1px;
    border-radius: 1px;
    background: #fff;
    /* outline: 1px solid transparent; */
}

    .mh_action_btns .mobile_menu_btn span:nth-child(2) {
        width: 24px;
    }

    .mh_action_btns .mobile_menu_btn span:not(:first-child) {
        margin-top: 7px;
    }

@media (max-width: 375px) {
    .mh_action_btns .mobile_menu_btn span {
        width: 22px;
    }

        .mh_action_btns .mobile_menu_btn span:nth-child(2) {
            width: 16px;
        }
}
/*-----------------------------------------------
|   end header section
-----------------------------------------------*/

/*-----------------------------------------------
|   main_menu
-----------------------------------------------*/
.main_menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .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'; */
}

.menu_item_has_child .submenu {
    /* top: 100%; */
    /* left: 0px; */
    top: 0;
    left: 150%;
    opacity: 0;
    margin: 0px;
    z-index: 99;
    margin: 0px;
    padding: 0px;
    /* min-width: 220px; */
    width: 260%;
    /* padding: 20px 0px; */
    visibility: hidden;
    position: absolute;
    background: #ffffff;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 19px 3px rgba(0, 0, 0, 0.08);
}

    .menu_item_has_child .submenu > li {
        width: 100%;
        display: block;
    }

        .menu_item_has_child .submenu > li > a {
            display: block;
            line-height: 1;
            font-size: 15px;
            padding: 15px 30px;
            white-space: nowrap;
            color: #6b6b6b;
        }

        .menu_item_has_child .submenu > li:hover > a, .menu_item_has_child .submenu > li.active > a {
            color: #2e2e2e;
            background-color: #f0f0f0;
        }

.menu_item_has_child:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.menu_item_has_child .submenu .menu_item_has_child > a:after {
    top: 50%;
    right: 30px;
    content: "";
    position: absolute;
    transform: translateY(-50%);
}

.menu_item_has_child .submenu .menu_item_has_child .submenu {
    top: -20px;
    left: 100%;
}

.mega_menu {
    left: 0px;
    right: 0px;
    z-index: 999;
    display: none;
    position: fixed;
    padding-top: 31px;
    -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: 40px 0px;
        /* padding: 0; */
        -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: 100%;
        /* width: 100vw; */
        margin-left: auto;
        margin-right: auto;
        /* height: 660px; */
    }
    /* .mega_menu .title_text{
    font-weight: 300;
    position: relative;
    margin-right: 12px;
    margin-bottom: 12px;
} */
    /* .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{
    padding-top: 48px;
} */
    .mega_menu .page_link_group .page_link {
        color: var(--bs-dark);
        padding: 6px 0;
        display: block;
        transition: color var(--transition-primary);
        -webkit-transition: color var(--transition-primary);
    }

        .mega_menu .page_link_group .page_link:hover {
            color: var(--bs-primary);
            transition: color var(--transition-primary);
            -webkit-transition: color var(--transition-primary);
        }

.menu_item_has_child:hover > .menu_item_link::after {
    opacity: 1;
    -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); */
}

.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);
}

#trpContent {
    display: none;
}

@-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; */
        right: 28px;
        top: 20px;
        width: 40px;
        height: 40px;
        color: var(--bs-primary);
        /* border-radius: 50%; */
        background: none;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        align-content: center;
        padding: 0;
    }

        .sidebar-menu-wrapper .close_btn span {
            display: block;
            position: relative;
            width: 32px;
            height: 1px;
            border-radius: 1px;
            background: #fff;
        }

            .sidebar-menu-wrapper .close_btn span:first-child {
                top: 1px;
                -webkit-transform: rotate(135deg);
                transform: rotate(135deg)
            }

            .sidebar-menu-wrapper .close_btn span:last-child {
                -webkit-transform: rotate(-135deg);
                transform: rotate(-135deg)
            }

    .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; */
    width: 100%;
    right: -100%;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    overflow-y: scroll;
    /* padding: 100px 40px; */
    padding: 30px 30px 70px;
    background-color: var(--bs-dark);
    -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: 32px;
        /* 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: #343a40;
    }

        .sidebar_mobile_menu .mobile_menu_list .dropdown-menu.show {
            display: block;
            position: unset !important;
            -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
            -webkit-animation-duration: 0.8s;
            animation-duration: 0.8s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
        }

        .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;
            position: relative;
            /* color: #6b6b6b; */
            color: #fff;
        }

        /* .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; */
            background-color: rgba(255, 255, 255, 0.15);
        }

    /* .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"; */
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(255, 255, 255, 1);transform: ;msFilter:;'%3E%3Cpath d='M16.939 7.939 12 12.879l-4.939-4.94-2.122 2.122L12 17.121l7.061-7.06z'%3E%3C/path%3E%3C/svg%3E");
        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: 22px 40px;
    min-height: 80px;
    position: relative;
}

/* .custom_header .order_btn:hover {
    background-color: #051133;
} */

.custom_header.stuck .header_content_wrap {
    min-height: auto;
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.175);
}

/* .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,
.main_menu .menu_item_has_child > a:after {
    content: "";
    position: absolute;
    /* width: 30px; */
    width: calc(100% - 40px);
    height: 2px;
    background-color: var(--bs-primary);
    bottom: -22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    transition: all var(--transition-primary);
    z-index: 9999;
    margin: 0;
}

.main_menu > ul > li > a:hover::after {
    opacity: 1;
    transition: all var(--transition-primary);
}

.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;
    }

@media (max-width: 1399px) {
    .custom_header .header_content_wrap {
        padding: 20px;
    }
}

@media (max-width: 1199px) {
    .custom_header .main_menu > ul > li {
        padding: 10px 12px;
    }

        .custom_header .main_menu > ul > li > a {
            font-size: 14px;
        }
}
/*-----------------------------------------------
|   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 (max-width: 1199px) {

    .custom_header .header_content_wrap {
        padding: 20px 16px;
    }

    .menu_item_has_child > a:after {
        font-size: 12px;
    }
}

@media (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 (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: 16px 8px;
    }
}

@media (max-width: 380px) {

    .header_section .brand_logo .brand_link {
        max-width: 140px;
    }

    .custom_header .header_content_wrap {
        padding: 16px 0;
    }
}

@media (max-width: 375px) {
    .sidebar-menu-wrapper .close_btn span {
        width: 22px;
    }

    .sidebar-menu-wrapper .close_btn {
        right: 12px;
    }
}
/*-----------------------------------------------
|   search_box
-----------------------------------------------*/
.search_box .form-control[type='search']:focus {
    box-shadow: none;
}
/*-----------------------------------------------
|   form
-----------------------------------------------*/
.form-control {
    display: block;
    width: 100%;
    /* padding: 0.375rem 0.75rem; */
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    /* color: #777; */
    background-clip: padding-box;
    /* border: 1px solid #ced4da; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--bs-primary);
        box-shadow: none;
    }

.form-select {
    padding: 8px 12px;
    border-radius: 2px;
}
/*-----------------------------------------------
|   cookie_box
-----------------------------------------------*/
.cookie_box {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 999;
    /* padding-bottom: calc(var(--bs-gutter-x) * 0.5); */
    background-color: #D9D9D9;
}

    .cookie_box .form-switch .form-check-input {
        height: 24px;
        width: 40px;
    }

    .cookie_box .form-check-input:checked {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
    }

    .cookie_box .form-check-input {
        position: absolute;
        top: 0;
    }

        .cookie_box .form-check-input:focus {
            /* box-shadow: none; */
            border-color: rgba(0, 0, 0, 0.25);
        }
/* .cookie_box .form-switch .form-check-input:focus{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
} */
/* @media (max-width: 767px){
    .cookie_box{
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        padding-bottom: calc(var(--bs-gutter-x) * 0.5);
    }
} */
