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

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Light.eot');
    src: url('../fonts/HelveticaNeue-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/HelveticaNeue-Light.woff2') format('woff2'), url('../fonts/HelveticaNeue-Light.woff') format('woff'), url('../fonts/HelveticaNeue-Light.ttf') format('truetype'), url('../fonts/HelveticaNeue-Light.svg#HelveticaNeue-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.eot');
    src: url('../fonts/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'), url('../fonts/HelveticaNeue-Bold.woff') format('woff'), url('../fonts/HelveticaNeue-Bold.ttf') format('truetype'), url('../fonts/HelveticaNeue-Bold.svg#HelveticaNeue-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.eot');
    src: url('../fonts/HelveticaNeue-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'), url('../fonts/HelveticaNeue-Medium.woff') format('woff'), url('../fonts/HelveticaNeue-Medium.ttf') format('truetype'), url('../fonts/HelveticaNeue-Medium.svg#HelveticaNeue-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue.eot');
    src: url('../fonts/HelveticaNeue.eot?#iefix') format('embedded-opentype'), url('../fonts/HelveticaNeue.woff2') format('woff2'), url('../fonts/HelveticaNeue.woff') format('woff'), url('../fonts/HelveticaNeue.ttf') format('truetype'), url('../fonts/HelveticaNeue.svg#HelveticaNeue') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-size: 14px;
    font-family: 'Helvetica Neue' !important;
    top: 0 !important;
}

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

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

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

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

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

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

