:root {
    --maincolor: #f4f6f9;
    --subcolor: #ffdb21;
    --textcolor: #282828;
    --fontB: Monsterat-B;
    --fontmain: Monsterat;
    --fontEB: Monsterat-EB;
    --btn-color: #284a6c;
    --title-color: #3b4a59;
    --menutop-color: #284a6c;
    --navy-color: #2c3e50;
}
* {
    margin: 0px;
    padding: 0px;
}
html,
body {
    font-family: var(--fontmain);
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    line-height: 1.5;
    color: #282828;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
    font-family: var(--fontB);
}

a {
    text-decoration: none;
    color: currentColor;
}

b,
strong {
    font-family: var(--fontB);
}

img {
    border: none;
    max-width: 100%;
    vertical-align: middle;
}

a img {
    display: block;
}

#page {
    background: #fff;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.c,
.c5,
.c10,
.c15,
.c20,
.c30,
.c3,
.c2,
.c80 {
    clear: both;
}

.c {
    height: 0px;
}

.c10 {
    height: 10px;
}

.c20 {
    height: 20px;
}

.c30 {
    height: 30px;
}

.c50 {
    height: 50px;
}
.text-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.text-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text-line-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.text-line-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.text-line-6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.text-line-7 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.text-line-8 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.text-line-10 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.text-line-12 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
}

.search-pc {
    position: relative;
    transition: all 0.5s ease-in-out;
    width: 90%;
    margin: auto;
}
.closeX {
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: -50px;
}
.search-pc .kw {
    width: 100%;
    height: 35px;
    border: solid 1px #ccc;
    padding: 0px 10px;
    outline: none;
    float: left;
    color: rgba(0, 0, 0, 0.25);

    border-radius: 25px;
    background: #fff;
}
.search-pc ::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-family: var(--fontmain);
}

#searchformtab {
    position: relative;
}
.submit-search-pc {
    position: absolute;
    height: 45px;
    padding: 0px 15px;
    line-height: 45px;
    right: 0px;
    top: 0px;
    color: #9d9d9d;
}
#searchformtab input {
    color: var(--textcolor);
    border-radius: 3px;
    padding: 10px;
    height: 45px;
    border: 1px solid #9d9d9d;
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    outline: none;
}

.search-mobile {
    width: 100%;
    position: relative;
    display: none;
}

.search-mobile input {
    width: 100%;
    height: 30px;
}

.m-search-icon {
    position: absolute;
    right: 10px;
    top: 6px;
    color: #ef5994;
}
.header-logo {
    padding: 5px 0px;
}
.header {
    background: transparent;
    width: 100%;
    z-index: 11;
    transition: all 0.5s ease-in-out;
}

.header-menu {
    background-color: var(--menutop-color);
    color: #fff;
    position: relative;
}
.menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menubar .nav {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}
.nav li {
    position: relative;
    list-style-type: none;
    transition: all 0.5s ease-in;
}
.nav li a {
    line-height: 55px;
    padding: 0px 10px;
    text-transform: uppercase;
}
.nav li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-transform: none;
}

.nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    visibility: hidden;
    line-height: 35px;
    text-align: left;
    display: none;
    padding: 0;
    opacity: 0.98;
    z-index: 999999;
    font-weight: normal;
    background: var(--menutop-color);
    text-transform: initial;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    transform-origin: center top 0px;
    -moz-transform-origin: center top 0px;
    -webkit-transform-origin: center top 0px;
    transform: matrix3d(1, 0, 0, 0, 0, 0, 1, 0.008, 0, -1, 0, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(
        1,
        0,
        0,
        0,
        0,
        0,
        1,
        0.008,
        0,
        -1,
        0,
        0,
        0,
        0,
        0,
        1
    );
    -webkit-transform: matrix3d(
        1,
        0,
        0,
        0,
        0,
        0,
        1,
        0.008,
        0,
        -1,
        0,
        0,
        0,
        0,
        0,
        1
    );
}
.nav li ul li ul {
    right: -100%;
    top: 0px;
    left: auto;
}

.nav li ul a {
    line-height: 45px;
}
.menuproduct {
    position: relative;
    padding: 0px 30px;

    line-height: 55px;
    background: #00000025;
}
.menuproduct-title {
    display: flex;
    font-family: var(--fontB);
    align-items: center;
}

