﻿html {
    font-size: 16px;
    color: #323232;
    overflow-x: hidden;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--secondary_color);
    border: 2px solid var(--secondary_color);
}

.thc-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.thc-scroll::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.thc-scroll::-webkit-scrollbar-thumb {
    background-color: var(--secondary_color);
    border: 2px solid var(--secondary_color);
}

li,
p {
    font-size: 1rem;
}

.content-entry li,
.content-entry p {
    font-size: 16px;
}

.content-entry p {
    margin-bottom: 0.6rem;
}

h1,
.h1 {
    font-size: 30px;
}

h2,
.h2 {
    font-size: 28px;
}

h3,
.h3 {
    font-size: 18px;
}

h4,
.h4 {
    font-size: 16px;
}

h5,
.h5 {
    font-size: 16px;
}

a {
    text-decoration: unset;
}

a:hover {
    color: var(--secondary_color);
    text-decoration: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

header {
    width: 100%;
    z-index: 3;
}

header .header-style-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #333333;
}

header .header-style-2 .logo {
    z-index: 9;
    position: relative;
    height: 80px;
    width: auto;
    transition: 0.5s;
}

header .header-style-2 .logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

header .header-style-2 .logo:hover img {
    transform: unset;
}

header .header-style-2 .top-bar {
    width: 100%;
    background: var(--primary_color);
    padding: 5px 0;
}

header .header-style-2 .top-bar h1,
header .header-style-2 .top-bar span {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    color: #fff;
    margin: 0;
    padding: 5px calc(var(--bs-gutter-x) * 0.5);
    padding-left: 0;
}

header .header-style-2 .top-bar .social-wrap {
    margin-top: unset;
}

header .header-style-2 .top-bar .social-wrap .social {
    height: 25px;
    width: 25px;
    background: white;
    border-radius: 25px;
}

header .header-style-2 .top-bar .social-wrap .social i {
    color: var(--primary_color);
    font-size: 14px;
}

