@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap');


/* Main */
:root {
    --main-color: #f1c40f;
    --second-color: #e42525;
    --color-yel: #E2CE21;
    --color-red: #FF0000;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #333333;
    --color-gray: #a9a9a9;
}
#checkdv_1{display: none}

body {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #222222;
    min-width: 1366px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top
}

.second-color-bg.act {
    background: var(--main-color);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::-webkit-input-placeholder {
    color: #000;
}

input::-moz-placeholder {
    color: #000;
}

input:-moz-placeholder {
    /* Older versions of Firefox */
    color: #000;
}

input:-ms-input-placeholder {
    color: #000;
}

.breadcrumb-right {
    width: 70% !important;
    margin-left: auto !important;
    margin-top: 20px;
}

a:hover {
    text-decoration: none;
}

.container_s {
    max-width: none !important;
    margin: 0px auto;
}

.wrap-main {
    max-width: 1230px;
    margin: 0px auto;
    padding: 0 15px;
}

.wrap-main.wrap-page-in {
    margin: 40px auto;
}

.wrap-content {
    max-width: 1230px;
    margin: 0px auto;
    padding: 0 15px;
}


.wrap-home {
    max-width: 100%;
    padding: 0px;
}


.content-ck img {
    max-width: 100% !important;
    height: auto !important;
}

.hidden-seoh,
.hidden {
    display: none;
}

/* effect */
.effect-1 {
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.effect-1:after {
    position: absolute;
    top: 0;
    left: -66%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
}

.effect-1:hover:after {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.effect-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.effect-2:before,
.effect-2:after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    z-index: 9;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
    transform-origin: center;
}

.effect-2:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale3d(0, 1, 1);
}

.effect-2:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale3d(1, 0, 1);
}

.effect-2:hover {
    background: rgba(0, 0, 0, 0.45);
}

.effect-2:hover:before,
.effect-2:hover:after {
    transform: scale3d(1, 1, 1);
    transition: transform 0.5s;
}

.effect-2>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.effect-2:hover>img {
    opacity: 0.8;
}

.effect-3>img {
    transform: translateY(0px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}

/* Toc */
.box-readmore {
    padding: 8px 15px;
    border: 1px solid #dedede;
    margin-bottom: 2rem;
    border-radius: 5px;
    background-color: #eeeeee;
}

.box-readmore li ul>li {
    margin: 0;
    margin-bottom: 8px
}

.box-readmore li ul>li:before {
    content: counters(item, ".") " "
}

.box-readmore ul {
    list-style-type: none;
    counter-reset: item;
    margin-bottom: 0px;
    padding-left: 0px !important;
    margin-top: 8px;
}

.box-readmore ul li {
    display: table;
    counter-increment: item;
    margin-bottom: 5px
}

.box-readmore ul li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 5px
}

.box-readmore ul li a {
    color: #333333;
    cursor: pointer;
    font-weight: 600;
}

.box-readmore ul li a:hover {
    color: #767676;
}

/* General */
.title-index {
    position: relative;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.title-index.title-index-none {
    border-bottom: 1px solid #ededed;
}

.title-index span {
    position: relative;
    text-transform: uppercase;
    color: #ec2d3f;
    font-size: 26px;
    display: inline-block;
    padding: 8px 0px;
    padding-right: 40px;

    font-weight: 700;
    background: #fff;
}

.title-index:after {
    content: '';
    width: 100%;
    border-bottom: 2px solid #ededed;
    position: absolute;
    top: 25px;
    left: 0px;
    z-index: -1;
}

.title-index.title-index-none:after {
    display: none;
}

.wrap-about {
    padding: 50px 0px;
    background: url(../images/bk_gioithieu.jpg)no-repeat top left;
    background-size: cover;
}

.wrap-about .image_gt img {}

.image_gt img {
    width: 100%;
}

.wrap-about .border_gt {}

.title_about {
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.title_about p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.title_about p span {
    font-size: 34px;
    color: #fff;
    font-weight: 700;

    font-family: 'UTMHanzel';
}

.title_about p:first-child {}

.title_about p:last-child {}

.text_gt {
    margin: 10px auto;
    color: #fff;
    text-align: justify;
}

.title_about_full {
    border-bottom: 1px solid #313131;
    margin-bottom: 15px;
}

.title_about_full p {
    margin-bottom: 10px;
}

.title_about_full p span {
    font-size: 25px;
    color: #079B05;
    text-transform: uppercase;
}

.text_gt_full {
    font-size: 15px;
    color: #878787;
    margin-bottom: 30px;
}


/******End-about-us*********/

/**** icon_xemthem****/

.icon_xemthem {
    margin: 0px;
    margin-top: 40px;
    border: 1px solid #ec2d3f;
    background: #ec2d3f;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    padding: 8px 40px;
    border-radius: 25px;
}

.icon_xemthem.border_25 {
    border-radius: 25px;
}

.icon_xemthem a {
    color: #fff;
}

.icon_xemthem:after {}

.icon_xemthem:hover {
    border: 1px solid #ec2d3f;
    color: #ec2d3f;
    background: #fff;
}

.icon_xemthem:hover a {
    color: #ec2d3f;
}

.icon_xemthem2 {
    position: absolute;
    top: 5px;
    right: 0px;
    margin: 0px;
    font-weight: 400;
    color: #555555;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    padding: 10px 20px;
    background: #ffff url(../images/node2.png)no-repeat top+18px right;
}

.icon_xemthem2 a {
    color: #555555;
}

.icon_xemthem2:hover {}

.icon_xemthem2:hover a {
    color: #ff0000;
}

.icon_xemthem3 {
    margin: 0px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 40px;
    background: #ed9313;
    border-radius: 10px;
}

.icon_xemthem3.border-none {}

.icon_xemthem3 a {
    color: #fff;
}

.icon_xemthem3:after {}

.icon_xemthem3:hover {
    background: #fff;
    color: #ed9313;
}

.icon_xemthem3:hover a {
    color: #ed9313;
}

.icon_xemthem4 {
    border: 1px solid #a97b50;
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    padding: 8px 25px;
    background: #a97b50;
}

.icon_xemthem4 a {
    color: #fff;
}

.icon_xemthem4:after {}

.icon_xemthem4:hover {
    color: #fff;
    background: #079B05;
    border: 1px solid #079B05;
}

.icon_xemthem4:hover a {
    color: #fff;
}

/**** end icon_xemthem****/
/* Lazyload */
img.lazy {
    opacity: 0;
}

img:not(.initial) {
    transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
    opacity: 1;
}

img:not([src]) {
    visibility: hidden;
}



/* Search */
.search {
    position: relative;
    width: 280px;
    background-color: #fff;
    border-radius: 20px;
    height: 35px;

}

input::-moz-placeholder {
    color: #302810;
}

.search p {
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    width: 45px;
    height: 35px;
    line-height: 50px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    border-radius: 0px 25px 25px 0px;
    margin-bottom: 0;
    color: #838383;
}

.search input {
    width: calc(100% - 50px);
    height: 35px;
    outline: none;
    padding: 0 0 0 10px;
    border: 0px;
    background: transparent;
    font-size: 14px;
    color: #302810;
}

.search input::-webkit-input-placeholder {
    color: #302810;
}

.search input:-moz-placeholder {
    color: #302810;
    background: transparent;
}

.search input:-ms-input-placeholder {
    color: #302810;
}

/* Mmenu */
.menu-res {
    display: none;
    height: 55px;
    z-index: 10;
    background: var(--main-color);
    position: relative;
    line-height: normal;
}

.menu-bar-res {
    height: 55px;
    padding: 0px 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menu {
    display: none;
}

#hamburger {
    display: block;
    width: 25px;
    height: 23px;
    position: relative;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    background: #ffffff;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0px;
}

#hamburger:before {
    top: 3px;
}

#hamburger span {
    top: 10px;
}