.product_li img {
    width: 40px;
    margin-right: 12px;
}
.menuproduct i {
    font-size: 25px;
    margin-right: 15px;
}
.menuproduct:hover .product_li {
    display: block;
}
.nav li:hover {
    background-color: #00000025;
}
.nav li ul li:hover {
    color: var(--title-color);
    background-color: var(--maincolor);
}
.nav li ul li ul li:hover a {
    color: var(--maincolor);
}
.nav li ul li ul li a {
    color: #fff;
}
nav li ul a i {
    float: right;
    line-height: 45px;
    margin-right: 10px;
}

.nav li ul li:hover ul li {
    color: #333;
}
.product_li {
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 111;
    background: #fff;
    list-style: none;
    display: none;
    text-align: left;
    text-transform: initial;
    left: 0px;
    box-shadow: 0px 0px 10px 2px #9d9d9d;
    transition: all 0.5s ease;
    height: 470px;
    overflow-y: auto;
}

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

.product_li::-webkit-scrollbar {
    width: 8px;
    background-color: #f1f2f2;
}

.product_li::-webkit-scrollbar-thumb {
    background-color: var(--maincolor);
    border: 2px solid var(--maincolor);
}

.product_li.active {
    display: block;
}
.product_li li {
    color: var(--navy-color);
    padding: 8px 10px;
    position: relative;
    line-height: 30px;
    transition: all 0.5s ease-in;
}

.product_li li:hover {
    background-color: var(--menutop-color);
    color: #fff;
}
.header-right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-right i {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: var(--title-color);
    background-color: var(--maincolor);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
}
.header-hotline {
    color: var(--title-color);
    margin-left: 5px;
}
.cart a {
    position: relative;
}
.cartnumber {
    position: absolute;
    top: -20px;
    right: -5px;
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--menutop-color);
    color: var(--maincolor);
    line-height: 20px;
    text-align: center;
}
.cart a i {
    font-size: 25px;
}
.cart {
    display: block;
    text-align: right;
    float: right;
    color: #fff;
}
.logo {
    margin: auto;
    width: 100%;
    padding: 5px 0px;
}
.logo img {
    display: block;
    max-height: 100px;
}

.logo-mobile {
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}

.menu-title {
    color: var(--title-color);
    display: flex;
    font-family: var(--fontmain);
    line-height: 50px;
    align-items: center;
    margin-left: 80px;
    padding: 8px 0px;
}
.headmenu {
    padding: 15px;
    background-color: #13131321;
    text-transform: uppercase;
    text-align: left;
    padding-left: 80px;
}

.lang {
    color: #fff;
    margin-right: 10px;
}
.lang img {
    width: 25px;
    height: 25px;
    text-align: center;
    float: left;
    border-radius: 20px;
    margin-right: 5px;
    object-fit: cover;

    border: 1px solid #fff;
}
.mobile-bar {
    background-color: var(--menutop-color);
    width: 100%;
    padding: 3px;
}

/* .mobile-bar {
    background-color: #fff;
    width: 100%;
    padding: 3px;
} */

.lang-flag {
    float: right;
    /* margin-top: 2px; */
    border: none;
    margin-left: 15px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}
.burger {
    width: 60px;
}
.burger div {
    width: 40px;
    height: 3px;
    margin-bottom: 10px;
    background: var(--maincolor);
}
.burger div:nth-last-child(1) {
    margin-bottom: 0px;
}
.crumb {
    background: #f1f2f2;

    padding: 5px 0px;
    font-size: 12px;
}

.crumb-gray .crumb {
    background-color: #f5f5f5;
}

.crumb a {
    font-size: 14px;
    line-height: 24px;
    color: #404040;

    text-align: center;
}

.crumb a:first-child {
    padding-left: 0;
}

.crumb a:last-of-type {
    color: var(--maincolor);
    padding-left: 10px;
}

/*  */

.menuleft {
    padding: 0px;
    margin: 0px;
    color: #58595b;
    background: #fff;
}
.menuleft .title {
    background: var(--subcolor);
    color: #fff;
    padding: 10px 15px;
    font-size: 17px;
    font-family: var(--fontmain);
}
.menuleft .fa {
    font-size: 10px;
    float: right;
}

.menuleft ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.menuleft li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.menuleft li:last-child {
    border-bottom: none;
}

.menuleft li a:hover {
    color: var(--maincolor);
}

.menuleft li a {
    color: #0a0a0a;
    padding: 10px;
    width: 100%;
    display: block;
    font-size: 15px;
    font-family: var(--fontmain);
}

.menuleft > .actived {
    background: #fff;
}

.menuleft > .actived > a {
    color: #0a0a0a;
    font-family: var(--fontmain);
}