header .header-style-2 .main-header {
    width: 100%;
    padding: 5px 0;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap {
    justify-content: space-between;
    position: relative;
    padding-right: 15px;
    padding-left: 0;
    width: max-content;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc {
    cursor: pointer;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: black;
    border-radius: 5px;
    padding: 5px;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc .img-wrap {
    margin-top: -1px;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc .img-wrap:hover img {
    transform: unset;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc .open {
    display: block;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc .close {
    display: none;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc.active .open {
    display: none;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc.active .close {
    display: block;
}

header .header-style-2 .main-header .header-inner .logo-thc-wrap .menu-thc.active .menu-header-wrap {
    display: block;
}

header .header-style-2 .main-header .header-inner .right-wrapper {
    flex: 1;
    display: flex;
    justify-content: end;
}

header .header-style-2 .main-header .header-inner .right-wrapper .search-form-wrapper {
    flex: 1;
}

header .header-style-2 .main-header .header-inner .right-wrapper .search-form-wrapper form {
    width: 100%;
    display: flex;
}

header .header-style-2 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-field {
    flex: 1;
    height: 40px;
    box-sizing: border-box;
    border-radius: 20px 0 0 20px;
    padding: 11px 13px;
    color: #888;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary_color);
    border-right: unset;
}

header .header-style-2 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-field input:focus {
    outline-width: 0;
}

header .header-style-2 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-btn {
    width: 50px;
    border: unset;
    border-radius: 0 20px 20px 0;
    border: 1px solid var(--primary_color);
    border-left: unset;
    height: 40px;
    color: var(--primary_color);
    font-size: 20px;
    background: white;
}

header .header-style-2 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-btn i {
    font-size: 14px;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support {
    justify-content: space-around;
    width: max-content;
    display: flex;
    padding: 10px;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info {
    /* padding: 0 15px; */
    position: relative;
    display: flex;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .icon {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-right: 2px solid white;
    padding-right: 10px;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .icon i {
    font-size: 28px;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info.cart-header .img-wrap {
    height: 30px;
    width: 30px;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .img-wrap {
    height: 45px;
    width: 45px;
    margin-right: 10px;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .img-wrap img {
    object-fit: contain;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .amount-cart-item {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    color: #000;
    background-color: #f9c938;
    top: -8px;
    right: 10px;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .info {
    text-align: left;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .info .title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: white;
}

header .header-style-2 .main-header .header-inner .right-wrapper .header-support .support_info .info .desc {
    font-weight: 400;
    font-size: 1rem;
    margin-top: 5px;
    line-height: 1.2;
    color: white;
}

header .header-style-2 .main-header .header-inner .right-wrapper .search-button-toggle {
    display: none;
}

header .header-style-2 .menu-header-wrap {
    z-index: 99;
    width: 100%;
    background: #333333;
    position: relative;
}

header .header-style-2 .menu-header-wrap.sticky {
    position: fixed;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header {
    list-style: none;
    display: flex;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
    justify-content: space-between;
    position: relative;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header .icon {
    width: 17px;
    flex-shrink: 0;
    margin-right: 10px;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header .icon img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children>a::after {
    content: "";
    font-family: "FontAwesome";
    float: right;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 10px;
    margin-left: 10px;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li {
    display: flex;
    align-items: start;
    position: relative;
    padding: 5px;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li a {
    padding: 5px 15px;
    display: flex;
    color: white;
    width: 100%;
    font-size: 15px;
    transition: 0.3s;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li a:hover {
    color: var(--secondary_color);
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 10px;
    font-size: 16px;
    top: 100%;
    left: 0;
    z-index: 1010;
    text-align: left;
    white-space: normal;
    width: 250px;
    box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
    flex-direction: column;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li.is_title_submenu>a {
    font-weight: bold;
    border-bottom: 1px solid #eaeaea;
    color: var(--secondary_color);
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li {
    display: flex;
    flex-direction: column;
    flex: unset;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li a {
    padding: 10px;
    font-size: 13px;
    border-radius: 0;
    margin: 0;
    color: var(--secondary_color);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li a:hover {
    color: white;
    background: var(--secondary_color);
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    list-style: none;
    min-width: unset;
    box-shadow: unset;
    padding: unset;
    margin-left: unset;
    border-radius: unset;
    columns: 1;
    left: 100%;
    top: 0;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li.menu-item-has-children:hover .sub-menu {
    display: block;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu {
    position: unset;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu {
    border-top: 1px solid var(--border_color);
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    columns: 4;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu .sub-menu {
    width: 100%;
    border-top: unset;
    display: flex !important;
    position: unset !important;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu .sub-menu li {
    width: 100%;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu .sub-menu li a {
    text-transform: capitalize;
    font-size: 0.9rem;
    color: var(--text_color);
    font-weight: normal;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu .sub-menu li:hover a {
    background: unset;
    color: var(--secondary_color);
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu>li a {
    color: var(--text_color);
    font-size: 1rem;
    padding: 5px;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu>li.current-menu-item a {
    background: unset;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu>li:hover a {
    background: unset;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children.is_mega_menu .sub-menu li.menu-item-has-children a:after {
    content: unset;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children:hover .sub-menu {
    display: block;
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.current-menu-item>a,
header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li:hover>a {
    color: var(--primary_color);
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.current-menu-item a,
header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li:hover a {
    background: white;
    color: var(--primary_color);
}

header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.current-menu-item li.current-menu-item>a,
header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li.current-menu-item li:hover>a,
header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li:hover li.current-menu-item>a,
header .header-style-2 .menu-header-wrap .menu-menu-chinh-container .menu-header li:hover li:hover>a {
    color: white;
    background: var(--secondary_color);
}

header .header-style-2 .right-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 70px;
}

header .header-style-2 .right-menu .phone {
    display: flex;
}

header .header-style-2 .right-menu .phone i {
    color: var(--primary_color);
    font-size: 20px;
}

header .header-style-2 .right-menu .phone span {
    margin-left: 8px;
    color: #666666;
}

header .header-style-2 .right-menu .phone span:not(:last-child)::after {
    content: "";
    border-right: 1px solid #666666;
    margin-left: 10px;
}

header .header-style-2 .right-menu .search-box {
    padding: 5px 12px;
    border-radius: 60px;
    background: #ffff;
    border: 1px solid #cccccc;
    color: #cccccc;
    margin: 6px;
    margin-left: 24px;
    flex: 1;
}

header .header-style-2 .right-menu .search-box form {
    display: flex;
}

header .header-style-2 .right-menu .search-box form input {
    border: none;
    flex: 1;
    max-width: 100px;
    font-size: 16px;
    line-height: 18px;
}

header .header-style-2 .right-menu .search-box form input::placeholder {
    font-size: 11px;
    display: flex;
    align-items: center;
    line-height: 18px;
    height: 16px;
}

header .header-style-2 .right-menu .search-box form textarea:focus,
header .header-style-2 .right-menu .search-box form input:focus {
    outline: none;
}

header .header-style-2 .right-menu .search-box form button {
    border: none;
    background: none;
}

header .header-style-2 .right-menu .search-box form button i {
    font-size: 18px;
    color: #cccccc;
}

header .header-style-2 .mobile-menu-button {
    display: none;
}

header .header-style-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

header .header-style-1 .logo {
    z-index: 9;
    position: relative;
    height: 66px;
    width: auto;
    transition: 0.5s;
}

header .header-style-1 .logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

header .header-style-1 .top-bar {
    width: 100%;
    background: var(--primary_color);
    padding: 5px 0;
}

header .header-style-1 .top-bar h1,
header .header-style-1 .top-bar span {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    color: #fff;
    margin: 0;
    padding: 5px calc(var(--bs-gutter-x) * 0.5);
    padding-left: 0;
}

header .header-style-1 .main-header {
    width: 100%;
    padding: 15px 0;
    background: white;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap {
    justify-content: space-between;
    position: relative;
    padding-right: 15px;
    padding-left: 0;
    max-width: 270px;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc {
    cursor: pointer;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: black;
    border-radius: 5px;
    padding: 5px;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc .img-wrap {
    margin-top: -1px;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc .img-wrap:hover img {
    transform: unset;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc .open {
    display: block;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc .close {
    display: none;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc.active .open {
    display: none;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc.active .close {
    display: block;
}

header .header-style-1 .main-header .header-inner .logo-thc-wrap .menu-thc.active .menu-header-wrap {
    display: block;
}

header .header-style-1 .main-header .header-inner .right-wrapper {
    flex: 1;
    display: flex;
}

header .header-style-1 .main-header .header-inner .right-wrapper .search-form-wrapper {
    flex: 1;
}

header .header-style-1 .main-header .header-inner .right-wrapper .search-form-wrapper form {
    width: 100%;
    display: flex;
}

header .header-style-1 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-field {
    flex: 1;
    height: 40px;
    box-sizing: border-box;
    border-radius: 5px 0 0 5px;
    padding: 11px 13px;
    color: #888;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid var(--secondary_color);
    border-right: unset;
}

header .header-style-1 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-field input:focus {
    outline-width: 0;
}

header .header-style-1 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-btn {
    width: 50px;
    border: unset;
    border-radius: 0 5px 5px 0;
    border: 1px solid var(--secondary_color);
    border-left: unset;
    height: 40px;
    color: var(--secondary_color);
    font-size: 20px;
    background: white;
}

header .header-style-1 .main-header .header-inner .right-wrapper .search-form-wrapper form .search-btn i {
    font-size: 14px;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support {
    justify-content: space-around;
    width: max-content;
    padding-left: 55px;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support .support_info {
    padding: 0 15px;
    position: relative;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support .support_info .img-wrap {
    height: 23px;
    width: 22px;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support .support_info .img-wrap img {
    object-fit: contain;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support .support_info .amount-cart-item {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    color: #000;
    background-color: #f9c938;
    top: -9px;
    right: 3px;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support .support_info .info {
    text-align: center;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support .support_info .info .title {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
}

header .header-style-1 .main-header .header-inner .right-wrapper .header-support .support_info .info .desc {
    font-size: 14px;
    color: var(--third_color);
    font-weight: 700;
}

header .header-style-1 .menu-header-wrap {
    z-index: 99;
    width: 100%;
    background: white;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header {
    list-style: none;
    display: flex;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
    justify-content: space-between;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header .icon {
    width: 17px;
    flex-shrink: 0;
    margin-right: 10px;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header .icon img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children>a::after {
    content: "";
    font-family: "FontAwesome";
    float: right;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 10px;
    margin-left: 10px;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li {
    display: flex;
    align-items: start;
    position: relative;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li a {
    padding: 5px 15px;
    display: flex;
    color: var(--primary_color);
    width: 100%;
    font-size: 15px;
    transition: 0.3s;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li a:hover {
    color: var(--secondary_color);
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 10px;
    font-size: 16px;
    top: 100%;
    left: 0;
    z-index: 1010;
    text-align: left;
    white-space: normal;
    width: 250px;
    box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
    flex-direction: column;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li.is_title_submenu>a {
    font-weight: bold;
    border-bottom: 1px solid #eaeaea;
    color: var(--secondary_color);
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li {
    display: flex;
    flex-direction: column;
    flex: unset;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li a {
    padding: 5px;
    font-size: 14px;
    border-radius: 0;
    margin: 0;
    color: var(--secondary_color);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li a:hover {
    color: white;
    background: var(--secondary_color);
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu {
    display: flex;
    flex-direction: column;
    position: unset;
    z-index: 1;
    list-style: none;
    min-width: unset;
    box-shadow: unset;
    padding: unset;
    margin-left: unset;
    border-radius: unset;
    columns: 1;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu li:hover>a {
    color: white;
    background: var(--primary_color);
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children .sub-menu li.menu-item-has-children:hover .sub-menu {
    display: block;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.menu-item-has-children:hover .sub-menu {
    display: flex;
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.current-menu-item>a,
header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li:hover>a {
    color: var(--secondary_color);
}

header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li.current-menu-item,
header .header-style-1 .menu-header-wrap .menu-menu-chinh-container .menu-header li:hover {
    background: white;
}

header .header-style-1 .right-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 70px;
}

header .header-style-1 .right-menu .phone {
    display: flex;
}

header .header-style-1 .right-menu .phone i {
    color: var(--primary_color);
    font-size: 20px;
}

header .header-style-1 .right-menu .phone span {
    margin-left: 8px;
    color: #666666;
}

header .header-style-1 .right-menu .phone span:not(:last-child)::after {
    content: "";
    border-right: 1px solid #666666;
    margin-left: 10px;
}

header .header-style-1 .right-menu .search-box {
    padding: 5px 12px;
    border-radius: 60px;
    background: #ffff;
    border: 1px solid #cccccc;
    color: #cccccc;
    margin: 6px;
    margin-left: 24px;
    flex: 1;
}

header .header-style-1 .right-menu .search-box form {
    display: flex;
}

header .header-style-1 .right-menu .search-box form input {
    border: none;
    flex: 1;
    max-width: 100px;
    font-size: 16px;
    line-height: 18px;
}

header .header-style-1 .right-menu .search-box form input::placeholder {
    font-size: 11px;
    display: flex;
    align-items: center;
    line-height: 18px;
    height: 16px;
}

header .header-style-1 .right-menu .search-box form textarea:focus,
header .header-style-1 .right-menu .search-box form input:focus {
    outline: none;
}

header .header-style-1 .right-menu .search-box form button {
    border: none;
    background: none;
}

header .header-style-1 .right-menu .search-box form button i {
    font-size: 18px;
    color: #cccccc;
}

header .header-style-1 .mobile-menu-button {
    display: none;
}

header .sticky {
    transition: 0.3s;
    border-bottom: 1px solid var(--border_color);
}

.social-wrap {
    margin-top: unset;
    display: flex;
}

.social-wrap .social {
    height: 25px;
    width: 25px;
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-wrap .social i {
    color: var(--primary_color);
    font-size: 14px;
}

.all-product {
    display: flex;
    height: 40px;
    background: var(--secondary_color);
    color: white;
    max-width: 270px;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.all-product i {
    font-size: 14px;
}

.all-product span {
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 15px;
}

.all-product:hover {
    cursor: pointer;
}

.sub-menu-product {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    background: white;
}

.sub-menu-product .thc-scroll::-webkit-scrollbar {
    width: 4px;
}

.sub-menu-product .menu-danh-muc-san-pham-container {
    position: relative;
    width: 100%;
    height: 440px;
    overflow-y: scroll;
}

.sub-menu-product ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-menu-product .menu-item-has-children>.sub-menu {
    display: none;
}

.sub-menu-product li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.sub-menu-product li:before {
    content: "";
    font-weight: 500;
    font-family: "FontAwesome";
    color: var(--text_color);
    margin-right: 10px;
}

.sub-menu-product li:after {
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% - 20px);
    bottom: 0;
    left: 10px;
    display: block;
    background: var(--border_color);
}

.sub-menu-product li a {
    color: var(--text_color);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
}

.sub-menu-product li.menu-item-has-children {
    display: flex;
}

.sub-menu-product li.menu-item-has-children a {
    position: relative;
}

.sub-menu-product li.menu-item-has-children a:after {
    content: "";
    font-weight: 500;
    font-family: "FontAwesome";
    color: var(--text_color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.sub-menu-product li:hover {
    background: var(--primary_color);
}

.sub-menu-product li:hover:after {
    background: var(--primary_color);
}

.sub-menu-product li:hover:before {
    color: white;
}

.sub-menu-product li:hover a {
    color: white;
}

.sub-menu-product li:hover a:after {
    color: white;
}

.sub-menu-product li.collapse,
.sub-menu-product li.view-more {
    font-weight: bold;
}

.mega-menu-wrapper {
    background: white;
    position: fixed;
    z-index: 99;
    display: none;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    border: 1px solid var(--secondary_color);
}

.mega-menu-wrapper .sub-menu {
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}

.mega-menu-wrapper li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 100%;
}

.mega-menu-wrapper li:before {
    content: "";
    font-weight: 500;
    font-family: "FontAwesome";
    color: var(--text_color);
    margin-right: 10px;
}

.mega-menu-wrapper li:after {
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% - 20px);
    bottom: 0;
    left: 10px;
    display: block;
    background: var(--border_color);
}

.mega-menu-wrapper li a {
    color: var(--text_color);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
}

.mega-menu-wrapper li.menu-item-has-children {
    display: flex;
}

.mega-menu-wrapper li.menu-item-has-children a {
    position: relative;
}

.mega-menu-wrapper li.menu-item-has-children a:after {
    content: "";
    font-weight: 500;
    font-family: "FontAwesome";
    color: var(--text_color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mega-menu-wrapper li:hover {
    background: var(--primary_color);
}

.mega-menu-wrapper li:hover:after {
    background: var(--primary_color);
}

.mega-menu-wrapper li:hover:before {
    color: white;
}

.mega-menu-wrapper li:hover a {
    color: white;
}

.mega-menu-wrapper li:hover a:after {
    color: white;
}

.mega-menu-wrapper li.collapse,
.mega-menu-wrapper li.view-more {
    font-weight: bold;
}

.mega-menu-wrapper.active {
    display: flex;
}

footer .top-footer {
    background: var(--border_color);
}

footer .top-footer .item-contact {
    position: relative;
}

footer .top-footer .item-contact:not(:last-child):after {
    content: "";
    position: absolute;
    height: 50px;
    width: 1px;
    background: #cbcbcb;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

footer .top-footer .item-wrapper {
    display: flex;
    align-items: center;
    padding: 25px 0;
}

footer .top-footer .item-wrapper .icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    flex-shrink: 0;
}

footer .top-footer .item-wrapper .info .title {
    font-weight: bold;
    color: var(--primary_color);
    text-transform: uppercase;
}

footer .top-footer .item-wrapper .info .desc a {
    font-size: 12px;
    color: var(--third_color);
}

footer .main-footer {
    background: var(--primary_color);
    color: white;
    padding: 30px 0;
}

footer .main-footer .column-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

footer .main-footer .column-wrapper .footer-column {
    max-width: 280px;
}

footer .title-footer {
    font-weight: bold;
    line-height: 150%;
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
}

footer .title-footer:after {
    content: "";
    width: 35px;
    height: 2px;
    background: white;
    position: absolute;
    bottom: -10px;
    left: 0;
}

footer .logo {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

footer .logo .img-wrap {
    height: 100px;
    margin-bottom: 10px;
}

footer .logo .img-wrap img {
    object-fit: contain !important;
    height: 100%;
}

footer .dang-ky-bao-gia {
    text-align: left;
    max-width: 344px;
}

footer .dang-ky-bao-gia .title-quote {
    font-weight: bold;
    margin: 15px 0;
}

footer .dang-ky-bao-gia .form-quote p {
    display: flex;
}

footer .dang-ky-bao-gia .form-quote .wpcf7-form-control-wrap {
    margin-right: 10px;
}

footer .dang-ky-bao-gia .form-quote .wpcf7-form-control-wrap .phone-quote {
    height: 40px;
    padding: 10px 20px;
    border: 1px solid var(--primary_color);
    width: 100%;
}

footer .dang-ky-bao-gia .form-quote input:focus {
    outline: none;
}

footer .dang-ky-bao-gia .form-quote .submit-quote {
    height: 40px;
    background: var(--primary_color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

footer .dang-ky-bao-gia .form-quote .submit-quote i {
    margin-left: 15px;
}

footer .contact-wrap ul {
    list-style: none;
    padding: 0;
}

footer .contact-wrap ul li {
    display: inline-block;
}

footer .contact-wrap ul li .title {
    color: var(--secondary_color);
    margin-right: 10px;
    width: max-content;
    float: left;
}

footer .social-wrap {
    display: flex;
    margin-top: 30px;
}

footer .social-wrap .social {
    height: 32px;
    width: 32px;
    display: flex;
    text-align: center;
    justify-content: center;
    color: white;
    margin-right: 5px;
    border-radius: 5px;
}

footer .social-wrap .social i {
    align-items: center;
    display: flex;
    font-size: 18px;
}

footer .title-pay {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 125%;
    text-transform: uppercase;
    padding: 20px 0 15px;
}

footer .extra_info {
    display: flex;
}

footer .extra_info .item {
    max-height: 40px;
    margin-right: 25px;
}

footer .extra_info .item img {
    object-fit: contain;
}

footer .map iframe {
    height: 200px;
    width: 100%;
}

footer .dmca img {
    object-fit: contain;
    height: 22px;
    object-position: left;
}

footer a {
    color: inherit;
}

footer a:hover {
    color: var(--secondary_color);
}

footer ul {
    padding-left: 15px;
}

footer ul li {
    margin-bottom: 8px;
}

footer .footer-template .list-info .item {
    display: flex;
    margin-bottom: 10px;
}

footer .footer-template .list-info .item .icon {
    margin-right: 10px;
}

footer .footer-template .list-info .item .title {
    margin-right: 3px;
}

footer .copyright {
    margin-top: 30px;
}

.end-footer .wrapper {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.end-footer .wrapper>* {
    width: max-content;
}

.scrollToTop.btn-show {
    visibility: visible;
    opacity: 1;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.scrollToTop {
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 147483647;
    border: 1px solid #777;
    border-radius: 65px;
    position: fixed;
    right: 10px;
    bottom: 5%;
    visibility: hidden;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.scrollToTop {
    text-decoration: none;
}

.scrollToTop i {
    color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.scrollToTop:hover {
    background-color: var(--primary_color);
}

.scrollToTop:hover i {
    color: #fff;
}

@keyframes rotate360 {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.mid-footer iframe {
    width: 100%;
    height: 150px;
}

.content-entry h1 {
    font-size: 25px;
    margin: 20px 0;
}

.content-entry h2 {
    font-size: 24px;
    margin: 20px 0;
}

.content-entry h3 {
    font-size: 20px;
    margin: 20px 0;
}

.content-entry h4 {
    font-size: 15px;
    margin: 20px 0;
}

.content-entry h5 {
    font-size: 15px;
    margin: 20px 0;
}

.content-entry h6 {
    font-size: 15px;
    margin: 20px 0;
}

.content-entry ul {
    margin-left: 20px;
}

.content-entry table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-entry table ul {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -25px;
}

.content-entry table thead tr {
    background-color: var(--primary_color);
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-entry table th,
.content-entry table td {
    padding: 5px 15px;
    border-width: 1px;
    border-color: var(--border_color);
}

.content-entry table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-entry table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-entry table tbody {
    border: 2px solid var(--primary_color);
}

.content-entry table tbody tr:hover {
    cursor: pointer;
    color: white;
    background-color: var(--primary_color);
}

.content-entry iframe {
    width: 500px;
    /* min-width: 100%; */
}

.entry-content {
    margin-bottom: 20px;
}

.left_arrow {
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 44px;
    border-radius: 100%;
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    z-index: 1;
    left: -50px;
}

.right_arrow {
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 44px;
    border-radius: 100%;
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    z-index: 1;
    right: -50px;
}

.left_arrow:hover,
.right_arrow:hover {
    background: var(--primary_color);
    color: white;
}

.admin-bar .sticky {
    top: 32px;
}

header .sticky {
    transition: 0.3s;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: 0.5s all ease-in-out;
}

.pagination {
    justify-content: center;
    padding: 20px 0;
    border-radius: unset;
}

.pagination .next span,
.pagination .prev span,
.page-numbers .next span,
.page-numbers .prev span {
    font-size: 12px;
}

.pagination a,
.pagination span,
.page-numbers a,
.page-numbers span {
    border: 0;
    line-height: inherit;
    color: var(--primary_color);
    font-size: 16px;
    font-weight: normal;
    position: relative;
    padding: 7px 10px;
    margin: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a,
.page-numbers a {
    padding: 7px;
}

.pagination .current,
.page-numbers .current {
    background: white;
    border-radius: 5px;
    color: var(--primary_color);
    padding: 7px;
}

.pagination .page-numbers:hover,
.page-numbers .page-numbers:hover {
    background: var(--primary_color);
    border-radius: 4px;
    color: #fff;
    padding: 7px;
}

.pagination .page-numbers:hover>span,
.page-numbers .page-numbers:hover>span {
    color: white;
}

.pagination a>span,
.page-numbers a>span {
    margin: -10px;
}

.page-numbers.current:hover,
.papage-numbers.current:hover {
    padding: 7px 8px;
}

span.page-numbers.current {
    background: var(--primary_color) !important;
    color: white !important;
}

.pagination .current,
.pagination a.page-numbers,
.page-numbers .current,
.page-numbers a.page-numbers {
    height: 40px;
    text-decoration: none;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #949494;
}

.current .text-pagi-wrap {
    color: #fff !important;
    padding: 0;
}

.page-numbers {
    display: flex;
    list-style: none;
    border-radius: 0.25rem;
    justify-content: center;
}

.share-social ul {
    display: flex;
    list-style: none;
    margin-left: 0 !important;
    padding-left: 0;
}

.section-social {
    margin: 34px 0;
}

.share-social .box-ic {
    font-size: 24px;
}

.share-social .box-ic a {
    padding: 10px 24px;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
}

.box-ic .ic-facebook {
    background: #4769a5;
    border-bottom: 4px solid #344259;
}

.box-ic .ic-email {
    background: #ea4335;
    border-bottom: 4px solid #bb362a;
}

.box-ic .ic-pinterest {
    background: #cd252b;
    border-bottom: 4px solid #a41e22;
}

.box-ic .ic-twitter {
    background: #65ccef;
    border-bottom: 4px solid #51a3bf;
}

.box-ic .ic-linkedin {
    background: #2ba3e1;
    border-bottom: 4px solid #2282b4;
}

.section-social .share-social {
    margin: 0 auto;
    align-items: center;
    display: flex;
}

.section-social .share-social .text {
    font-size: 20px;
    display: none;
}

.share-social ul li {
    margin-right: 8px;
}

.share-social .box-ic {
    font-size: 20px;
}

.product-card-wrapper .product-card {
    text-align: center;
    padding-bottom: 20px;
}

.product-card-wrapper .product-card .thumbnail-wrapper {
    padding-bottom: 100%;
}

.product-card-wrapper .product-card .thumbnail-wrapper .onsale {
    position: absolute;
    top: 5%;
    left: 5%;
    background: var(--third_color);
    color: white;
    z-index: 1;
    padding: 5px 10px;
    border-radius: 2px;
    min-width: auto;
    min-height: auto;
    line-height: 1;
    font-size: 11px;
    font-weight: normal;
}

.product-card-wrapper .product-card .img-cover {
    border: 1px solid var(--border_color);
    position: relative;
    overflow: hidden;
}

.product-card-wrapper .product-card .img-cover .float-button {
    position: absolute;
    bottom: -100px;
    left: 2.5%;
    background: var(--primary_color);
    color: white;
    z-index: 99;
    padding: 5px 10px;
    border-radius: 2px;
    height: auto;
    width: auto;
    line-height: 1;
    font-size: 11px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    border: unset;
}

.product-card-wrapper .product-card .img-cover .float-button i {
    color: white;
    font-size: 18px;
}

.product-card-wrapper .product-card .img-cover .float-button.chat-zalo {
    display: flex;
    flex-direction: column;
}

.product-card-wrapper .product-card .img-cover .float-button.chat-zalo img {
    width: 20px;
    height: 20px;
    position: unset;
    margin-bottom: 5px;
}

.product-card-wrapper .product-card .woocommerce-loop-product__title {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text_color);
    margin: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 18px;
    height: 36px;
}

.product-card-wrapper .product-card .price {
    display: flex;
    flex-direction: column;
}

.product-card-wrapper .product-card .price ins {
    order: 1;
    text-decoration: none;
}

.product-card-wrapper .product-card .price .woocommerce-Price-amount bdi {
    font-style: normal;
    font-weight: bold;
    font-size: 1rem;
    line-height: 127%;
    color: var(--third_color);
}

.product-card-wrapper .product-card .price del {
    order: 2;
    color: #b2b2b2;
    font-size: 12px;
}

.product-card-wrapper .product-card .price del .woocommerce-Price-amount bdi {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 127%;
    color: #b2b2b2;
}

.product-card-wrapper .product-card .product-category-link {
    display: none;
}

.product-card-wrapper .product-card .view-more-button {
    margin-top: 15px;
}

.product-card-wrapper .product-card .view-more-button a {
    display: block;
    background: var(--primary_color);
    color: white;
    text-align: center;
    padding: 5px 30px;
    width: max-content;
    margin: auto;
}

.product-card-wrapper.product-type-variable .price {
    flex-direction: row;
    justify-content: center;
}

.product-card-wrapper:hover {
    cursor: pointer;
}

.product-card-wrapper:hover .product-card .woocommerce-loop-product__title {
    color: var(--primary_color);
}

.product-card-wrapper:hover .product-card .img-cover {
    border: 1px solid var(--primary_color);
}

.product-card-wrapper:hover .product-card .img-cover .float-button {
    bottom: 3%;
    left: 3%;
}

span.woocustom_num_reviews {
    color: var(--primary_color);
}

#comments a.btn-reviews-now {
    background: var(--primary_color);
}