/*@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/
:root{
    --color_white: #fff; /*trắng*/
    --color_black: #000; /*đen*/
    --color_blue: #1343ff; /*xanh dương*/
    --color_green: #7bff09; /*xanh lá*/
    --color_yellow: #faf325; /*vàng*/
    --color_orange: #ff7500; /*cam*/
    --color_pink: #ff23aa; /*hồng*/
    --color_gray: #8c8c8c; /*xám*/
    --color_red: #f00; /*đỏ*/
    --color_brown: #ff9000; /*nâu*/
    --color_violet: #f810ff; /*tím*/
}
.halink_header{
    /*background: var(--color_white);*/
}
body, span, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'Montserrat', sans-serif;
}


/*MENU MAIN DESKTOP*/
.header-bottom{
    background: #000;
}
.header-bottom nav{
    position: relative;
}
#menu_main{
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: table;
}
#menu_main li{
    float: left;
    position: relative;
}
#menu_main li > a {
    font-size: 13px;
    padding: 27px 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    position: relative;
    line-height: unset;
    display: block;
}
#menu_main li > a i{
    padding-left: 5px;
}
#menu_main li.active > a, #menu_main li:hover > a{
    /*color: #fff;
    background-color: #ed1b24;*/
}
/*base menu*/
#menu_main li:not(.has-mega) .sub-menu.level0 {
    background: #202020d9;
    position: absolute;
    z-index: 999;
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    transform: rotate3d(1,0,0,-90deg);
    transform-origin: 0 0 0;
    transition: all .5s ease;
    top: 100%;
    border-top: 2px solid #fff;
    padding-left: 0;
    margin: 0;
    display: inline-block;
    width: 180px;
}
#menu_main li:not(.has-mega):hover .sub-menu.level0{
    transform: rotate3d(0,0,0,0deg);
}
#menu_main li:not(.has-mega) .sub-menu.level0 li {
    width: 100%;
}
#menu_main li:not(.has-mega) .sub-menu.level0 li a{
    padding: 5px 10px;
}
#menu_main li:not(.has-mega) .sub-menu .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 180px;
    background: #202020d9;
    z-index: 999999;
}
#menu_main li:not(.has-mega) .sub-menu li:hover .sub-menu{
    display: block;
}

/*mega menu*/
#menu_main li.has-mega{
    position: static;
}
#menu_main li .mega-content{
    background: #202020d9;
    position: absolute;
    z-index: 999;
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    transform: rotate3d(1,0,0,-90deg);
    transform-origin: 0 0 0;
    transition: all .5s ease;
    top: 100%;
    border-top: 2px solid #fff;
    margin: 0;
    backface-visibility: hidden;
    display: inline-block;
    width: 100%;
    padding: 20px;
    left: 0;
    margin-top: -3px;
}
#menu_main li:hover > .mega-content {
    transform: rotate3d(0,0,0,0deg);
}
#menu_main li .mega-content .level0-wrapper2 {
    border: 1px dashed #ed1b24;
    padding: 10px;
}
#menu_main li .mega-content .level0-wrapper2 .nav-block .level0 {
    display: flex;
    flex-wrap: wrap;
}
#menu_main li .mega-content .sub-menu li {
    width: 25%;
}
#menu_main li .mega-content .sub-menu li > a {
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    padding-top: 0;
    padding-bottom: 0;
}
#menu_main li .mega-content .sub-menu li:hover > a {
    background: unset;
}
#menu_main li .mega-content .sub-menu li > .sub-menu.level1 li{
    width: 100%;
}
#menu_main li .mega-content .sub-menu li > .sub-menu.level1 li>a{
    color: #000;
    font-weight: unset;
    text-transform: unset;
}
/*END MENU MAIN DESKTOP*/

/*MENU MOBilE*/
#trigger-mobile {
    width: auto;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    position: absolute;
    top: 20px;
}
#trigger-mobile .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
#trigger-mobile .icon-bar.icon-bar {
    margin-top: 5px;
    background-color: #ffffff;
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 1px;
}
.opacity_menu.open_opacity {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0 !important;
    left: 0;
    z-index: 999999;
}
.menu_mobile{
    width: 280px;
    height: 100%;
    position: fixed;
    z-index: 999999;
    top: 0 !important;
    background-color: #000;
    overflow-x: hidden;
    box-shadow: 0 2px 11px 1px rgb(168 168 168 / 54%);
    visibility: hidden;
    transition: all 0.35s ease;
    transform: translateX(-280px);
}
.menu_mobile.open_sidebar_menu {
    visibility: visible;
    transform: translateX(0);
}
.menu_mobile .top_menu_mobile {
    overflow: hidden;
    background: #FFFFFF;
    width: 100%;
    padding: 10px 0;
    display: block;
    height: 66px;
    text-align: center;
}
.menu_mobile .top_menu_mobile img {
    max-height: 100%;
}

.menu_mobile .content_memu_mb{
    margin: 0 0 0;
}
.menu_mobile .content_memu_mb .ct-mobile {
    border-bottom: solid 1px #FFFFFF;
}
.menu_mobile .content_memu_mb .ct-mobile .level0 {
    border-top: solid 1px #FFFFFF;
}
.menu_mobile .content_memu_mb .ct-mobile .level0:first-child {
    border-top: 0;
}
.menu_mobile .content_memu_mb .ct-mobile li {
    position: relative;
}
.menu_mobile .content_memu_mb .ct-mobile .level0 a {
    display: block;
    font-size: 14px;
    line-height: 36px;
    padding: 0 15px;
    color: #FFFFFF;
}
.menu_mobile .content_memu_mb .ct-mobile .level_ico a {
    padding: 0 15px 0 15px;
}
.menu_mobile .content_memu_mb .ct-mobile li i {
    position: absolute;
    right: 5px;
    top: 0;
    cursor: pointer;
    display: block;
    text-align: center;
    width: 30px;
    color: #fff;
    top: 10px!important;
}
#ct-mobile .sub-menu {
    display: none;
}
.menu_mobile .content_memu_mb .ct-mobile .level0 .level1 a {
    display: block;
    font-size: 14px;
    line-height: normal;
    margin: 10px 0;
    padding: 0 0px 0 25px;
    color: #FFFFFF;
}
.menu_mobile .content_memu_mb .ct-mobile .level0 .level1 .level2 a {
    display: block;
    font-size: 14px;
    line-height: normal;
    margin: 10px 0;
    padding: 0 0px 0 40px;
    color: #FFFFFF;
}
/*END MENU MOBilE*/

/*TABS List product trang chủ*/
.section_product .content .tab-desktop {
    position: absolute;
    right: 10px;
    top: -50px;
}
ul.tabs li{
    float: left;
    cursor: pointer;
}
ul.tabs li.current {
    color: #000000;
}
.section_product .content .tab-desktop li.current span, .section_product .content .tab-desktop li:hover span {
    color: #ed1b24;
}
.section_product .content .tab-desktop li + li {
    margin-left: 10px;
}
.tab-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}
.tab-content.current {
    opacity: 1;
    visibility: visible;
    height: auto;
    transition: all 200ms ease-in-out;
}
/*END TABS List product trang chủ*/

/*CUSTOM CSS WOO*/
.woocommerce .cart .button, .woocommerce .cart input.button {
    height: 40px;
}
.woocommerce .woocommerce-ordering select {
    height: 34px;
}
/*END CUSTOM CSS WOO*/