.menuleft .actived ul {
    background: #fff;
    display: block;
}

.menuleft .actived .actived a {
    color: #244294;
}

.menuleft li ul {
    margin: 0px;
    padding: 0px;
    padding-left: 30px;
    background: #fff;
    display: none;
    list-style-type: none;
}

.menuleft li ul li {
    padding-left: 0px;
}

.menuleft li ul li a {
    border-bottom: none;
    padding: 8px 0px;
    font-size: 14px;
    color: #0a0a0a;
}

.menuleft-icon {
    padding-right: 8px;
}

#button-btt {
    position: fixed;
    right: 15px;
    bottom: 20px;
    color: #0059bd;
    background: #ccc;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 10;
    text-align: center;
}

#button-btt a {
    color: #fff;
}

.view-detail {
    display: block;
    color: #fff;
    background: #244294;
    padding: 10px 30px;
    box-shadow: 0px 0px 3px #999;
    float: left;
}

.menutab {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-bottom: 8px;
}

.menutab-item {
    text-align: center;
    background-color: transparent;
    color: #fff;

    border: 2px solid transparent;
    position: relative;
}

.menutab-item.actived a,
.menutab-item:hover a {
    color: var(--maincolor);
}
.menutab-item:nth-child(1) {
    padding-left: 0px;
}
.menutab-item a {
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;

    transition: all 0.5s ease-in;
    padding: 15px 15px;
    position: relative;
}
.menutab-item a:before {
    content: "";
    width: 2px;
    height: 20px;
    background: #fff;
    position: absolute;
    top: 15px;
    right: 0px;
}
.menutab-item:last-child a::before {
    display: none;
}
.tab-item:last-child {
    border-right: none;
}

.tab-bar {
    /* background: #e1e1e1; */
    position: relative;
    display: flex;
    align-items: center;
}

.tab-bar-wrapper {
    padding-right: 40px;
}

.tab-title {
    margin: 0px;

    font-size: 16px;
    color: #484848;
    text-transform: uppercase;
    padding: 10px 0 26px;
    display: block;
    float: left;
}

.tab-title:nth-child(2) {
    padding: 10px 40px 26px;
}

.tab-active {
    position: relative;
    color: #ffa200;
}

.tab-active::after {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #ffa200;
    border: solid 1px #ffa200;
    left: 0;
}

.tab-bar::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #176078;
    border: solid 1px #176078;
}
#tabs-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px;
}
#tabs-nav li {
    list-style: none;
    text-align: center;
    color: var(--subcolor);
    margin: 5px;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #fff;
}
#tabs-nav li.active a {
    color: var(--subcolor);
    font-family: var(--fontmain);
}

/*Modal*/
.blocker {
    z-index: 111 !important;
}
.modal {
    max-width: 100% !important;
    padding: 0px !important;
    border-radius: 20px !important;
}
.modal a.close-modal,
.modal-close {
    opacity: 0;
    display: none;
}
.modal-overlay {
    opacity: 0;
    filter: alpha(opacity=0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) !important;
}
.modal-box {
    display: none;
    position: fixed;
    z-index: 1404040;
    width: 60%;
    border-bottom: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    max-width: 1100px;
    background: #fff;
}

.modal-box header,
.modal-box .modal-header {
    padding: 1.25em 1.5px;
    border-bottom: 1px solid #ddd;
}

.modal-box header h3,
.modal-box header h4,
.modal-box .modal-header h3,
.modal-box .modal-header h4 {
    margin: 0;
}

.modal-box .modal-body {
    padding: 10px 20px;
}

.modal-box footer,
.modal-box .modal-footer {
    padding: 1px;
    border-top: 1px solid #ddd;
    background: rgba(0, 0, 0, 0.02);
    text-align: right;
    padding: 8px;
}

a.close {
    line-height: 1;
    font-size: 1.5px;
    position: absolute;
    top: 5%;
    right: 2%;
    text-decoration: none;
    color: #bbb;
}

a.close:hover {
    color: #222;
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    transition: color 1s ease;
}

.msgbox {
    color: #ccc;
}
.img-shine {
    position: relative;
    overflow: hidden;
    display: block;
}

.img-shine:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Hover state - trigger effect */
.img-shine:hover:after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}
.error {
    border: solid 1px red !important;
}

.btn {
    padding: 8px 15px;
    color: #222;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: background-color 1s ease;
    -moz-transition: background-color 1s ease;
    transition: background-color 1s ease;
}