#hamburger:after {
    top: 17px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    -webkit-transition: none 0.5s ease 0.5s;
    transition: none 0.5s ease 0.5s;
    -webkit-transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
    top: 10px;
}

.mm-wrapper_opening #hamburger span {
    left: -50px;
    opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
    transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
    transform: rotate(-45deg);
}

.mm-menu_opened {
    display: block !important;
}

/* Search Responsive */
.search-res {
    position: relative;
}

.search-res p {
    margin-bottom: 0;
}

.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: #ffffff !important;
    font-size: 17px;
    margin: 0px;
    border-radius: 50%;
}

.search-res .icon-search.active {
    color: var(--main-color);
    border-radius: 100%;
}

.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--main-color);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
}

.search-res .search-grid p {
    float: left;
    width: 35px;
    height: 38px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    font-size: 17px;
    display: block;
    color: var(--main-color);
    line-height: 40px;
    text-align: center;
}

.search-res .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 38px;
    outline: none;
    border: none;
    color: var(--main-color);
}

.search-res .search-grid input::-webkit-input-placeholder {
    color: #ccc;
}

.search-res .search-grid input:-moz-placeholder {
    color: #ccc;
}

.search-res .search-grid input::-moz-placeholder {
    color: #ccc;
}

.search-res .search-grid input:-ms-input-placeholder {
    color: #ccc;
}

/* Slideshow */
.slideshow {
    position: relative;
    z-index: -1;
}

.slideshow img {
    width: 100%;
}

.slideshow-container {
    display: flex;
    justify-content: space-between;
    background-color: #f6f6f6;
    padding-bottom: 30px;
}

.slideshow-item {
    display: block;
    cursor: pointer;
}

.slideshow:hover .control-slideshow {
    opacity: 1;
}

.control-slideshow {
    opacity: 0;
}

.slide-arrows {
    transform: translateY(-40%);
    position: absolute;
    top: 40%;
    left: -60px;
    z-index: 1;
    border: none;
    background: none;
    cursor: pointer;
}

.slide-arrows.ic-rights {
    left: unset;
    right: -60px;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    left: -30px;
    z-index: 1;
    border: none;
    background: none;
    cursor: pointer;
}

.slide-arrow:focus {
    outline: none;
}

.slide-img {
    width: 100%;
    object-fit: cover;
}

.slide-arrow.ic-right {
    left: unset;
    right: -20px;
}

/* video-sl */
.video-sl {
    width: calc(100% - 50%);
    position: relative;
    max-height: 602px;
    overflow: hidden;
}



/* Breadcrumb */
.breadCrumbs {
    background-color: #eee;
}

.breadCrumbs .wrap-content {
    padding: 0.75rem 15px;
}

.breadCrumbs .wrap-content .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
    color: var(--color-black);
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
    color: var(--color-gray);
}

/* Video */
.video {
    cursor: pointer;
    margin-bottom: 1rem;
}

.video-image {
    position: relative;
    margin-bottom: 0.75rem;
}

.video-image:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: calc(50% - 50px/2);
    left: calc(50% - 35px/2);
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url(../images/play.png);
}

