@charset "UTF-8";

/* Main */
:root {
    --main-color: #faa61b;
    --second-color: #ffcc00;
    --hover-color: #f49037;
    --color-red: #ff0000;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #212529;
    --color-gray: #6c757d;
    --color-white: #fff;
}

body {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

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

a,
input,
textarea {
    outline: none;
    padding: 0px;
}

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

.row-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-5 [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

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

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.none {
    display: none;
}

.hidden-seoh {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden;
}

.wrap-main {
    max-width: 1300px;
    margin: 40px auto;
}

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

.wrap-content {
    margin: 0px auto;
    max-width: 1300px;
}

.container-custom {
    padding: 0px 10px;
    margin: 0px auto;
}

.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: 20px;
}

/* 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, 0.5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
}

.effect-1:hover:after {
    -webkit-animation: shine 0.75s;
    animation: shine 0.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;
}

/**/
.wp-fo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    margin-top: 10px;
}

.wp-fo .note {
    background: red;
    width: calc(100% - 90px);
    text-align: center;
    font-size: 12px;
    border-radius: 30px;
    color: #fff;
    padding: 1px 1px !important;
    min-height: 30px;
    display: flex;
    justify-content: center;
    width: 49%;
    align-items: center;
}

.wp-fo a {
    background: red;
    color: #fff;
    padding: 3px 8px;
    display: flex;
    justify-content: center;
    width: 49%;
    align-items: center;
    font-size: 12px;
    border-radius: 30px;
    min-height: 30px;
}

/* General */
.title-main {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 15px;
    position: relative;
}

.title-main:after {
    content: "";
    position: absolute;
    width: 154px;
    height: 16px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    /* background: url(../images/title-main.png) center center no-repeat; */
}

.title-main span {
    text-transform: uppercase;
    font-family: "Oswald";
    color: #028128;
    font-weight: 700;
    font-size: 35px;
    display: block;
    line-height: 51px;
}

.title-main p {
    color: #333333;
    font-size: 17px;
    margin-bottom: 0px;
    font-family: "helveticaneue";
    color: #1c1c1c;
}

.time-main {
    margin-bottom: 0.75rem;
    color: #999999;
}

.time-main i {
    vertical-align: top;
    margin: 3px 7px 0px 0px;
}

.time-main span {
    vertical-align: top;
    display: inline-block;
}

.share {
    padding: 17px 15px 10px 15px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}

.share b {
    display: block;
    margin-bottom: 5px;
}

.control-owl {
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0px;
    top: calc(50% - 45px / 2);
}