/* Active state */
.img-shine:active:after {
    opacity: 0;
}

.menu-mobile {
    display: block;
    float: right;
    color: #000;
    font-size: 30px;
    margin-left: auto;
}

.menu-mobile-item {
    display: block;
    float: left;
    margin-top: 5px;
    color: #fff;
    margin-left: 10px;
}

#simplePagerNav {
    display: flex;
    justify-content: center;
}

.pagination {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 18px;

    display: inline-block;
    min-width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    border: 2px solid #b3b3b3;
}
.pagination-item {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 18px;

    display: inline-block;
    min-width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    border: 2px solid #b3b3b3;
}

.pagination-item__clicked {
    text-decoration: none;
    color: #fff;
    font-size: 18px;

    display: inline-block;
    min-width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--maincolor);
    margin: 0 5px;
    border: 2px solid #b3b3b3;
}

.pagination-item-icon {
    font-size: 20px;

    color: #176078;
}

.ullist {
    height: 450px;
    overflow-y: scroll;
}

.ullist li h3 {
    padding: 0px;
    margin: 0px;
    margin-top: 5px;
    color: #244294;
    font-size: 16px;
}

.ullist li p {
    margin: 0px;
    padding: 5px 0px;
}

.ullist li {
    border-bottom: dashed 1px #ddd;
}

.ullist li .fa {
    display: block;
    float: left;
    width: 18px;
    margin-top: 2px;
}

#loadMoreProduct {
    display: block;
    background: #ddd;
    color: #244294;
    padding: 10px 20px;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    width: 220px;
}

.form-title {
    font-family: var(--fontmain);
    font-size: 24px;
    font-weight: normal;

    text-align: center;
    width: 100%;
}

.sendmail__btn {
    background: var(--maincolor);
    text-align: center;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    font-size: 18px;
    height: 50px;
}

::placeholder {
    color: #f1f2f2;
    opacity: 1;
    /* Firefox */
}

.view-more {
    font-weight: normal;
    display: inline-block;
    color: #fff;
    font-size: 14px;

    margin-top: 25px;
    background-color: #9d9d9d;
    padding: 10px 20px;
}
.line {
    border-bottom: 1px solid #9d9d9d;
}

.line-w {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.line-w span {
    display: inline-block;
    margin-right: 5px;
    background: var(--subcolor);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    width: 100px;
    height: 3px;
    margin-top: 10px;
}

.line-w span:last-child {
    margin-right: 0;
}
.tocWrap {
    padding: 10px;
    background: #f1f2f2;
    margin: 10px 0px;
}

.Tocct {
    border: 1px solidvar(--maincolor);
    margin-top: 30px;
    border-radius: 25px;
    max-width: 100%;
    padding: 25px;
    position: relative;
}
.longPageTOC {
    font-size: 20px;

    text-transform: uppercase;
}
.TOCShowHide.hideTOC {
    position: absolute;
    right: 15px;
    top: 5px;
    color: #00b8ce;
}
.longPageNavigationDiv {
    padding: 10px;

    padding-right: 20px;
    width: 100%;
}

.longPageNavigationDiv a {
    color: #0a0a0a;
}

.longPageNavigationDiv ul {
    padding-left: 20px;
}

.longPageNavigationDiv ul li {
    list-style: none;
    padding: 2px 0px;
}

.longPageNavigationDiv ul .toc-heading3 {
    padding-left: 20px;
}

.form-group {
    padding: 10px 0px;
    border-bottom: dotted 1px #ccc;
}
.btndangnhap {
    background-color: var(--maincolor);
    color: #fff;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 18px;
}

/* home */
.slidehome {
    position: relative;
}
.slidehome-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    color: #fff;
    padding: 30px;
}
#slide_home img {
    height: 460px;
}
.slidehome-title {
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
}
.slidehome-title span {
    color: #fff;
}
.slidehome-intro {
    font-size: 24px;
    text-transform: uppercase;
}
.search-form {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 1px 5px 9px #0000002e;
}
.search-mobile-bar {
    float: right;
    width: 200px;
    position: relative;
    margin-right: 10px;
    margin-top: 5px;
}

.search-mobile-bar .kw {
    width: 100%;
    height: 30px;
    border: solid 1px #eee;
    padding: 0px 10px;
    outline: none;
    float: left;
    color: #0a0a0a;
    border-radius: 25px;
    background: #fff;
}