.video-name {
    text-align: center;
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

/* Album */
.album {
    cursor: pointer;
    margin-bottom: 1rem;
}


.album-name {
    margin-bottom: 0px;
    text-align: center;
}

.album-name a {
    display: block;
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

/* Brand */
.wrap-brand {
    margin-bottom: 50px;
    padding: 0px 15px;
}

.wrap-brand .wrap-content {
    position: relative;
}

.brand {
    display: block;
    border: 1px solid #eee;
    max-width: 160px;
    margin: 0px auto;
}

/* Product */

.grid-products {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr)
}

.product {}

.box-product {
    position: relative;
    display: block;
    margin-bottom: 1rem;
}

.box-product .pic-product {
    display: block;
    background: #ffffff;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #eee;
}

.box-product .pic-product img {
    width: 100%;
    border-radius: 3px;
}

.box-product .name-product {
    font-size: 16px;
    margin-top: 15px;
}

.box-product .name-product a {
    font-size: 16px;
    color: var(--color-black);
}

.box-product .name-product a:hover {
    color: var(--color-second);
}

.box-product .name-product.text-split {
    -webkit-line-clamp: 1;
}

.box-product .price-product {
    margin-bottom: 0px;
}

.box-product .price-product span {
    font-weight: 700;
}

.box-product .price-new {
    font-size: 15px;
    font-weight: 500;
    color: var(--main-color);
}

.box-product .price-old {
    padding-left: 10px;
    font-size: 12px;
    color: var(--color-gray);
    text-decoration: line-through;
}

.box-product .price-per {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
    background: var(--main-color);
    font-size: 11px;
    border-radius: 2px;
    width: 45px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}

.product .cart-product {
    margin-bottom: 0px;
}

.product .cart-product span {
    cursor: pointer;
    width: 49%;
    float: left;
    color: #ffffff;
    text-transform: capitalize;
    text-align: center;
    padding: 7px 5px;
    border-radius: 3px;
}

.product .cart-add {
    margin-right: 2%;
    background-color: var(--main-color);
}

.product .cart-add:hover {
    background-color: var(--color-dark-red);
}

.product .cart-buy {
    background-color: var(--color-green);
}

.product .cart-buy:hover {
    background-color: var(--color-dark-green);
}

/* Product Detail */
.dangky a{font-size: 17px; color: #E60000; font-weight: 700; cursor: pointer}
.grid-pro-detail {
    margin-bottom: 3rem;
    padding-top: 20px;
}

.spbanchay-wrap {

    margin-bottom: 10px;
}

.spbanchay {
    width: 20%;
}

.spbanchay-title {
    text-align: center;
    margin-bottom: 40px;
}

.spbanchay-title p {
    font-size: 20px;
    font-weight: 700;
    background-color: var(--main-color);
    color: #ffffff;
    padding: 10px 0;
}



.sp-goiy {
    display: flex;
}

.spbanchay-wrap {
    width: 20%;
    margin-right: 20px;
}

.spbanchay {
    width: 100%;
    border: 1px #c1bcbc solid;
}

.spcunglaoi-c {
    width: calc(100% - 20% - 20px);
}


.left-pro-detail {
    position: relative;
    text-align: center;
}

.left-pro-detail .MagicZoom {
    border: 1px solid #eee;
    padding: 7px;
    border-radius: 5px;
    background-color: #ffffff;
}

.gallery-thumb-pro {
    position: relative;
    margin-top: 10px;
}

.owl-pro-detail {
    padding: 0px 30px;
}

.control-pro-detail button {
    display: none;
    background-color: transparent;
    color: #222222;
    opacity: 1;
    width: 25px;
    font-size: 23px;
}

.control-pro-detail button:hover {
    opacity: 0.7;
}

.control-pro-detail button.owl-prev {
    left: 0px;
}

.control-pro-detail button.owl-next {
    right: 0px;
}

.thumb-pro-detail {
    display: block !important;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    background-color: #ffffff;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
    border-color: #cecfd2;
}

.thumb-pro-detail img {
    box-shadow: none !important;
    filter: brightness(100%) !important;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.title-pro-detail {
    text-transform: capitalize;
    font-size: 20px;
    display: block;
    font-weight: 700;
}

.comment-pro-detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.social-plugin-pro-detail {
    margin-bottom: 1rem;
    margin-top: 0px !important;
}

.desc-pro-detail {
    margin-bottom: 1rem;
}

.attr-pro-detail {
    list-style: none;
    padding: 0px;
}

.attr-pro-detail li {
    margin-bottom: 0.5rem;
}

.attr-label-pro-detail {
    margin: 0px 5px 0px 0px;
}

.attr-label-pro-detail.d-block {
    display: block;
    margin: 0px 0px 5px 0px;
}

.attr-content-pro-detail {
    display: inline-block;
    margin-bottom: 0px;
}

.price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: var(--main-color);
}

.price-old-pro-detail {
    font-weight: 500;
    color: var(--color-gray);
    text-decoration: line-through;
    padding-left: 10px;
}

.color-pro-detail {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 35px;
    height: 30px;
    margin: 0px 0px 3px 0px;
    border: 1px solid transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.size-pro-detail {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 3px 10px 4px 10px;
    display: inline-block;
    position: relative;
}

.size-pro-detail.active,
.color-pro-detail.active {
    border-color: #e5101d;
    color: #e5101d;
}

.size-pro-detail.active:after,
.color-pro-detail.active:after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-image: url(../images/check-cart.png);
}

.color-pro-detail input[type=radio],
.size-pro-detail input[type=radio] {
    display: none;
}

.quantity-pro-detail {
    width: 100%;
    max-width: 110px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.quantity-pro-detail span {
    line-height: 25px;
    padding: 0px;
    width: 30px;
    height: 30px;
    color: #5f5f5f;
    cursor: pointer;
    font-size: 22px;
    border: 1px solid #cccccc;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
    border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
    border-right: 0px;
}

.quantity-pro-detail input {
    height: 30px;
    border: 1px solid #cccccc;
    width: calc(100% - 60px);
    text-align: center;
    font-size: 14px;
    padding: 5px;
}

.cart-pro-detail {
    margin-bottom: 1rem;
}

.cart-pro-detail a {
    font-size: 14px;
    color: #ffffff !important;
    text-transform: uppercase;
}

.tags-pro-detail a {
    float: left;
    font-size: 13px;
    padding-bottom: 0.375rem;
    margin: 0px 5px 5px 0px;
}

.tags-pro-detail a i {
    font-size: 11px;
    margin: 5px 5px 0px 0px;
}

.tabs-pro-detail {
    margin-top: 2rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
    border-top-width: 3px;
    font-size: 13px;
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
    border-top-color: #555555;
}

/**********item-san-pham******/




.item_product.margin_auto {
    width: 90%;
}

.zoom_product {
    position: relative;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.zoom_product:after {}

.zoom_product img,
.zoom_hinh img,
.image_boder img {
    width: 100%;
    transition: all 1.2s ease 0s;
    max-width: 100%;
}

.item_product :hover img,
.item_nb:hover img,
.item_nb:hover .image_boder img {
    transform: scale(1.1);
    transition: all 1.2s ease 0s;
}

.km_sp {
    position: absolute;
    top: 5px;
    right: 5px;
    background: url(../images/i_new.png)no-repeat top left;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    line-height: 30px;
}

.name_product {
    position: relative;
    width: 100%;
    margin: 0px auto;
    padding: 10px 0px;
}

.name_product h3 {
    color: #111111;
    overflow: hidden;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
}

.name_product.name_product_list h3 {
    font-size: 18px;
}

.name_product h3 a {
    color: #111111;
    display: block;
}

.name_product p.brand_product {
    color: #555555;
    font-size: 13px;
    font-weight: 400;
}

.name_product p.brand_product a {
    color: #555555;
}

.name_product p.msp_product {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
}

.name_product p.tinhtrang {
    color: #fff200;
}

.name_product p {
    font-size: 16px;
    color: #333333;
    margin: 0px;
}

.name_product p.mota {
    height: 36px;
    overflow: hidden;
    margin-bottom: 5px;
}

.name_product p span {
    color: #d80000;
    font-size: 16px;
    font-weight: 700;
    margin: 0px 5px;
}

.name_product p a {
    color: #444444;
}

.lienhe span {
    color: #333333;
    font-size: 15px;
}

.price_sp span:nth-child(2) {
    color: var(--main-color);
}

.lienhe:hover {
    color: var(--second-color);
}

.price_sp span:nth-child(2):hover {
    color: var(--second-color);
}

.price_sp .i_giacu {
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
}

p.price_sp a {
    color: #d80000;
}

.btn_w_a {
    opacity: 0;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.hm_watch {
    display: inline-block;
    width: 110px;
    height: 35px;
    margin: 5px;
    position: relative;
    background: #bd0202;
    color: #fff;
    border: 1px solid #bd0202;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 35px;
}

.hm_watch:after {
    content: '\f2a0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0%, -50%);
    font-size: 15px;
}

.btn_watch {
    display: inline-block;
    width: 110px;
    height: 35px;
    margin: 5px;
    position: relative;
    background: #ec2d3f;
    color: #fff;
    border: 1px solid #ec2d3f;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 35px;
}

.btn_watch:after {}

/* Hover sang */
.hover-glass {
    overflow: hidden;
    display: block;
    position: relative;
}

.hover-glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.hover-glass:hover:before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.item_product:hover .name_product h3 a,
.item_nb:hover .info h3 a {
    color: #ec2d3f;
}

.item_product:hover .btn_w_a,
.item_content_pos:hover .btn_w_a {
    opacity: 1;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.hm_watch:hover,
.btn_watch:hover {
    background: #fff;
    color: #bd0202;
    border: 1px solid #bd0202;
}

.cart-item {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: url(../images/i_order.png)no-repeat top left;
    background-size: contain;
    cursor: pointer;
}

.clear {
    clear: both;
}

.w-clear:after {
    display: block;
    content: "";
    clear: both;
}

/********wrap-tabs-sp**********/
.wrap-tabs {
    margin-bottom: 20px;
}

.list_mc {
    display: inline-block;
    list-style: none;
    margin: 0px;
    text-align: center;
    padding-left: 0px;
}

.list_mc li {
    position: relative;
    display: inline-block;
    line-height: 30px;
    margin: 5px;
    color: #222222;

}

.list_mc li:after {}

.list_mc li:last-child {}

.list_mc li a {
    font-size: 15px;
    color: #222222;
    font-weight: 700;
    cursor: pointer;
    padding: 0px 20px;
}

.list_mc li:hover {
    color: #ff0000;
}

.list_mc li:hover a {
    color: #ff0000;
}

.list_mc li.active_list_mc {}

.list_mc li.active_list_mc a {
    color: #ff0000;
}

/*******end-wrap-tabs-sp*******/
.i_next_prev .slick-prev {
    width: 19px !important;
    height: 32px !important;
    background: url('../images/icon_prev.png')no-repeat top left !important;
    opacity: 1 !important;
    left: 0px;
}

.i_next_prev .slick-next {
    width: 19px !important;
    height: 32px !important;
    background: url('../images/icon_prev.png')no-repeat top left !important;
    opacity: 1 !important;
    transform: rotateY(180deg) translate(0%, -50%);
    right: 0px;
}

/* News */
.wrap-service {
    position: relative;
    padding: 50px 0px;
    background: #f4f4f4;
}

.box_news {
    position: relative;
    clear: both;
    margin: 15px auto;
    overflow: hidden;
    background: #f8f8f8;
}

.text-border {
    padding: 10px;
}

.text-border h3 a {
    text-transform: uppercase;
}

.date_news {
    background: url(../images/i_calander.png)no-repeat left center;
    color: #666666 !important;
    margin: 0px;
    padding: 5px;
    padding-left: 25px;
    font-size: 13px !important;
}

.date_news span {
    color: #c32927;
}

.box_news.box_news_slick {
    width: 92.245%;
    margin: 0px auto;
}

.box_news h3 {
    position: relative;
    margin: 0px 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #393939;
    font-weight: 600;
    font-size: 15px;
}

.box_news h3:after {}

.box_news h3 a {
    color: #393939;
}

.box_news p.mota {
    padding: 0px 0px;
    font-size: 14px;
    color: #4c4c4c;
    margin: 0px;
}

.box_news p.small {
    font-size: 11px;
    color: #ccc;
}

.box_news p.text-split {
    -webkit-line-clamp: 4;
}

.box_news.box_white h3 a,
.box_news.box_white p {
    color: #fff;
}

.box_news h3:hover {}

.image_boder {
    position: relative;
    margin: 0px 0px 0px 0px;
    text-align: center;
    overflow: hidden;
}

.image_boder img {
    width: 100%;
    margin: 0px auto;
}

.desc_pos {

    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: 0.2s all ease-in-out 0.2s;
}

.desc_pos .desc_pos_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.desc_pos h3 a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.desc_pos p.mota_p {
    -webkit-line-clamp: 4;
    color: #fff;
}

.i_xem {
    color: #fff;
    text-decoration: underline;
}

.box_news:hover .desc_pos {
    opacity: 1;
    transition: 0.2s all ease-in-out 0.2s;
}

.box_news:hover {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: 0.2s all ease-in-out 0.2s;
}

.othernews b {
    margin-bottom: 10px;
}

.list-news-other {
    padding-left: 17px;
    list-style: square;
}

.list-news-other li {
    margin-bottom: 2px;
}

.list-news-other li a {
    text-transform: none;
    color: #333333;
}

.list-news-other li a:hover {
    color: var(--main-color);
}
/* Video */
.wrap-video { position: relative; }
.box-video { width: 46%; }
.title-video { text-align: center; color: #feca0a; font-family: 'Oswald', sans-serif; font-size: 30px; text-transform: uppercase; font-weight: 700; position: relative; padding-bottom: 10px; margin-bottom: 20px; }
.title-video:after { position: absolute; content: ''; background: #fff; width: 25px; height: 3px; bottom: 0; left: 50%; transform: translateX(-50%); }
.video-main  { height: 470px; object-fit: cover; }
.listvideos { width: 100%; padding: 10px; font-size: 14px; margin-top: 5px; border: 0; }
.slick-video { margin: 0; }
.slick-video .slick-slide { }
.slick-video .slick-slide .video-image { }
.slick-video img { height: 305px; object-fit: cover; }

/*********ITEM-VIDEO-ALBUM******/
.item_video {
    position: relative;
    width: 100%;
    margin: 0px auto;
    margin: 0px auto;
    overflow: hidden;
    color: #282828;
}

.item_video.item_video_slick {
    width: 99%;
}

.item_video img {
    width: 100%;
}

.item_video.item_video_slick .zoom_video {
    margin-bottom: 20px;
}

.item_video.item_video_slick img {
    width: 100%;
}

.title_video {
    font-weight: 600;
    color: #111111;
    font-size: 20px;
    transition: 0.4s all ease-in-out 0.4s;
    text-align: center;
    cursor: pointer;
    margin: 10px 10px 20px 10px;
}

.hover_video {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s all ease-in-out 0.3s;
}

.hover_video h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700px;
    font-size: 15px;
    margin: 0px;
}

.item_video:hover .title_video {
    transition: 0.4s all ease-in-out 0.4s;
    bottom: -45px;
}

.item_video:hover .hover_video {
    transition: 0.3s all ease-in-out 0.3s;
    opacity: 1;
}


/* Contact */
.contact-article {
    margin-bottom: 3rem;
}

.contact-input {
    position: relative;
    margin-bottom: 15px;
}

.contact-input textarea {
    resize: none;
    height: 150px;
}

.contact-input .custom-file-label::after {
    content: attr(title);
}

.contact-map {
    position: relative;
    height: 500px;
}

.contact-map iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
    height: 100% !important;
}



/* Footer */
.footer-article {
    background-color: #fff;
}

.footer-article .wrap-content {
    padding: 35px 0px;
}

.footer-title {
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ec2d3f;
}

.footer-title.footer-title-line {
    font-size: 15px;
    color: #333333;
}

.footer-title.footer-title-line:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 40px;
    height: 2px;
    background: #ec2d3f;
}

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

.footer-ul li {
    margin-bottom: 10px;
}

.footer-ul li:last-child {
    margin-bottom: 0px;
}

.footer-ul li a {
    color: var(--color-black);
}

.footer-ul li a:hover {
    text-decoration: none;
    color: var(--main-color);
}

.footer-tags {
    background: #f4f4f4;
}

.footer-tags .wrap-content {
    padding: 30px 0px;
}

.footer-tags-lists {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-tags-lists li {
    float: left;
}

.footer-tags-lists li a {
    padding-bottom: 0.375rem;
    font-size: 14px;
    color: #333333;
}

.footer-powered {
    color: #555555;
    background-color: #f4f4f4;
}

.footer-powered .wrap-content {
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-statistic {
    text-align: right;
}

.footer-statistic span {
    padding-right: 10px;
}

.footer-statistic span:last-child {
    padding-right: 0px;
}

#footer-map {
    position: relative;
    height: 100%;
}

#footer-map iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

.chinhanh-iframe {
    position: relative;
    height: 465px;
}

.chinhanh-iframe iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

/* Like Share */
.social-plugin {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
    margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: .875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
    text-align: center;
}

.pagination-ajax a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px 3px 3px;
    width: 35px;
    height: 35px;
    line-height: 33px;
    color: #666 !important;
    border: 1px solid #e6e6e6;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #ffffff;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
    color: #ffffff !important;
    border-color: var(--main-color);
	background: rgb(248,242,124);
	background: linear-gradient(90deg, rgba(248,242,124,1) 0%, rgba(222,166,60,1) 100%);
}

.pagination-ajax a.first,
.pagination-ajax a.last,
.pagination-ajax a.prev,
.pagination-ajax a.next {
    text-indent: -9999px;
    position: relative;
    background-color: #ffffff !important;
}

.pagination-ajax a.first:before,
.pagination-ajax a.last:before,
.pagination-ajax a.prev:before,
.pagination-ajax a.next:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}

.pagination-ajax a.first:before {
    background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
    background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
    background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
    background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-body {
    padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
    display: none;
}

/* Scroll Top */
.scrollToTop {
    width: 41px;
    height: 41px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 65px;
    right: 25px;
    display: none;
    z-index: 10;
    cursor: pointer;
}

/* Text Hide */
.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

/* Transition All */
.transition {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;

}

.danhmuc-item {
    background: #fff !important;
}

.danhmuc-item li {
    padding: 0;
}

.danhmuc-item li a:hover {
    color: var(--main-color) !important;
}

/* Scale IMG */
.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.scale-img:hover>img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
    -webkit-animation-name: blink;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blink;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blink;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

/* Button Frame */
.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    display: flex;
    display: -ms-flex;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1E6950;
    position: relative;
    z-index: 1;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: .1;
    border-color: #1E6950;
    opacity: .5;
}

.btn-frame .zoomIn {
    animation-name: zoomIn;
}

.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: .4;
}

.btn-frame .pulse {
    animation-name: pulse;
}

/* Zalo */
.btn-zalo {
    bottom: 315px;
}

/* Phone */
.btn-phone {
    bottom: 230px;
}

/* Messenger */
.js-facebook-messenger-container.closed,
.js-facebook-messenger-tooltip.closed {
    display: none !important
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-tooltip {
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    z-index: 1.0E+30
}

.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px
}

.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-box {
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: 150px;
    right: 17px;
    width: 56px;
    height: 56px;
    text-align: center;
    background: #1E6950;
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3)
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 32px;
    height: 33px;
    position: absolute;
    top: 13px;
    left: 12px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
    transform: rotate(-45deg)
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 19px;
    left: 19px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-container {
    position: fixed;
    opacity: 0;
    transform: translateY(50px);
    bottom: 110px;
    right: 90px;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -o-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out
}

.js-facebook-messenger-top-header {
    width: 220px
}

.js-facebook-messenger-top-header {
    color: #ffffff;
    background: #1E6950;
}

.js-facebook-messenger-top-header {
    display: block;
    position: relative;
    width: 220px;
    background: #1E6950;
    color: #ffffff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-top-header {
    color: #ffffff;
    background: #1E6950;
}

.js-facebook-messenger-top-header {
    width: 220px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-container.open {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1
}


/* Toolbar */
.toolbar {
    display: none;
    background: var(--main-color);
    width: 100%;
    padding: 3vw;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    height: auto;
    left: 0px;
}

.toolbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
}

.toolbar ul li {
    text-align: center;
    width: 25%;
}

.toolbar ul li a {
    display: block;
    width: 100%;
    cursor: pointer;
}

.toolbar ul li a img {
    height: 6vw;
    width: auto;
}

.toolbar ul li a span {
    font-weight: 400;
    color: #ffffff;
    font-size: 3.5vw;
    display: none;
}


/* Plugbar */
.plugbar {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #eae6e6;
    width: 100%;
    right: 0;
    max-width: 767px;
    margin: 0 auto;
    background: #ffffff;
    padding: 9px 10px 10px 7px;
    z-index: 10;
}

.plugbar ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plugbar ul li {
    width: 20%;
    float: left;
}

.plugbar ul li a {
    display: block;
    color: #696969;
    font-size: 12px;
    text-align: center;
    position: relative;
}

.plugbar ul li a i {
    font-size: 20px;
    color: #696969;
}

.plugbar ul li a span {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -40px;
    left: calc(50% - 50px/2);
    font-size: 14px;
    display: block;
    border: 1px solid rgba(234, 230, 230, 0.5);
    border-radius: 100%;
}

/* Combo Phone */
.support-online {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 0px;
}

.support-online a {
    position: relative;
    margin: 20px 10px;
    text-align: left;
    width: 40px;
    height: 40px;
}

.support-online i {
    width: 40px;
    height: 40px;
    background: #43a1f3;
    color: #ffffff;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    position: relative;
    z-index: 999;
}

.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: rgb(103, 182, 52);
    padding: 9px;
    display: none;
    width: 180px;
    margin-left: 10px;
    position: absolute;
    color: #ffffff;
    z-index: 999;
    top: 0px;
    left: 40px;
    transition: all 0.2s ease-in-out 0s;
    -moz-animation: headerAnimation 0.7s 1;
    -webkit-animation: headerAnimation 0.7s 1;
    -o-animation: headerAnimation 0.7s 1;
    animation: headerAnimation 0.7s 1;
}

.support-online a:hover span {
    display: block;
}

.support-online a {
    display: block;
}

.support-online a span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(103, 182, 52) transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px;
}

.support-online .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: .75;
    right: -10px;
}