img {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

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

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

.scale-img img {
    transform: scale(1, 1);
}

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

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

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

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

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

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

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

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

/*   Header   */
.header-top {
    background: #363533;
    padding: 10px 10px;
}

.header-top {
}

.changeLanguage {
    display: inline-block;
    width: 30px;
    cursor: pointer;
}

.changeLanguage img {
    width: 100%;
}

.skiptranslate {
    display: none !important;
}

.header-top .slogan span {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.header-top marquee {
    display: inline-block;
}

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

.header-top .head-mail p {
    margin: 0;
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: url(../images/main/mail-h.png) no-repeat left;
    padding-left: 22px;
}

.header-bottom {
    padding: 10px 10px;
    background: #fff;
}

.header-bottom .address-head {
    position: relative;
    padding-left: 45px;
}

.header-bottom .address-head a {
    display: flex;
    flex-direction: column;
}

.header-bottom .address-head .sub {
    color: var(--6, #363533);
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

.header-bottom .address-head .name {
    color: var(--Ch-o, #F09320);
    font-family: "Helvetica Neue";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    text-transform: uppercase;
}

.header-bottom .hotline-head {
    display: flex;
    flex-direction: column;
    padding-left: 45px;
    position: relative;
}
.header-bottom .hotline-head:after{position: absolute;content: '';width: 45px;height: 45px;background: url(../images/main/hotline.png) no-repeat center;left: -5px;top: calc(50% - 45px / 2);border: 1px solid var(--color-main);border-radius: 50%;}
.header-bottom .address-head:after{position: absolute;content: '';width: 45px;height: 45px;background: url(../images/main/address-h.png) no-repeat center;left: -5px;top: calc(50% - 45px / 2);border: 1px solid var(--color-main);border-radius: 50%;}
.hotline-head a {
    color: var(--Ch-o, #F09320);
    font-family: "Helvetica Neue";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
}

.hotline-head span {
    color: var(--6, #363533);
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

.fix_header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    background: #fff;
    box-shadow: 0 0 7px -2px #000;
}

.fix_header .menu {
}

.left-header-top {
    color: #474747;
    font-size: 16px;
    flex: 1 1 auto;
}

.right-header-top {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.right-header-top a {
    color: #1C1B19;
    font-size: 14px;
    position: relative;
    margin-right: 32px;
}

.right-header-top a:hover {
    color: var(--color-main);
}

.right-header-top a::after {
    position: absolute;
    right: -16px;
    top: 5px;
    width: 1px;
    height: 10px;
    background: #ACACAC;
    content: '';
}

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

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

.btn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 144px;
    padding: 5px 18px;
    color: #fff;
    font-size: 14px;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    background: var(--color-main);
}

.btn-header strong {
    position: relative;
}

.btn-header span {
    font-weight: 500;
    width: calc(100% - 30px);
    line-height: 17px;
}

.btn-header:hover {
    color: #fff;
    background: #A86B12;
}

.btn-header b {
    position: absolute;
    right: -11px;
    top: -8px;
    font-weight: normal;
    min-width: 18px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: #ED2323;
    border-radius: 50%;
    font-weight: 500;
    display: inline-block;
    font-size: 11px;
}

.btn-header-cart span {
    width: calc(100% - 40px);
}

.info-header {
    padding-left: 70px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 56px;
    max-width: 270px;
}

.info-header p {
    margin: 0px;
    color: #333;
    font-size: 15px;
    line-height: 20px;
}

.info-header span {
    margin: 0px;
    color: #E5020D;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.info-header-worktime {
    background: url(../images/time.png) left center no-repeat;
}

.info-header-hotline {
    background: url(../images/hotline.png) left center no-repeat;
}

.info-header-address {
    background: url(../images/address.png) left center no-repeat;
}

.right-header {
    display: flex;
}

/* Button menu */
#hamburger {
    cursor: pointer;
    width: 30px;
    height: 23px;
    position: relative;
    margin-left: 15px;
    display: none;
}

#hamburger:before, #hamburger:after, #hamburger span {
    background: var(--color-main);
    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;
    transition-property: transform, top, bottom, left, opacity;
}

.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 {
    transform: rotate(45deg);
}

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

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

.logo-header {
    width: 240px;
    text-align: center;
}

.logo-header a {
    display: block;
}

.logo-header img {
    width: auto;
}

/* Menu */
.menu {
    position: sticky;
    top: 0px;
    z-index: 999;
    width: calc(100% - 275px);
}

.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 li.line {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    flex: none;
}

.menu ul li a {
    font-size: 16px;
    color: #333;
    padding: 12px 20px;
    font-weight: 500;
    margin: 0px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-align: center;
    text-decoration: none !important;
    display: block;
}

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

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

.menu > .wrap-content > ul {
    width: calc(100% - 250px);
}

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

.menu > .wrap-content > ul > li > a {
    color: #fff;
}

.menu > .wrap-content > ul > li > a:hover, .menu > .wrap-content > ul > li > a.active {
    color: #ff0;
}

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

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

.menu ul li ul li {
    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;
}

.menu ul li ul li a:hover {
    color: var(--color-main);
}

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

.menu .danhmuc {
    width: 250px;
}

.menu .danhmuc > a {
    background: rgb(253 188 14 / 70%);
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 12px 26px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.menu .danhmuc > a img {
    margin-right: 9px;
}

.menu .danhmuc .mega-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
    background: #fff;
    height: 65vh;
    display: flex;
    justify-content: space-between;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

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

.menu .danhmuc .left-mega-menu {
    width: 240px;
}

.menu .danhmuc .right-mega-menu {
    width: calc(100% - 240px);
    border-left: 1px solid #F2F2F2;
    padding: 15px;
}

.item-mega-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 15px;
    color: #333;
    font-size: 15px;
    text-transform: capitalize;
}

.item-mega-list img {
    width: 40px;
    border-radius: 50%;
}

.item-mega-list span {
    width: calc(100% - 50px);
}

.item-mega-list:hover {
    color: var(--color-main);
    background: rgb(0 0 0 / 5%);
}

.item-mega-list.active {
    color: var(--color-main);
}

.tab-mega-menu {
    display: none;
}

.tab-mega-menu.active {
    display: block;
}

.col-mega-cat {
    margin-bottom: 20px;
}

.item-mega-cat {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    color: #333;
    font-size: 14px;
    text-transform: capitalize;
}

.item-mega-cat img {
    border-radius: 50%;
}

.item-mega-cat span {
    margin-top: 10px;
    display: block;
}

.item-mega-cat:hover {
    color: var(--color-main);
}

.scroll-custom {
    overflow-y: auto;
    overflow-x: hidden;
}

.scroll-custom::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.scroll-custom::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.scroll-custom::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #A2A3A3;
}

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

/* Search */
/* left */
.menudropdown {
    width: 270px;
    z-index: 10;
    position: relative;
    opacity: 1;
    margin-right: 10px;
}
.show-search{
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom: none;
    padding: 5px;
    max-height: 375px;
    overflow: auto;
    top: 46px;
    z-index: 99999;
}
.box-search {display: flex;align-items: center;margin-bottom: 6px;justify-content: space-between;padding: 0px 0 0 0;border-bottom: 1px solid #ccc;background: #fff;padding-bottom: 5px;}

.box-search .name-product {
    margin-bottom: 3px;
}

.box-search .name-product a {
    color: #333;
}

.box-search .price-product-search {
    margin-bottom: 0;
    width: 100% !important;
    height: 40px!important;
    text-align: left !important;
    display: flex !important;
    align-items: center;
}
.pic-search { width: 60px; }
.pic-search a { padding: 0 !important; !importa; !import; !impo; !imp; !im; !i; !; }
.ds-item-search { width: calc(100% - 70px); }
.ds-item-search .name-product a { font-size: 13px; padding: 0; text-align: left; text-transform: unset; }
.ds-item-search .name-product a:hover { color: var(--color-main); }
.ds-item-search .price-new {font-size: 13px;color: var(--color-main);line-height: 22px;display: block;}
.ds-item-search .price-per { font-size: 13px; }
.ds-item-search .price-old {font-size: 11px;line-height: 14px;}
.show-search {position: absolute;background: #fff;border: 1px solid #ccc;border-bottom: none;padding: 5px;max-height: 320px;overflow: auto;width: 100%;}
.show-search::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); border-radius: 10px; background-color: #F5F5F5; }
.show-search::-webkit-scrollbar { width: 3px; background-color: #F5F5F5; }
.show-search::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); background-color: #555; }
.menudropdown:hover .menu_left {
    display: block !important;
    opacity: 1 !important;
    visibility: unset !important;
}

.menu-dropdown-title {
    text-transform: uppercase;
    margin: 0px;
    position: relative;
    background: var(--color-main);
    padding: 16px 16px 15px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
}

.menu-dropdown-title .hamberger {
    width: 27px;
    height: 18px;
    margin-right: 10px;
    background: url(../images/danhmuc.png) no-repeat left;
}

.hamberger i {
    width: 16px;
    display: inline-block;
    height: 2px;
    background: #fff;
    margin-left: 11px;
}

.menu_left {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    border-top: 0;
    margin-top: 0;
    opacity: 1;
    /* max-height: 380px; */
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
}

.fix_header .menu_left.none,.menudropdown.page .menu_left.none {
    display: none;
}

.menu_left ul::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

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

.menu_left ul::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.menu_left ul::-webkit-scrollbar-track {
    background-color: #c3c3c3;
}

.menu_left ul::-webkit-scrollbar-track-piece {
    background-color: #ffffff;
}

.menu_left ul::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: var(--color-main);
    border-radius: 5px;
}

.menu_left ul::-webkit-scrollbar-corner {
    background-color: transparent;
}

.menu_left ul::-webkit-resizer {
    background-color: transparent;
}

.menu_left > ul {
    direction: rtl;
    list-style: none !important;
    width: 100%;
    margin: 0;
    overflow-y: auto;
    border-top: 0;
    z-index: 10;
    max-height: 423px;
    border-radius: 0 0 7px 7px;
    box-shadow: 1px 1px 6px -3px #000;
    background: #fff;
    padding: 0;
}

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

.menu_left ul li a {
    text-decoration: none !important;
    color: #fff;
    position: relative;
    display: block;
    padding: 0;
    margin: 0 5px 0 10px;
    display: flex;
    align-items: center;
    padding: 11px 5px 10px 5px;
    font-size: 16px;
    font-weight: 400;
    width: 95%;
}

.menu_left ul li > a {
    color: #282828;
}

.menu_left ul li a:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: calc(50% - 10px / 2);
    left: 0px;
    background: url(../images/main/derco-list.png) no-repeat center;
    background-size: 100% 100%;
}


.menu_left ul li a i.icon-cate {
    margin-right: 5px;
}

.menu_left ul li:hover > a {
    color: #fff;
}

.menu_left ul li:hover > a i.icon-cate {
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

.menu_left ul li a span {
    margin: 0;
    display: block;
    padding-left: 15px;
    text-align: left;
}

.menu_left ul li {
    width: 100%;
    display: block;
    /* position: relative; */
    flex-grow: 1;
}

.menu_left ul li:hover {
    width: 100%;
    display: block;
    background: var(--color-main);
}

.menu_left > ul > li {
    direction: ltr;
    border-bottom: 0;
    font-weight: 500;
    padding: 0px;
    border-bottom: 1px dashed rgb(143 143 143 / 25%);
}

.menu_left > ul > li:last-child {
    margin: 0;
    border: 0;
}

.menu_left > ul > li > a.has-child:after {
    content: '';
    position: absolute;
    bottom: calc(50% - 8px/2);
    right: 10px;
    width: 5px;
    height: 8px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg;
    transform: rotate(45deg););
    transform: rotate(0deg);
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: url(../images/main/arrow-list.png) no-repeat;
}

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

.menu_left > ul > li:hover > a.has-child::after {
    content: '';
    position: absolute;
    bottom: calc(50% - 8px/2);
    right: 10px;
    width: 5px;
    height: 8px;
    border-top: 0px;
    border-left: 0px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* transform:rotate(-45deg); */
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu_left > ul > li > ul > li {
    direction: ltr;
    border-bottom: 0;
    font-weight: 500;
    border-bottom: 1px solid rgb(143 143 143 / 25%);
}

.menu_left ul li > ul li {
    width: 100%;
    display: block;
}

.menu_left ul li > ul li a:before {
    display: none;
}

.menu_left ul li:hover > ul {
    display: block;
    z-index: 10;
}

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

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

.menu_left > ul > li > ul {
    position: absolute;
    top: 0px;
    left: 100%;
    background: #ffffff;
    width: 240px;
    display: none;
    padding: 0;
    border-top: 0;
    max-height: 360px;
    border-radius: 0px;
    box-shadow: 2px 5px 10px 0 rgb(0 0 0 / 30%);
    /* overflow: auto; */
    /* overflow: hidden; */
    text-align: left;
}

.menu_left ul li > ul > li > ul {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    width: 240px;
    display: none;
    padding: 0;
    border-top: 0;
    max-height: 360px;
    border-radius: 0;
    box-shadow: 2px 5px 10px 0 rgb(0 0 0 / 30%);
    overflow: hidden;
    list-style: none;
}

.menu_left ul li > ul > li:hover > ul {
    display: block !important;
    z-index: 10;
}

.menu_left ul li > ul li > ul li {
    width: 100%;
    padding: 0;
    display: block;
}

.menu_left > ul > li > ul > li > ul > li {
    direction: ltr;
    border-bottom: 0;
    font-weight: 500;
}

.menu_left > ul > li > ul > li > a {
    display: block;
    padding: 0;
}

.menu_left > ul > li > ul > li > ul > li > a {
    font-size: 15px;
    color: #28353b;
    font-weight: 400;
    padding: 12px 15px 11px;
    margin: 0;
    text-transform: capitalize;
    text-transform: none;
}

.menu_left ul li ul li > a {
    padding: 10px 10px 11px 5px;
}

.menu_left ul li ul li ul li:hover > a.has-child:hover::after {
    display: none;
}

.showopen {
    display: none !important;
    background: #fff;
}

.showopen li ul {
    background: #fff !important;
}

.menu_left > ul > li > span[aria-expanded="true"].dropdown-toggle::after {
    border-bottom: 0.3em solid;
    border-top: 0;
}

.menu_left .a-menu {
    display: block;
    font-size: 14px;
    color: #00baf2;
    text-transform: capitalize;
    margin: 20px 0;
    padding: 0 30px 0 30px;
}

.menu_left .a-menu:hover {
    color: #003189;
}

/* Search */
.search {
    background: #FFFFFF;
    border-radius: 50px;
    flex: 1 1 auto;
    max-width: 520px;
    padding: 4px;
    position: relative;
}

.search input {
    width: calc(100% - 70px);
    height: 42px;
    outline: none;
    padding: 0px 14px;
    background: #0000;
    font-size: 13px;
    color: #333;
    outline: none;
    border: 1px solid var(--color-main);
    border-radius: 5px 0 0 5px;
}

.search p:not(.price-product-search) {
    width: 70px;
    height: 42px;
    cursor: pointer;
    line-height: 42px;
    text-align: center;
    font-size: 20px;
    background: var(--color-main);
    border-radius: 0 5px 5px 0;
    color: #fff;
}

.search input::placeholder {
    color: #766C5D;
}

.search input:focus {
    outline: none !important;
    box-shadow: none;
    border:1px solid var(--color-main);
}

/* Search Res */
.search-res {
    position: relative;
    display: none;
}

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

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

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

.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: #000;
}
.search-res .search-grid input:focus{box-shadow: none; outline: 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;
}

/*   SLider */
.slideshow {
    position: relative;
    margin-left: auto;
    margin-top: 0;
}

.slideshow .wrap-content {
    padding-left: calc(1300px - 1015px);
}

.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: 0px;
    padding: 0px;
    margin: 0px;
    display: block;
    cursor: pointer;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 25px;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
    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;
}

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


.title-main span {color: var(--6, #363533);text-align: center;font-family: "Helvetica Neue";font-size: 22px;font-style: normal;font-weight: 500;line-height: normal;text-transform: uppercase;padding: 0 15px;}

.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;
    margin: 20px 0px;
    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 */
.grid-tintuc {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    justify-content: space-between;
}

.news {
    display: block;
    margin-bottom: 20px;
    display: block;
}

.pic-news {
    border-radius: 10px;
    display: block;
    overflow: hidden;
    position: relative;
}

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

a.views {
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    border: solid 1px #ccc;
    padding: 7px 20px;
    border-radius: 20px;
    color: #000;
    font-size: 16px;
}

a.views:hover {
    border: solid 1px #fed402;
    color: #fed402;
}

.name-news {
    color: #1b1b1b;
    font-size: 18px;
    line-height: 22px;
    max-height: 40px;
    -webkit-line-clamp: 2 !important;
    font-weight: 400;
}

a.name-news.name1 {
    font-size: 25px;
    line-height: 32px;
    max-height: 64px;
}

.name-news:hover {
    color: #fed402;
}

.time-news {
    color: #fed402;
    margin-bottom: 0px;
    font-size: 12px;
    margin: 7px 0;
    font-style: italic;
    font-weight: 500;
}

.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 {
    margin-right: 2px;
}

.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;
}
.write-order-res{display: none;}
.box-news-detail{display: flex;}
.detail-left{width: 75%;}
.detail-right{width: 25%;padding-left: 10px;}

.detail-right .box-contact{
    border: 1px solid var(--color-main);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}
 .detail-right .write-order {
    border: 1px solid var(--color-main);
    padding: 0px;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.write-order .box-news-items {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.box-news-items a {
    display: block;
    margin-bottom: 0px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    padding-left: 15px;
    position: relative;
}
.box-news-items a:after{position: absolute;content:'';width: 5px;height: 5px;background: #1a1a1a;border-radius: 50%;left: 0;top: calc(50% - 5px / 2);}
.box-news-items a:hover{color: var(--color-main);}
.box-news-items a:hover:after{background: var(--color-main);;}
.detail-right .write-order .tt{background: var(--color-main); text-align: center; font-weight: 500; font-size: 18px; color: #fff; text-transform: uppercase; display: block; padding: 5px 0;}
.box-contact .btn-contact {
    display: block;
    text-align: center;
    background: var(--color-main);
    border-radius: 5px;
    padding: 5px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid var(--color-main);
    transition: all 0.3s;
}

.box-contact .btn-contact:hover{background: transparent; color: var(--color-main);}
.box-contact .email-contact, .box-contact .phone-contact {
    font-size: 17px;
    margin: 5px 0;
}

.box-contact i {
    color: var(--color-main);
}
/* Toc */
a.mucluc-dropdown-list_button:before {
    content: "\f03a";
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 400;
    background: #fff;
    color: #006ACB !important;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 38px;
    text-align: center;
    border: 1px solid #ddd;
}

.meta-toc-clone.fiedx {
    position: fixed;
    left: 5px;
    top: 200px;
    z-index: 111;
}

.meta-toc-clone:not(.fiedx) .box-readmore {
    display: block !important;
}

.box-readmore {
    padding: 10px;
    background-color: #f5f5f5;
    width: 100%;
    margin-top: 2px;
    border: 1px solid #dddddd;
    font-size: 13px;
    margin-bottom: 10px;
}

.meta-toc-clone .box-readmore {
    width: 350px;
    display: none;
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 0px;
}

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

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

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

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

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

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

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

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

/* Partner */
.wrap-partner{padding: 50px 0; overflow: hidden; position: relative;}
.wrap-partner .title-main {
}

.title-main.line {
    display: flex;
    align-items: center;
}
.title-main.line:after,.title-main.line:before {position: relative;content:'';height: 1px;background: #C3C3C3;flex-grow: 1;}
.info-partner {
    background: #f8f8f8;
    padding: 15px 0px;
}
.col-thuonghieu a{border: 1px solid #333;}
.col-partner{
    width: calc((100% - 10px) / 6);
    padding: 0 4.5px;
}

.col-partner .pic {
    border: 1px solid transparent;
}
.col-partner:hover .pic {
    border: 1px solid #C3C3C3;
}
/* 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: 50px 0px 30px;
}

.footer-article .title-footer {
    display: block;
    color: var(--6, #363533);
    font-family: "Helvetica Neue";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 129.412% */
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 0;
}

.footer-title {color: var(--6, #363533);font-family: "Helvetica Neue";font-size: 17px;font-style: normal;font-weight: 500;line-height: 22px; /* 129.412% */text-transform: capitalize; margin-bottom: 15px;}

.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: 24%;
}

.footer-news .footer-desc {
    color: #565656;
    font-family: "Helvetica Neue";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 166.667% */
}

.footer-news .footer-name {
    color: var(--6, #363533);
    font-family: "Helvetica Neue";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 129.412% */
    text-transform: capitalize;
    margin-bottom: 15px;
}

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

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

.footer-news .footer-map {
    margin: 0;
    padding: 0;
}

.footer-map a {
    color: var(--1, #FFF);
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    background: #000;
    margin-right: 5px;
    padding: 5px 10px;
    display: block;
    margin-top: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}
.footer-map a:hover{background: var(--color-main);}
.footer-news:nth-child(4) {
    width: 24%;
}

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

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

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

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

.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: 15px 0px;
    text-align: center;
    border-top: 1px solid #D7D7D7;
    transition: 0.7s;
}

.footer-copyright {
    color: #1C1B19;
    font-size: 13px;
    width: 100%;
}

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

.footer-copyright a {
    color: #1C1B19;
    font-weight: 500;
}

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

.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 {
    margin-bottom: 10px;
    color: var(--7, #151515);
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
}

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

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

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

.form-newsletter button {
    width: 80px;
    height: 50px;
    font-size: 14px;
    border-radius: 0 10px 10px 0;
    outline: none;
    background: #151515;
    color: #fff;
    font-weight: 400;
    border: none;
    text-transform: uppercase;
}

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

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

.social-footer .ptvc-items {border: 1px solid #c3c3c3;}

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

/* About */
.box-about {
    max-width: 700px;
    margin: 0px auto;
    text-align: center;
}

.box-about h3 {
    color: #ca0000;
    font-family: SVN;
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.box-about a {
    padding: 10px 20px;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    display: block;
    background: #ca0000;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-weight: 600;
    border-radius: 10px;
}

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

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

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

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

.row-product .col-product{width: calc(100% / 5);}

.product {
    display: block;
    position: relative;
    padding: 0;
    border-radius: 0px;
    height: 100%;
    background: #fff;
    margin: 10px 6px;
}
.col-product.sale .product:hover{box-shadow: 0 0 12px 3px rgb(0 0 0 / 20%);}
.product .pic-product {
    background: #fff;
    margin-bottom: 10px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--3, #E2E2E2);
}

.pic-product .discount {
    position: absolute;
    z-index: 2;
    top: 5px;
    right: 5px;
    background: #ff1616;
    color: #fff;
    font-size: 12px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

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

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

.product .name-product a {
    font-size: 14px;
    color: #474747;
    line-height: 22px;
    font-weight: 400;
    height: 46px;
}

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

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

.info-product-left {
}

.price-product {
    margin-bottom: 5px;
    color: #555;
}

.price-new {
    font-size: 17px;
    font-weight: 600;
    color: #E00A0A;
    display: inline-block;
    text-transform: uppercase;
}

.price-old {
    font-size: 14px;
    text-decoration: line-through;
    display: inline-block;
    color: #8E8E8E;
    font-weight: 400;
    text-transform: uppercase;
    margin-right: 10px;
}

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

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

.star-product {
    font-size: 12px;
    position: relative;
    color: #F0B920;
    margin-bottom: 5px;
}

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

.view-product {
    color: #999;
    font-size: 13px;
}

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

.cart-product span {
    display: inline-block;
    cursor: pointer;
    width: 38px;
    height: 38px;
    background: url(../images/add_cart.png) center center no-repeat, #FDBC0E;
    border-radius: 50%;
}

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

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

.grid-product .product .product-info {
    margin-top: 10px;
    color: #333;
}

.grid-product .product .product-info h3 {
    font-size: 17px;
    color: #333;
}

.grid-product .product .product-info .price span {
    color: #f00;
}

.grid-product .product .pic-product {
    border: 1px solid #ddd;
}

.product-2 {
    display: flex;
    justify-content: space-between;
    padding: 15px 0px;
    border-bottom: 1px dashed #DDD;
}

.pic-product-2 {
    width: 120px;
    border-radius: 5px;
    overflow: hidden;
}

.info-product-2 {
    width: calc(100% - 132px);
}

.info-product-2 h3 {
    margin-bottom: 10px;
}

.info-product-2 h3 a {
    color: #474747;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.info-product-2 h3 a.text-split {
    -webkit-line-clamp: 2;
}

.info-product-2 .price-product {
    margin-bottom: 9px;
}

.info-product-2 .price-new {
    font-size: 15px;
}

.info-product-2 .price-old {
    font-size: 12px;
}

.cart-product-2 span {
    padding: 4px 10px;
    color: var(--color-main);
    background: #FFFDF9;
    font-size: 13px;
    border: 1px solid var(--color-main);
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
}

.cart-product-2 span:nth-child(1) {
    margin-right: 4px;
}

.cart-product-2 span:nth-child(2) {
    background: var(--color-main);
    color: #fff;
}

.cart-product-2 span:hover {
    background: var(--color-main);
    color: #fff;
}

.slick-vertical-3 .slick-list {
    max-height: 432.609px;
    height: auto !important;
}

.slick-vertical-5 .slick-list {
    max-height: 721.015px;
    height: auto !important;
}

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

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

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

.right-pro-detail .tuvan-box {
    margin-top: 30px;
    padding: 20px;
    padding-top: 0;
    border: 1px dashed var(--color-main);
    border-radius: 20px;
}

.tuvan-box .box-desc-tuvan {
    margin-top: 10px;
}

.tuvan-box .box-desc-tuvan p {
    font-size: 15px;
    margin-bottom: 5px;
}

.tuvan-box .tt {
    background: var(--color-main);
    color: #fff;
    padding: 3px 21px;
    display: inline-block;
    margin-bottom: 5px;
    margin-top: -10px;
    position: relative;
    top: -10px;
    border-radius: 5px;
}

.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 .title-pro-detail {
    font-size: 19px;
    font-weight: 500;
}

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

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

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

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

.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;
}
.title-pro-detail{font-size: 30px;display: block; margin-bottom: 20px;}
.item-detail {
    color: #8E8E8E;
    font-size: 14px;
    padding: 0px 19px;
    position: relative;
}
.item-detail:nth-child(1){padding-left: 0;}
.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 {
    font-weight: 500;
    color: #474747;
}

.price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: #ff2e00
}

.price-old-pro-detail {
    font-weight: 500;
    color: #666;
    text-decoration: line-through;
    padding-left: 10px
}

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

.quantity-pro-detail {
    margin-top: 10px;
    width: 100%;
    max-width: 164px;
    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;
}

.quantity-pro-detail span {
    line-height: 31px;
    padding: 0;
    width: 37px;
    height: 33px;
    color: #000;
    cursor: pointer;
    font-size: 18px;
    border-radius: 3px;
}

.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: 33px;
    width: calc(100% - 72px);
    text-align: center;
    padding: 5px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: normal;
    border: 1px solid #ddd;
}

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

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

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

.cart-pro-detail a.addnow {
    margin-right: 10px;
    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
}

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

.social-product-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.left-social-product-detail {
    width: 61.7%;
}

.right-social-product-detail {
    width: 34.8%;
    padding-top: 15px;
}

.title-product-tuvan {
    border-bottom: 1px solid #E3E3E3;
    margin-bottom: 15px;
}

.title-product-tuvan span {
    display: inline-block;
    color: #1C1B19;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: -1px;
    border-bottom: 1px solid var(--color-main);
    text-transform: capitalize;
}

.title-product-tuvan span i {
    color: var(--color-main);
    font-size: 18px;
    margin-right: 10px;
}

.item-social-product-detail {
    display: inline-block;
    border: 1px solid #D8D8D8;
    border-radius: 10px;
    padding: 6px;
    margin-right: 6px;
}

.item-social-product-detail img {
    border-radius: 10px;
}

.customer-benefits {
    padding: 10px 25px;
    background: #F6F6F6;
    border-radius: 15px;
}

.title-customer-benefits {
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 10px;
}

.title-customer-benefits span {
    color: #1C1B19;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid #CCCCCC;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: -1px;
}

.content-customer-benefits {
    color: #585858;
    font-size: 14px;
}

.left-content-detail {
    width: calc(100% - 320px);
    background: #FAFAFA;
    padding: 30px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
}

.right-content-detail {
    width: 300px;
}

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

.sub-right {
    margin-bottom: 30px;
}

.title-right {
    color: #1C1B19;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 13px 18px;
    margin-bottom: 5px;
    border-bottom: 2px solid var(--color-main);
    border-radius: 3px;
    background: #F9F9F9;
}

.item-properties {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-properties .attr-label-pro-detail {
    width: 100px;
}

.item-properties .grid-properties {
    width: calc(100% - 110px);
}

.tags-pro-detail {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}

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

.tags-pro-detail a:hover {
    color: #fff;
    background: #f00;
}

/* product detail */
.policy_intuitive {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 25px;
}

.policy {
    margin: 20px 16px 0 16px;
}

.policy__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.policy__list > li {
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    padding: 12px 0 12px 35px;
    width: 50%;
    display: inline-block;
}

.policy__list > li:nth-child(2n + 1) {
    padding-right: 20px;
}

.policy__list li > div.iconl {
    left: 0;
    position: absolute;
    top: 15px;
}

.policy__list li .iconl {
    width: 32px;
}

.policy__list li p {
    line-height: 20px;
    padding-left: 5px;
    margin: 0px;
}

.policy__list li:last-child {
    border-bottom: 0;
}

.policy__list > li:nth-child(2n + 1):nth-last-child(2) {
    border: 0;
}

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

/*css CT */
.box-ct {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: rgb(233, 230, 230);
    padding: 10px;
    border-radius: 10px;
}

.box-ct img {
    border-radius: 50%;
    margin-right: 10px;
}

.ds-ct h3 a {
    font-size: 17px;
    color: #333;
}

.ds-ct h3 a:hover {
    color: #f00;
}

/*css khuyen mai*/
.block__promo {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
}

.promoadd__list {
    padding: 10px;
}

.promoadd__list li {
    margin-bottom: 15px;
    background: url(../images/tick.png) no-repeat 0px 3px;
    background-size: 15px;
    padding-left: 25px;
}

.pr-top {
    background-color: #f6f6f6;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 10px;
}

.pr-txtb {
    font-weight: bold;
}

.pr-top .pr-txt {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 5px;
    font-style: normal;
}

.pr-content .pr-item:last-child {
    border: none;
}

.pr-content .pr-item {
    padding: 15px 10px 10px 10px;
}

.divb {
    margin-bottom: -10px;
}

.divb .nb {
    background-color: #4a90e2;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    float: left;
    height: 16px;
    line-height: 16px;
    margin-top: 2px;
    text-align: center;
    width: 16px;
}

.divb-right {
    padding-left: 26px;
}

.pr-content .pr-item p {
    margin: 0px 0px 0px 0px;
}

.divb-right a {
    color: #4a90e2;
}

/* Tien ich */
.wrap-ti {
    padding: 20px 0px;
}

.box-ti {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    min-height: 135px;
}

.wrap-ti .owl-item:nth-child(n + 1) .box-ti {
    background-color: rgb(220, 238, 255);
}

.wrap-ti .owl-item:nth-child(n + 2) .box-ti {
    background-color: rgb(254, 245, 207);
}

.wrap-ti .owl-item:nth-child(n + 3) .box-ti {
    background-color: rgb(255, 239, 219);
}

.wrap-ti .owl-item:nth-child(n + 4) .box-ti {
    background-color: rgb(225, 254, 207);
}

.ds-ti {
    width: calc(100% - 45px);
}

.ds-ti h3 {
    font-size: 15px;
}

.ds-ti h3 a {
    color: #333;
}

.ds-ti h3 a:hover {
    color: #f00;
}

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

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

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

.btn-messenger {
    bottom: 150px;
}

.btn-frame svg {
    max-width: 32px;
}

.btn-zalo {
    bottom: 230px;
}

#qrzalo .modal-dialog {
    max-width: 250px;
    margin: 0.5rem auto;
}

/* paging */
.pagination {
    margin: 20px 0px;
}

.pagination li a {
    cursor: pointer;
}

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

.btn-frame i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-main);
    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: var(--color-main);
    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;
    align-items: flex-start;
    flex-wrap: wrap;
}

.grid-properties span {
    position: relative;
    border: 1px solid #CDCDCD;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    color: #595959;
}

.grid-properties span:hover, .grid-properties span.active {
    border: 1px solid var(--color-main);
    color: #fff;
    background: var(--color-main);
}

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

/* Xu huong */
.wrap-xh {
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    padding: 10px;
    border-radius: 10px;
}

.title-xh {
    font-size: 25px;
    margin: 20px 0px;
    color: #333;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.image-xh {
    border-radius: 10px;
    overflow: hidden;
}

.name-xh {
    text-align: center;
    color: #333;
    font-size: 16px;
    margin: 10px 0px 0px;
}

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

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

.swiper-button {
    padding: 5px 10px;
    background: rgb(0 0 0 / 30%);
    border-radius: 5px;
    width: 32px;
}

.swiper-button::after {
    font-size: 25px;
    color: #fff;
}

.swiper-button:hover {
    background: var(--color-main);
}

/* Tin tức */
.owl-news {
    margin-top: 30px;
}
.wrap-news{padding: 0px 0 50px; overflow: hidden; position: relative;}
.row-news {
    margin: 0px -11.5px;
}

.col-news {
    padding: 0px 11.5px;
    margin-bottom: 30px;
}

.info-news {
    padding-top: 15px;
}

.info-news .date {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
}

.date .icon-calenda {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/main/calenda.png) no-repeat center;
}

.info-news h3 {
    margin-bottom: 5px;
}

.info-news h3 a {
    transition: all 0.3s;
    color: var(--6, #363533);
    font-family: "Helvetica Neue";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
}

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

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

.desc-news {
    line-height: 25px;
    font-size: 14px;
    color: #565656;
    margin-bottom: 0px;
    margin-top: 5px;
    height: auto;
}

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

.info-news .date span {
    color: #8E8E8E;
    font-size: 13px;
    font-style: italic;
    display: inline-block;
}

.info-news span i {
    margin-right: 7px;
}

.sort-product {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.item-sort {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.item-sort i {
    margin-left: 10px;
}

.item-sort:hover, .item-sort.active {
    color: #fff;
    background: #A86B11;
    border-color: #A86B11;
}

.chitietsanpham {
    position: relative;
}

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

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

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

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

.btn-show-content span {
    background: var(--color-main);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}

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

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

/* Sort */
.sort-select {
    display: flex;
    justify-content: end;
    margin: 20px 0px;
    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;
}

.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 a {
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 11px 3px;
    display: block;
    cursor: pointer;
}

.sort a.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 a.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);
}

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

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

.swiper-video {
    margin-top: 20px;
}

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

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

.album {
    cursor: pointer;
}

.pic-album {
    margin-bottom: 10px;
    display: block;
}

.name-album {
    margin: 0px;
    font-size: 18px;
    text-align: center;
    font-size: 15px;
    color: #333;
}

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

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

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

.album .album-name {
    margin-bottom: 0px;
    text-align: center;
    font-size: 15px;
    color: #212529;
}

/* Product */
.wrap-product {
    padding: 35px 0 15px;
    overflow: hidden;
    position: relative;
}
.wrap-product.sale .decor-sale{
    position: absolute;
    display: inline-block;
    transform: rotate(45deg);
    right: 30px;
}
.wrap-product.sale .decor-sale span {
    color: var(--1, #FFF);
    text-align: center;
    text-shadow: 0px 1px 1px #EF6614;
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: #E23C0C;
    font-family: Oswald;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px; /* 180% */
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.wrap-product.sale .decor-sale:after{position: absolute;content:'';width: 122px;height: 110px;background: url(../images/main/sale.png) no-repeat;right: -12px;top: -22px;transform: rotate(-43deg);}
.wrap-product.sale:after{}
.wrap-product .title-main-sale {
    padding: 0;
    border-bottom: 2px solid #EBEBEB;
    margin-bottom: 20px;
}

.title-main-sale span {
    color: var(--6, #363533);
    font-family: "Helvetica Neue";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 158.824% */
    text-transform: uppercase;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    padding-left: 40px;
    background: url(../images/main/sale-icon.png) no-repeat left;
}
.title-main-sale span:after{
    position: absolute;
    content:'';
    width: 100%;
    height: 2px;
    background: var(--color-main);
    bottom: -2px; 
    left:0;
}
.tab-product {
    text-align: center;
    margin-bottom: 15px;
}

.item-tab-product {
    cursor: pointer;
    color: #333;
    border-radius: 5px;
    padding: 5px 20px;
    display: inline-block;
    margin: 0px 2px 5px;
    font-size: 15px;
    text-transform: capitalize;
}

.item-tab-product:hover, .item-tab-product.active {
    background: #F09320;
    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;
    margin-top: 20px;
}

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

.readmore-show i {
    color: var(--color-main);
}

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

.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);
    }
}
/* list product */
.wrap-list-product{position: relative; padding: 50px 0; overflow: hidden;}

.wrap-list-product .box-list-product {
    position: relative;
}

.wrap-list-product .wrap-desc-list {
    margin-bottom: 30px;
}
.box-list-items{
    text-align: center;
}

.box-list-items .name {
    color: var(--7, #151515);
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px; /* 192.857% */
    text-transform: uppercase;
    transition: all 0.3s;
}
.box-list-items .name:hover{color: var(--color-main);}
.box-list-items .pic-product {
    text-align: center;
}
.box-list-items .pic-product a{display: inline-block;max-width: 100px;padding: 5px;}

/*  */
.wrap-list-tc{position: relative; padding: 40px 0; overflow: hidden;}
.wrap-list-tc .box-tc {
    position: relative;
    max-width: 1030px;
    margin: 0 auto;
}
.box-tc-items{display: flex;flex-wrap: wrap;max-width: 1010px;margin: 0 auto;justify-content: space-between;margin-top: 50px;}
.box-tc-items .tc-items{width: calc((100% - 30px) / 2);}

.tc-items.active{
    display: block;
}

.tc-items.active .name-tc {
    background: #c3c3c3;
    margin-bottom: 10px;
}
.tc-items.active .content-tc {opacity: 1;visibility:visible;display: -webkit-box;height: 105px;margin-bottom: 20px;padding: 0 10px;}

.tc-items .content-tc.content-tc.text-split {
    -webkit-line-clamp: 5;
}

.tc-items .name-tc {
    display: block;
    border-top: 1px solid #C3C3C3;
    padding: 20px 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.name-tc span {
    padding: 5px 25px;
    background: url(../images/main/tick.png) no-repeat left;
    margin-left: 20px;
    color: var(--7, #151515);
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    text-transform: uppercase;
    transition: all 0.3s;
    display: block;
}
.name-tc:hover span{color: var(--color-main);}
.tc-items .content-tc {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.3s;
    margin: 0;
}
/* wrap-criteria */
.wrap-criteria{position: relative;padding: 50px 0;overflow: hidden;border-top: 1px solid #838383;}
.box-criteria{display:flex;align-items: center;}

.box-criteria .info-criteria {
    width: calc(100% - 55px);
    padding-left: 15px;
}

.info-criteria .desc {
    color: #838383;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 157.143% */
}

.info-criteria .name {
    color: var(--6, #363533);
    font-family: "Helvetica Neue";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 147.059% */
    margin-bottom: 5px;
}

.info-criteria .desc {
    margin: 0;
}

.box-criteria .pic {
    width: 55px;
}

/*  */
.row-branch{display: flex;justify-content: space-between;}
.branch-box{width: 100%;max-width: 300px;}
#branch-map{width: calc(100% - 320px);}
#gg-map, #gg-map iframe{width: 100%;}
.branch-items{padding: 10px;border: 1px solid #c3c3c3;margin-bottom: 10px;cursor: pointer;border-radius: 5px;}

.branch-items .social a {
    color: #333;
    margin: 0 5px;
    font-weight: 500;
}
.branch-items .social a:nth-child(1){color: green;}
.branch-items .social a:nth-child(2){color: #9f9fff;}
.branch-items .social a:nth-child(3){}
.branch-items .desc p {
    margin: 0 0 5px;
}

.branch-items .name {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}
/* efect */
/* @keyframes changeColor {
    0% { color: red; opacity:1;}
    15% {opacity: 0;}
    20% { color: #fff; opacity: 1;}
    25% { opacity: 0;}
    30% { color: red; opacity: 1;}
    35% { opacity: 0;}
    40% { color: #fff; opacity: 1;}
    45% {  opacity: 0;}
    50% { color: red; opacity: 1;}
    65% {  opacity: 0;}
    70% { color: #fff; opacity: 1;}
    75% {  opacity: 0;}
    80% { color: red; opacity: 1;}
    85% {  opacity: 0;}
    90% { color: #fff; opacity: 1;}
    95% {  opacity: 0;}
    100% { color: #fff; opacity: 1}
  } */
  @keyframes blinkColor {
    0% { opacity: 1; color: #eeff00;}
    25% { opacity: 0; }
    50% { opacity: 1; color: #fff;}
    75% { opacity: 0; }
    100% { opacity: 1; color: #eeff00;}
  }
  .animated-text {
    animation: blinkColor 2s infinite;
  }