.control-owl button {
    opacity: 0.5;
    top: 0px;
    position: absolute;
    outline: none;
    border: 0px;
    padding: 0px;
    margin: 0px;
    display: block;
    cursor: pointer;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.control-owl button:hover {
    opacity: 1;
}

.control-owl button.owl-prev {
    left: 20px;
}

.control-owl button.owl-next {
    right: 20px;
}

.form-control,
.form-control-plaintext:not(textarea),
.custom-select {
    height: calc(1em + 1.25rem + 8px);
}

.text-sm {
    font-size: 0.875rem !important;
}

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

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

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

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

/* Comment */
.box-info__comment {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}

.comment-title {
    font-size: 18px;
}

.comment-show {
    display: block !important;
}

.comment-point {
    font-size: 47px;
    color: #fe302e;
}

.comment-star {
    font-size: 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0.5rem;
}

.comment-star span {
    display: block;
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    text-align: left;
    white-space: nowrap;
}

.comment-star i {
    display: inline-block;
    margin: 0.1rem;
    color: #b8b8b8;
    text-rendering: auto;
    font-size: 20px;
}

.comment-star i:nth-child(1) {
    margin-left: 0;
}

.comment-star span i {
    color: #ffc120;
}

.comment-progress {
    width: 100%;
    margin-bottom: 0.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.comment-progress:last-child {
    margin-bottom: 0px;
}

.comment-progress .progress {
    height: 12px;
    margin-right: 10px;
    margin-left: 5px;
    width: calc(100% - 90px);
    border-radius: 10px;
}

.comment-progress .progress-bar#has-rate {
    background-color: #23b445;
}

.comment-progress .progress-num {
    font-size: 15px;
    width: 25px;
    text-align: center;
    color: #787878;
}

.comment-progress .progress-total {
    font-weight: 600;
    text-align: left;
    color: #787878;
    width: 50px;
}

.comment-write {
    display: block;
}

.comment-note {
    font-size: 13px;
    color: #0d970d;
    font-weight: 400;
    letter-spacing: 0.1px;
    margin: 5px 0;
}

.review-rating-star {
    font-size: 0;
}

.review-rating-star-icon .fas,
.review-rating-star-icon .fa {
    /* font-weight: 400; */
    font-style: normal;
    display: inline-block;
    margin: 0.1rem;
    font-size: 21px;
    cursor: pointer;
    color: #f0c808;
}

.review-rating-star-icon .fas.star-empty,
.review-rating-star-icon .fa.star-empty {
    color: #dedddc;
}

.review-rating-star-icon .fas.star-not-empty,
.review-rating-star-icon .fa.star-not-empty {
    color: #f0c808;
}

.review-rating-star-icon .fas:nth-child(1),
.review-rating-star-icon .fa:nth-child(1) {
    margin-left: 0;
}

.review-fileuploader {
    padding: 20px 15px;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
    border: 2px dashed #c2cdda;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.review-fileuploader .review-fileuploader-text {
    color: #90a0bc;
}

.review-file-uploader .fileuploader {
    padding: 0px;
    margin: 0px;
    background: transparent;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list {
    margin: 1rem -5px 0 -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list:after {
    display: block;
    content: "";
    clear: both;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item {
    padding: 0px;
    width: calc(100% / 7 - 10px);
    float: left;
    margin: 0 5px 5px 5px;
    border-bottom: 0px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .columns {
    display: block;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail {
    width: auto;
    height: auto;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image {
    height: auto;
    padding: 50% 0;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: none;
    transform: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-title {
    padding: 0px;
    margin-top: 0.5rem;
    text-align: center;
    display: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-actions {
    margin: 0px;
    position: absolute;
    top: 0px;
    right: -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-infos input {
    border: 1px solid #dddddd;
    border-radius: 0.25rem;
}

.review-poster-video-avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.review-poster-video-avatar .avatar-detail {
    width: 95px;
    height: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.review-poster-video-avatar .avatar-detail img {
    max-width: 95px;
    max-height: 95px;
}

#review-content {
    height: 100px;
}

.carousel-comment-media .carousel-control a {
    opacity: 1;
    width: 45px;
    height: 45px;
    top: calc(50% - 45px / 2);
    bottom: inherit;
}

.carousel-comment-media .carousel-control a span {
    display: block;
    cursor: pointer;
    color: #222222;
    width: 45px;
    height: 45px;
    padding: 5px;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.carousel-comment-media .carousel-control a.carousel-control-prev {
    left: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-prev span {
    padding-right: 9px;
}

.carousel-comment-media .carousel-control a.carousel-control-next {
    right: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-next span {
    padding-left: 8px;
}

.carousel-comment-media .carousel-indicators {
    position: static;
    margin: 0 0 1rem 0;
}

.carousel-comment-media .carousel-indicators li {
    width: auto;
    max-width: 60px;
    height: auto;
    text-indent: inherit;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin: 0px 0px 3px 0px;
    border: 2px solid transparent;
    opacity: 1;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.carousel-comment-media .carousel-indicators li.active {
    border-color: #ffc120;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.carousel-comment-media .carousel-inner {
    max-width: 550px;
    -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
    margin: auto;
}

.carousel-comment-media .carousel-inner .carousel-lists .carousel-comment-media-item-video #file-video {
    max-width: 100%;
    width: 100%;
    height: 500px;
    vertical-align: top;
    display: inline-block;
    background-color: #000000;
}

#form-reply {
    display: none;
}

.comment-item {
    margin-bottom: 3rem;
}

.comment-item-poster {
    width: 200px;
    margin-right: 30px;
    text-align: center;
}

.comment-item-letter {
    border-radius: 50%;
    background-color: #d3d2d3;
    color: #919090;
    width: 65px;
    height: 65px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    line-height: 67px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.comment-item-name {
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

.comment-item-posttime {
    font-size: 12px;
    color: #999999;
}

.comment-item-information {
    width: calc(100% - 230px);
}

.comment-item-star {
    float: left;
    margin-right: 10px;
}

.comment-item-star i {
    font-size: 17px;
}

.comment-item-title {
    font-size: 15px;
    font-weight: 500;
}

.comment-replies {
    position: relative;
    background: #f8f9fa;
    border: 1px solid #dfdfdf;
    padding: 1.75rem 1.5rem;
}

.comment-replies:after {
    content: "";
    position: absolute;
}

.comment-replies:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -13px;
    left: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #f8f9fa;
}

.comment-replies:after {
    top: -14px;
    left: 9px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 14px solid #dfdfdf;
}

.comment-replies-item {
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.comment-replies-item:last-child {
    margin-bottom: 0px;
}

.comment-replies-letter {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    line-height: 45px;
    padding-left: 1px;
    font-size: 14px;
    border-radius: 50%;
    background-color: #e5e3e5;
    color: #919090;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    text-align: center;
    margin-top: 0.125rem;
}

.comment-replies-letter.admin {
    position: relative;
    background-color: #189eff;
    text-indent: 9999px;
    overflow: hidden;
}

.comment-replies-letter.admin:before {
    content: "QTV";
    text-indent: 0px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.comment-replies-info {
    width: calc(100% - 55px);
}

.comment-replies-name {
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.comment-replies [class*="btn-load-more-"] {
    border: 0px;
    outline: none;
    padding: 0px;
    background: transparent;
}

.comment-media-play {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.comment-media-play svg {
    -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}

.comment-media-play svg .comment-media-play-stroke-dotted {
    opacity: 0;
    stroke-dasharray: 4, 5;
    stroke-width: 1px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spin 4s infinite linear;
    animation: spin 4s infinite linear;
    -webkit-transition: opacity 1s ease, stroke-width 1s ease;
    transition: opacity 1s ease, stroke-width 1s ease;
}

.comment-media-play svg .comment-media-play-stroke-solid {
    stroke-dashoffset: 0;
    stroke-dasharray: 300;
    stroke-width: 4px;
    -webkit-transition: stroke-dashoffset 1s ease, opacity 1s ease;
    transition: stroke-dashoffset 1s ease, opacity 1s ease;
}

.comment-media-play svg .comment-media-play-icon {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 200ms ease-out;
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

.comment-media-play:hover svg .comment-media-play-stroke-dotted {
    stroke-width: 4px;
    opacity: 1;
}

.comment-media-play:hover svg .comment-media-play-stroke-solid {
    opacity: 0;
    stroke-dashoffset: 300;
}

.comment-media-play:hover svg .comment-media-play-icon {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

/**/
.theme--ofs {
    --brand-primary-color: #d0011b;
    --brand-primary-light-color: rgba(208, 1, 27, 0.08);
}

.kq9\+EV {
    display: flex;
    align-items: center;
    margin-top: 0.625rem;
    padding: 5px 10px;
    background-image: url(../images/flash2.png), linear-gradient(-90deg, #f0451e 9%, #f32424 96%);
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.slick-km2 {
    display: none;
}

.slick-km2.slick-initialized {
    display: block;
}

.spcat_nb {
    position: relative;
    margin: 20px 0;
}

.spcat_nb .wrap-content {
    border: 1px solid #22412d;
    padding: 5px;
}

.title-custom {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding: 10px;
}

.title-custom>a {
    color: #EF5032;
    font-size: 16px;
}

.title-custom .it {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.title-custom .title-spcat {
    margin: 0 10px;
    margin-left: 30px;
}

.title-custom .title-spcat p {
    font-size: 30px;
    background: #EF5032 !important;
    padding: 4px 17px;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.title-custom .it .show-time {
    display: flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.title-custom .it .img {}

.title-custom .it .img img {}

.title-custom .title {
    padding: 0 10px;
    font-size: 14px;
}

.title-custom ul li {
    background: #EF5032 !important;
    padding: 3px 5px !IMPORTANT;
    border-radius: 3px;
}

.title-custom ul li span {
    font-size: 17px !important;
}

.title-custom ul {
    margin: 0;
}

.flash-sale-logo {
    display: inline-block;
}

.flash-sale-logo--white,
.kq9\+EV {
    color: #fff;
}

.qw91wE {
    width: 17px;
    height: 17px;
    margin-left: auto;
    margin-right: 6px;
}

.shopee-svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    position: relative;
}

.cPzZzO {
    text-transform: uppercase;
    margin-right: 0.625rem;
    font-weight: lighter;
}

.shopee-countdown-timer {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: default;
    display: flex;
    color: #000;
    align-items: center;
}

ul.countdown {
    list-style: none;
    padding: 0;
    display: block;
    text-align: center;
    color: #fff;
}

ul.countdown li {
    display: inline-block;
    margin: 0;
    background: #111;
    padding: 0 3px;
}

ul.countdown li span {
    font-size: 15px;
    line-height: 1.5;
}

ul.countdown li.seperator {
    font-size: 12px;
    line-height: 1.8;
    vertical-align: top;
    margin: 0 -2px;
}

ul.countdown li p {
    color: #a7abb1;
    font-size: 14px;
}

.shopee-countdown-timer {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: default;
    display: flex;
    color: #000;
    align-items: center;
}

.info-product .flash {
    background: url(../images/flash.png) no-repeat;
    width: 105px;
    height: 30px;
    position: absolute;
    background-size: cover;
    top: 1px;
    -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;
}

.info-product .comment-star {
    /* margin-top: 5px; */
}

.info-product .comment-star i {
    font-size: 13px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0px 1px 5px 0px #ccc;
}

.header .wrap-content {
    padding: 0px 10px;
}

.info-header {
    margin-bottom: 0px;
}

.info-header i {
    vertical-align: top;
    margin: 3px 5px 0px 0px;
    font-size: 16px;
}

.social-header li {
    width: 30px;
}

.header-bottom .wrap-content {
    padding: 5px 0px;
}

.hotline-header {
    display: inline-block;
    padding-left: 25px;
    background-image: url(../images/hotline.png);
    background-repeat: no-repeat;
    background-position: 0px 1px;
}

.hotline-header p {
    font-weight: bold;
    margin-bottom: -2px;
    text-transform: capitalize;
}

.hotline-header span {
    font-weight: bold;
    color: var(--color-red);
    font-size: 20px;
    display: block;
}

.user-header a {
    color: #ffffff;
    padding-right: 9px;
    margin-right: 7px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}

.user-header a:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8px;
    background-color: #ffffff;
    top: calc(50% - 7px / 2);
    right: 0px;
    opacity: 0.7;
}

.user-header a:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.user-header a:last-child:after {
    display: none;
}

.logo-header {
    width: 215px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9;
    padding: 5px 0;
    background-size: contain;
}

.pd-fix {
    padding-left: 17px !important;
    padding-right: 15px !important;
}

/*Menu*/
.category-menu {
    position: relative;
    width: 250px;
    padding: 0px 10px;
    height: 46px;
    background-color: #07bb42;
    z-index: 99;
    line-height: 45px;
}

.category-menu>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.category-menu>a>span {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "helveticaneuebold";
}

.category-menu>a>img {
    margin-left: 20px;
}

.content-category {
    position: absolute;
    left: 0px;
    top: calc(100% + 1px);
    width: 100%;
    border-top: none;
    background: #eaeaeb;
    max-height: 430px;
    -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 0.5s;
    border: 1px solid #cacaca;
    border-top: none;
}

.menu.active .content-category {
    height: 430px;
    -webkit-transform: perspective(600px) rotateX(0) !important;
    transform: perspective(600px) rotateX(0) !important;
    -webkit-transform-origin: 0 0 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.ul-category {
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ul-category::-webkit-scrollbar {
    width: 5px;
}

.ul-category::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.ul-category::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.right-menu {
    width: calc(100% - 250px);
}

.li-category>a {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 10px 12px 12px;
    color: #1c1c1c;
    font-family: "HelveticaNeueMedium";
    border-bottom: 1px solid #bbbbbb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    text-decoration: none;
}

.li-category>a>img {
    margin-right: 10px;
}

.li-category>a>span {
    flex: 1 auto;
}

.li-category>a i {
    margin-left: 5px;
}

.li-category>a:hover {
    color: var(--main-color);
}

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

.ul-category-2 {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    position: absolute;
    left: calc(100% + 0px);
    top: 0px;
    width: 932px;
    background: #eaeaeb;
    min-height: 100%;
    z-index: 9;
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 10%);
    -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 0.5s;
}

.li-category-2 {
    width: 25%;
    padding: 0px 10px;
}

.li-category-2:last-child {
    margin-bottom: 0px;
}

.li-category-2:last-child a {
    border-bottom: none;
}

.li-category-2>a {
    display: block;
    padding: 12px 10px;
    font-size: 14px;
    text-transform: capitalize;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px dashed #cacaca;
    line-height: 20px;
}

.li-category-2>a:hover {
    color: var;
}

.li-category-3 {
    height: unset;
    line-height: unset;
    display: block;
    margin: 8px 0;
}

.li-category-3 a {
    display: block;
    padding: 1px 10px;
    font-size: 14px;
    color: #333;
    line-height: normal;
    height: unset;
}

.li-category-3 a:hover {
    color: var(--main-color);
}

.category-menu:hover .content-category {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.7s;
}

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

/* Menu */
.menu {
    background: #038128;
    z-index: 999;
    position: relative;
}

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

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

.menu ul li a {
    display: block;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 16px;
    color: #fff;
    padding: 12px 7px;
    line-height: 21px;
}

.menu>.wrap-content>.right-menu>ul {
    width: 100%;
}

.menu>.wrap-content>.right-menu>ul>li {
    position: relative;
    flex-grow: 1;
}

.menu>.wrap-content>.right-menu>ul>li.line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -51%);
    width: 2px;
    height: 45px;
    /* background: url(../images/line.png); */
}

.menu>.wrap-content>.right-menu>ul>li:first-child {
    background: none;
}

.menu>.wrap-content>.right-menu>ul>li>a {
    text-align: center;
    text-transform: capitalize;
    font-family: "HelveticaNeueMedium";
}

.menu>.wrap-content>.right-menu>ul>li>a i {
    margin-left: 10px;
}

.menu ul li a.active,
.menu ul li:hover>a {
    color: #ffcc13;
    text-decoration: none;
}

.menu ul li ul {
    position: absolute;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    -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 0.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 0.7s;
}

.menu ul li ul li a {
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.menu ul li ul li a {
    font-size: 14px;
    padding: 10px 15px;
    color: #1f1f1f;
}

.menu ul li ul li a:hover {
    color: #000 !important;
}

.menu ul li ul li ul {
    top: 0px;
    left: 100%;
}

.menu.fixed .content-category {
    -webkit-transform: perspective(600px) rotateX(-90deg) !important;
    transform: perspective(600px) rotateX(-90deg) !important;
}

.menu.fixed .category-menu:hover .content-category {
    -webkit-transform: perspective(600px) rotateX(0) !important;
    transform: perspective(600px) rotateX(0) !important;
}

.fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}

.fixed .logo-header {
    width: 147px;
    height: 100px;
}

.fixed .logo-header img {
    max-height: 60px;
}

.social-header a {
    margin-left: 10px;
}

/* Search */
.search {
    min-width: 400px;
    background: #ffffff;
    margin-left: 10px;
    border: 1px solid #028128;
    height: 42px;
    padding: 4px;
    border-radius: 4px;
}

.search p {
    float: left;
    width: 32px;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: #f8f3f3;
    font-size: 16px;
    background: #028128;
    border-radius: 4px;
}

.search input {
    width: calc(100% - 32px);
    height: 32px;
    float: left;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
    text-indent: 10px;
    font-size: 12px;
}

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

.search input:-moz-placeholder {
    color: #737373;
}

.search input::-moz-placeholder {
    color: #737373;
}

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

/* Mmenu */
.menu-res {
    display: none;
    /* height: 60px; */
    z-index: 10;
    background: #0f776bc9;
    position: sticky;
    top: 0;
    line-height: normal;
}

.menu-bar-res-top {
    display: grid !important;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 10px;
    align-content: center;
    /* justify-content: space-between; */
    /* align-items: center; */
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    place-items: center;
    padding: 5px 0;
}

.menu-bar-res {
    height: 60px;
    padding: 0px 10px;
    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: none;
    width: 40px;
    height: 23px;
    position: relative;
    margin-left: 10px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    background: #f6f2f2;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0px;
}

#hamburger:before {
    top: 0px;
}

#hamburger span {
    top: 10px;
}

#hamburger:after {
    top: 20px;
}

#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 .icon-search {
    width: 55px;
    height: 55px;
    cursor: pointer;
    text-align: center;
    line-height: 55px;
    color: #f7f4f4;
    font-size: 20px;
    margin: 0px;
}

.search-res .icon-search.active {
    color: var(--color-red);
    background: #ffffff;
    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(--color-red);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
    z-index: 100;
}

.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(--color-red);
    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: #000;
    padding: 0px 10px 0px 5px;
}

.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;
    width: 100%;
    margin-top: 14px;
}

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

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

.control-slideshow {
    opacity: 0;
}

.slideshow-info {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 850px;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 80%;
}

.slideshow-info span {
    display: block;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 45px;
}

.slideshow-info p {
    display: block;
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
}

.slideshow-info a {
    display: inline-block;
    width: 206px;
    line-height: 47px;
    text-align: center;
    color: #fff;
    background: #019050;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 30px;
}

.slideshow-info a:hover {
    color: #fff;
    background: #ff0000;
}

/* Partner */
.wrap-partner {
    padding: 0px 15px;
}

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

.partner {
    display: block;
    max-width: 175px;
    margin: 0px auto;
}

.wrap-partner .title-thuonghieu span {
    font-weight: 700;
    font-size: 21px;
    color: #ffcc00;
    text-transform: uppercase;
}

.wrap-partner .title-thuonghieu {
    padding-bottom: 15px;
}

/* Breadcrumb */
.breadCrumbs {
    background-color: #eee;
    margin-bottom: 20px;
}

.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 */
.row-video {
    margin: 0px -10px;
}

.col-video {
    padding: 0px 10px;
}

.video {
    cursor: pointer;
    margin-bottom: 20px;
}

.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 */
.row-album {
    margin: 0px -10px;
}

.col-album {
    padding: 0px 10px;
}

.album {
    cursor: pointer;
    margin-bottom: 20px;
}

.album-image {
    margin-bottom: 0.75rem;
}

.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 */
.row-product {
    margin: 0px -13.5px;
}

.col-product {
    padding: 0px 13.5px;
}

.box-product {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.pic-product {
    border-radius: 5px;
    position: relative;
}

.pic-product::after {
    position: absolute;
    left: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    content: "";
    opacity: 0;
    transition: 0.7s;
    pointer-events: none;
}

.pic-product img {
    width: 100%;
}

.box-product:hover .pic-product::after {
    opacity: 1;
}

.name-product {
    font-size: 18px;
    margin-top: 17px;
    text-align: center;
    margin-bottom: 6px;
}

.name-product a {
    font-size: 16px;
    color: #028128;
    text-transform: capitalize;
    text-align: left;
    font-family: "helveticaneuebold";
    line-height: 20px;
    height: 40px;
}

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

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

.price-product {
    margin-bottom: 0px;
    text-align: left;
}

.price-product span {
    display: inline-block;
}

.price-new {
    font-size: 16px;
    font-family: "helveticaneuebold";
    line-height: 20px;
    color: #ff0000;
}

.price-old {
    font-size: 13px;
    color: #cacaca;
    font-family: "HelveticaNeueMedium";
    text-decoration: line-through;
    margin-bottom: 0;
    margin-left: 5px;
    display: inline-block;
}

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

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

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

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

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

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

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

/* Product Detail */
.info-setting {
    margin-top: 15px;
    position: relative;
    width: 100%;
}

.info-setting .title {
    margin-bottom: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
}

.info-setting .list-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.info-setting .list-info .item {
    width: 100%;
    text-align: left;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.info-setting .list-info .item a {
    width: 100%;
    display: flex;
    color: #333;
    font-size: 13px;
    align-items: center;
    text-decoration: none !important;
    word-break: break-word;
}

.info-setting .list-info img {
    width: 35px;
    margin-right: 7px;
}

.grid-pro-detail {
    margin-bottom: 3rem;
}

.left-pro-detail .fast_ship {
    right: 9px;
}

.left-pro-detail {
    position: relative;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}

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

.right-pro-detail .comment-star span {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    pointer-events: none;
    /* ⭐ Cho phép click xuyên qua */
}

.comment-star span i {
    color: #f39c12;
}

.gallery-thumb-pro {
    position: relative;
    /* margin-top: 10px; */
    width: 80px;
    /* padding: 20px 0; */
}

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

.control-pro-detail button {
    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;
}

.group-attrs .product-attr-option,
.group-attrs .thumb-pro-detail {
    border: 2px solid #bbb8b8;
    border-radius: 7px;
    transition: 0.3s ease;
}

.group-attrs .product-attr-option:hover,
.group-attrs .thumb-pro-detail:hover,
.group-attrs .product-attr-option.active,
.group-attrs .thumb-pro-detail.active {
    background: #067f71;
    color: #fff;
    text-decoration: none;
}

.group-attrs .title span {
    color: red;
}

.group-attrs .title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.group-attrs .product-attr-option,
.thumb-pro-detail {
    color: #333;
    display: block !important;
    border: 1px solid #e3e2e2;
    padding: 3px 7px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ffffff;
    font-size: 10px;
    margin-right: 3px;
    margin: 2px 0;
}

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

.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;
    color: #e70000;
}

span#comment {
    display: inline-block;
    color: #2196F3;
    cursor: pointer;
    font-size: 14px;
    text-transform: capitalize;
    margin-left: 20px;
}

.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(--color-red);
}

.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;
    color: #000;
}

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

/* News */
.news {
    margin-bottom: 2rem;
}

.news-name {
    margin-bottom: 0.5rem;
}

.news-name a {
    color: #333;
    font-size: 16px;
}

.news-name a.text-split {
    -webkit-line-clamp: 2;
}

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

.news-time {
    color: #84878a;
    margin-bottom: 0.25rem;
}

.news-desc {
    color: #333333;
    margin-top: 5px;
    line-height: 22px;
}

.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(--color-red);
}

/* 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;
}

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

.newsletter-input {
    position: relative;
}

.newsletter-button {
    /* margin-top:5px; */
}

.newsletter-button input[type="submit"] {
    text-transform: uppercase;
    font-weight: 500;
}

/* Footer */
.footer {
    margin-top: 20px;
    position: relative;
}

.footer-article {
    padding: 45px 0px;
    background: url(../images/bg-ft.png) center center no-repeat;
    background-size: cover;
}

.footer-news:nth-child(1) {
    width: 22%;
    text-align: center;
}

.footer-news:nth-child(2) {
    width: 26%;
}

.footer-news:nth-child(3) {
    width: 19%;
}

.footer-news:nth-child(4) {
    width: 26%;
}

.footer-company {
    text-transform: uppercase;
    display: inline-block;
    background: linear-gradient(to right, #ecb429, #fae95b, #ecb429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 18px;
    position: relative;
}

.footer-title::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 3px;
    background: #e7c558;
}

.footer-info {
    color: #000;
    font-size: 15px;
}

.footer-info span {}

.footer-news:nth-child(1) .footer-title {
    padding-bottom: 0px;
    margin-bottom: 10px;
}

.footer-news:nth-child(1) .footer-title::after {
    display: none;
}

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

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

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

.footer-ul li a {
    color: #fff;
    font-size: 14px;
}

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

.time-open {
    padding-left: 57px;
    background: url(../images/open.png) left center no-repeat;
    margin-top: 20px;
}

.time-open p {
    color: #000;
    font-size: 15px;
    margin-bottom: 5px;
}

.time-open span {
    color: #000;
    font-size: 15px;
}

.footer-tags {
    background: #eee;
}

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

.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;
}

.footer-powered {
    color: #ffffff;
    background: #028128;
}

.footer-powered .wrap-content {
    padding: 18px 0px;
}

.footer-copyright {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.footer-copyright span {
    /* color: #019050; */
}

.footer-statistic {
    color: #fff;
    font-size: 13px;
}

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

.footer-statistic span strong {
    padding-right: 10px;
    font-weight: normal;
    color: #fff;
}

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

.social-footer {
    margin-top: 15px;
}

.social-footer p {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.social-footer a {
    margin-right: 5px;
}

#footer-map {
    position: relative;
    height: 228px;
}

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

.frm-contact-footer .contact-input {
    margin-bottom: 30px;
}

.frm-contact-footer input {
    width: 100%;
    background: none;
    color: #fff;
}

.frm-contact-footer textarea {
    height: 60px;
    width: 100%;
    background: none;
    display: block;
}

.frm-contact-footer input::placeholder,
.frm-contact-footer textarea::placeholder {
    color: #ffffff;
}

.frm-contact-footer .form-row {
    justify-content: space-between;
    margin: 0px;
}

.frm-contact-footer .form-row .contact-input {
    width: 47%;
}

.frm-contact-footer button {
    width: 227px;
    height: 46px;
    background: #019050;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    border: none;
    outline: none;
}

.frm-contact-footer button:hover {
    color: #fff;
    background: #ff0000;
}

/* Like Share */
.social-plugin {
    display: flex;
    justify-content: flex-start;
    margin-top: 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: #000;
    font-size: 0.875rem;
}

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

/* Paging Ajax */
.pagination-ajax {
    text-align: center;
    margin: 15px 0;
}

.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-color: var(--main-color);
}

.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;
}

.text-split1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

/* 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;
}

/* 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;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 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: #0065f7;
    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 rgb(2 129 40);
    opacity: 0.1;
    border-color: #028128;
    opacity: 0.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 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: rgb(2 129 40 / 46%);
    opacity: 0.4;
}

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

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

.btn-zalo.btn-frame i {
    background: #028128e0;
}

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

.btn-phone.btn-frame i {
    background: var(--color-red);
}

/* .btn-tiktok {
position: fixed;
bottom: 445px;
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
right: 20px;
z-index: 10;
cursor: pointer;
text-decoration: none !important;
border: 2px solid #fff;
box-shadow: 0 0 2px 2px rgb(0 0 0 / 15%);
}
.btn-lazada {
position: fixed;
bottom: 374px;
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
right: 20px;
z-index: 10;
cursor: pointer;
text-decoration: none !important;
border: 2px solid #fff;
box-shadow: 0 0 2px 2px rgb(0 0 0 / 15%);
}
.btn-tiktok img,
.btn-lazada img {
width: 100%;
height: 100%;
object-fit: cover;
background-color: #fff;
}
.btn-shoppe {
position: fixed;
bottom: 304px;
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
right: 20px;
z-index: 10;
cursor: pointer;
text-decoration: none !important;
border: 2px solid #fff;
box-shadow: 0 0 2px 2px rgb(0 0 0 / 15%);
}
.btn-shoppe img {
width: 100%;
height: 100%;
object-fit: cover;
background-color: #fff;
} */
/* 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: 1e30;
}

.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;
    display: none;
}

.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: #0065f7;
    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: var(--main-color);
}

.js-facebook-messenger-top-header {
    display: block;
    position: relative;
    width: 220px;
    background: var(--main-color);
    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: var(--main-color);
}

.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;
}

/* Cart Fix */
.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 390px;
    z-index: 10;
    background: #4b4f56;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-fixed i {
    font-size: 20px;
}

.cart-fixed span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #ffffff;
    width: 25px;
    height: 25px;
    background: var(--color-red);
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
}

/* Toolbar */
.toolbar {
    background: var(--color-red);
    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;
}

/* Fixbar */
.fixbar {
    bottom: 0;
    display: block;
    background: #f0eff4;
    border-top: 1px solid #ddd;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    margin: 0;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 50px;
}

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

.fixbar ul li {
    display: inline-block;
    margin: 0 auto 10px;
    text-align: center;
    width: 25%;
    float: left;
}

.fixbar .icon-cart-mobile,
.fixbar .icon-cart-new,
.fixbar .icon-home-new,
.fixbar .icon-hotdeal-new {
    width: 20px;
    height: 20px;
    display: block;
    margin: 8px auto 0;
}

.fixbar .icon-cart-mobile {
    background: url(../images/cart-mobile.png) no-repeat;
}

.cart-total-header-mobile {
    font-size: 10px;
    position: absolute;
    background: red;
    color: #fff !important;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    line-height: 15px;
    top: 5px;
    margin-left: 5px;
}

.fixbar ul li a {
    font-size: 11px;
    text-decoration: none;
    color: #333;
}

.fixbar ul li a i {
    font-size: 20px;
}

/* 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 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.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: 0.1;
    border-color: #0089b9;
    opacity: 0.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, 0.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, 0.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);
    }
}

.slogan-nav {
    padding: 10px 0;
}

.slogan-nav span {
    font-size: 18px;
    text-transform: uppercase;
    color: #ffcc00;
    font-weight: 600;
}

.slogan-nav p {
    font-size: 15px;
    color: #000;
    line-height: 24px;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
}

.wrap-list {
    margin-bottom: 65px;
}

.box-list {
    margin-bottom: 1px;
}

.img-list {
    border-radius: 3px 3px 0px 0px;
    display: block;
    overflow: hidden;
}

.info-list {
    border: 1px solid #e5e5e5;
    padding: 20px 20px 30px;
    border-top: none;
    border-radius: 0px 0px 3px 3px;
}

.info-list h2 {
    font-size: 21px;
    margin-bottom: 10px;
}

.info-list h2 a {
    color: #1c1c1c;
    font-size: 18px;
    font-weight: 700;
}

.info-list h2 a:hover {
    color: #019050;
}

.info-list p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #383838;
    line-height: 1.7;
}

.wrap-about {
    margin-bottom: 80px;
    overflow: hidden;
}

.left-about {
    width: 45.5%;
    padding-top: 20px;
}

.right-about {
    width: 52.4%;
    padding: 58px 52px 0px 0px;
    position: relative;
}

.right-about::after {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 57.5%;
    height: 46%;
    border-radius: 20px;
    background: #e6e6e6;
    content: "";
}

.right-about img {
    z-index: 1;
    position: relative;
    border-radius: 20px;
}

.title-about {
    margin-bottom: 15px;
}

.title-about p {
    color: #363636;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    text-transform: uppercase;
}

.title-about p::before {
    position: absolute;
    right: 100%;
    top: 12px;
    height: 2px;
    width: 85px;
    content: "";
    background: #019050;
}

.title-about p::after {
    position: absolute;
    left: 0px;
    top: 7px;
    height: 11px;
    width: 11px;
    content: "";
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #019050;
}

.title-about h2 {
    color: #019050;
    font-size: 32px;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-weight: 700;
}

.desc-about {
    color: #1c1d1e;
    font-size: 14px;
    margin-bottom: 35px;
}

.readmore-about {
    display: inline-block;
    color: #019050;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #019050;
    width: 174px;
    line-height: 40px;
    border-radius: 30px;
}

.readmore-about:hover {
    color: #fff;
    background: #019050;
}

.wrap-thongso {
    padding: 50px 0px;
    background: url(../images/br_thongso.png);
    background-size: cover;
    margin-bottom: 60px;
}

.row-thongso {
    margin: 0px;
}

.col-thongso {
    padding: 0px;
    border-right: 1px solid #98d1b4;
}

.col-thongso:last-child {
    border-right: none;
}

.box-thongso {
    text-align: center;
    color: #fff;
}

.box-thongso span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
}

.box-thongso p {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}

.wrap-product {
    margin-bottom: 30px;
    padding: 30px 0;
    background: #fafafa;
}

.wrap-banner-contact {
    background: #019050;
}

.wrap-banner-contact .wrap-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 820px;
}

.left-banner-contact {
    width: 205px;
    margin-top: -27px;
}

.right-banner-contact {
    width: calc(100% - 235px);
}

.right-banner-contact span {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 40px;
}

.right-banner-contact p {
    color: #fff;
    font-size: 21px;
    margin-bottom: 15px;
}

.contact-now {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    width: 206px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 30px;
}

.contact-now:hover {
    color: #019050;
    background: #ffffff;
}

.wrap-customer {
    padding: 70px 0px;
    background: #efefef;
    margin-bottom: 50px;
}

.box-customer {
    text-align: center;
}

.info-customer {
    padding: 130px 26px 70px;
    border-radius: 20px 20px 0px 0px;
    position: relative;
    background: url(../images/say.png) center 38px no-repeat, #ffffff;
}

.info-customer::after {
    position: absolute;
    left: 0px;
    top: 100%;
    right: 0px;
    height: 68px;
    background: url(../images/box_customer.png) center top no-repeat;
    background-size: 100% 100%;
    content: "";
}

.box-customer:hover .info-customer {
    background: url(../images/say_active.png) center 38px no-repeat, #01904e;
    color: #fff;
}

.box-customer:hover .info-customer::after {
    background: url(../images/box_customer_active.png) center top no-repeat;
    background-size: 100% 100%;
}

.desc-customer {
    text-align: justify;
    font-size: 14px;
    line-height: 1.7;
}

.desc-customer.text-split {
    -webkit-line-clamp: 5;
}

.name-customer {
    text-align: center;
    margin-top: -33px;
    position: relative;
    z-index: 9;
}

.img-customer {
    border: 4px solid #019050;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
    display: inline-block;
}

.name-customer h3 {
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.name-customer span {
    color: #2c2c2c;
    font-size: 13px;
    display: block;
}

.prev-customer {
    position: absolute;
    left: -40px;
    top: 40%;
    cursor: pointer;
}

.next-customer {
    position: absolute;
    right: -40px;
    top: 40%;
    cursor: pointer;
}

.wrap-video {
    margin-bottom: 50px;
}

.box-video a {
    display: block;
    position: relative;
    text-align: center;
}

.box-video a strong {
    font-weight: normal;
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.box-video a strong::after {
    position: absolute;
    left: calc(50% - 65px / 2);
    top: calc(50% - 65px / 2);
    width: 65px;
    height: 65px;
    background: url(../images/video.png) center center no-repeat;
    background-size: 100% 100%;
    content: "";
}

.box-video a span {
    color: #2c2c2c;
    font-size: 15px;
    display: block;
    margin-top: 13px;
}

.box-video a:hover span {
    color: #019050;
}

.wrap-news {
    margin-bottom: 50px;
    padding: 30px 0;
}

.row-news {
    margin: 0px -16.5px;
}

.col-news {
    padding: 0px 16.5px;
}

.box-news {
    margin-bottom: 30px;
}

.img-news {
    border-radius: 10px;
    margin-bottom: 17px;
    overflow: hidden;
}

.name-news {
    font-size: 18px;
    margin-bottom: 10px;
}

.name-news a {
    color: #028128;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.name-news a:hover {
    color: #01904e;
}

.date-news {
    margin-bottom: 10px;
    color: #019050;
    font-size: 13px;
}

.date-news img {
    padding-bottom: 2px;
    margin-right: 7px;
}

.desc-news {
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

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

/* header */
.box-logo {
    width: 58%;
}

.box-phone-nav {}

.content-phone {
    padding-left: 10px;
}

.content-phone span {
    font-family: "helveticaneuebold";
    font-size: 16px;
    line-height: 24px;
    color: var(--color-red);
}

.content-phone p {
    font-family: "helveticaneuebold";
    font-size: 18px;
    color: #028128;
    margin-bottom: 0;
    line-height: 18px;
}

.cart-header img {}

.cart-header {
    position: relative;
    border: 1px dashed #067f71;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.cart-header span {
    color: #fff;
    background: #028128;
    position: absolute;
    top: -3px;
    width: 15px;
    height: 15px;
    right: -5px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.items-cat-nav {
    margin: 0 10px;
}

.items-cat-nav h3 {
    margin-bottom: 0;
}

.items-cat-nav h3 a {
    font-size: 15px;
    color: #000;
}

.items-cat-nav:hover h3 a {
    color: var(--main-color);
}

/* nav-slide */
.nav-slide {
    background: #cb1d27;
    padding: 3px;
}

.slinav {
    /* display: flex; */
    /* justify-content: space-evenly; */
}

.banner-header h1 {
    font-size: 46px;
    color: #ff0000;
    text-transform: uppercase;
    font-weight: 700;
}

.box-contact {
    display: flex;
}

.h-content {
    padding-left: 15px;
    line-height: 22px;
}

.h-content p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}

.h-content span {
    font-size: 24px;
    font-weight: 700;
    color: #ff0000;
}

.header-contact {
    width: calc(100% - 570px);
}

.banner-header {
    width: 27%;
}

.box-contact:nth-child(2) span {
    font-size: 16px;
    color: #000;
}

.wrap-content-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.pd-fix {
    padding-left: 20px;
    padding-right: 16px;
}

/* slide */
.box-slide {
    display: flex;
    justify-content: end;
    width: 79.5%;
    margin: 0 0 0 auto;
}

/* tieu chi */
.wrap-tc {
    margin: 30px 0;
    padding: 30px 0;
    background: #e9e9e9;
}

.slide-4 {
    margin: 0 -10px;
    display: none;
}

.slide-4.slick-initialized {
    display: block;
}

.slide-4 .slick-slide {
    margin: 0 10px;
}

.tc-items {
    border-radius: 100px;
    padding: 6px;
    background: #067f714f;
}

.img-tc {
    border-radius: 100%;
    overflow: hidden;
    width: 48px;
}

.img-tc img {
    max-width: 48px;
}

.content-tc {
    width: calc(100% - 48px);
    padding-left: 10px;
}

.name-tc,
.content-tc span {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #1c1c1c !important;
    font-family: "HelveticaNeueMedium";
}

.name-tc {
    text-decoration: none !important;
}

.content-tc p {
    font-size: 13px;
    color: #3d2807;
}

.tc-items img {
    transition: all 0.9s ease 0s;
}

.tc-items:hover {
    text-decoration: none;
}

.tc-items:hover img {
    transition-delay: 1s;
    transition: all 0.7s ease 0s;
    transform: rotateY(180deg);
    text-decoration: none;
}

/* banner */
.slide-2 {
    margin: 0 -10px;
}

.slide-2 .slick-slide {
    margin: 0 10px;
}

.wrap-banner {
    margin: 40px 0 20px;
}

.bg-1 {
    background: #f6f6f6;
}

/* product */
.border-pro {
    padding: 7px;
    border: 0.5px solid #e7e7e7;
    background: #fff;
}

.pro-items .box-product {
    margin-bottom: 0;
}

.box-price-flex {
    min-height: 42px;
}

.box-sp {
    background: #028128;
    padding: 4px;
}

.sp-tab {
    justify-content: space-between;
    margin-bottom: 0;
    position: relative;
}

.click-sp {
    font-size: 32px;
    line-height: 47px;
    text-transform: uppercase;
    font-family: "Oswald";
    font-weight: 700;
    /* margin: 0 46px; */
    list-style: none;
    color: #ffa103;
    cursor: pointer;
    width: 46%;
}

.click-sp:first-child {
    text-align: right;
}

.click-sp.active {
    color: #fff;
}

.click-sp:hover {
    color: #fff;
}

.title-tab-sp {
    padding: 8px 0 9px;
    position: relative;
}

.sp-tab::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.pagination-home {
    margin: 10px 0px;
}

.wrap-spnb .box-product {
    margin-bottom: 0;
}

.wrap-spnb {
    padding: 60px 0 30px;
}

.click-sp.fix {
    width: unset;
    text-align: center;
    color: #fff;
    cursor: unset;
}

.box-sp.fix {
    background: #0abb44;
}

.xemthem-fix {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.xemthem-fix a {
    font-size: 16px;
    color: #7c81ff;
    text-transform: capitalize;
    font-family: "helveticaneue";
}

.xemthem-fix a:hover {
    color: #fff;
}

/* sp list */
.box-sp-list {
    margin-bottom: 40px;
}

.box-pro-cat {
    padding: 4px;
    background: #028128;
}

.box-pro-cat.fix {
    background: #0abb43;
}

.box-pro-cat.fix .xemthem-list a {
    font-family: "helveticaneue";
    font-size: 16px;
    color: #fff;
}

.box-pro-cat.fix .xemthem-list a:hover {
    color: #fff;
}

.xemthem-list a:hover {
    color: #fff;
}

.banner-list {
    margin-bottom: 40px;
}

.box-title-cat {
    padding: 6px 7px 7px;
}

.title-list {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.title-list span {
    font-size: 26px;
    line-height: 32px;
    text-transform: uppercase;
    font-family: "Oswald";
    font-weight: 700;
    list-style: none;
    color: #f0f5fb;
}

.xemthem-list {}

.xemthem-list a {
    color: #fff;
    font-size: 16px;
    font-family: "helveticaneue";
}

.xemthem-list i {}

.title-cat {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 2;
}

.title-cat a {
    display: inline-block;
    padding: 8px 6px;
    background: #ffffff;
    margin: 0 5px 5px 5px;
    font-size: 16px;
    color: #1c1c1c;
    text-transform: capitalize;
    border: 2px solid #fff;
    border-radius: 4px;
}

.title-cat a:first-child {
    margin-left: 0;
}

.title-cat a {
    margin-right: 0;
}

.title-cat a:hover {
    background: #000;
    color: #fff;
}

/* y kien khach hang */
.fb-items {
    padding: 23px;
    border: 1px solid #868686;
    border-bottom: 0;
    padding-bottom: 40px;
    margin-bottom: 70px;
    position: relative;
    background: #fff;
}

.fb-items:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #868686;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 1;
}

.khung-fb {
    display: flex;
    margin-bottom: 15px;
}

.fb-photo {}

.desc-fb {
    padding-left: 20px;
    width: calc(100% - 53px);
    margin-top: 10px;
}

.desc-fb span {
    font-size: 17px;
    line-height: 24px;
    color: #131313;
}

.infor-fb {
    display: flex;
    position: absolute;
    left: 10%;
    background: #fff;
    z-index: 2;
    padding: 0 5px;
}

.img-fb {
    padding: 7px 0px 7px 12px;
    position: relative;
}

.img-fb:after {
    content: "";
    position: absolute;
    width: 90%;
    height: 93%;
    border: 1px solid #bbbbbb;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.content-fb {
    padding-left: 15px;
    padding-top: 10px;
}

.content-fb span {
    font-size: 16px;
    font-family: "helveticaneuebold";
    text-transform: uppercase;
    color: #0abb44;
}

.content-fb p {
    margin-bottom: 0;
    font-size: 15px;
    color: #6b6b6b;
}

.wrap-fb {
    width: 49%;
}

/* form-ct */
.form-index {
    display: flex;
    flex-direction: column;
    width: 66.5%;
}

.f-fix {
    display: flex;
    justify-content: space-between;
}

.f-fix p {
    width: 49.5%;
    margin-bottom: 10px;
}

.f-fix input {
    border: 1px solid #9f9fa0;
    background: #9f9f9f90;
    color: #fff;
    height: 51px;
}

.f-fix input::placeholder {
    color: #fff;
    text-transform: uppercase;
}

.f-fix input:focus {
    color: #fff;
    background: #9f9f9f30;
}

.form-index .contact-input {}

.form-index .contact-input textarea {
    border: 1px solid #9f9fa0;
    background: #9f9f9f90;
    color: #fff;
    height: 51px;
}

.form-index .contact-input textarea::placeholder {
    color: #fff;
    text-transform: uppercase;
}

.form-index .contact-input textarea:focus {
    color: #fff;
    background: #9f9f9f30;
}

.form-sub {
    width: 32.92%;
}

.f-fix2 p {}

.f-fix2 p input {}

.form-sub .f-fix p {
    width: 100%;
}

.form-sub .newsletter-button {
    width: 100%;
}

.btn-sub {
    box-shadow: 0;
    outline: 0;
    border: 1px solid #9f9fa0;
    width: 100%;
    height: 51px;
    border-radius: 4px;
    background: #0abb43;
    color: #fff;
    font-size: 16px;
    font-family: "HelveticaNeueMedium";
    text-transform: uppercase;
    line-height: 51px;
    border-style: unset;
}

.btn-sub:hover {
    background: #bf882d;
    color: #000;
}

.box-form-flex {
    display: flex;
    justify-content: space-between;
}

.box-form {
    padding: 30px 0;
    width: 49%;
}

.form-lh {
    max-width: 1200px;
    margin: auto;
}

.wrap-form {
    padding: 30px 0;
    background: url(../images/bg-form.png) center center no-repeat;
    background-size: cover;
}

.wrap-form .title-main p {
    color: #fff;
}

.wrap-form .title-main::after {
    display: none;
}

/* partner */
.wrap-partner {
    padding: 35px 0;
    background: #fff;
    margin-bottom: -11px;
}

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

.partner {
    display: block;
    max-width: 178px;
    margin: 0px auto;
}

.slick-partner {
    margin: 0 -15px;
}

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

.arow-partner {
    position: absolute;
    /* left: 0; */
    top: 50%;
    transform: translateY(-50%);
}

.arow-partner.left {
    right: calc(100% + 10px);
}

.arow-partner.right {
    left: calc(100% + 10px);
}

.arow-partner i {
    color: #c93729;
    font-size: 22px;
    font-weight: 300;
}

/* product */
.box-title {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.box-title .title-sp {
    background: #ff0000;
    width: 220px;
}

.box-title .title-sp span {
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    line-height: 46px;
    padding-left: 5px;
}

.box-title .btn-tablist {
    width: calc(100% - 220px);
    background: #fff;
}

.box-title .btn-tablist span {
    line-height: 46px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 15px;
}

.box-title .btn-tablist span::after {
    content: "/";
    padding-left: 15px;
    color: black;
}

.box-title .btn-tablist span:nth-last-child(2):after {
    content: none;
}

.box-product .item-product {
    display: flex;
}

.box-product .item-product .left-img {
    width: 220px;
    /* height: 100%; */
}

.box-product .item-product .right-img {
    width: calc(100% - 220px);
    padding-left: 20px;
}

.tab-cat.active {
    color: #ffcc00;
}

.tab-cat:hover {
    color: #ffcc00;
    cursor: pointer;
}

.box-product:nth-child(2n + 1) .left-img {
    order: 1;
}

.box-product:nth-child(2n + 1) .right-img {
    padding-right: 20px;
}

.box-product .item-product .left-img img {
    height: 100%;
}

.box-title .btn-tablist a {
    float: right;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    line-height: 46px;
    font-weight: 600;
    text-transform: capitalize;
}

.box-title .btn-tablist a:hover {
    color: #ff0000;
}

/* slider */
.box-slivi {
    display: flex;
}

.box-slivi .nav-video img {
    height: 100%;
}

.left-intro .nav-video img {
    max-height: 333px;
}

.nav-video {
    position: relative;
}

.nav-video::after {
    transform: translate(-50%, -50%);
    content: "";
    position: absolute;
    background: url(../images/playvid.png);
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    cursor: pointer;
}

.nav-video .text-video {
    position: absolute;
    bottom: 0;
    padding-bottom: 15px;
    padding-left: 15px;
}

.nav-video .text-video span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.box-video-nav {
    width: 30.5%;
    position: relative;
    margin-top: 14px;
    margin-left: 15px;
}

.big-v {
    position: relative;
    margin-bottom: 20px;
}

.box-video-nav .slick-list,
.slick-track,
.slick-slide {
    height: 100%;
}

.img-bannershow {
    flex-direction: column;
}

/* pro banner */
.box-banner {
    position: relative;
}

.box-banner .banner-img {
    position: relative;
    display: FLEX;
    align-items: center;
}

.box-banner .text-content-pro {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7%;
    width: 45%;
}

.box-banner .text-content-pro span {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.box-banner .text-content-pro p {
    color: #fff;
    font-size: 18px;
}

/* video - news */
.newshome-normal {
    margin: 10px 0;
}

.pic-newshome-normal {
    position: relative;
}

.pic-newshome-normal span {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #028128;
    padding: 8px 18px;
    color: #f5f5f5;
    font-size: 16px;
}

.info-newshome-normal {
    margin-top: 22px;
}

.info-newshome-normal h3 {}

.info-newshome-normal h3 a {
    color: #028128;
    font-family: "HelveticaNeueMedium";
    font-size: 19px;
    line-height: 23px;
    -webkit-line-clamp: 1;
}

.info-newshome-normal span {
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    -webkit-line-clamp: 2;
}

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

.box-news-slide {
    width: 50%;
}

.box-cauhoi {
    width: 44%;
}

.slide-banner-danhmuc,
.slide-news {
    margin: 0 -10px;
}

.slide-banner-danhmuc .slick-slide,
.slide-news .slick-slide {
    margin: 0 10px;
}

.slide-cauhoi {
    margin: -15px 0;
}

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

.cauhoi-items {
    align-items: center;
}

.name-cauhoi {
    width: calc(100% - 52px);
    padding-left: 15px;
    color: #22412d;
    font-family: "helveticaneuebold";
    line-height: 20px;
    font-size: 16px;
    text-transform: capitalize;
}

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

/* footer */
.social-footer a:first-child {
    margin-left: 0;
}

.hover_sang1 {
    position: relative;
    overflow: hidden;
}

.hover_sang1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: "";
    z-index: 10;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
}

.hover_sang1:hover:before {
    webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
}

.hover_sang2 {
    position: relative;
    overflow: hidden;
}

.hover_sang2:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 10;
    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_sang2:hover:before {
    transition: 1s;
    left: 100%;
}

.mm-navbar {
    background: #ffcc00;
}

/* Brand */
.box2 {
    border: 2px solid #028128;
    padding: 40px;
    position: relative;
    padding-bottom: 20px;
}

.title-box span {
    text-transform: uppercase;
    font-family: "Oswald";
    color: #028128;
    font-weight: 700;
    font-size: 35px;
    display: block;
    line-height: 51px;
}

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

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

.title-box {
    position: absolute;
    top: 0;
    z-index: 2;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background: #fff;
    padding: 0 10px;
}

.box-brand .items {
    margin-bottom: 10px;
    display: block;
}

.brand-index {
    margin-bottom: 35px;
}

.brand-index {
    margin-top: 40px;
    padding: 30px 0;
}

/* pro detail */
.show-product {
    margin-bottom: 30px;
}

.show-doyouknow {
    background: #fff;
    padding: 25px 15px;
}

.title-know {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.title-know:before {
    content: "";
    position: absolute;
    background: #e5e5e5;
    height: 2px;
    width: 30px;
    bottom: 0;
    left: 0;
}

.thugon {
    text-align: center;
}

.thugon a.a-href {
    display: inline-block;
    cursor: pointer;
    color: #d3041e;
    font-size: 16px;
    margin-top: 20px;
}

.content-doyouknow {
    max-height: 140px;
    overflow: hidden;
    transition: 1s;
}

.table-criteria {
    border: 1px solid var(--main-color);
    margin-bottom: 10px;
}

.table-criteria .title {
    color: #000;
    background-color: #ffdf77;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.table-criteria ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.table-criteria .name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 26px;
    text-transform: uppercase;
}

.table-criteria .desc {
    color: #df0000;
    line-height: 16px;
    font-size: 14px;
    font-weight: bold;
    margin: 5px;
}

.table-criteria ul li {
    background: url(../images/check-icon.png) no-repeat;
    padding-left: 30px;
    background-size: 20px;
    background-position: 3px 2px;
}

.hotline-tuvan {
    padding: 10px;
    background: url(../images/tuvan.png) no-repeat top + 10px left + 10px;
    padding-left: 90px;
    padding-bottom: 0;
}

.hotline-tuvan span {
    background-color: #34495e;
    font-size: 15px;
    margin-bottom: 1em;
    text-align: center;
    font-weight: 500;
    padding: 5px 0;
}

.hotline-tuvan span a {
    color: #fff;
}

.technology {
    border: none;
}

.scroll {
    max-height: 430px;
    overflow: auto;
}

.scroll li {
    background: #eaeaeb;
}

.menu .scroll>li:hover>a {
    color: var(--main-color) !important;
}

.scroll li a {
    color: #1c1c1c;
    font-family: "HelveticaNeueMedium";
    font-size: 14px;
    text-transform: capitalize;
}

.scroll::-webkit-scrollbar {
    width: 1px;
}

.scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #ccc;
}

.scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    outline: 2.9px solid #c5c5c5;
}

/* pro detail */
/* Page Product */
.bg-gray {
    background-color: #f3f3f3;
}

.title-pagein span {
    font-weight: 700;
    font-size: 30px;
    color: #000;
    font-family: "Oswald";
    text-transform: capitalize;
}

.name-items-sub {
    margin: 8px 0 5px;
    font-size: 16px;
    font-family: "HelveticaNeueMedium";
    line-height: 18px;
    padding: 0 10px;
    text-transform: capitalize;
    /* font-weight: 500; */
    color: #000;
    display: inline-block;
}

.title-sub-cat {
    font-size: 18px;
    color: #1c1c1c;
    border-left: 4px solid var(--main-color);
    padding-left: 9px;
    line-height: 22px;
    margin-bottom: 20px;
}

.title-pagein {
    margin-bottom: 15px;
}

/* List Cat */
.list-cat ul {
    margin-bottom: 45px !important;
}

.list-cat ul li img {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
    border-radius: 8px;
}

.list-cat ul li a.border-cat {
    display: inline-block;
    padding: 5px;
    border: 1px solid var(--main-color);
    background: #fff;
    border-radius: 8px;
}

.list-cat ul li {
    text-align: center;
    width: 85px;
    max-width: 100px;
}

.list-cat ul li:hover .name-items-sub {
    color: var(--main-color);
}

/* List Brand */
.list-brand ul {
    margin-bottom: 45px !important;
}

.list-brand ul li img {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
    border-radius: 8px;
}

.list-brand ul li {
    text-align: center;
    width: 85px;
    max-width: 100px;
}

.list-brand ul li a.border-cat {
    display: inline-block;
    padding: 5px;
    border: 1px solid var(--main-color);
    background: #fff;
    border-radius: 8px;
}

.list-brand ul li:hover .name-items-sub {
    color: var(--main-color);
}

/*Table Product*/
.title-list-main {
    font-family: "helveticaneuebold";
    text-transform: uppercase;
    font-size: 18px;
    color: #1c1c1c;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 16px;
}

.title-list-main:before {
    content: "";
    position: absolute;
    background: #3037ff;
    width: 30px;
    height: 3px;
    bottom: 7px;
    left: 0;
}

.col-list-sub {
    width: 23%;
}

.col-list-sub ul li a {
    color: #1c1c1c;
    font-size: 16px;
    height: 40px;
    text-transform: capitalize;
}

.col-list-sub ul li {
    padding: 2px 0;
}

.col-list-sub ul li:last-child {
    border-bottom: 0px solid #ebebeb;
}

.col-list-sub ul li a:hover {
    color: #d3041e;
}

.table-product {
    width: calc(100% - 23%);
    margin-left: 30px;
}

.total-product {
    padding: 10px;
    border-bottom: 1px solid #ebebeb;
    background: #fff;
}

.grid-product-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-product-page .box-product {
    margin-bottom: 0;
    background: #fff;
}

.load-more span {
    width: 125px;
    height: 40px;
    display: inline-flex;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    background: #34495e;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
}

.prolist-orther {
    margin-bottom: 25px;
    background: #fff;
    padding: 15px;
    border: 1px solid #ebebeb;
}

.col-filter {
    background: #fff;
    padding: 11px;
    border: 1px solid #ebebeb;
}

.title-filter span {
    font-size: 18px;
    color: #fff;
    display: block;
    background-color: #22412d;
    padding: 7px 10px;
    margin-bottom: 10px;
    font-family: "helveticaneuebold";
}

.col-filte input:checked~.checkmark {
    background-color: #000;
}

/* Customs Radio Button */
.container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid var(--main-color);
    /* border-radius: 50%; */
    transform: translateY(-50%);
}

.container input:checked~.checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked~.checkmark:after {
    display: block;
}

.container .checkmark:after {
    background: url(../images/tick.png) !important;
    background-size: 100% 100% !important;
    width: 100%;
    height: 100%;
}

.filter-sort {
    margin-bottom: 15px;
}

.col-filter {
    margin-bottom: 15px;
}

.advertisepro .items-1 {
    margin-bottom: 15px;
}

/* fix */
.slidefix {
    margin-bottom: 12px;
}

.box-slide-video {
    width: 49%;
}

.box-slide-banner {
    width: 49%;
}

.btn-contact-pro {
    margin: 10px 0;
}

.btn-contact-pro a img {
    width: 20px;
}

.btn-contact-pro a {
    width: 49%;
    display: block;
    background: #067f71;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    max-width: 200px;
    margin-right: 10px;
}

.btn-contact-pro a:first-child i {
    font-size: unset;
}

.btn-contact-pro i {
    font-size: 18px;
    margin-right: 5px;
}

.cart-pro-detail {}

.cart-pro-detail img {
    height: 29px;
}

.cart-pro-detail .addcart {
    background: #028128;
    border: 0px;
    min-width: 200px;
    padding: 6px 10px;
    border-radius: 4px !important;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

.cart-pro-detail .buynow {
    background: #ed0404;
}

.jas-sale-pop {
    background: #fff;
    bottom: -100%;
    left: 20px;
    top: auto !important;
    right: auto;
    padding: 10px 30px 10px 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: all 2s;
    z-index: 100;
    position: fixed;
}

@media (max-width: 480px) {
    .jas-sale-pop {
        left: 10px;
        right: 10px;
        max-width: 300px;
    }

    .jas-sale-pop .jas-sale-pop-content {
        max-width: 180px;
    }
}

.jas-sale-pop .jas-sale-pop-img {
    margin-right: 10px;
    width: 70px;
    float: left;
}

.jas-sale-pop .jas-sale-pop-img img {
    max-height: 70px !important;
}

.jas-sale-pop .jas-sale-pop-content {
    width: calc(100% - 80px);
    float: left;
    display: block;
}

.jas-sale-pop h4,
.jas-sale-pop .h4 {
    color: #000;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 5px;
}

.jas-sale-pop h3,
.jas-sale-pop .h3 {
    margin: 0;
    font-size: 1em;
    max-width: 255px;
    font-weight: 700;
}

.jas-sale-pop h3 a,
.jas-sale-pop .h3 a {
    color: #000;
    margin: 0;
    font-size: 14px;
}

.jas-sale-pop h3:hover a,
.jas-sale-pop .h3:hover a {
    color: #067f71;
    text-decoration: none;
}

.jas-sale-pop .jas-sale-pop-timeago {
    color: #878787;
    font-size: 12px;
}

.jas-sale-pop .pe-7s-close {
    right: 5px;
    top: 0px;
    cursor: pointer;
    position: absolute;
}

.jas-sale-pop .pe-7s-close:before {
    content: "x";
}

.jas-sale-pop.slideUp {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .jas-sale-pop.slideUp {
        bottom: 20px;
    }
}

@media (min-width: 320px) and (max-width:991px) {
    .jas-sale-pop.slideUp {
        bottom: 20px;
    }
}

.jas-sale-pop.middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.jas-sale-pop.flex {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.box-phone {
    padding-left: 45px;
    position: relative;
    margin-right: 20px;
}

.box-phone .img-phone {
    position: absolute;
    left: 0;
}

.box-phone .content-phone {}

.hotline-phone-ring-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility 0.5s;
    left: 0;
    bottom: 0;
    display: block;
}

.hotline-phone-ring-circle {
    width: 85px;
    height: 85px;
    top: 10px;
    left: 10px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #0abb43;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 55px;
    height: 55px;
    top: 25px;
    left: 25px;
    position: absolute;
    background-color: rgb(2 129 40 / 75%);
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.hotline-phone-ring-img-circle {
    background-color: #028128;
    width: 33px;
    height: 33px;
    top: 37px;
    left: 37px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-phone-ring-img-circle .pps-btn-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.hotline-phone-ring-img-circle .pps-btn-img img {
    width: 20px;
    height: 20px;
}

.hotline-bar {
    position: absolute;
    background: rgb(2 129 40 / 72%);
    height: 40px;
    width: 165px;
    line-height: 40px;
    border-radius: 3px;
    padding: 0 10px;
    background-size: 100%;
    cursor: pointer;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    z-index: 9;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px !important;
    /* width: 175px !important; */
    left: 33px;
    bottom: 37px;
}

.hotline-bar>a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    text-indent: 50px;
    display: block;
    letter-spacing: 1px;
    line-height: 40px;
    font-family: Arial;
}

.hotline-bar>a:hover,
.hotline-bar>a:active {
    color: #fff;
}

.fast_ship {
    z-index: 2;
    background: linear-gradient(90deg, #ffd93c45 0%, #ffce04b8 100%);
    padding: 2px 12px 2px 6px;
    z-index: 2;
    font-size: 14px;
    border-radius: 0px 10px 0px 0px;
    top: 5px;
    right: -7px;
    will-change: transform
}

.fast_ship:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #ffce04;
    filter: brightness(0.8);
    border-radius: 0px 10px 10px 0px;
    bottom: -7px;
    right: 0;
    z-index: 1
}

.fast_ship:after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 10px 12.5px 0;
    border-color: transparent #ffd83959 transparent transparent;
}

.fast_ship span {
    font-size: 11px;
    color: #000;
    min-width: 17px;
    text-align: center;
    font-weight: 700;
    font-family: system-ui
}

.fast_ship span:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #ffd93c;
    bottom: -4px;
    right: 0;
    z-index: 0
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

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

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

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

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

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

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

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

.box-brand {
    text-align: center;
}

.slide-brand {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.slide-brand.limit>div:nth-child(n+13) {
    display: none;
}

.btn-view-more {
    border: none;
    background: none;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.box-coupon-enter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 0;
    margin: 20px 0;
    flex-wrap: wrap;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.box-coupon-enter label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    width: 100%;
    margin: 0;
}

.box-coupon-enter input {
    width: calc(100% - 100px);
    padding: 10px;
    border: 1px solid #068173ad;
    border-radius: 5px 0 0 5px;
    height: 46px;
}

.box-coupon-enter button {
    padding: 10px 0px;
    border: 1px solid #068173ad;
    border-radius: 0 5px 5px 0;
    background: #068173ad;
    color: #fff;
    cursor: pointer;
    width: 100px;
}

.box-dkdn {
    width: 160px;
    color: #fff;
    gap: 0 4px;
    position: relative;
}

.box-dkdn a {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding: 6px 6px;
    line-height: 21px;
    font-family: "HelveticaNeueMedium";
    background-color: #0abb43;
    border-radius: 10px;
}

.box-dkdn-logout {}

.box-dkdn-name {

    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 16px;
    color: #fff;
    padding: 12px 0px;
    line-height: 21px;
    font-family: "HelveticaNeueMedium";
}

.box-dkdn-logout {
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background: #068173ad;
    display: none;
}

.box-dkdn-logout a {
    width: 100%;
    font-size: 16px;
    color: #fff;
    padding: 12px 10px;
    line-height: 21px;
    font-family: "HelveticaNeueMedium";
    display: block;
    text-align: left;
}

.banner-item {
    text-align: center;
    margin: 10px 0;
}

.banner-item a {
    display: block;
    font-size: 16px;
    color: #2b2b2b;
    text-transform: capitalize;
    font-family: "helveticaneuebold";
    padding: 8px;
}

.banner-item img {
    border-radius: 10px;
}

.banner-item h3 {
    color: #000;
    font-size: 18px;
    margin: 12px 0 0;
}

.xemthem-news {
    text-align: center;
    margin: 20px 0 0;
}

.xemthem-news a {
    color: #ffffff;
    font-size: 16px;
    background-color: #028128;
    border-radius: 4px;
    width: 120px;
    height: 36px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.title-banner {
    margin: 20px 0;
    padding: 0 0 0 10px;
    position: relative;
    font-size: 24px;
    color: #2b2b2b;
    text-transform: capitalize;
    font-family: "helveticaneuebold";
}

.title-banner:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background: #2b2b2b;
    bottom: 0;
    top: 0;
    left: 0;
    margin: auto;
}

.comment-product-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 10px;
    margin-top: 10px;
    color: #b8b8b8;
    align-content: center;
}

.box-image-pro-detail {
    width: calc(100% - 90px);
}
/* Product detail cleanup 2026 */
.product-detail-page .product-detail-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.product-detail-page .title-pro-detail {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
    color: #028128;
}
.product-summary-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    background: #fffdfb;
}
.product-detail-page .attr-pro-detail {
    margin-bottom: 12px;
}
.product-detail-page .attr-pro-detail li {
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
}
.product-detail-page .attr-pro-detail li:last-child {
    border-bottom: 0;
}
.product-option-block {
    padding-top: 10px;
    border-top: 1px dashed #eee;
}
.product-option-block .color-pro-detail {
    width: 38px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-right: 8px;
    overflow: hidden;
}
.product-option-block .size-pro-detail {
    border-radius: 8px;
    margin: 0 8px 8px 0;
    padding: 7px 14px;
    background: #fff;
}
.product-care-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    background: #fafafa;
}
.product-care-box .title {
    font-weight: 700;
    color: #222;
}
.product-care-box .list-info a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 10px 8px 0;
    color: #333;
    text-decoration: none;
}
.product-care-box .list-info img {
    max-width: 22px;
    max-height: 22px;
}
.product-detail-page .tabs-pro-detail {
    clear: both;
}
@media (max-width: 767px) {
    .product-detail-page .product-detail-card { padding: 12px; }
    .product-detail-page .title-pro-detail { font-size: 22px; }
}


/* ===== Custom update 2026-05-05: tieu chi, danh muc cap 1, footer 3D xanh la ===== */
.wrap-tc {
    margin: 28px 0 18px;
    padding: 0;
    background: transparent;
}
.box-tc { width: 100%; }
.slide-66 { margin: 0 -9px; }
.slide-66 .slick-slide { padding: 0 9px; }
.tc-items {
    min-height: 88px;
    border-radius: 7px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.08) 0 25%, transparent 25% 50%, rgba(255,255,255,.06) 50% 75%, transparent 75%) 0 0/34px 34px,        radial-gradient(circle at 18% 20%, rgba(107,255,153,.28), transparent 30%),        radial-gradient(circle at 82% 15%, rgba(255,255,255,.16), transparent 28%),        linear-gradient(145deg, #0b7a36 0%, #05652d 45%, #023d20 100%);
    border: 1px solid #0abb43;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all .25s ease;
}
.tc-items:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(15,110,45,0.14);
    border-color: #a8d8b4;
}
.img-tc {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #a8cce9;
    background: linear-gradient(145deg,#ffffff,#eef8ff);
    box-shadow: inset 0 2px 5px rgba(108,173,220,0.25);
}
.img-tc img {
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}
.content-tc {
    width: calc(100% - 58px);
    padding-left: 16px;
}
.name-tc,
.content-tc span {
    display: block;
    margin: 0;
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff !important;
    font-family: inherit;
}
.content-tc p { display: none; }

.wrap-home-cate {
    margin: 18px 0 34px;
}
.title-home-cate {
    text-align: center;
    margin: 0 0 18px;
    color: #028128;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.home-cate-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    border: 1px solid #e8e8e8;
    border-right: 0;
    border-bottom: 0;
    background: #fff;
}
.home-cate-item {
    min-height: 140px;
    padding: 14px 10px 16px;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #028128;
    text-decoration: none !important;
    transition: all .25s ease;
}
.home-cate-item:hover {
    color: #06852d;
    background: linear-gradient(180deg,#ffffff 0%,#f4fff7 100%);
    box-shadow: inset 0 0 0 1px rgba(6,133,45,0.18);
}
.home-cate-img {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.home-cate-img img {
    max-width: 94px;
    max-height: 72px;
    object-fit: contain;
    transition: transform .25s ease;
}
.home-cate-item:hover .home-cate-img img { transform: translateY(-4px) scale(1.04); }
.home-cate-name {
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
}

.footer {
    margin-top: 30px;
    overflow: hidden;
    background: #053d21;
}
.footer:before,
.footer:after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .45;
}
.footer:before {
    width: 360px;
    height: 360px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(116,255,154,.65), rgba(5,102,48,0));
}
.footer:after {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(0,195,92,.55), rgba(5,61,33,0));
}
.footer-article {
    position: relative;
    z-index: 1;
    padding: 48px 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08) 0 25%, transparent 25% 50%, rgba(255,255,255,.06) 50% 75%, transparent 75%) 0 0/34px 34px,
        radial-gradient(circle at 18% 20%, rgba(107,255,153,.28), transparent 30%),
        radial-gradient(circle at 82% 15%, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(145deg, #0b7a36 0%, #05652d 45%, #023d20 100%);
    box-shadow: inset 0 20px 55px rgba(255,255,255,.08), inset 0 -22px 55px rgba(0,0,0,.22);
}
.footer-article .wrap-content {
    position: relative;
    z-index: 1;
}
.footer-news {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 35px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
}
.footer-title { color: #fff; font-weight: 800; }
.footer-title::after { content: ""; background: linear-gradient(90deg,#b8ff6a,#19d163); }
.footer-info,
.footer-info p,
.footer-info span,
.time-open p,
.time-open span { color: #eefdf1 !important; }
.footer-ul li a { color: #eefdf1; }
.footer-ul li a:hover { color: #b8ff6a; }
.footer-powered {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg,#03451f,#06963d,#03451f);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

@media (max-width: 1200px) {
    .home-cate-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .home-cate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .home-cate-item { min-height: 125px; }
    .tc-items { padding: 15px; }
}
@media (max-width: 480px) {
    .home-cate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* ===== Custom update 2026-05-05: header/news/partner/newsletter refresh ===== */
.header-bottom {
    background: #fff;
}
.header-bottom .wrap-content {
    padding: 12px 0;
}
.box-flex-nav {
    gap: 18px;
}
.box-logo {
    width: calc(100% - 280px);
    gap: 18px;
}
.logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    max-width: 250px;
}
.logo-main img {
    max-height: 92px;
    width: auto;
}
.search {
    min-width: 0;
    width: 100%;
    margin-left: 0;
    border-radius: 999px;
    border: 1px solid rgba(2,129,40,.22);
    padding: 5px;
    box-shadow: 0 10px 24px rgba(2,129,40,.08);
}
.search input {
    width: calc(100% - 42px);
    height: 38px;
    font-size: 14px;
    text-indent: 14px;
}
.search p {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
}
.box-phone-nav {
    width: 262px;
    gap: 12px;
}
.header-action.hotline-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#effcf3,#ffffff);
    border: 1px solid rgba(2,129,40,.15);
    border-radius: 16px;
    padding: 10px 14px;
    box-shadow: 0 12px 28px rgba(10,120,45,.08);
    flex: 1;
    min-width: 0;
}
.header-action .img-phone {
    position: static;
    width: 42px;
    min-width: 42px;
}
.header-action .img-phone img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.box-phone,
.header-action.hotline-card .box-phone {
    padding-left: 0;
    margin-right: 0;
}
.content-phone {
    padding-left: 10px;
}
.content-phone span {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #5c5c5c;
}
.content-phone p {
    font-size: 20px;
    line-height: 24px;
    color: #028128;
}
.cart-header {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(2,129,40,.15);
    border-radius: 16px;
    background: linear-gradient(145deg,#ffffff,#eef9f1);
    box-shadow: 0 12px 26px rgba(10,120,45,.08);
}
.cart-header > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-header img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.cart-header span {
    width: 20px;
    height: 20px;
    top: 5px;
    right: 6px;
    font-size: 11px;
}

.news-home-modern {
    margin: 38px 0 30px;
}
.home-section-head {
    margin-bottom: 18px;
    gap: 10px;
}
.home-section-title {
    margin: 0;
    color: #357d31;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}
.home-section-more {
    color: #3f6f3b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}
.home-section-more i { margin-left: 4px; }
.latest-posts-slider {
    margin: 0 -8px;
}
.latest-posts-slider .slick-slide {
    margin: 0 8px;
}
.latest-post-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,.04);
    min-height: 100%;
}
.latest-post-thumb {
    display: block;
    aspect-ratio: 310 / 180;
    overflow: hidden;
}
.latest-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-post-body {
    padding: 12px 14px 16px;
}
.latest-post-date {
    color: #777;
    font-size: 12px;
    margin-bottom: 8px;
}
.latest-post-name {
    margin: 0;
}
.latest-post-name a {
    color: #028128;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}
.latest-post-name a:hover { color: #028128; }
.partner-home-box {
    margin-top: 20px;
    padding: 14px;
    border: 1px solid #efefef;
    border-radius: 14px;
    background: #fff;
}
.partner-home-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}
.partner-home-item {
    min-height: 78px;
    border: 1px solid #efefef;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    transition: all .25s ease;
}
.partner-home-item img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
}
.partner-home-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0,0,0,.06);
    border-color: #dfeedd;
}

.wrap-form {
    padding: 46px 0;
    background: linear-gradient(135deg,#eef7f0 0%,#f9fbff 50%,#eef8ff 100%);
}
.index-contact-modern {
    gap: 22px;
    align-items: stretch;
}
.modern-card-block {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 35px rgba(26,48,80,.08);
    border: 1px solid rgba(5,101,45,.08);
}
.wrap-fb.modern-card-block {
    width: calc(50% - 11px);
}
.box-form.modern-card-block {
    width: calc(50% - 11px);
    margin: 0;
}
.modern-card-head {
    margin-bottom: 18px;
}
.modern-card-title {
    margin: 0 0 8px;
    color: #0c8c3d;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}
.modern-card-head p {
    margin: 0;
    color: #6a6f7a;
    font-size: 15px;
    line-height: 1.7;
}
.modern-feedback-box .slide-2,
.modern-feedback-box .slick-list,
.modern-feedback-box .slick-track,
.modern-feedback-box .slick-slide > div {
    height: 100%;
}
.modern-feedback-item {
    min-height: 100%;
    margin-bottom: 0;
    border: 0;
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(145deg,#f8fffb,#ffffff);
    box-shadow: inset 0 0 0 1px rgba(5,101,45,.08);
}
.modern-feedback-item:after { display: none; }
.feedback-quote-icon { margin-bottom: 16px; }
.desc-fb {
    width: 100%;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 18px;
}
.desc-fb span {
    display: block;
    color: #27323c;
    font-size: 15px;
    line-height: 1.8;
    min-height: 108px;
}
.infor-fb {
    position: static;
    left: auto;
    padding: 0;
    align-items: center;
}
.img-fb {
    padding: 0;
    width: 68px;
    min-width: 68px;
}
.img-fb:after { display: none; }
.img-fb img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
}
.content-fb {
    padding-left: 14px;
    padding-top: 0;
}
.content-fb span {
    font-size: 16px;
    color: #0f8b3d;
}
.content-fb p {
    font-size: 14px;
    color: #72808e;
}
.newsletter-modern {
    background: linear-gradient(145deg,#0c7f39 0%,#10a546 100%);
    color: #fff;
}
.newsletter-modern .modern-card-title,
.newsletter-modern .modern-card-head p {
    color: #fff;
}
.newsletter-modern-form p {
    margin-bottom: 14px;
}
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}
.newsletter-grid-full {
    grid-column: 1 / -1;
}
.newsletter-modern-form .form-control {
    height: 50px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 12px;
    box-shadow: none;
}
.newsletter-modern-form textarea.form-control {
    height: 118px;
    resize: none;
    padding-top: 14px;
}
.newsletter-modern-form .form-control::placeholder {
    color: rgba(255,255,255,.88);
}
.newsletter-actions {
    margin-top: 6px;
}
.newsletter-modern .btn-sub {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    background: #fff;
    color: #067933;
    font-weight: 800;
    letter-spacing: .2px;
}
.newsletter-modern .btn-sub:hover {
    background: #f4ffd8;
    color: #05652d;
}

@media (max-width: 1200px) {
    .partner-home-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .home-section-title, .modern-card-title { font-size: 26px; }
}
@media (max-width: 1024px) {
    .box-logo {
        width: 100%;
        flex-wrap: wrap;
    }
    .box-phone-nav {
        width: 100%;
        justify-content: flex-start;
    }
    .wrap-fb.modern-card-block,
    .box-form.modern-card-block {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .box-flex-nav { flex-wrap: wrap; }
    .partner-home-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .newsletter-grid { grid-template-columns: 1fr; }
    .home-section-title, .modern-card-title { font-size: 22px; }
}
@media (max-width: 576px) {
    .logo-main { max-width: 180px; min-width: 180px; }
    .partner-home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .modern-card-block { padding: 20px; }
    .header-action.hotline-card { min-width: 0; }
    .content-phone p { font-size: 16px; }
    .box-phone-nav { gap: 8px; }
}


/* ===== Custom update 2026-05-05 v2: product detail/cart ===== */
.product-gallery-wrap {
    display: flex;
    align-items: stretch;
    gap: 14px;
}
.product-gallery-wrap .gallery-thumb-pro {
    flex: 0 0 76px;
}
.product-gallery-wrap .box-image-pro-detail {
    width: calc(100% - 90px);
}
.product-option-block .attr-content-pro-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.product-option-block .attr-label-pro-detail strong {
    color: #028128;
}
.color-pro-detail {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.color-pro-detail__inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 11px;
}
.color-pro-detail.active,
.size-pro-detail.active {
    border-color: #028128;
    color: #028128;
    box-shadow: 0 0 0 3px rgba(2,129,40,.13);
}
.size-pro-detail {
    min-width: 60px;
    text-align: center;
    font-weight: 600;
}
.customer-care-layout {
    margin-top: 20px;
    background: #f3f3f3;
    border-radius: 18px;
    padding: 20px;
}
.customer-care-layout .title {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
}
.customer-care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}
.customer-care-item {
    display: flex !important;
    align-items: center;
    gap: 14px !important;
    min-height: 80px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,.9);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
    margin: 0 !important;
}
.customer-care-item img {
    width: 48px;
    height: 48px;
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain;
}
.customer-care-item span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #2f2f2f;
    word-break: break-word;
}
.sales-policy-bar {
    margin-top: 18px;
    border-radius: 18px;
    padding: 20px 24px;
    background: #f2f2f2;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.sales-policy-item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 33.333%;
}
.sales-policy-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sales-policy-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}
.sales-policy-content h3 {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.3;
    /* font-weight: 800; */
    text-transform: uppercase;
    color: #028128;
}
.sales-policy-content p {
    margin: 0;
    color: #1f1f1f;
    font-size: 10px;
    line-height: 1.6;
}
.list-procart {
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.procart {
    padding: 14px 12px;
    border-bottom: 1px solid #ececec;
}
.procart:last-child {
    border-bottom: 0;
}
.procart-label {
    background: #f7f7f7;
    font-weight: 700;
}
.procart-label p,
.procart-label .info-procart {
    margin: 0;
    font-weight: 700;
}
.procart .name-procart {
    margin-bottom: 8px;
}
.procart .properties-procart p {
    margin-bottom: 4px;
}
.procart .price-procart {
    text-align: right;
}
.procart .quantity-procart {
    text-align: center;
}
.quantity-counter-procart {
    max-width: 130px;
    margin: 0 auto;
}
.quantity-counter-procart .quantity-procart {
    width: 48px;
    text-align: center;
}
@media (max-width: 991px) {
    .sales-policy-bar {
        flex-wrap: wrap;
        gap: 18px;
    }
    .sales-policy-item {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .product-gallery-wrap {
        flex-direction: column-reverse;
    }
    .product-gallery-wrap .gallery-thumb-pro,
    .product-gallery-wrap .box-image-pro-detail {
        width: 100%;
        flex: 0 0 auto;
    }
    .gallery-thumb-pro-slick .slick-slide > div {
        padding: 0 4px;
    }
    .customer-care-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== Custom update 2026-05-05 v3: color swatch/search fix ===== */
.product-option-block .color-pro-detail,
.color-pro-detail {
    width: 44px !important;
    height: 44px !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 10px !important;
    margin: 0 8px 8px 0 !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.color-pro-detail__inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    background: transparent !important;
    pointer-events: none;
}
.color-pro-detail.active {
    border-color: #028128 !important;
    box-shadow: 0 0 0 3px rgba(2,129,40,.16), inset 0 0 0 1px rgba(0,0,0,.08) !important;
}
.color-pro-detail.active:after {
    z-index: 2;
}
@media (min-width: 1025px) {
    .header-bottom .box-flex-nav {
        gap: 24px;
    }
    .header-bottom .box-logo {
        width: auto;
        flex: 1 1 auto;
        justify-content: flex-start;
        gap: 34px;
    }
    .header-bottom .logo-main {
        min-width: 220px;
        max-width: 250px;
        margin-right: 8px;
    }
    .header-bottom .search {
        width: 430px !important;
        max-width: 430px !important;
        min-width: 360px !important;
        flex: 0 0 430px;
        height: 44px;
        padding: 4px;
        border-radius: 8px;
    }
    .header-bottom .search input {
        height: 34px;
        font-size: 13px;
    }
    .header-bottom .search p {
        width: 34px;
        height: 34px;
        line-height: 34px;
        border-radius: 7px;
    }
    .header-bottom .box-phone-nav {
        width: 270px;
        flex: 0 0 270px;
    }
}


/* ===== Custom update v6: sidebar categories and color no ajax ===== */
.sidebar-cate-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.sidebar-cate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 10px 8px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    transition: all .25s ease;
}
.sidebar-cate-item:hover {
    border-color: #028128;
    box-shadow: 0 8px 20px rgba(2,129,40,.08);
    transform: translateY(-2px);
}
.sidebar-cate-img {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.sidebar-cate-img img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}
.sidebar-cate-name {
    font-size: 13px;
    line-height: 1.35;
    color: #222;
    font-weight: 600;
}
.color-pro-detail input[type="radio"] { display: none; }
.color-pro-detail {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
}
@media (max-width: 991px) {
    .sidebar-cate-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .sidebar-cate-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* ===== Custom update 2026-05-06: header mobile policy recruitment gallery ===== */
@media (min-width: 1025px) {
    .header-bottom .wrap-content { padding: 12px 0; }
    .header-bottom .box-flex-nav {
        display: grid !important;
        grid-template-columns: 280px minmax(360px, 520px) 300px;
        align-items: center;
        gap: 28px;
    }
    .header-bottom .box-logo {
        display: contents !important;
        width: auto !important;
    }
    .header-bottom .logo-main {
        grid-column: 1;
        min-width: 0 !important;
        max-width: 260px !important;
        margin: 0 !important;
        justify-self: start;
    }
    .header-bottom .search {
        grid-column: 2;
        width: 100% !important;
        max-width: 520px !important;
        min-width: 0 !important;
        flex: none !important;
        justify-self: center;
        margin: 0 !important;
        height: 44px;
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(2,129,40,.08);
    }
    .header-bottom .box-phone-nav {
        grid-column: 3;
        width: 100% !important;
        flex: none !important;
        justify-self: end;
    }
}
.li-category>a {
    justify-content: flex-start;
    gap: 10px;
}
.li-category-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(2,129,40,.12);
}
.li-category-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin: 0 !important;
}
.li-category>a>i { margin-left: auto; }
.menu-policy { position: relative; }
.menu-policy-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .22s ease;
    z-index: 999;
    display: block !important;
}
.menu-policy:hover .menu-policy-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.menu-policy-sub li { display: block; }
.menu-policy-sub li a {
    display: block;
    padding: 10px 16px;
    color: #222 !important;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none !important;
}
.menu-policy-sub li a:hover { color: #028128 !important; background: #f2fff5; }
.content-tc p {
    display: block !important;
    margin-top: 4px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #666 !important;
    -webkit-line-clamp: 2;
}
.tc-items { min-height: 105px; }

@media (max-width: 1024px) {
    .header { display: none; }
    .menu { display: none; }
    .menu-res {
        display: block !important;
        background: #048a32;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        z-index: 999;
    }
    .menu-bar-res {
        height: 64px;
        padding: 0 12px;
    }
    #hamburger {
        display: block !important;
        width: 34px;
        height: 24px;
        margin-left: 0;
        flex: 0 0 34px;
    }
    #hamburger:before,
    #hamburger:after,
    #hamburger span {
        height: 3px;
        border-radius: 4px;
        background: #fff;
    }
    .logo-hidden {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo-hidden > a img {
        max-height: 54px;
        width: auto;
    }
    .logo-hidden .cart-header { display: none; }
    .search-res {
        flex: 0 0 92px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }
    .search-res .icon-search {
        width: 42px;
        height: 42px;
        line-height: 42px;
        color: #fff;
        border-radius: 50%;
        background: rgba(255,255,255,.13);
    }
    .search-res .cart-header {
        position: relative !important;
        top: auto !important;
        width: 42px;
        height: 42px;
        background: #fff;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-res .search-grid {
        right: 0;
        top: calc(100% + 10px);
        width: min(92vw, 360px);
        border-radius: 12px;
        box-shadow: 0 16px 32px rgba(0,0,0,.18);
        overflow: hidden;
    }
    .mm-menu {
        --mm-color-background: #ffffff;
        --mm-color-text: #222;
        --mm-color-button: #028128;
        font-family: inherit;
    }
    .mm-navbar { background: #028128; color: #fff; border: 0; }
    .mm-listitem:after { left: 0; border-color: #eef1ef; }
    .mm-listitem__text { font-weight: 600; padding-top: 14px; padding-bottom: 14px; }
    .mm-listitem_selected > .mm-listitem__text { color: #028128; background: #f2fff5; }
}

@media (max-width: 767px) {
    .product-gallery-wrap {
        display: flex !important;
        flex-direction: column !important;
    }
    .product-gallery-wrap .box-image-pro-detail {
        width: 100% !important;
        margin-bottom: 10px;
    }
    .product-gallery-wrap .MagicZoom,
    .product-gallery-wrap .MagicZoom img,
    .box-image-pro-detail img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .product-gallery-wrap .gallery-thumb-pro {
        width: 100% !important;
        flex: none !important;
        padding: 0 !important;
        margin: 10px 0 0 !important;
        order: 2;
    }
    .product-gallery-wrap .box-image-pro-detail { order: 1; }
    .product-gallery-wrap .gallery-thumb-pro { order: 2; }
    .gallery-thumb-pro .btn-slick-prev,
    .gallery-thumb-pro .btn-slick-next { display: none !important; }
    .gallery-thumb-pro-slick {
        margin: 0 -4px;
    }
    .gallery-thumb-pro-slick .slick-slide { padding: 0 4px; }
    .gallery-thumb-pro-slick .thumb-pro-detail {
        display: block;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        padding: 4px;
    }
    .gallery-thumb-pro-slick .thumb-pro-detail img {
        width: 100% !important;
        height: 72px !important;
        object-fit: contain !important;
    }
    .left-pro-detail { display: block !important; text-align: center; }
}


/* Custom update category icon compact 2026-05-06 */
.li-category > a {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 16px;
    align-items: center;
    column-gap: 15px;
    padding: 7px 7px !important;
}
.li-category-icon {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    background: #fff !important;
    border: 1px solid #2fa14a !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-shadow: none !important;
    padding: 6px !important;
}
.li-category-icon img {
    width: auto !important;
    height: auto !important;
    max-width: 44px !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
.li-category > a > span:not(.li-category-icon) {
    display: block;
    min-width: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #3f3b3b;
    word-break: break-word;
}
.li-category > a > i {
    margin-left: 0 !important;
    justify-self: end;
    font-size: 22px;
    color: #555;
}
@media (max-width: 991px) {
    .li-category > a {
        grid-template-columns: 48px minmax(0, 1fr) 14px;
        column-gap: 12px;
        padding: 14px 14px !important;
    }
    .li-category-icon {
        width: 48px !important;
        min-width: 48px !important;
        height: 48px !important;
        padding: 5px !important;
    }
    .li-category-icon img {
        max-width: 36px !important;
        max-height: 36px !important;
    }
    .li-category > a > span:not(.li-category-icon) {
        font-size: 15px;
        line-height: 1.4;
    }
    .li-category > a > i {
        font-size: 20px;
    }
}



/* ===== Custom update 2026-05-06 v7: mobile header/index/admin menu cleanup ===== */
@media (max-width: 1024px) {
    .menu-res {
        background: #ffffff !important;
        border-bottom: 1px solid #e7efe8;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }
    .menu-bar-res {
        height: 68px;
        padding: 0 12px;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    #hamburger {
        flex: 0 0 28px;
        width: 28px;
        height: 22px;
    }
    #hamburger:before,
    #hamburger:after,
    #hamburger span {
        background: #1d8238 !important;
    }
    .logo-hidden {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0 6px;
        justify-content: center;
    }
    .logo-hidden > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }
    .logo-hidden > a img {
        max-height: 34px;
        width: auto;
        max-width: 140px;
        object-fit: contain;
    }
    .search-res {
        flex: 0 0 auto;
        gap: 8px;
        align-items: center;
    }
    .search-res .icon-search,
    .search-res .cart-header {
        width: 40px !important;
        height: 40px !important;
        border-radius: 12px !important;
        border: 1px solid #dce9dd !important;
        background: #f4faf5 !important;
        box-shadow: none !important;
        color: #118339 !important;
    }
    .search-res .icon-search {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 40px;
        font-size: 18px;
    }
    .search-res .cart-header {
        position: relative !important;
        top: auto !important;
        flex: 0 0 40px;
        overflow: visible;
    }
    .search-res .cart-header > a {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .search-res .cart-header img {
        width: 20px !important;
        height: 20px !important;
        object-fit: contain;
    }
    .search-res .cart-header span,
    .search-res .cart-header .count-cart {
        position: absolute !important;
        top: -5px !important;
        right: -5px !important;
        width: 18px !important;
        height: 18px !important;
        line-height: 18px !important;
        border-radius: 50% !important;
        background: #0d8f3f !important;
        color: #fff !important;
        font-size: 10px !important;
        font-weight: 700;
        text-align: center;
        padding: 0 !important;
    }
    .search-res .search-grid {
        top: calc(100% + 8px);
        right: 0;
    }
    .menu-bar-res2 { display: none !important; }
}

@media (max-width: 767px) {
    .wrap-home-cate { margin: 16px 0 28px; }
    .title-home-cate { font-size: 18px; margin-bottom: 14px; }
    .home-cate-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
    .home-cate-item {
        min-height: 118px;
        padding: 10px 5px 12px;
    }
    .home-cate-img {
        height: 48px;
        margin-bottom: 8px;
    }
    .home-cate-img img {
        max-width: 56px;
        max-height: 46px;
    }
    .home-cate-name {
        font-size: 12px;
        line-height: 1.35;
        font-weight: 600;
    }
}
@media (max-width: 420px) {
    .home-cate-item { min-height: 112px; padding: 8px 4px 10px; }
    .home-cate-name { font-size: 11px; }
    .home-cate-img img { max-width: 50px; max-height: 40px; }
}


/* ===== Performance optimization 2026-05-06 ===== */
img { max-width: 100%; height: auto; }
.slideshow-image img { aspect-ratio: 1034 / 414; object-fit: cover; }
.home-cate-img img { contain: content; }
@media (max-width: 767px) {
    .animate__animated, .wow { animation: none !important; visibility: visible !important; }
    .wrap-home-cate, .wrap-tc, .wrap-spnb, .wrap-prolist { content-visibility: auto; contain-intrinsic-size: 1px 600px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


/* Fix 2026-05-06: home category carousel and mobile care position */
.home-cate-slider {
    display: block;
    grid-template-columns: none;
    overflow: hidden;
}
.home-cate-slider .slick-slide > div {
    height: 100%;
}
.home-cate-slider .home-cate-item {
    height: 140px;
}
.product-care-mobile {
    display: none;
}
@media (max-width: 767px) {
    .product-care-desktop {
        display: none;
    }
    .product-care-mobile {
        display: block;
    }
}