.support-online .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: .1;
    border-color: #0089B9;
    opacity: .5;
}

.support-online .support-online .btn-support {
    cursor: pointer;
}

.support-online .mes i {
    background: orange;
}

.support-online .sms i {
    background: red;
}

.support-online .call-now i {
    background: green;
}

/* Phone Switch */
.widget-mobile {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 9999999;
}

#my-phone-circle {
    position: relative;
    width: 50px !important;
    height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
    content: '\f00d';
}

.wcircle-icon {
    background: #1282fc;
    border-radius: 50%;
    display: flex !important;
    display: -ms-flex !important;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative !important;
}

.wcircle-icon:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background: rgba(18, 130, 252, .5);
    border: 1px solid #ffffff;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    -moz-animation: pulse 1s infinite ease-in-out;
    -ms-animation: pulse 1s infinite ease-in-out;
    -o-animation: pulse 1s infinite ease-in-out;
    animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon:after {
    position: absolute;
    content: '';
    width: 80px;
    height: 80px;
    background: rgba(18, 130, 252, .5);
    border-radius: 50%;
    left: -15px;
    top: -15px;
    -webkit-animation: zoomIn 2s infinite ease-in-out;
    -moz-animation: zoomIn 2s infinite ease-in-out;
    -ms-animation: zoomIn 2s infinite ease-in-out;
    -o-animation: zoomIn 2s infinite ease-in-out;
    animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
    position: absolute !important;
    left: 0;
    top: 0;
    display: none;
}