.submit-search-mobile {
    float: right;
    color: var(--maincolor);
    font-size: 14px;
    position: absolute;
    top: 8px;
    right: 25px;
}
.header-mobile {
    background: #fff;
    border-bottom: solid 2px #2c9fcb;
}

.cart-mobile {
    position: relative;
    margin-right: 10px;
    margin-top: 10px;
    width: 40px;
    float: right;
}

.cart-mobile span {
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 11px;
    background: #244294;
    color: #fff;
    display: block;
    padding: 1px 4px;
    border-radius: 50%;
}

.kw-mobile {
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 20px;

    margin-bottom: 0px;
    color: #0a0a0a;
    padding-left: 5px;
}

.mobile-footer-bar {
    position: fixed;
    bottom: 0px;
    padding: 5px;
    width: 100%;
    background: #fff;
    box-shadow: 0px -1px 3px #244294;
    z-index: 9999;
}

.search-form input::placeholder {
    color: #909090;
    font-family: var(--fontmain);
    font-size: 18px;
    height: 50px;
}
.search-form input {
    border: none;
    outline: none;

    margin-bottom: 0px;
    padding-left: 35px !important;

    font-family: var(--fontmain);
}
.search-form .search-icon--input {
    color: #909090;
}
.search-form select {
    outline: none;
    width: 100%;
    font-family: var(--fontmain);

    height: 50px;
    border-radius: 5px;
    border: 1px solid #a0a0a0;
    font-size: 20px;
}
input:focus-visible,
select:focus-visible {
    border: 1px solid #a0a0a0;
}
.btn-search {
    background: var(--maincolor);
    color: #fff;
    width: 100%;
    padding: 12px;
    max-width: 200px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
}

.homecat-title {
    font-size: 26px;
    color: var(--title-color);
    font-family: var(--fontB);
    position: relative;
}

.homecat-intro {
    margin: auto;
    text-align: center;
    max-width: 800px;
}
.pagecat-title {
    text-align: left;
    color: #282828;
    font-family: var(--fontB);

    position: relative;
    font-size: 25px;

    margin: 0px;
    line-height: 1.3;
}

.homecat-title a,
.pagecat-title a {
    color: currentColor;
}

.menu-footer {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    padding: 10px 0px;
}

.menu-footer a {
    font-size: 13px;
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
}

.footer {
    background-color: var(--navy-color);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    font-size: 14px;
}
.footer-block {
    line-height: 35px;
}
.footer-block p {
    display: flex;
    margin-bottom: 10px;
}
.footer-block b {
    width: 80px;
}
.footer-block p i {
    font-size: 18px;
    width: 27px;
}
.footer-block p span {
    width: calc(100% - 25px);
}
.text-center {
    margin: auto;
    text-align: center;
}

.footer-title .i {
    float: right;
    margin-top: 3px;
    font-size: 14px;
    display: none;
    transition: 0.5s;
    color: #fff;
}

.footer-block {
    padding-left: 0px;
    margin-top: 20px;
}

