/* @keyframe */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@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);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }

    10% {
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1;
    }

    100% {
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0;
    }
}

@keyframes border-animation {
    0% {
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0;
    }

    20% {
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1;
    }

    100% {
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0;
    }
}

:root {
    --color-main: #0A68FF;
    --color-social: #0A68FF;
    --color-hover: #0A68FF;
    --color-text: #0A68FF;
    --menu-border: rgb(255 255 255 / 20%);
    --menu-color: #fff;
}

body {
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Roboto';
    background: #F5F5FA
}

.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

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

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

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

img {
    max-width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.social-plugin {
    display: flex;
    margin-top: 10px;
}

.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img,
.scale-img picture {
    transition: all 0.5s;
}

.scale-img:hover img,
.scale-img:hover picture {
    transform: scale(1.2, 1.2);
}

.hover-img {
    position: relative;
    overflow: hidden;
    display: block;
}

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

.p-relative {
    position: relative;
}

/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover>ul,
.scale-img img,
.scale-img:hover>img,
.support-online .kenit-alo-circle-fill {
    transition: 0.3s all;
}

.gutter-x-20 {
    --bs-gutter-x: 20px;
}

.gutter-x-5 {
    --bs-gutter-x: 5px;
}

/*   Header   */
.header {
    background: #0A68FF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-cart {
    border: 1px solid var(--color-main);
    padding: 10px;
    border-radius: 5px;
    position: relative;
    color: var(--color-main);
}

.header-cart:hover {
    color: #fed402;
}

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

.header-cart .count-cart {
    position: absolute;
    z-index: 999;
    color: #fff;
    background: #f00;
    border-radius: 50%;
    top: -10px;
    right: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
}

.menu-head {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.menu-head a {
    color: #fff;
}

.menu-head a:hover {
    color: #fed402;
}

.line-head {
    background-color: #72b2fd;
    height: 32px;
    width: 1px;
}

/* slideshow */
.slideshow {
    position: relative;
}

/* Search */
.search {
    flex: 1;
    background: #fff;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f1f1f1;
    max-width: 618px;
    border-radius: 5px;
}

.search>p {
    color: #0A68FF;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0 25px;
    position: relative;
    height: 48px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.search>p:After {
    content: '';
    position: absolute;
    width: 1px;
    height: 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    background: #CCC;
}

.search input {
    width: auto;
    font-size: 13px;
    color: #333;
    border-radius: 10px;
    border: none;
    height: 48px;
    flex: 1;
}

.search input:focus {
    border: none;
    box-shadow: none;
}

.search label {
    height: 35px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    background: #f00;
    color: #fff;
    border-radius: 10px;
    margin-right: 3px;
    padding: 5px 10px;
}

.search label i {
    font-weight: bold;
    color: #999;
}

.box-search {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ds-item-search {
    width: calc(100% - 70px);
}

.ds-item-search a {
    font-size: 14px;
    color: #333;
}

.show-search {
    position: absolute;
    z-index: 9999;
    top: 100%;
    background: #fff;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.box-search .price-product {
    width: 100%;
    margin: 0px;
    text-align: left;
}

.box-search .price-product .price-new {
    color: #f00;
    font-size: 14px;
    font-weight: bold;
}

.box-search .price-product .price-old {
    color: #999;
    text-decoration-line: line-through;
}

.search-res {
    position: relative;
}

.search-res .icon-search {
    width: 35px;
    height: 35px;
    cursor: pointer;
    text-align: center;
    line-height: 35px;
    color: var(--color-main);
    font-size: 15px;
    margin: 0px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
}

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

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

.search-res .search-grid input {
    width: calc(100% - 40px);
    float: right;
    outline: none;
    border: none;
    color: #333;
    box-shadow: none;
}

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

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

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

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

.search input {
    background: url(../images/main/search.png) left 12px center no-repeat;
    text-indent: 30px;
}

/* Mmenu */
.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow: scroll;
}

.offcanvas-body::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    transition: all 1s;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background-color: #0d6efd;
    border-radius: 5px;
    transition: all 1s;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: #fff;
    width: 4px;
    height: 4px;
    transition: all 1s;
}

.btn-close-menu {
    position: absolute;
    right: 20px;
    top: 20px;
}

.menu-mobile ul {
    padding: 0px;
}

.menu-mobile ul li {
    position: relative;
}

.menu-mobile ul li>span i {
    transition: transform 0.3s ease;
    /* Adjust duration and easing as needed */
}

/* .menu-mobile ul li:last-child a{
border-bottom: none;
} */
.menu-mobile ul li a {
    display: block;
    padding-right: 30px;
    color: #333;
    font-size: 15px;
    padding: 10px 0px;
    border-bottom: 1px solid #f1f1f1;
}

.menu-mobile ul li a i {
    margin-right: 10px;
}

.menu-mobile ul li li a {
    font-weight: normal;
}

.menu-mobile ul li a:hover {
    color: #f00;
}

.menu-mobile ul li .scroll {
    position: absolute;
    right: 0px;
    top: 9px;
    background: #0253a4;
    font-size: 17px;
    line-height: 18px;
    height: 25px;
    color: #fff;
    width: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-mobile ul li:hover {
    color: #f00;
}

.menu-mobile ul ul li .scroll {
    background: none;
    color: #0253a4;
}

.menu-mobile ul li ul {
    padding-left: 10px;
}

.company {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.company p {
    margin-bottom: 5px;
    font-size: 13px;
}

.company p span {
    color: #333;
    font-weight: 700;
}

.head-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.head-menu img {
    max-width: 80px;
}

.search-menu {
    width: 100%;
    position: relative;
    margin: 10px 0px;
}

.search-menu input {
    width: 100%;
    background: #f5f5fa;
    border: 1px solid #f1f1f1;
    height: 40px !important;
    font-size: 13px;
}

.search-menu p {
    position: absolute;
    right: 10px;
    bottom: 8px;
}

/* Menu */
/* #menu {
display: none;
} */
#hamburger {
    display: none;
    width: 35px;
    height: 23px;
    position: relative;
    cursor: pointer;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
    background: #fff;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    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;
    -webkit-transition-property: top, bottom, left, opacity, -webkit-transform;
    transition-property: top, bottom, left, opacity, -webkit-transform;
    transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity, -webkit-transform;
}

.menu-mobile-opened #hamburger:before,
.menu-mobile-opened #hamburger:after {
    top: 10px;
}

.menu-mobile-opened #hamburger span {
    left: -50px;
    opacity: 0;
}

.menu-mobile-opened #hamburger:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-mobile-opened #hamburger:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

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

.mm-slideout {
    z-index: unset;
}

.menu-head-left {
    position: relative;
}

.title-menu {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    line-height: 40px;
    display: block;
}

.menu-product-list {
    position: absolute;
    z-index: 99;
    top: 100%;
    width: 250px;
    background: #fff;
    border-radius: 2px;
}

.menu-product-list ul {
    padding: 0px;
    margin-bottom: 0px;
}

.menu-product-list ul ul {
    position: absolute;
    width: 750px;
    background: #fff;
    left: 100%;
    top: 0px;
    border: 1px solid #999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 100%;
    overflow-x: hidden;
}

.menu-product-list ul ul ul {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    border: none;
    display: block;
    height: auto;
}

.menu-product-list ul li a {
    position: relative;
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px 5px 10px;
    border-bottom: 1px solid #ddd;
}

.menu-product-list ul li a .icon-down {
    position: absolute;
    right: 10px;
    top: 10px;
}

.menu-product-list ul ul li a span {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #00a3ff;
}

.menu-product-list ul li a:hover {
    color: #f00;
}

.menu-product-list ul ul li a {
    border-bottom: none;
    font-weight: bold;
}

.menu-product-list ul ul ul li a {
    font-weight: normal;
}

.menu {
    position: sticky;
    top: 0;
    z-index: 998;
    width: 100%;
    background-color: var(--color-main);
}

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

.fix_menu {
    position: fixed !important;
    box-shadow: 0 0 1px #999;
    background: #fff;
}

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

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

.menu ul.ulmn>li {
    flex: auto;
}

.menu ul li.line {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    flex: none;
}

.menu ul li a {
    font-size: 14px;
    color: #fff;
    margin: 0px;
    padding: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    text-decoration: none !important;
    display: block;
    line-height: 45px;
    text-transform: uppercase;
}

.menu ul li a img {
    vertical-align: middle;
}

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

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    left: 0;
    background: #fff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
    -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 {
    text-align: left;
    border-bottom: 1px solid rgb(173 173 173 / 32%);
}

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

.menu ul li ul li a {
    font-size: 14px;
    padding: 10px;
    display: block;
    text-decoration: none !important;
    line-height: 20px;
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
    color: #333;
}

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

.menu ul li ul li a:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: #fed402;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

a.cart-header {
    position: relative;
}

a.cart-header span {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    font-size: 11px;
    width: 17px;
    height: 17px;
    text-align: center;
    border-radius: 50%;
}

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

.control-owl button {
    opacity: 0.5;
    top: 0px;
    position: absolute;
    outline: none;
    border: 2px solid #fff;
    padding: 0px;
    margin: 0px;
    display: block;
    cursor: pointer;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    font-size: 25px;
    margin: 0px;
    background-color: #00a3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

/* DT */
.item-partner {
    border: 1px solid #f1f1f1;
    display: block;
}

.box-photo-ct {
    border-radius: 20px;
    overflow: hidden;
}

.title-detail {
    position: relative;
    margin: 20px 0px;
}

.title-detail h1 {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.title-main {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.title-main span {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.tt-week {
    font-size: 25px;
    text-align: center;
    margin: 20px 0px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.title-cat-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.title-cat-main span {
    display: block;
    color: #999;
    background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%);
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.title-cat-main span:hover,
.title-cat-main span.active {
    background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%);
    color: #000;
}

/* News */
.row-news {
    margin: 0px -10px;
}

.col-news {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.news-box {
    padding: 10px;
    border-radius: 5px;
    background: rgb(0 0 0 / 5%);
}

.news-pic {
    margin-bottom: 1rem;
    display: block;
}

.news-name a {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.5;
}

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

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

.news-time {
    display: flex;
    align-items: center;
    color: #fff;
}

.news-time svg {
    width: 14px;
    margin-right: 5px;
    fill: #fff;
}

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

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

.news-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-main);
    padding: 13px 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.news-view {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.news-view svg {
    width: 14px;
    margin-left: 5px;
    fill: #fff;
    transition: 0.5s;
}

.news-view:hover {
    color: #fff;
}

.news-view:hover svg {
    margin-left: 10px;
}

.item-news .ds-news {
    width: 100%;
}

.ds-news span {
    display: block;
    line-height: 25px;
    color: #999;
    font-size: 13px;
    margin: 10px 0px 0px;
    font-style: italic;
}

.ds-news h3 {
    font-size: 16px;
    margin: 0;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-line-clamp: 3 !important;
}

.ds-news h3:hover {
    color: var(--color-main);
}

.ds-news .desc {
    color: #333;
    margin-bottom: 0px;
}

.item-news:hover h3 {
    color: #f00;
}

.item-news-all a {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.item-news-all a .scale-img {
    max-width: 120px;
}

.item-news-all a .ds-news h3 {
    text-transform: capitalize;
    font-size: 15px;
}

.flex-news-detail {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

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

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

.a2a_kit .a2a_svg {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

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

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

.tt-toc {
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

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

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

/* Partner */
.info-partner {
    background: #f8f8f8;
    padding: 15px 0px;
}

/* Footer */
.footer-tags {
    padding: 40px 0px;
}

.title-tags {
    color: var(--color-main);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.item-tags {
    display: inline-block;
    background: #F1F1F1;
    color: #525252;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px 8px 12px;
    border-radius: 3px;
    margin: 0px 10px 10px 0px;
}

.item-tags i {
    margin-right: 7px;
    color: var(--color-main);
    font-size: 18px;
    vertical-align: middle;
}

.item-tags:hover {
    color: #fff;
    background: var(--color-main);
}

.item-tags:hover i {
    color: #fff;
}

.footer-article {
    padding: 55px 0px;
    border-top: 3px solid var(--color-main);
    background: #FFFFFF;
}

.footer-top {
    padding-bottom: 35px;
    border-bottom: 1px solid #E9E9E9;
}

.footer-title {
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #171717;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.name-company {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-news:nth-child(1) {
    width: 16%;
}

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

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

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

.box-phone-ft {
    padding: 6px 8px;
    border-radius: 3px;
    border: 1px solid #CACACA;
    background: rgba(245, 245, 245, 0.00);
}

.box-phone-ft:hover {
    border-color: var(--color-main);
}

.box-phone-ft:hover a {
    color: #0A68FF;
}

.box-phone-ft:hover a img {
    animation: soft-shake 2s ease-in-out infinite
}

.box-phone-ft a {
    color: #6C6C6C;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

.box-phone-ft a span {
    text-transform: uppercase;
    margin-right: 20px;
}

.footer-ul {
    list-style: disc;
    padding: 0px;
    margin: 0px;
    padding-left: 19px;
}

.time-footer {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.content-time {}

.content-time p {
    color: #212121;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
}

.content-time span {
    color: #212121;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
}

.time-footer img {
    width: 46px;
}

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

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

.footer-ul li a {
    color: #171717;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

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

.item-icon-footer img {
    max-height: 35px;
    margin: 0px 10px 10px 0px;
}

.footer-powered {
    padding: 18px 0px 10px;
    text-align: center;
    transition: 0.7s;
    background: #F5F5FA;
}

.footer-bct {
    padding: 10px 0px 10px;
    transition: 0.7s;
    background: #fff;
}

.footer-contentbct {
    word-break: break-word;
}

.footer-contentbct p {
    margin-bottom: 0px
}

.footer-copyright {
    color: #888;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.footer-copyright span {
    text-transform: uppercase;
}

.footer-copyright a {
    color: #888;
}

.footer-statistic {
    text-align: right;
    color: #888;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
}

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

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

#footer-map {
    position: relative;
    height: 450px;
    margin-top: 0px;
}

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

.newsletter-slogan {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    font-style: italic;
    font-weight: 300;
}

.form-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
    background: #F5F5F5;
    margin-bottom: 22px;
}

.form-newsletter input {
    width: calc(100% - 50px);
    margin-bottom: 0px;
    height: 50px;
    border: 0;
    font-size: 13px;
    padding: 0px 15px;
    border-radius: 3px;
    outline: none;
    color: #333;
    background: transparent;
}

.form-newsletter input::placeholder {
    color: #757575;
}

.form-newsletter button {
    width: 50px;
    height: 50px;
    outline: none;
    background: var(--color-main);
    color: #fff;
    font-weight: 400;
    border: none;
    border-radius: 3px;
    background: #0A68FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-newsletter button:hover {
    color: #fff;
    background: #ae0009;
}

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

#facebookComponent {
    height: 200px;
}

#tiktokComponent {
    height: 403px;
    position: relative;
}

#tiktokComponent .tiktok-embed {
    margin: 0px;
    height: 403px;
    position: relative;
}

#tiktokComponent .tiktok-embed iframe {
    margin: 0px;
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Tags */
.title-tags {
    position: relative;
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 15px;
    color: #777;
}

.title-tags:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    height: 3px;
    width: 30px;
}

.flex-tags {
    display: flex;
    gap: 5px;
}

.flex-tags a {
    color: #333;
    border: 1px solid;
    border-radius: 3px;
    display: inline-block;
    font-size: 0.8em !important;
    opacity: 0.8;
    padding: 2px 5px;
}

.flex-tags a:hover {
    background-color: #446084;
    border-color: #446084;
    color: #fff;
    opacity: 1;
}

/*   TC   */
.item-criteria a {
    display: flex;
    align-items: center;
    color: #333;
}

.item-criteria a .ds-criteria {
    width: calc(100% - 60px);
    margin-left: 10px;
}

.item-criteria a .ds-criteria h3 {
    -webkit-line-clamp: 2;
    font-size: 16px;
    color: var(--color-main);
}

.item-criteria a .ds-criteria p {
    -webkit-line-clamp: 2;
    margin: 0px;
}

/* Service */
.item-service {
    position: relative;
}

.item-service h3 {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    font-size: 17px;
    margin: 0px;
}

/* Video */
.flex-video {
    display: flex;
    justify-content: space-between;
}

.wr-video {
    width: 49%;
}

.wr-form {
    width: 49%;
}

.video-main {
    position: relative;
}

.list-video {
    margin-top: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.img-video span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border: 1px solid #ff000066;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f00;
    background: #ffffffa8;
    font-size: 27px;
    cursor: pointer;
    transition: all 1s;
}

.item-video:hover span {
    transform: translateX(-50%) translateY(-50%) rotate(360deg);
}

.item-video h3 {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

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

.row-video {
    margin: 0px -10px;
}

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

.pic-video {
    position: relative;
    cursor: pointer;
    display: block;
    padding-top: calc(500 / 1200 * 100%);
    overflow: hidden;
}

.pic-video:before {
    content: "";
    position: absolute;
    width: 133px;
    height: 133px;
    top: calc(50% - 133px / 2);
    left: calc(50% - 133px / 2);
    z-index: 1;
    background: url(../images/video_big.png) no-repeat center center;
    cursor: pointer;
    background-size: contain;
}

.pic-video img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.video .pic-video {
    padding-top: calc(500 / 900 * 100%);
}

.video .pic-video:before {
    width: 63px;
    height: 63px;
    top: calc(50% - 63px / 2);
    left: calc(50% - 63px / 2);
    z-index: 1;
    background: url(../images/video_small.png) no-repeat center center;
}

.pic-video-2 {
    position: relative;
    cursor: pointer;
    display: block;
    padding-top: calc(192 / 281 * 100%);
}

.pic-video-2:before {
    content: "";
    position: absolute;
    width: 63px;
    height: 63px;
    top: calc(50% - 63px / 2);
    left: calc(50% - 63px / 2);
    z-index: 1;
    background: url(../images/video_small.png) no-repeat center center;
    cursor: pointer;
    background-size: cover;
}

.pic-video-2 img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

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

.owl-video {
    margin-top: 25px;
}

.box-video {
    cursor: pointer;
}

.img-video {
    position: relative;
    padding-top: calc(360 / 480 * 100%);
}

.img-video img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-video::after {
    position: absolute;
    width: 63px;
    height: 63px;
    top: calc(50% - 63px / 2);
    left: calc(50% - 63px / 2);
    background: url(../images/video_small.png) center center no-repeat;
    background-size: contain;
    content: '';
}

.box-video h3 {
    color: #1C1B17;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 16px;
}

/* Sort */
.sort-select {
    display: flex;
    justify-content: end;
    position: relative;
}

.sort-select .click-sort {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 10px 6px 8px;
    margin: 0px;
    border-radius: 30px;
    border: 1px solid #888;
    padding: 7px 20px 6px;
}

.sort-select-main {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
    position: absolute;
    padding: 0 7px;
    top: 30px;
    right: 0;
    width: 160px;
    z-index: 2;
}

.sort-select-main p {
    border-bottom: 1px solid #f1f1f1;
    margin: 0px;
    order: 2;
}

.sort-select-main p:has(.check) {
    order: 1;
}

.sort span {
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 11px 3px;
    display: block;
    cursor: pointer;
}

.sort span.check i {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    vertical-align: middle;
}

.sort span.check i::after {
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.sort-select .sort-show {
    padding-right: 12px;
    position: relative;
}

.sort-select .sort-show::before {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333;
    content: '';
    height: 0;
    position: absolute;
    top: 6px;
    right: 0;
    width: 0;
}

/* Product */
.filter {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 5px 10px;
    background: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    display: none;
}

.flex-product-main {
    display: flex;
    gap: 20px;
}

.flex-product-main .left-product {
    width: 250px;
    border: 1px solid #f1f1f1;
    padding: 20px;
    border-radius: 5px;
}

.flex-product-main .right-product {
    width: calc(100% - 250px);
}

.wrap-product-sale {
    background-color: #ffa09e;
    border-radius: 10px;
    overflow: hidden;
}

.wr-search p {
    font-weight: bold;
    text-transform: uppercase;
}

.row-product {
    margin: 0px -10px;
}

.col-product {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.product {
    display: block;
    position: relative;
    padding: 8px 8px 6px;
    border-radius: 6px;
    border: 1px solid #D9D9D9;
    height: 100%;
    background: #fff;
    overflow: hidden;
}

.product.pro2 .product-info {
    text-align: center;
}

.product:after {
    content: '';
    position: absolute;
    width: calc(100% - 16px);
    border-radius: 6px;
    background: #DFDFDF;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    height: 6px;
}

.product:hover .cart-pos {
    transform: translate(0, 0);
    transition: .4s all;
}

.product-pic {
    background: #fff;
    margin-bottom: 10px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-name {
    margin-bottom: 0px;
    font-weight: normal;
}

.product-name a {
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
}

.product-name a:hover {
    color: #0A68FF;
}

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

.product-info {
    padding-bottom: 6px;
}

.product-info-left {
    width: calc(100% - 50px);
}

.product-price {
    color: #555;
}

.cart-pos {
    position: absolute;
    right: 6px;
    bottom: 12px;
    transform: translate(110%, 110%);
    transition: .4s all;
    z-index: 11;
}

.price-new {
    display: inline-block;
    text-transform: uppercase;
    color: #E00000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 2px;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 10;
}

p.price-new.d-block {}

.price-new span {
    display: inline-flex;
    display: inline-flex;
    height: 19px;
    padding: 0 6px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #E00000;
    font-family: Roboto;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    border-radius: 1px;
    border: 1px solid #E00000;
    background: #FFEDED;
}

.price-old {
    text-decoration: line-through;
    text-transform: uppercase;
    color: #6D6E72;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 192.308% */
    text-decoration-line: line-through;
    margin-bottom: 2px;
}

.price-per {
    color: #FF2E00;
    font-size: 13px;
    text-align: center;
    font-weight: 700;
}

.product-star-view {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-star {
    font-size: 9px;
    position: relative;
    color: #999;
    margin-right: 15px;
}

.product-star .star-active {
    position: absolute;
    left: 0px;
    top: 0px;
    width: var(--star-width);
    white-space: nowrap;
    overflow: hidden;
    color: #FFCD00;
}

.product-view {
    color: #A6A6A6;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.product-cart {
    width: 45px;
    text-align: center;
}

.product-cart span {
    display: inline-block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #fff url(../images/main/cart2.png) center center no-repeat;
    border-radius: 50%;
    box-shadow: 0 0 4px 0 #DE0009;
}

.cart-add {
    margin-left: 10px;
    background-color: #00A5D9;
    width: 155px;
}

.cart-add:hover {
    background-color: #1d1d1d;
}

.cart-buy {
    background-color: #FF2E00;
    width: 93px;
    height: 33px;
}

.cart-buy:hover {
    background-color: #5172fd;
}

/* product detail */
.grid-pro-detail {
    display: flex;
    justify-content: space-between;
}

.grid-pro-detail .left-pro-detail {
    width: 30.77%;
}

.grid-pro-detail .side-pro-detail {
    width: 29.5%;
}

.grid-pro-detail .right-pro-detail {
    width: 29.5%;
}

.grid-pro-detail .right-pro-detail ul {
    list-style: none;
    padding: 0px;
}

.grid-pro-detail .right-pro-detail ul li {
    margin-bottom: 20px;
}

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

.grid-pro-detail .right-pro-detail ul li .attr-content-pro-detail .price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: #f00;
}

.grid-pro-detail .right-pro-detail .title-pro-detail {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.title-product-detail {
    background: #EEEEEE;
    color: #1C1B19;
    padding: 12px 18px;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.album-product {
    position: relative;
    max-width: 550px;
    margin: 10px auto 0px;
}

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

.col-pro-detail {
    padding: 0px 5px;
}

.swiper-button-next,
.swiper-button-prev {
    padding: 7px;
    background: rgb(0 0 0 / 20%);
    color: #fff;
    border-radius: 5px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

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

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

.swiper-pro-detail .swiper-button-prev,
.swiper-pro-detail .swiper-button-next {
    top: calc(50% + 7px);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 50%);
    border-radius: 5px;
    color: #fff;
}

.swiper-pro-detail .swiper-button-next:after,
.swiper-pro-detail .swiper-button-prev:after {
    font-size: 15px;
}

.swiper-pro-detail .swiper-button-prev:hover,
.swiper-pro-detail .swiper-button-next:hover {
    background: var(--color-main);
    color: #fff;
}

.item-detail {
    padding: 0px 1rem;
    position: relative;
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

.item-detail:first-child {
    padding-left: 0px;
}

.item-detail::after {
    position: absolute;
    right: 0px;
    top: 3px;
    width: 1px;
    height: 14px;
    background: #8E8E8E;
    content: "";
}

.item-detail:last-child::after {
    display: none;
}

.item-detail i {
    margin-right: 5px;
}

.item-detail-comment-star {
    position: relative;
    font-size: 13px;
    margin-right: 19px;
}

.item-detail-comment-star::after {
    position: absolute;
    right: -19px;
    top: 3px;
    width: 1px;
    height: 14px;
    background: #8E8E8E;
    content: "";
}

.item-detail-comment-star span {
    position: absolute;
    left: 0px;
    top: 0px;
    color: #FFCD00;
    white-space: nowrap;
    overflow: hidden;
}

.product-sold-detail {
    color: #9F9F9F;
    font-size: 14px;
}

.product-sold-detail span {
    color: #474747;
    font-weight: 600;
}

.product-price-detail {
    background: #F5F5F5;
    padding: 12px 20px;
    border-radius: 6px;
}

.product-price-detail strong {
    color: #474747;
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
}

.product-price-detail .attr-content-pro-detail {
    display: flex;
    align-items: center;
}

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

.product-price-detail .price-old-pro-detail {
    color: #9E9E9E;
    font-size: 15px;
    margin-right: 35px;
}

.product-price-detail .percent-pro-detail {
    color: #fff;
    font-size: 13px;
    padding: 1px 10px;
    border-radius: 2px;
    background: var(--color-main);
}

.attr-label-pro-detail {
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.price-new-pro-detail {
    color: #E00000;
    font-family: Roboto;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.percent-pro-detail {
    display: inline-flex;
    height: 19px;
    padding: 0 6px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 1px;
    border: 1px solid #E00000;
    background: #FFEDED;
    color: #E00000;
    font-family: Roboto;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    position: relative;
    bottom: 5px;
    margin-left: 10px;
}

.price-old-pro-detail {
    text-decoration: line-through;
    padding-right: 6px;
    color: #6D6E72;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 192.308% */
    text-decoration-line: line-through;
}

.color-pro-detail.active {
    color: #fff !important;
    background: var(--color-main);
}

.size-pro-detail.active {
    color: #fff !important;
    background: var(--color-main);
}

.size-pro-detail:hover {
    color: #fff !important;
    background: var(--color-main);
}

.quantity-pro-detail {
    margin-top: 10px;
    width: 100%;
    max-width: 116px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    border: 1px solid #000;
    margin-right: 20px;
    border-radius: 15px;
    font-weight: 500;
    border: none;
    border-radius: 0px;
    gap: 5px;
}

.quantity-pro-detail span {
    line-height: 33px;
    padding: 0;
    width: 35px;
    height: 35px;
    color: #000;
    cursor: pointer;
    font-size: 18px;
    border-radius: 3px;
    border: 1px solid #C5C5C5;
    background: rgba(255, 255, 255, 0.00);
}

.quantity-pro-detail span.quantity-plus-pro-detail {
    margin-left: -1px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
    margin-right: -1px;
}

.quantity-pro-detail input {
    height: 35px;
    width: 35px;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #C5C5C5;
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.quantity-pro-detail .quantity-minus-pro-detail {
    background-color: #FFFFFF;
    border: 1px solid #C5C5C5;
}

.quantity-pro-detail .quantity-plus-pro-detail {
    background-color: #FFFFFF;
    border: 1px solid #C5C5C5;
}

.cart-pro-detail {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-pro-detail .span-contact,
.cart-pro-detail a {
    text-align: center;
    color: #fff;
    padding: 10px 20px;
    text-transform: capitalize;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
    border: 1px solid var(--color-main);
    width: 100%;
}

.cart-pro-detail .span-contact {
    border-color: #F90E11;
    background: #F90E11;
}

.cart-pro-detail a i {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
}

.cart-pro-detail a.addnow {
    color: var(--color-main);
}

.cart-pro-detail a.addnow:hover {
    background-color: var(--color-main);
    color: #fff;
    border-color: var(--color-main);
}

.cart-pro-detail a.buynow {
    background-color: var(--color-main);
}

.cart-pro-detail a.buynow:hover {
    background-color: var(--color-main);
    color: #fff;
}

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

.wrap-show-content.max-height {
    max-height: 500px;
    overflow: hidden;
}

.wrap-show-content.active {
    max-height: 100%;
}

.wrap-show-content.active .btn-show-content {
    position: relative;
    padding: 20px;
    background: none;
}

.btn-show-content {
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, transparent, #FAFAFA);
    padding-top: 100px;
    padding-bottom: 2px;
}

.btn-show-content span {
    background: #F3F3F3;
    color: #000;
    padding: 9px 18px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0px -3px 5px #ccc;
}

.btn-show-content span i {
    margin-left: 10px;
}

/* css brand */
.brand-pic {
    margin-bottom: 1rem;
}

.brand-name {
    font-size: 16px;
}

.brand-name a {
    font-weight: 700;
    color: #333;
}

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

/* css album */
.row-album {
    margin: 0px -10px;
}

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

.album-name {
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

.album-name a {
    font-weight: 700;
    color: #333;
}

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

/* css block actions  */
.ul-actions {
    display: flex;
    justify-content: center;
    margin: 20px;
    gap: 15px;
    align-items: flex-start;
}

.ul-actions li,
.ul-actions>div {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 80px;
    text-align: center;
}

.ul-actions .active .box__tabr,
.ul-actions .box__tabr:hover {
    border-color: #fd6e1d;
}

.ul-actions .box__tabr {
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    min-height: 55px;
    padding: 4px;
    height: 60px;
    width: 80px;
}

.icon-action {
    background-image: url('../images/icon_chitiet@2x-min.png');
    background-repeat: no-repeat;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    vertical-align: middle;
    background-size: 300px 180px;
}

.icon-dnb {
    background-position: 0 0;
    height: 28px;
    width: 28px;
}

.icon-tskt {
    background-position: -105px 0;
    height: 30px;
    width: 30px;
}

.icon-ttsp {
    background-position: -140px 0;
    height: 19px;
    width: 23px;
}

.ul-actions p {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 5px;
    white-space: normal;
    color: #000;
}

/* modal-detail */
.modal-detail::-webkit-scrollbar {
    width: 10px;
}

.modal-detail::-webkit-scrollbar-thumb {
    width: 10px;
    background: #4d90e0;
    border-radius: 10px;
    height: 50px;
}

.modal-detail {
    position: fixed;
    z-index: 999;
    background: #000000c4;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.content-modal-detail {
    background: #fff;
    max-width: 1200px;
    margin: 0px auto;
    min-height: 100vh;
}

.content-modal-detail .tabs {
    display: flex;
    cursor: pointer;
    padding: 0;
    list-style: none;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0px;
    background: #fff;
    z-index: 99;
}

.content-modal-detail .tabs li {
    padding: 20px 20px;
    margin-right: 5px;
    font-weight: bold;
    position: relative;
    border-bottom: 4px solid #fff;
}

.content-modal-detail .tabs li.active {
    color: #2d9cdb;
    border-bottom: 4px solid #2d9cdb;
}

.content-modal-detail .tab-content {
    padding: 20px;
    max-width: 900px;
    margin: 0px auto;
}

.content-modal-detail .tab-content.active {
    display: block;
}

.close-tab {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 10;
}

.btn-closemenu {
    position: fixed;
    top: 10px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    line-height: 21px;
    padding: 7px;
    text-align: right;
    width: 72px;
}

.btn-closemenu::before {
    transform: rotate(45deg);
}

.btn-closemenu::after {
    transform: rotate(-45deg);
}

.btn-closemenu::before,
.btn-closemenu::after {
    background-color: #333;
    content: '';
    left: 13px;
    height: 14px;
    position: absolute;
    top: 10px;
    width: 1px;
}

.cursor-pointer {
    cursor: pointer;
}

/* Contact */
.contact-detail {
    display: flex;
    justify-content: space-between;
}

.left-contact-detail {
    width: 60%;
}

.right-contact-detail {
    width: calc(100% - 60% - 60px);
}

.contact-map {
    position: relative;
    height: 385px;
    border-radius: 10px;
    overflow: hidden;
}

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

.row-contact {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-contact {
    text-align: center;
}

.social-contact>div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
    padding: 5px 30px;
    margin-top: 30px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.social-contact>div a {
    display: inline-block;
    margin: 0 2px;
}

.contact-item {
    width: calc((100% / 3) - 10px);
    text-align: center;
    font-size: 15px;
}

.contact-item i {
    display: inline-block;
    margin-bottom: 10px;
}

.contact-item img {
    width: 40px;
    height: 40px !important;
}

.contact-item p {
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item span {
    font-size: 14px;
}

.row-contact-input {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.row-contact-input .contact-input:nth-child(1) {
    width: 80%;
}

.row-contact-input .contact-input:nth-child(2) {
    width: calc(100% - 80% - 8px);
}

.row-contact-input .contact-input:nth-child(2) label {
    margin-bottom: 15px;
}

.contact-input label {
    font-size: 12px;
    font-weight: 600;
    color: #22292f;
    transition: all 0.8s;
}

.contact-input input {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0;
    height: 45px;
    margin-bottom: 15px;
    overflow: hidden;
}

.contact-input input::placeholder {
    font-size: 15px;
    color: #ced4da;
    transition: all 0.5s !important;
}

.contact-input textarea {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0;
    height: 70px;
    margin-bottom: 20px;
}

.contact-input textarea::placeholder {
    font-size: 15px;
    color: #ced4da;
    transition: all 0.5s !important;
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    height: 40px;
    background: var(--color-main);
    border-radius: 30px;
    margin: auto;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s;
}

.contact-form button:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    background: #000;
}

.contact-input {
    display: flex;
    flex-direction: column-reverse
}

.contact-input .form-control {
    overflow: hidden;
}

.contact-input .form-control:focus {
    color: #212529;
    border-color: var(--color-main);
    outline: 0;
    box-shadow: unset !important;
}

.contact-input .form-control:focus::placeholder {
    transform: translateY(-200%);
}

.contact-input .form-control:focus+label {
    color: var(--color-main);
}

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

.contact-input input[type="file"] {
    display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 20px;
    display: block;
    text-align: center;
}

.file-input.has-file label {
    color: var(--color-main);
}

.custom-file-upload i {
    font-size: 25px;
}

.custom-file-upload:hover {
    color: var(--color-main);
}

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

/*  breadCrumbs */
.breadCrumbs {
    padding: 10px 10px;
    background: #ddd;
}

.breadCrumbs ol {
    margin: 0px;
}

.breadCrumbs ol li a {
    color: #333;
}

.breadCrumbs ol li a:hover {
    color: #f00;
}

/* paging */
.paging-product {
    position: relative;
}

.pagination {
    margin: 20px 0px;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination li span {
    cursor: pointer;
}

.pagination .page-item .page-link {
    color: var(--color-main);
}

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

.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 10;
    cursor: pointer;
}

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

.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;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: #1182fc;
    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;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}

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

.grid-properties {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.grid-properties span {
    position: relative;
    border: 1px solid #ddd;
    padding: 5px 24px 5px 5px;
    cursor: pointer;
    width: 100%;
    position: relative;
}

.grid-properties span svg {
    top: 5px;
    right: 8px;
    position: absolute;
}



.grid-properties span:hover,
.grid-properties span.active {
    border: 1px solid #f00;
    color: #f00;
}

.grid-properties span:hover:after,
.grid-properties span.active:after {
    content: '';
    border: 0.9375rem solid transparent;
    border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
    bottom: 0;
    position: absolute;
    right: -0.9375rem;
}

.grid-properties span.outstock {
    pointer-events: none;
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.26);
    cursor: not-allowed;
}

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

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

[x-cloak] {
    display: none !important;
}

/* CSSS T */
a.views_dm {
    width: 140px;
    height: 38px;
}

.effect_button {
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.25s;
    position: relative;
    display: inline-flex;
    z-index: 1;
}

.effect_button:after,
.effect_button:before {
    position: absolute;
    content: 'xem them';
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f00;
    box-sizing: border-box;
    border-radius: 5px;
    z-index: -1;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}

.effect_button:before {
    color: #fff;
    background: #f00;
    transform: rotateY(0deg) translateZ(25px);
}

.effect_button:after {
    color: #f00;
    transform: rotateX(90deg) translateZ(25px);
}

.effect_button:hover {
    transform: translateZ(-25px) rotateX(-90deg);
}

/* News */
.flex-news-detail {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.news-left {
    width: 68%;
}

.news-right {
    position: sticky;
    top: 61px;
    width: 30%;
    background: #f1f1f1cc;
    padding: 20px;
    box-shadow: 0px 0px 5px #99999978;
}

.news-right .title-main span {
    font-size: 25px;
}

a.btn_link {
    position: relative;
    margin: 5px;
    height: 36px;
    width: 140px;
}

.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before {
    content: 'facebook';
}

.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before,
.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(0 165 217 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(0 165 217 / var(--tw-bg-opacity));
}

.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
    content: 'google map';
}

div.slick.in-page:not(.slick-initialized) {
    display: flex;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.attr-pro-detail {
    margin: auto;
    padding: 0;
}

.baonoidung table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    -webkit-border-horizontal-spacing: 1px;
    -webkit-border-vertical-spacing: 1px;
    display: block;
    overflow-y: auto;
}

.baonoidung tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.baonoidung tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}

.baonoidung td {
    display: table-cell;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-width: 1px;
}

.baonoidung ul,
.baonoidung ol {
    list-style: auto;
    padding-left: 2rem;
}

.baonoidung ul li,
.baonoidung ol li {
    margin-bottom: 0.75rem;
    list-style-type: auto;
}

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

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

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

div.desc-pro-detail ul li {
    margin-bottom: 0.75rem;
    list-style-type: circle;
}

div.desc-pro-detail ul li:last-child {
    margin-bottom: 0 !important;
}

div.baonoidung ul li {
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

div.baonoidung ol li {
    margin-bottom: 0.75rem;
    list-style-type: decimal;
}

/* Swipper */
.swiper .swiper-wrapper {
    width: inherit;
    height: inherit;
}

.swiper.swiper-initialized .swiper-wrapper {
    margin: 0;
    width: 100%;
    height: 100%;
}

.swiper.swiper-initialized .swiper-slide {
    padding: 0;
    margin: 0px;
    overflow: hidden;
}

/* Popup */
.modal-title {
    font-size: 20px;
}

/* CSS cho loading */
.loading-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.loading {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 5px solid #3498db;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* About */
.wrap-about {
    padding: 55px 0px;
    background: #E7F5EE;
    margin-bottom: 50px;
}

.left-about {
    width: 46.4%;
}

.right-about {
    width: 47.6%;
}

.video-about {
    width: 100%;
    margin-top: 60px;
}

.title-about {
    padding-left: 14px;
    position: relative;
    margin-bottom: 20px;
}

.title-about::after {
    position: absolute;
    left: 0px;
    top: 6px;
    bottom: 9px;
    width: 3px;
    background: #15AA5A;
    content: '';
    border-radius: 5px;
}

.title-about p {
    color: #15AA5A;
    font-size: 22px;
    margin-bottom: 0px;
    font-style: italic;
    text-transform: uppercase;
    line-height: 30px;
}

.title-about span {
    color: #E5020D;
    font-size: 35px;
    margin-bottom: 0px;
    font-weight: 800;
    display: block;
    text-transform: uppercase;
    line-height: 45px;
}

.right-about .title-about span {
    color: #15AA5A;
}

.desc-about {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
}

.desc-about.text-split {
    -webkit-line-clamp: 6;
}

.view-about {
    display: inline-block;
    padding: 14px 24px;
    color: #fff;
    background: #15AA5A;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
}

.view-about:hover {
    color: #fff;
    background: #E5020D;
}

/* Product */
.wrap-product {
    margin-bottom: 40px;
}

.wrap-product .swiper-button-prev {
    left: -30px;
}

.wrap-product .swiper-button-next {
    right: -30px;
}

.tab-product {
    text-align: center;
    margin-bottom: 15px;
}

.item-tab-product {
    cursor: pointer;
    color: #333;
    border-radius: 5px;
    border: 1px solid #15AA5A;
    padding: 5px 15px;
    display: inline-block;
    margin: 0px 5px 5px;
}

.item-tab-product:hover,
.item-tab-product.active {
    background: #15AA5A;
    color: #fff;
}

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

.name-brand {
    margin-top: 10px;
}

.name-brand a {
    color: #333;
    font-size: 15px;
}

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

.wrap-readmore {
    text-align: center;
}

.wrap-readmore span {
    color: #fff;
    background: var(--color-main);
    padding: 10px 20px;
    border: 1px solid var(--color-main);
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.wrap-readmore span:hover {
    color: #fff;
    background: #f00;
    border-color: #f00;
}

.wrap-readmore span.active::before {
    position: absolute;
    inset: 0px;
    content: '';
    color: #fff;
    background: var(--color-main);
    transition: 0.7s;
}

.wrap-readmore span.active::after {
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    content: '\e4bb';
    color: #fff;
    font-family: 'Font Awesome 6 Pro';
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.7s;
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*  */
.header-top {
    padding: 8px 0 7px;
    border-bottom: 1px solid #2277FF;
}

.social-header {
    gap: 5px;
}

.social-header span {
    color: #FFF;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 192.308% */
}

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

/*  */
.show-search {
    position: absolute;
    overflow-x: hidden;
    overflow-y: overlay;
    z-index: 9999;
    max-height: 426px;
    top: 100%;
    background: #fff;
    min-width: 350px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.show-search::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 50px;
}

.show-search::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
}

.show-search::-webkit-scrollbar-thumb {
    background-color: var(--color-main);
}

.box-search {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-boxSearch {
    background-color: #f3f3f3;
    padding: 5px 10px;
    color: #4a4a4a;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
}

.title-boxSearch span.bold {
    color: var(--color-main);
    font-weight: 600;
}

/* Category search  */
.item-catSearch {
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #eee;
}

.name-catSearch {
    font-size: 12px;
    line-height: 17px;
    color: #222;
    white-space: nowrap;
}

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

/* Product search  */
.proSearch-img {
    width: 40px;
}

.proSearch-img a,
.proSearch-img img {
    border-radius: 4px;
}

.info-proSearch {
    width: calc(100% - 50px);
}

.name-proSearch {
    margin-bottom: 8px;
    line-height: 17px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
}

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

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

.price-proSearch {
    font-size: 12px;
    color: #434343;
}

.priceNew-proSearch {
    color: #CD1111;
    font-size: 13px;
    margin-right: 3px;
    font-weight: 700;
}

.priceOld-proSearch {
    text-decoration: line-through;
}

.price-per-proSearch {
    font-size: 12px;
    color: var(--color-hover);
}

/*  */
.phone-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.img-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 56px;
    background: url(../images/main/tron.webp);
}

.img-phone svg {
    animation: soft-shake 2s ease-in-out infinite;
}

.content-phone {}

.content-phone span {
    color: #FFF;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 192.308% */
}

.content-phone p {
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 0;
}

.cart-nav {
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
    padding: 5px 10px;
    border-radius: 6px;
    animation: shadowRun 3s linear infinite;
}

.cart-nav a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.content-nav-cart {}

.content-nav-cart>span {
    color: #FFF;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.content-nav-cart p {
    color: #FFF;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
}

.content-nav-cart p span {
    color: #FFD64E;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

/*  */
@keyframes soft-shake {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-5deg);
    }

    20% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-4.5deg);
    }

    40% {
        transform: rotate(4.5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/*  */
.items-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 30px;
    border-right: 1px solid #488AF4;
}

.nav-info h3 a {
    color: #FFF;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    -webkit-line-clamp: 1;
}

.nav-info h3 a:hover {
    color: #fc0;
}

.nav-info h3 {
    margin-bottom: 0;
}

.nav-pic {}

.nav-infor {}

.header-slide {
    background: #0A68FF;
}

.header-slide .wrap-content {
    padding: 13px 0;
    border-top: 1px solid #2277FF;
}

.box-flex-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-flex-header p {
    margin-bottom: 0;
    color: #FFF;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.box-news-slide {
    width: calc(100% - 107px);
}

/*  */
.hrv-rotateY img {
    transition: all 0.9s ease 0s;
}

.hrv-rotateY:hover {
    text-decoration: none;
}

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

/*  */
.lefts_menu {
    width: 280px;
    z-index: 123;
    position: relative;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.titles_menu_left {
    color: #FFF;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    padding: 13px 15px 9px 15px;
    margin-bottom: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    gap: 0px 8px;
    border-radius: 10px 10px 0px 0px
}

.names-left {
    display: block;
    text-align: left;
    color: #212121;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 166.667% */
    text-transform: uppercase;
}

.names-left a {
    color: #212121;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 166.667% */
    text-transform: uppercase;
}

.names-left a:hover {
    color: var(--color-main);
}

.lst-pro-lefts {
    position: relative;
    width: 100%;
    z-index: 100;
    background: rgb(255, 255, 255);
    padding: 0px 0px 8px;
    border-radius: 0px 0px 10px 10px;
    border-top: 0px;
    padding-left: 4px;
}

.lst-pro-lefts>ul>li>ul.menu_heights {}

.lst-pro-lefts>ul>li {
    padding: 0px 12px;
}

.lst-pro-lefts>ul>li:hover {
    position: inherit;
    background: #F3F4F6;
}

.lst-pro-lefts ul li {
    line-height: 52px;
}

.lst-pro-lefts ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.lst-pro-lefts ul li a {
    color: #000;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    padding-left: 10px;
    font-weight: normal;
    text-align: left !important;
    font-weight: normal;
    position: relative;
    text-transform: capitalize;
}

.lst-pro-lefts>ul>li>a {
    position: relative;
    padding-left: 33px;
    padding-right: 5px;
    border-bottom: 1px solid #F2F2F2;
}

.lst-pro-lefts>ul>li:hover>a,
.lst-pro-lefts>ul>li li:hover>a {
    color: #0A68FF;
}

.lst-pro-lefts>ul>li:hover>ul {
    display: block;
}

.lst-pro-lefts ul li ul li a {
    font-weight: 700;
    color: #000
}

.lst-pro-lefts>ul>li>ul {
    display: none;
    width: 100%;
    background: #fff;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    min-width: 1020px;
    margin-left: 0px;
    left: 100%;
    top: -52px;
    min-height: 551px;
    box-shadow: 5px 0px 5px #ccc;
    border-left: 10px solid #F5F5FA;
    border-radius: 4px;
}

.lst-pro-lefts>ul>li>ul>li {
    float: left;
    background: transparent;
    padding: 0;
    margin: 0;
}

.lst-pro-lefts>ul>li>ul>.height li,
.lst-pro-lefts>ul>li>ul>li {
    margin: 0;
    list-style: none;
    width: 33.33%;
    background: none;
    padding: 0px 18px;
    float: left;
    margin-bottom: 10px;
}

.lst-pro-lefts>ul>li>ul>.height li:nth-child(3n+1) {
    clear: both;
}

.lst-pro-lefts>ul>li>ul>.height li a,
.lst-pro-lefts>ul>li>ul>li a {
    color: #777;
    padding: .2em 0;
    width: 95%;
    display: block;
    /* border-bottom: 1px solid #ccc; */
}

.lst-pro-lefts>ul>li>ul>.height li a:hover,
.lst-pro-lefts>ul>li>ul>li a:hover {
    color: #e30000;
}

.lst-pro-lefts>ul>li>ul>.height li>ul,
.lst-pro-lefts>ul>li>ul>li>ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.lst-pro-lefts>ul>li>ul>.height li>ul>li,
.lst-pro-lefts>ul>li>ul>li>ul>li {
    float: left;
    width: 100%;
    padding: 8px 0;
    margin: 0;
    font-size: .8em;
    text-indent: 15px;
}

.lst-pro-lefts>ul>li>ul>.height li>ul>li a,
.lst-pro-lefts>ul>li>ul>li>ul>li a {
    border: 0;
}

.lst-pro-lefts>ul>li>ul>.height li>ul>li a:hover,
.lst-pro-lefts>ul>li>ul>li>ul>li a:hover {
    color: #e30000;
}

.lst-pro-lefts>ul>li>ul>.height li a,
.lst-pro-lefts>ul>li>ul>li a {
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    text-align: left;
    line-height: normal;
    color: #333;
    padding-bottom: 5px;
}

.lst-pro-lefts>ul>li>ul>.height>li>a {
    font-size: 16px;
    color: #0A68FF;
    padding-left: 8px;
    position: relative;
}

.lst-pro-lefts>ul>li>ul>.height>li>a:After {
    content: '';
    position: absolute;
    left: 0;
    top: 44%;
    transform: translateY(-50%);
    width: 2px;
    height: 15px;
    background: #3e78d5;
    border-radius: 20px;
}

.lst-pro-lefts>ul>li>ul>.height>li>ul>li>a,
.lst-pro-lefts>ul>li>ul>li>ul>li a {
    display: block;
    color: #777;
    padding: 0px;
    text-align: left;
    transition: .3s all ease 0s;
    text-transform: none;
}

.lst-pro-lefts>ul>li>ul>.height li ul li a,
.lst-pro-lefts>ul>li>ul>li ul li a {
    font-weight: 500
}

.scrollbar_menu_lss {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 490px;
}

.scrollbar_menu_lss::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #E8E8E8;
    border-radius: 30px;
}

.scrollbar_menu_lss::-webkit-scrollbar {
    width: 4px;
    background-color: #E8E8E8;
    border-radius: 30px;
}

.scrollbar_menu_lss::-webkit-scrollbar-thumb {
    background-color: #0A68FF;
    border-radius: 30px;
}

.scrollbar_menu_lss {
    direction: rtl;
}

.scrollbar_menu_lss>* {
    direction: ltr;
}

/*  */
.box-flex-slide {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.box-right-slide {
    width: calc(100% - 290px);
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.left-slide {
    width: 69.10%;
}

.right-slide {
    width: 29.90%;
}

.wrap-slide {
    padding: 20px 0;
    overflow: hidden;
}

/*  */
.gr-tabcat {
    overflow-y: scroll;
    white-space: nowrap;
    padding: 0;
    max-height: calc(100% - 40px);
    padding-right: 5px;
    text-wrap: wrap;
    scrollbar-gutter: stable;
}

.gr-tabcat::-webkit-scrollbar-track {
    border-radius: 30px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #E8E8E8;
    border-radius: 50px;
}

.gr-tabcat::-webkit-scrollbar {
    width: 3px;
    background-color: #E8E8E8;
    border-radius: 30px;
}

.gr-tabcat::-webkit-scrollbar-thumb {
    background-color: #0A68FF;
    border-radius: 30px;
}

/*  */
.slide-rad img {
    border-radius: 5px;
}

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

.box-title-fs {
    border-radius: 10px 10px 0 0;
    background: #0A68FF;
    padding: 9px 14px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-fs {}

.title-fs h2 {
    color: #FFF;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.box-title-fs a {
    color: #FFF;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.box-fs {
    padding: 10px 9px 14px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.box-fs .prev-product,
.box-fs .next-product {
    opacity: 0;
    transition: .4s all;
}

.box-fs:hover .prev-product,
.box-fs:hover .next-product {
    opacity: 1;
    transition: .4s all;
}

.box-proAll .btn-pro-hrv {
    opacity: 0;
    transition: .4s all;
}

.box-proAll:hover .btn-pro-hrv {
    opacity: 1;
    transition: .4s all;
}

/*  */
.product.pro2 .product-name a {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.box-proAll {
    border-radius: 10px;
    background: #FFF;
    padding: 9px 9px 14px;
    position: relative;
}

.box-title-proAll {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 7px;
    margin-bottom: 10px;
    border-bottom: 1px solid #EAEAEA;
    height: 46px;
    gap: 30px;
    flex-wrap: wrap;
}

.title-proAll {
    display: inline-flex;
    align-items: center;
}

.title-proAll h2 {
    color: #202020;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.box-title-proAll a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7B7B7B;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.box-proAll-content {}

.pro-mask {
    position: absolute;
    left: 0px;
    top: 0px;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 192.308% */
    text-transform: uppercase;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0A68FF;
    clip-path: polygon(100% 0, 100% 83%, 50% 100%, 0 83%, 0 0);
}

.product.pro2:after {
    display: none;
}

/*  */
.items-brand {
    border: 1px solid #D9D9D9;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 5px;
}

.img-brand {
    margin-bottom: 6px;
}

.img-brand a {
    border-radius: 6px;
}

.icon-brand {
    max-width: 88%;
    margin: 0 auto 10px;
}

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

.inf-brand h3 {
    margin-bottom: 2px;
}

.inf-brand h3 a {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.inf-brand h3 a:hover {
    color: var(--color-main);
}

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

.slide-rad2 img {
    border-radius: 10px;
}

.slide-hidden2 {
    display: none;
}

/*  */
.grid-pro {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pro-w {
    width: calc(100% / 6 - 9px);
}

.xemthem {
    margin: 20px 0 10px;
}

.xemthem a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #E00000;
    background: #FFF;
    color: #E00000;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.xemthem a:hover {
    background: #E00000;
    color: #fff;
}

/*  */
.item-tc {
    text-align: center;
    padding: 33px;
    border-radius: 10px;
    background: #FFF;
}

.img-tc {
    margin-bottom: 12px;
}

.img-tc span {}

.img-tc span img {
    max-width: 70px;
}

.content-tc {}

.content-tc span {
    color: #252525;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    -webkit-line-clamp: 1;
    margin-bottom: 4px;
}

.content-tc p {
    color: #787878;
    text-align: center;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
}

.wrap-tc {
    margin-bottom: 20px;
}

/*  */
.social-footer2 {
    margin-top: 20px;
    align-items: center;
    gap: 6px;
}

.social-footer2 span {
    margin-top: 8px;
    display: inline-block;
    margin-right: 10px;
    color: #232323;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 138.889% */
}

/*  */
.footer-bottom {
    padding-top: 35px;
}

.list-cat-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.box-w-cat {
    width: calc(16.66% - 20px);
}

.box-w-cat span {
    color: #0A68FF;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 166.667% */
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/*  */
.wrap-banner-detail {
    padding: 10px 0 21px;
}

.box-flex-detail {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.row-pro-left {
    width: 280px;
}

.row-pro-right {
    flex: 1;
    max-width: 1000px;
}

/*  */
.col-procate {
    max-height: 495px;
    overflow-y: auto;
    direction: rtl;
    /* Thanh scroll bÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Âªn trÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡i */
    padding: 0 18px 0 17px;
}

.col-procate a {
    color: #000;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.col-procate ul {
    padding-left: 25px;
    direction: ltr;
    /* NÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢i dung vÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â«n ÃƒÆ’Ã¢â‚¬Å¾ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚Â»Ãƒâ€šÃ‚Âc trÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡i sang phÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â£i */
    margin: 0;
}

.col-procate li {
    list-style: none;
    position: relative;
    text-align: left;
    text-indent: 5px;
}

.col-procate>li {
    padding: 10px 0;
    border-bottom: 1px solid #F2F2F2;
}

.box-row-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    cursor: pointer;
    direction: ltr;
    gap: 7px;
}

.row-name-cat a {
    color: #000;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.row-name-list>a {
    color: #000;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
    background: url(../images/main/menu2.png)center left no-repeat;
}

a {}

.show-row-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.show-row-menu.rotate {
    transform: rotate(90deg);
}

.col-procate ul ul {
    display: none;
    margin-top: 5px;
}

.col-procate li:hover>div a {
    color: #0253a4;
}

.col-procate .row-name-list:hover a,
.col-procate .row-name-cat:hover a {
    color: var(--color-main);
}

.subMenu-lv2 li:hover a {
    color: var(--color-main);
}

/*  */
.list-pro-cate {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.sub-menu {
    display: none;
    margin-left: 15px;
}

.sub-menu>li {
    border-bottom: 1px solid #e9e9e9;
}

.show-row-menu i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.show-row-menu.rotate i {
    transform: rotate(90deg);
}

.col-procate::-webkit-scrollbar-track {
    border-radius: 30px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #E8E8E8;
    border-radius: 50px;
}

.col-procate::-webkit-scrollbar {
    width: 4px;
    background-color: #E8E8E8;
    border-radius: 30px;
}

.col-procate::-webkit-scrollbar-thumb {
    background-color: #0A68FF;
    border-radius: 30px;
}

.subMenu-lv2 {
    display: none;
}

.subMenu-lv2>li {
    padding: 7px 0;
}

.title-list-cate {
    height: 47px;
    display: flex;
    align-items: center;
    padding-left: 13px;
}

.title-list-cate span {
    display: inline-flex;
    align-items: center;
    color: #212121;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 166.667% */
    text-transform: uppercase;
    gap: 5px;
}

.boxl-pro {
    margin-bottom: 20px;
}

/*  */
.pro-flex {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 7px;
    border-radius: 5px;
    background: #FFF;
}

.pro-flex-pic {
    width: 87px;
}

.pro-flex-pic a {
    border-radius: 6px;
}

.pro-flex-info {
    flex: 1;
}

.pro-flex-info h3 {}

/*  */
.title-list-detail {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 16px 30px;
    margin-bottom: 10px;
    align-items: center;
}

.title-list-detail h1 {
    color: #353535;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 187.5% */
    text-transform: uppercase;
    margin-bottom: 0;
}

.detail-list-flex {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-list-flex a {}

.detail-list {
    line-height: 1;
}

.detail-list span {
    color: #353535;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 187.5% */
    text-transform: uppercase;
    display: inline-block;
}

.item-tab-product2 {
    text-align: center;
}

.tab-detail {
    padding: 10px 0 6px;
}

.item-tab-product2 a.img-tabpro2 {
    display: block;
    border-radius: 50%;
    margin-bottom: 6px;
}

.item-tab-product2 a.img-tabpro2 img {
    border-radius: 50%;
    max-width: 76px;
}

.item-tab-product2 h3 {
    margin: 0;
}

.item-tab-product2 h3 a {
    color: #2B2B2B;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

/*  */
.box-sort-detail {
    display: flex;
    align-items: center;
    gap: 9px;
}

.box-sort-detail>span {
    color: #353535;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.title-list-detail.size2 {
    padding: 12px 30px;
}

.title-list-detail.size2 .title-list-detail {
    margin-top: 5px;
}

/*  */
.bg-main {
    border-radius: 10px;
    background: #FFF;
}

.bg-main.pd-size1 {
    padding: 13px 15px;
}

.bg-main.pd-size2 {
    padding: 21px;
}

.bg-main.pd-size3 {
    padding: 19px;
}

.bg-main.pd-size4 {
    padding: 10px;
}

.bg-main.pd-size4 .nav-tabs {
    border-color: #F3F3F3;
}

.title-pro-detail {
    color: #000;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
}

.title-deitail2 {
    margin-bottom: 10px;
}

.title-deitail2 span {
    color: #000;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.mini-pro {
    padding-bottom: 8px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 20px;
}

/* price */
.price-show-detail span {
    color: #E00000;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

/*  */
.nav-cutome {
    min-width: 210px;
    height: 60px;
    color: #000;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 200% */
    text-transform: capitalize;
}

.nav-tabs .nav-cutome.active {
    color: #000;
    background: #F3F3F3;
    border-color: #F3F3F3;
    border-radius: 10px 10px 0 0;
}

.pd-content {
    padding: 30px;
}

.mb-detail {
    margin: 20px 0;
}

.name-user-info {
    color: #fff;
}

/*  */
.close-custome {
    position: absolute;
    padding: 0;
    width: 42px;
    height: 42px;
    border: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    right: -16px;
    top: -16px;
    box-shadow: 1px 1px 5px #625b5b;
    z-index: 1;
}

.close-custome button {
    margin: 0 !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0 !important;
}

.inf-login-noti {
    margin-bottom: 20px;
}

.inf-login-noti span {
    font-size: 24px;
    font-weight: 500;
}

.inf-login-noti p {
    margin: 0px;
    font-size: 15px;
}

.user-custome {
    max-width: 100%;
    box-shadow: unset;
    padding: 10px 15px;
}

.modal-rad {
    border-radius: 20px;
    background: #fff url(../images/main/bg-1.png) right center no-repeat;
    background-size: contain;
    border: 0;
}

.modal-rad .modal-body {
    width: 60%;
    background: #fff;
    border-radius: 20px 0 0 20px;
    padding: 2rem 1rem;
}

/*  */
.gr-cate-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
}

.left-gr-cate {
    width: 280px;
}

.right-gr-cate {
    flex: 1;
}

.box-sticky-pro {
    position: sticky;
    top: 150px;
    z-index: 2;
}

/*  */
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* nÃ¡Â»Ân mÃ¡Â»Â */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
    /* Ã¡ÂºÂ¨n mÃ¡ÂºÂ·c Ã„â€˜Ã¡Â»â€¹nh */
}

.modal-wrapper .modal-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/*  */
.total-search-rs {}

.total-search-rs span {}

/*  */
.pagi-custom {
    position: relative;
    top: unset;
    bottom: 0;
    margin-top: 15px;
}

.pagi-custom .swiper-pagination-bullet {
    width: 34px;
    height: 2px;
    border-radius: 0;
}

/*  */
/* HiÃ¡Â»â€¡u Ã¡Â»Â©ng box-shadow chÃ¡ÂºÂ¡y xung quanh */
@keyframes shadowRun {
    0% {
        box-shadow: 0 0 5px #c9c9c9cc, 0 0 10px #c9c9c9cc;
    }

    25% {
        box-shadow: 5px 0 10px #c9c9c9cc, 5px 0 20px #c9c9c9cc;
    }

    50% {
        box-shadow: 0 5px 10px #c9c9c9cc, 0 10px 20px #c9c9c9cc;
    }

    75% {
        box-shadow: -5px 0 10px #c9c9c9cc, -10px 0 20px #c9c9c9cc;
    }

    100% {
        box-shadow: 0 0 5px #c9c9c9cc, 0 0 10px #c9c9c9cc;
    }
}

/*  */
/* social-sales-consultant */
.social-sales-consultant {
    position: fixed;
    bottom: 200px;
    right: 20px;
    z-index: 500;
}

.social-sales-consultant .social-sales-consultant {}

.sales-consultant-items {
    position: relative;
    margin-bottom: 10px;
}

.sales-consultant-items .btn-contsultant {
    position: relative;
}

.sales-consultant-items .btn-phone {
    position: relative;
}

.sales-consultant-items .name {
    font-weight: 600;
}

.sales-consultant-items .btn-contsultant .name {
    position: absolute;
    padding: 5px 15px 5px 0px;
    width: 135px;
    text-align: center;
    right: 0px;
    top: 2px;
    border-radius: 5px 0 0 5px;
    color: #333;
    opacity: 0;
    transition: all .3s;
    box-shadow: 0 0 7px -2px rgb(0 0 0 / 50%);
    visibility: hidden;
}

.sales-consultant-items .btn-contsultant:hover .name {
    right: 25px;
    opacity: 1;
    background: #1b7cdb;
    color: #fff;
    visibility: visible;
}

.sales-consultant-items .btn-zalo:hover .icon-zalo {
    filter: drop-shadow(0px 0px 2px #fff);
}

.sales-consultant-items .btn-phone .name {
    position: absolute;
    right: 0px;
    padding: 5px 0px;
    padding-right: 20px;
    width: 135px;
    top: 2px;
    border-radius: 5px 0 0 5px;
    text-align: center;
    color: #333;
    opacity: 0;
    transition: all .3s;
    box-shadow: 0 0 7px -2px #000;
    visibility: hidden;
}

.sales-consultant-items .btn-phone:hover .name {
    right: 25px;
    opacity: 1;
    background: #ef4848;
    color: #fff;
    visibility: visible;
}

.sales-consultant-items .btn-phone:hover .icon-phone {
    filter: drop-shadow(0px 0px 2px #fff);
}

.sales-consultant-items .button {
    flex-direction: column;
    gap: 0;
}

.sales-consultant-items .info {
    position: absolute;
    width: 150px;
    right: 0;
    top: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}

.sales-consultant .button {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.sales-consultant .info {
    text-align: center;
}

.sales-consultant .info .name {
    color: #222;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
}

.sales-consultant .info .phone {
    color: #EC1D23;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.sales-consultant .icon-zalo {
    width: 34px;
    height: 34px;
    background: url(../images/main/zalo1.png);
    display: inline-block;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

.sales-consultant .icon-phone {
    width: 34px;
    height: 34px;
    background: url(../images/main/phone1.png);
    display: inline-block;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}
.sales-consultant .icon-messenger {
    width: 34px;
    height: 34px;
    background: url(../images/messenger.png);
    display: inline-block;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}
.sales-consultant .icon-wechat {
    width: 34px;
    height: 34px;
    background: url(../images/wechat.png);
    display: inline-block;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.sales-consultant-items .btn-wechat:hover .name {
    right: 25px;
    opacity: 1;
    background: #2DC100;
    color: #fff;
    visibility: visible;
}
.sales-consultant-items .btn-messenger:hover .name {
    right: 25px;
    opacity: 1;
    background: #0084FF;
    color: #fff;
    visibility: visible;
}

/*  */
.box-form {
    padding: 15px;
    background: #FFFFFF;
    border-radius: 20px;
    background: var(--trai_mau, linear-gradient(180deg, #213F9A 0%, #0066B3 100%));
}

.box-form .title-main span:after {
    filter: brightness(10);
}

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

.f-fix p {
    width: calc(50% - 6px);
    position: relative;
}

.f-fix p span {
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    display: inline-block;
    margin-bottom: 8px;
    padding-left: 4px;
}

.f-fix p:nth-child(3) {
    width: 100%;
}

.f-fix p:nth-child(4) {
    width: 100%;
}

.f-fix input {
    width: 100%;
}

.box-input {
    width: 48%;
}

.f-fix {
    position: relative;
    display: flex;
    grid-gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    row-gap: 10px;
}

.box-pos {
    position: relative;
}

.text-a {
    margin-bottom: 20px;
}

.text-a span {
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    display: inline-block;
    margin-bottom: 8px;
    padding-left: 4px;
}

.f-fix input {
    height: 46px;
    color: #000;
    text-indent: 0;
    padding: 2px 10px;
    border-width: 1px;
    border-radius: 4px;
    r: 1px solid var(--trng, #FEFEFE);
    border-radius: 10px;
    background: #FEFEFE;
}

.f-fix input::placeholder {
    color: var(--tiu, #333);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.f-fix input:focus {
    box-shadow: unset;
    background: #fff;
    color: #000;
    border-color: var(--color-main);
}

.f-fix input:focus-visible {
    box-shadow: unset;
    background: #fff;
    color: #000;
    border-color: var(--color-main);
}

.text-a textarea {
    height: 99px;
    padding: 10px 10px 5px;
    color: #000;
    text-indent: 0;
    border-radius: 10px;
    border: 1px solid var(--trng, #FEFEFE);
    background: #FEFEFE;
}

.text-a textarea::placeholder {
    color: var(--tiu, #333);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.text-a textarea:focus {
    box-shadow: unset;
    background: #fff;
    color: #000;
    border-color: var(--color-main);
}

.text-a textarea:focus-visible {
    box-shadow: unset;
    background: #fff;
    color: #000;
    border-color: var(--color-main);
}

.f-fix i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #383838;
    right: 10px;
    font-weight: 500;
    font-size: 16px;
}

.form-index1.was-validated i {
    display: none;
}

.box-flex-btn {
    text-align: center;
}

.form-newsletter2 .btn-sub {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* 25.2px */
    size: 13px;
    text-transform: uppercase;
    height: 48px;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 10px;
    border: 1px solid var(--bg, #FFF);
    background: var(--xanh_duong, #0066B3);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.box-form .form-newsletter2 .btn-sub:hover {
    transition: .4s all;
    letter-spacing: 2.2px;
    color: #fff !important;
    background: var(--color-main);
}

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

.video-popup.nocontrol video::-webkit-media-controls-timeline {
    display: none !important;
}

.video-popup.nocontrol video::-moz-media-controls-timeline {
    display: none !important;
}

.video-popup.nocontrol video::-ms-media-controls-timeline {
    display: none !important;
}

.video-popup {
    padding: 0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    background: #1a1a1e !important;
}

.circle-progress {
    width: 40px;
    height: 40px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.circular-chart circle {
    transition: stroke-dasharray 0.5s ease;
}

.video-popup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(205, 216, 255, .08) 23%, rgba(35, 36, 40, 0));
}

.video-popup--title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
}

.video-popup .f-button.is-close-btn {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

.video-popup--close {
    min-width: 100px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border-radius: 10px;
    background: hsl(240 calc(1*4%) 60% / 0.1);
    color: #fff;
    transition: 0.2s;
}

.video-popup--close:hover {
    background: hsl(240 calc(1*4%) 60% / 0.2);
}


.video-content {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: solid 1px black;
}

.video-content--pic {
    position: relative;
}

.video-content--pic:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #23232A 0%, #23232AF2 20.31%, #23232A00 100%);
}

.video-content--bottom {
    background: #23232A;
}

.video-content--child {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    border-top: solid 1px #9899A71F;
}

.video-content--icon {
    width: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 6px 12px 32px rgba(0, 0, 0, .24);
}

.video-content--info {
    flex: 1;
}

.video-content--name {
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #a6c8ff;
    font-size: 14px;
}

.video-content--reward {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    display: flex;
    gap: 3px;
    align-items: center;
    margin-bottom: 5px;
}

.video-content--reward span {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.video-content--reward span img {
    height: 14px;
}

.video-content--desc {
    font-size: 13px;
    line-height: 16px;
    color: #9597B8;
}


.video-content--button {
    padding: 10px;
    border-top: solid 1px #9899A71F;
}

.video-content--play {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: #2277FF;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    transition: 0.2s;
    cursor: pointer;
}

.video-content--play:hover {
    color: #fff;
    background: #1858be;
}

.video-content--play.success {
    background: #15AA5A;
}

.member-point {
    font-size: 16px;
    font-weight: 600;
}

.member-point span {
    color: #15AA5A;
}

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

.vid_icon {
    max-width: 25px;
}
.vid__item {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* CART  */
.ghn-address-preview-cart {
    width: 100%;
    min-height: 39px;
    background: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: normal;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
}

.ghn-address-preview-cart:hover,
.ghn-address-preview-cart.active {
    border-color: #f24c3e;
    box-shadow: 0 0 0 3px rgba(242, 76, 62, 0.1);
}

.ghn-address-preview-cart.has-value {
    color: #111827;
    font-weight: 500;
}

.ghn-address-preview-cart::after {
    content: "›";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #111827;
    line-height: 1;
}

.ghn-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(15, 23, 42, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ghn-modal-overlay.show {
    display: flex;
}

.ghn-modal {
    width: min(800px, 100%);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    overflow: hidden;
    animation: ghnModalIn .18s ease-out;
}

@keyframes ghnModalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ghn-modal-header {
    padding: 20px 24px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ghn-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.ghn-modal-close {
    border: 0;
    background: transparent;
    font-size: 24px;
    color: #777;
    cursor: pointer;
    line-height: 1;
}

.ghn-modal-body {
    padding: 10px 24px 16px;
}

.ghn-modal-panel {
    width: 100%;
}

.ghn-modal-panel-title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.ghn-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #334155;
}

.ghn-required {
    color: #f24c3e;
}

.ghn-modal-address {
    margin-bottom: 18px;
}

.ghn-modal-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ghn-modal-footer {
    padding: 0 24px 22px;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.ghn-modal-btn {
    min-width: 78px;
    height: 40px;
    border-radius: 10px;
    padding: 0 18px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid #ff5a2c;
    background: #fff;
    color: #ff5a2c;
}

.ghn-modal-btn.done {
    border-color: red;
    background: red;
    color: #9ca3af;
    cursor: not-allowed;
}

.ghn-modal-btn.done.active {
    border-color: var(--color-main);
    background: var(--color-main);
    color: #fff;
    cursor: pointer;
}

body.ghn-modal-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .ghn-modal-select-grid {
        grid-template-columns: 1fr;
    }

    .ghn-modal {
        border-radius: 16px;
    }
}