.wcircle-menu-item {
    width: 50px;
    height: 50px;
    background: #1282fc;
    border-radius: 50%;
    display: flex;
    display: -ms-flex;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wcircle-menu-item img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}

.wcircle-menu-item i,
.wcircle-icon i {
    font-size: 25px;
    color: #ffffff;
    position: relative;
    z-index: 9999;
}

.shake-anim {
    -webkit-animation: shake-anim 1s infinite ease-in-out;
    -moz-animation: shake-anim 1s infinite ease-in-out;
    -ms-animation: shake-anim 1s infinite ease-in-out;
    -o-animation: shake-anim 1s infinite ease-in-out;
    animation: shake-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

@-moz-keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes shake-anim {

    0%,
    100%,
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
}

@-o-keyframes shake-anim {

    0%,
    100%,
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
}



/* ********************************************* web ***************************************************/
/* header */
.header-container {
    background-size: cover;

}

.header-top .wrap-content {
    display: flex;
    justify-content: space-between;
}

.header-top {
    background: #4B4B4B;
    color: #fff;
    padding: 10px 0;
}

.address p {
    background: url(../images/main/diachi.png) no-repeat left;
    padding-left: 22px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;

}

.mail p {
    background: url(../images/main/mail.png) no-repeat left;
    padding-left: 22px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}

.header-bottom .wrap-content {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
}

.header-bottom {
	background:#1E6950;
}

.logo {
    width: 10%;
}

.banner {
    width: calc(100% - 45%);
    text-align: center;
}


.hotline-container {
    width: calc(100% - 84%);
}



.hotline {
    background: url(../images/main/hotline.png) no-repeat left;
    padding-left: 60px;
    height: 50px;
}

.hotline span {
    font-size: 15px;
    font-weight: 600;
}

.hotline p {
    font-size: 18px;
    font-weight: 600;
    color: #FF0000;
    margin-bottom: 0;
}



/* content-ck */
.content-ck {
    line-height: 2em;
}

.content-ck * {
    max-width: 100% !important;
}

.content-ck img {
    max-width: 100% !important;
    height: auto !important;
}

.content-ck iframe {
    max-width: 100% !important;
}

.content-ck table {
    margin: 0px auto;
}

.content-ck ul,
.content-ck ol {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.content-ck p {
    margin-bottom: 0px;
}

/* Menu */

.menu {
	background: rgb(248,242,124);
	background: linear-gradient(90deg, rgba(248,242,124,1) 0%, rgba(222,166,60,1) 100%);
    position: relative;
    z-index: 10;
    min-width: 1366px;
}

.menu ul {
    width: 100%;
    padding: 0px;
    margin: auto;
    list-style: none;
}

.menu ul li {
    position: relative;
    z-index: 1;
}

.menu ul li.line {
    width: 1px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.1);
}

.menu ul li a {
    display: block;
    position: relative;
    font-size: 15px;
    color: #ffffff;
    padding: 12px 12px 11px 12px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none !important;
}

.menu ul li a.has-child {
    padding-right: 16px;
    margin-right: 8px;
}

.menu ul li a.has-child:after {
    content: '';
    position: absolute;
    bottom: calc(50% - 4px/2);
    right: 5px;
    width: 5px;
    height: 5px;
    border: 1px solid #fafafa;
    border-top: 0px;
    border-left: 0px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu ul li a.active,
.menu ul li:hover>a {
    color: #fbff03;
}

.menu ul li:hover>a.has-child:after,
.menu ul li a.active.has-child:after {}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    margin-top: -5px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #fafafa;
    border-radius: 0.25rem;
    -webkit-box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.menu ul li:hover>ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all .7s;
}

.menu ul li ul li {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.menu ul li ul li a {
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    color: #313131;
    border-bottom: 1px solid #ececec;
}

.menu ul li ul li:last-child>a {
    border-bottom: 0px;
}

.menu ul li ul li a.has-child {
    margin-right: 0px;
}

.menu ul li ul li a.has-child:after {
    border-color: #313131;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu ul li ul li a.active,
.menu ul li ul li:hover>a {
    color: var(--color-red);
}

.menu ul li ul li:hover>a.has-child:after,
.menu ul li ul li a.active.has-child:after {
    border-color: var(--color-red);
}

.menu ul li ul li a {
    padding: 10px 0px 9px 0px;
    text-transform: capitalize;
}

.menu ul li ul li ul {
    top: -0.75rem;
    left: 100%;
    margin-top: 0px;
}

/* tiêu chí */
.tieuchi-container {
    padding: 55px 0;
    background-color: #F2F2F2;
}

.tieuchi-title {
    text-align: center;
}

.tieuchi-title span {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.tieuchi-title p {
    font-size: 30px;
    font-weight: 500;
    color: #1E6950;
    margin-bottom: 20px;
}

.tieuchi-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.tieuchi-item {
    width: 18%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tieuchi-img-fr {
    border: 2px solid #1E6950;
    padding: 5px;
    border-radius: 50%;
}

.tieuchi-img img {
    border: 1px solid #1E6950;
    border-radius: 50%;
    width: 100%;
}

.tieuchi-name p {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 0;
}

.col-reserve {
    flex-direction: column-reverse;
    margin-bottom: -50px;
}

.muiten1,
.muiten2,
.muiten3 {
    position: relative;
}

.muiten1::after {
    position: absolute;
    content: '';
    background: url(../images/main/muiten1.png) no-repeat right;
    right: -175px;
    top: 35px;
    width: 170px;
    height: 83px;
}

.muiten2::after {
    position: absolute;
    content: '';
    background: url(../images/main/muiten2.png) no-repeat right;
    right: -130px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 70px;
}

.muiten3::after {
    position: absolute;
    content: '';
    background: url(../images/main/muiten3.png) no-repeat right;
    right: -130px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 70px;
}

/* máy trợ thính */
.trothinh-container {
    padding-top: 50px;
    padding-bottom: 55px;
}

.trothinh_slick {
    display: none;
    margin: 0 -15px;
}

.trothinh_slick .slick-slide {
    margin: 0 15px;
}

.trothinh-img img {
    width: 100%;
}

.trothinh-img {
    border: 0.5px solid var(--main-color);
}

.trothinh-infor {
    text-align: center;
    padding: 10px 5px;
}

.trothinh-infor p {
    margin-bottom: 5px;
}

.trothinh-infor .text-split {
    -webkit-line-clamp: 1;
}

.trothinh-infor p a {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

.trothinh-infor a {
    font-size: 15px;
    color: var(--color-red);
    cursor: pointer;
}

.trothinh-infor a:hover {
    color: var(--main-color);
}

/* sản phẩm hỗ trợ */
.suckhoe-container {
    padding-bottom: 70px;
}

.suckhoe-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.suckhoe-img img {
    width: 100%;
}

.suckhoe-img {
    border: 0.5px solid var(--main-color);
}

.xemtatca {
    text-align: center;
    margin-top: 20px;
}

.xemtatca a {
    font-size: 18px;
    font-weight: 500;
    padding: 15px 30px;
    background: rgb(248,242,124);
    background: linear-gradient(90deg, rgba(248,242,124,1) 0%, rgba(222,166,60,1) 100%);
    color: #fff;
}

.xemtatca a:hover {

    background-color: var(--color-red);

}

/* tai mũi họng */
.taimuihong-container {
    padding-bottom: 30px;
}

.taimuihong_slick {
    display: none;
    margin: 0 -15px;
}

.taimuihong_slick .slick-slide {
    margin: 0 15px;
}

.taimuihong-infor {
    text-align: center;
    padding: 15px;
}

.taimuihong-name {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.taimuihong-name.text-split {
    -webkit-line-clamp: 1;
}

.taimuihong-name a {
    color: #000;
}

.taimuihong-name a:hover {
    color: var(--main-color);
}

.taimuihong-desc {
    font-size: 15px;
    margin-bottom: 0;
}

.taimuihong-desc.text-split {
    -webkit-line-clamp: 2;
}

/* banner quảng cáo */
.baner-container {
    padding-bottom: 50px;
}

/* hình ảnh khách hàng */
.khachhang-container {
    padding-bottom: 60px;
}

.khachhang_slick {
    display: none;
    margin: 0 -20px;
}

.khachhang_slick .slick-slide {
    margin: 0 20px;
}

/* đăng ký đo thính lực */
.register-container {
    background: url(../images/main/dangky-bg.png);
    background-size: cover;
    padding: 40px 0;


}

.register-container .wrap-content {
    text-align: center;
}

.w-80 {
    width: 82%;
    margin: 0 auto;
}

.white {
    color: #fff !important;

}

.white span {
    color: #fff !important;
    position: relative;
}

.white span::after {
    
}

.white p {
    color: #fff !important;
}

.form-control {
    background: #fff;
}

/* đối tác */
.doitac-container {
    padding-top: 60px;
    padding-bottom: 40px;
}

.doitac_slick {
    display: none;
    margin: 0 -15px;
}

.doitac_slick .slick-slide {
    margin: 0 15px;
}

.doitac-img {
    border: 1px solid #d8d8d8;
}

/* tin tức và sự kiện */
.tintuc-container .pagination-ajax {
    margin-top: 20px;
    margin-bottom: 60px;
}

.tintuc-row {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(1, 1fr);

    grid-gap: 25px
}

.tintuc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tintuc-img {
    width: 35%;
}

.tintuc-img img {
    width: 100%;
}

.tintuc-infor {
    width: calc(100% - 38%);
}

.tintuc-name {
    margin-bottom: 5px;
}

.tintuc-name a {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.tintuc-name a:hover {
    color: var(--color-red);
}

.tintuc-name.text-split {
    -webkit-line-clamp: 1;
}


.tintuc-desc {
    font-size: 15px;
    margin-bottom: 0;
}


.tintuc-desc.text-split {
    -webkit-line-clamp: 4;
}

.reverse {
    flex-direction: row-reverse;
}


/* tiêu đề chính */

.title-main {
    text-align: center;
    margin-bottom: 40px;
}

.title-main span {
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: #111;
    font-weight: 600;
}
.title-main span::before {
	 position: absolute;
    content: '';
    background: url(../images/main/title-main-af.png) no-repeat;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    height: 26px;
    width: 211px;
}
.title-main span::after {
   
	   position: absolute;
    content: '';
    background: url(../images/i_tai.png) no-repeat;
	background-size:contain;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    height: 27px;
    width: 27px;
}

.title-main p {
    margin-top: 20px;
    font-size: 15px;
    margin-bottom: 0;
    color: #333333;
}



/* sản phẩm */
.product-container {
    padding-bottom: 60px;
}


.img-border-radius {
    border-radius: 30px;
}

.item_product {
    width: 100%;
    height: auto;
    position: relative;
}

.item-border {
    border: 1px solid #e7e7e7;
}

.info-product {
    text-align: center;
    margin: 10px 0;
}

.sanpham-nb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product_home{padding: 30px}

.product-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sale-price {
    color: var(--second-color);
    font-size: 15px;
    font-weight: 500;
}

.regular-price {
    color: #333333;
    text-decoration: line-through;
    font-weight: 400;
}

.lienhe {
    color: var(--color-red);
    margin-bottom: 0;
}

.lienhe {
    color: var(--color-red);
    font-size: 15px;
    font-weight: 500;
}

.lienhe a {
    color: var(--second-color);
    font-size: 15;
    font-weight: 500;
}

.lienhe a:hover {
    color: var(--main-color)
}

.sp-name {
    margin-bottom: 5px;
}

.sp-name.text-split {
    -webkit-line-clamp: 1;
}

.sp-name a {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

.sp-name a:hover {
    color: var(--second-color);
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

.view-all a {
    border: 2px var(--main-color) solid;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
}

.view-all a:hover {
    color: var(--color-red);
}

/* Newsletter */
.wrap-newsletter {
    padding: 50px 0px;
    background: #ec2d3f;
}

.newsletter-slogan {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.form-newsletter {
    position: relative;
}

.wrap-item-2 .newsletter-input {
    width: 49%;
}

.newsletter-input input {
    position: relative;
    height: 50px;
}

.newsletter-input.textarea {
    width: 100% !important;
}

.newsletter-button {
    top: 0px;
    right: 0px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    margin: 20px auto;
}

.form-control:focus {
    border-color: var(--main-color);
    /* box-shadow: 0 0 0 0.2rem var(--second-color); */
    background: transparent;
}

.btn-enter {
    padding: 15px 200px;
    background: rgb(248,242,124);
    background: linear-gradient(90deg, rgba(248,242,124,1) 0%, rgba(222,166,60,1) 100%) !important;
}

.btn-enter:hover {
    background-color: var(--second-color) !important;
}

.newsletter-button input[type=submit] {
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    font-size: 17px
}

/* footer */
.footer-container {
    background:#000;
    background-size: cover;
    padding-top: 60px;
}

.page p,
.policy p {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.policy p::after {
    position: absolute;
    content: '';
    background: #fff;
    height: 2px;
    width: 45px;
    left: 0;
    bottom: -8px;
}

.page p::after {
    position: absolute;
    content: '';
    background: #fff;
    height: 2px;
    width: 45px;
    left: 0;
    bottom: -8px;
}

.policy ul {
    padding-left: 0;
}

.policy ul li {
    list-style: none;
    margin-bottom: 20px;
}

.policy ul li a {
    color: #fff;
    position: relative;
    padding-left: 10px;
}
.policy ul li a::before{
    position: absolute;
    content: '';
    background:#fff ;
    width: 3px;
    height: 3px;
    border-radius: 50px;
    left: 0;
    top: 7px;

}

.policy ul li a:hover {
    color: var(--color-red);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
}
.info-footer {
    width: 30%;
}
.policy-container {
    width: 20%;
}

.page {
    width: 20%;
}

.map-ft {
    width: 30%;
    border: 2px solid #fff;
    padding: 8px;
}

.copyright {
    padding: 15px;
    background: rgb(248,242,124);
    background: linear-gradient(90deg, rgba(248,242,124,1) 0%, rgba(222,166,60,1) 100%);
    text-align: center;
}

.copyright p {
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
}
.menufix {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}
/* modal */

.modal-header {
    background-color: var(--main-color);
}

.modal-body {
    background: var(--second-color);
}

.btn-dark {
    border: none !important;
}

.btn-dark:hover {
    background-color: #000 !important;
}

/* select2 */
.select2-ms {
    width: 100% !important;
    height: 50px !important;
}

span#select2-id-cat-container {
    line-height: 40px;
}

span.select2-selection.select2-selection--single {
    height: 50px;
    border-radius: 5px;
}

span.select2-selection__arrow {}

.select2-container--default .select2-selection--single .select2-selection__arrow b {}

.select2-container--default .select2-selection--single {
    border-color: #cecece !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent;
    border-width: unset;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 50px;
}

.select2-container {
    width: 100% !important;
    height: 50px !important;
}

.padding-lr {
    padding: 20px 90px 50px 90px !important;
}

label {
    font-size: 17px;
    font-weight: 500;
}

.title-main-form {
    font-size: 30px;
    text-align: center;
    margin: 20px 0;
}
/****multi-map*****/
.carlton_map_weather {
	width: 100%;
	position: relative;background:#fff;padding:0px 0px;
}
.carlton_map_weather .ten_chinhanh{
	position:absolute;top:40px;left:0px;width:100%;
}
.carlton_map_weather ul {
    list-style: none;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;text-align: right;
    padding: 0px 10px;

}
.carlton_map_weather ul li {

	vertical-align: middle;	

	font-weight: 400;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    padding: 10px 25px;
    background: #000;

    margin-bottom:10px;

    
}
.carlton_map_weather ul li>p{
	font-weight:15px;color:#fff;font-weight:400;margin:0px;
} 	
.carlton_map_weather ul li i{
		color:#0096d5;margin-right:5px;
	}
.carlton_map_weather ul li:hover , .carlton_map_weather ul li.act {
	background:#db1200;color:#fff;
}
.carlton_map_weather ul li:hover p, .carlton_map_weather ul li.act p{
	color:#fff;
}
.carlton_map_weather_tab section {
	overflow: hidden;
}
.carlton_map_weather_tab section iframe {
	width: 100%;
	display: block;
	height: 460px;
}
.carlton_map_weather_tab section {
	display: none;
}
.stickytooltip{box-shadow: 5px 5px 8px #818181; /*shadow for CSS3 capable browsers.*/-webkit-box-shadow: 5px 5px 8px #818181;-moz-box-shadow: 5px 5px 8px #818181;display:none;position:absolute;display:none;border:1px solid #ccc; /*Border around tooltip*/background:white;z-index:3000;padding: 5px;}
.stickytooltip p{margin-bottom: 5px;}
.stickytooltip .name-sticky{font-family: var(--fonttd);}
.stickytooltip .mota_stk{}
.stickytooltip .stickystatus{ /*Style for footer bar within tooltip*/background:black;color:white;padding-top:5px;text-align:center;font:bold 11px Arial;}
/* Responsive */
@media(max-width:1200px) {}

@media(max-width:1025px) {}

@media(max-width:1001px) {}

@media(max-width:940px) {}

@media(max-width:991px) {}

@media(max-width:901px) {}

@media(max-width:810px) {}

@media(max-width:801px) {}

@media(max-width:751px) {}

@media(max-width:701px) {}

@media(max-width:651px) {}

@media(max-width:601px) {}

@media(max-width:550px) {}

@media(max-width:480px) {}

@media(max-width:451px) {}