.footer-block .info {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    /* margin-bottom: 10px; */
    line-height: 2;
}
.footer-block .info i {
    margin-right: 10px;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footermain {
    border-bottom: 1px solid var(--maincolor);
}
.footer-social li {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    border: 1px solid #fff;
    margin: 0px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    list-style-type: none;
}
.footer-social li a {
    color: #333;
}
.footer-social span {
    padding-right: 10px;
}
.menufooter {
    list-style: none;
    padding-left: 15px;
}
.menufooter li {
    line-height: 30px;
}
.menuboxfooter {
    padding: 0px;
    list-style-type: none;
}
.menuboxfooter li {
    margin-bottom: 5px;
}
.menuboxfooter a {
    color: #fff;
    transition: all 0.5s ease-in;
}
.footer-title {
    font-size: 17px;
    color: #fff;
    font-family: var(--fontmain);
    padding-bottom: 10px;
    text-transform: uppercase;
}
.star-rate {
    background: url(/images/starrate.png) right top no-repeat;
    height: 30px;
    width: 100%;
    background-size: auto;
}
.rate1 {
    background-position-y: -116px;
}
.rate2 {
    background-position-y: -86px;
}
.rate3 {
    background-position-y: -58px;
}
.rate4 {
    background-position-y: -30px;
}
.rate5 {
    background-position-y: 0px;
}
.img-poster {
    position: relative;
}
.img-poster img {
    display: block;
}
.poster-content {
    position: absolute;
    width: 100%;
    height: auto;
    left: 20px;
    bottom: 0px;
    transform: translate(0px, -20%);
    z-index: 2;
    color: #fff;
    font-family: var(--fontB);
}
.catname {
    text-transform: uppercase;
    text-align: left;
    font-size: 40px;
}
.catname span {
    color: var(--maincolor);
}
.poster-content .catname {
    text-align: center;
}
.frm-contact input {
    width: 100%;
    padding: 15px;
    border: 1px solid #9c9c9c;
    margin-bottom: 30px;
}
.frm-contact input.btn-contact {
    background: var(--maincolor);
    color: #fff;

    text-transform: uppercase;
}
.line-title {
}
.featured-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.featured-item-img {
    width: 40%;
}
.featured-item-content {
    width: 60%;
    overflow: hidden;
    padding-left: 10px;
    line-height: 1.4;
}
.featured-item-name {
}
.featured-item-img img {
    border-radius: 5px;
}
.slide-btn-next {
    position: absolute;
    right: -15px;
    top: 50%;
    width: 45px;
    height: 45px;
    transform: translate(0px, -50%);
    line-height: 45px;
    background-color: var(--maincolor);
    border-radius: 50%;
    text-align: center;
    z-index: 2;
    color: #fff;
}
.slide-btn-prev {
    position: absolute;
    left: -15px;
    top: 50%;
    color: #fff;
    width: 45px;
    height: 45px;
    transform: translate(0px, -50%);
    line-height: 45px;
    background-color: var(--maincolor);
    border-radius: 50%;
    text-align: center;
    z-index: 2;
}
/* home */
.content {
    background-color: #f1f2f2;
}
.product_li {
}
.product_li a img {
    float: left;
}
.btn-xemthem {
    padding: 10px 20px;
    background: var(--btn-color);
    border-radius: 20px;
    color: #fff;
    transition: all 0.5s ease-in;
    font-family: var(--fontB);
}
.btn-xemthem:hover {
    color: var(--maincolor);
    background-color: #ffff;
    border: none;
}

.catproduct-item {
    text-align: center;
    margin-bottom: 30px;
}
.catproduct-image img {
    border-radius: 5px;
    transition: all 0.5s ease;
}
.img-hover {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.img-hover:hover img {
    transform: scale(1.05);
}
.catproduct-image {
    border-radius: 10px;
}
.homeproduct_hot-wrapper {
    /* background: linear-gradient(140deg, #2c3e50, #90c6e5, #b5ddf4, #f2f8fc); */
    background-color: #4f6d8bb0;
}
.homeproduct-hot {
    position: relative;
}

.homeproduct_hot-wrapper .homecat-title {
    color: #fff;
}
.product-item {
    background-color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.product-name {
    font-family: var(--fontB);
    height: 45px;
    font-size: 16px;
    transition: all 0.5s ease;
}
.homeproduct-wrapper .product-item {
    margin-bottom: 0px;
}
.product-item:hover .product-name {
    color: var(--title-color);
}
.ma {
    color: #9d9d9d;
}
.pricekm {
    color: #9d9d9d;
    text-decoration: line-through;
}
.price {
    font-family: var(--fontB);
    color: var(--menutop-color);
}
.sanphambig {
    position: relative;
}
.sanphambig-box {
    position: absolute;
    top: 50px;
    left: 0px;
    color: #fff;
    padding: 0px 30px;
}
.sanphambig-name {
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--fontB);
    color: #fff;
}
.sanphambig-image img {
    border-radius: 10px;
}
.btn-catdetail a {
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--maincolor);
    background-color: var(--navy-color);
    transition: all 0.5s ease;
}
.btn-catdetail a:hover {
    color: var(--navy-color);
    background: #fff;
}
.subname {
    font-size: 16px;
    text-transform: uppercase;
}
.dangkydaily {
    position: relative;
}
.dangkydaily-box {
    position: absolute;
    left: 0px;
    top: 50%;
    line-height: 1.2;
    width: 100%;
    padding: 30px 50px;
    transform: translate(0px, -50%);
}
.dangkydaily-box .homecat-title {
    color: #111;
}

.formdangkydaily input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
    border: none;
    font-family: var(--fontmain);
}
.formdangkydaily input::placeholder {
    font-family: var(--fontmain);
    color: #9d9d9d;
}
.formdangkydaily-home input::placeholder {
    color: #6c6c6c;
}
.formdangkydaily-home input {
    padding: 15px;
    font-size: 16px;
    outline: none;
}
.btn-dangky {
    background-color: var(--btn-color);
    color: #fff;
    transition: all 0.5s ease;
    border: var(--maincolor);
}
.btn-dangky:hover {
    background: #fff;
    color: var(--navy-color);
}
.whyus-image {
    width: 80px;
    height: 80px;
    background-color: var(--menutop-color);
    padding: 10px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-info-home {
    max-width: 40px;
}
.whyus-item {
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.5s ease-in;
}
.whyus-name {
    font-family: var(--fontB);
}
.whyus-item:hover {
    margin-top: 0px;
}
.whyus-intro {
    color: #6e6e6e;
}
.newshot-item {
    border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
}
.newshot-item img {
    border-radius: 10px;
}
.newshot-box {
    position: absolute;
    width: 100%;
    padding: 0px 30px;
    top: 50%;
    transform: translate(0px, -50%);
    color: #fff;
}
.newshot-subname {
    text-transform: uppercase;
}
.newshot-name {
    font-size: 20px;
    text-transform: uppercase;
}
.btn-detail a {
    padding: 10px 30px;
    border-radius: 20px;
    color: var(--maincolor);
    background: #fff;
    transition: all 0.5s ease-in;
}
.btn-detail a:hover {
    box-shadow: -1px -1px 5px #0000007e;
}
.video-item {
    position: relative;
    margin-bottom: 10px;
}
.fancy-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -70%);
    color: #f1f2f2;
    font-size: 24px;
}
.video-name {
    position: absolute;
    z-index: 2;
    bottom: 0px;
    left: 0px;
    padding: 10px;
    width: 100%;
    background-color: #0000002e;
    color: #fff;
}
.homereview-box {
    display: flex;
    align-items: center;
}
.homereivew-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.homereivew-img img {
    border-radius: 50%;
}
.homereivew-content {
    width: calc(100% - 120px);
    padding-left: 20px;
}

.homereview-name {
    color: var(--title-color);
    font-family: var(--fontB);
    font-size: 20px;
}
.homereview-detail {
    text-align: justify;
    font-size: 16px;
    color: #606060;
}
.bg-white {
    background-color: #fff;
}
.homenews-name {
    font-family: var(--fontB);
    transition: all 0.5s ease;
    font-size: 18px;
}
.homenews-item:hover .homenews-name {
    color: var(--title-color);
}
.homeqa {
    margin-right: 25px;
}
.name-faq {
    padding: 8px 0px;
    color: #333;
    font-family: var(--fontB);
}
.faqcontent {
    background-color: #fff;
    padding: 10px 10px 10px 30px;
    display: none;
}
.faq-item {
    margin: 10px 0px;
}
.homebooking-wrapper {
    background-color: #fff;
}
.name-faq .fas {
    color: var(--menutop-color);
    padding-right: 5px;
    font-size: 18px;
}
input {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #9d9d9d;
    border-radius: 25px;
    font-family: var(--fontmain);
}
.form_booking input::placeholder {
    color: #292929;
    font-family: var(--fontmain);
}
.form_booking input {
    margin-bottom: 20px;
}
.homebooking-item {
    padding: 30px;
    box-shadow: 0px 0px 5px #9d9d9d;
    border-radius: 20px;
}
.coppyright {
    padding: 10px;
    background-color: var(--menutop-color);
    color: #fff;
    border-radius: 20px;
    padding-left: 50px;
}
.producthot-button-prev,
.producthot-button-next {
    background: #fff;
    color: var(--navy-color);
}
.swiper-pagination {
    bottom: -30px !important;
}
.swiper-pagination-bullet {
    background-color: #fff !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff !important;
}
.megaproduct-li {
    list-style-type: none;
    display: none;
}

.catproduct-name {
    font-family: var(--fontB);
    color: var(--title-color);
    font-size: 18px;
    padding-top: 10px;
}
.title-left {
    padding: 10px 0px;
    font-family: var(--fontB);
    color: var(--navy-color);
    font-size: 20px;
    border-bottom: 1px solid #bbb9b9;
}
.menu_productleft {
    background: #fff;
    padding: 15px;
}
.news-item {
    margin-bottom: 30px;
}
.news-item:hover .homenews-name {
    color: var(--maincolor);
}
.product-catcontent {
    padding: 20px;
    background-color: #fff;
    line-height: 1.8;
}
.productright_item,
.newsr-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}
.productr_img,
.newsr-img {
    width: 100px;
}
.productr_box,
.newsr-box {
    width: calc(100% - 110px);
}
.productr_name {
    font-family: var(--fontB);
}
.newsr-name {
}
.prodetail-intro ul {
    padding: 10px 20px 10px;
    list-style-type: none;
    background-color: #f1f2f2;
}
.prodetail-intro li::before {
    content: "\f058";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    padding-right: 5px;
    color: var(--maincolor);
}
.prodetail-intro li {
    margin-bottom: 10px;
}
.product-detail-wrapper {
    background-color: #fff;
    padding: 15px;
}
.product-detail-wrapper .price {
    font-size: 20px;
}
.product-detail-wrapper .pricekm {
    font-size: 18px;
}
.number,
.minus,
.plus {
    width: 40px;
    border-radius: 0px;
    border: 1px solid #9d9d9d;
    height: 40px;
    margin: 0px 5px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}
.cartplus {
    display: flex;
    align-items: center;
}
.btn-muahang,
.btn-downloadcatalog:hover {
    text-align: center;
    color: #fff;
    background-color: var(--btn-color);
    padding: 10px;
    border-radius: 5px;
    transition: all 0.5s ease-in;
}
.btn-downloadcatalog,
.btn-muahang:hover {
    color: #fff;
    padding: 10px;
    background-color: #ffa100;
    text-align: center;
    border-radius: 5px;
    transition: all 0.5s ease;
}
.content-product-detail,
.newsdetail {
    padding: 15px;
    background-color: #fff;
}
.formdangkydaily {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 100%;
    height: auto;
    transform: translate(0px, -50%);
}
.poster-dangkydaily {
    position: relative;
}
.frm-dangky {
    padding: 30px 30px 0px;
    background-color: #fff;
    border-radius: 5px;
}
.frm-dangky input {
    margin-bottom: 20px;
    border: 1px solid #9e9e9e;
}
.frm-dangky input::placeholder {
    color: #333;
}
.daily-item table {
    width: 100%;
}
.daily-item table {
    padding: 10px;
    background: #fff;
}
.daily-item table th {
    border: none;
    background-color: var(--maincolor);
    color: #fff;
    text-align: left;
    padding: 10px;
}
.daily-item table tr td {
    padding: 10px;
}
.daily-item table th:nth-child(1),
.daily-item table tr td:nth-child(1) {
    width: 30px;
}
.daily-item table th:nth-child(2),
.daily-item table tr td:nth-child(2) {
    width: 25%;
}
.daily-item table th:nth-child(3),
.daily-item table tr td:nth-child(3) {
    width: 25%;
}
.daily-item table th:nth-child(4),
.daily-item table tr td:nth-child(4) {
    width: calc(50% - 30px);
}
.daily-search input,
.daily-search select {
    width: 100%;
    padding: 10px;
    border: 1px solid #9d9d9d;
    border-radius: 20px;
    font-family: var(--fontmain);
}
.line-frm textarea {
    width: 100%;
}
.btn-contact {
    background-color: var(--maincolor);
    padding: 10px;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    margin-top: 20px;
}
.inhome-list {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}
#sortBy {
    padding: 10px;
    border: 1px solid #9d9d9d;
    border-radius: 5px;
}

.catsanpham {
    position: relative;
}
.catsanpham img {
    min-height: 100%;
    border-radius: 5px;
}

.frm-contact {
    padding: 20px;
    background: #ffff;
    border-radius: 20px;
}
.newsdetail img,
.product-catcontent img {
    display: block;
    margin: 0 auto;
}
.newsdetail img,
.newsdetail h1,
.newsdetail h2,
.newsdetail h3,
.content-product-detail img,
.content-product-detail h1,
.content-product-detail h2,
.content-product-detail h3,
.content-product-detail table,
.content-product-detail iframe,
.product-catcontent img,
.product-catcontent h1,
.product-catcontent h2,
.product-catcontent h3,
.product-catcontent iframe {
    padding: 10px 0px;
}
.newsdetail ul,
.content-product-detail ul,
.newsdetail ol,
.content-product-detail ol,
.product-catcontent ol,
.product-catcontent ul {
    padding-left: 20px;
}
.content-product-detail img {
    max-width: 100% !important;
    max-height: 100% !important;
    clear: both;
    display: block;
    margin: 0 auto;
}
.tocContent a {
    color: var(--maincolor);
}
.tocContent .c20 {
    height: auto;
}
.tocContent {
    line-height: 1.8;
}
.product-catcontent table {
    margin: 10px auto;
    width: 100%;
}
.product-catcontent table td {
    padding: 5px;
}
#st-1 .st-btn > img {
    height: auto !important;
    top: 0px !important;
}
