@charset "UTF-8";

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

@keyframes loader-2-circles {
    0% {
        box-shadow: 0 0 0 var(--color-main);
        opacity: 1;
        transform: rotate(0deg);
    }

    50% {
        box-shadow: 24px -22px var(--color-main), 30px -15px 0 -3px var(--color-main), 31px 0px var(--color-main), 29px 9px 0 -3px var(--color-main), 24px 23px var(--color-main), 17px 30px 0 -3px var(--color-main), 0px 33px var(--color-main), -10px 28px 0 -3px var(--color-main), -24px 22px var(--color-main), -29px 14px 0 -3px var(--color-main), -31px -3px var(--color-main), -30px -11px 0 -3px var(--color-main), -20px -25px var(--color-main), -12px -30px 0 -3px var(--color-main), 5px -29px var(--color-main), 13px -25px 0 -3px var(--color-main);
        transform: rotate(180deg);
    }

    100% {
        opacity: 0;
        transform: rotate(360deg);
        box-shadow: 25px -22px var(--color-main), 15px -22px 0 -3px black, 31px 2px var(--color-main), 21px 2px 0 -3px black, 23px 25px var(--color-main), 13px 25px 0 -3px black, 0px 33px var(--color-main), -10px 33px 0 -3px black, -26px 24px var(--color-main), -19px 17px 0 -3px black, -32px 0px var(--color-main), -23px 0px 0 -3px black, -25px -23px var(--color-main), -16px -23px 0 -3px black, 0px -31px var(--color-main), -2px -23px 0 -3px black;
    }
}

@keyframes loader-2-star {
    0% {
        transform: scale(0) rotate(0deg);
    }

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

:root {
    --color-main: #db2328;
    --color-social: #2557ae;
    --color-hover: #29156f;
    --color-text: #2557ae;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Montserrat-Bold.ttf");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/Montserrat-ExtraBold.ttf");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/Montserrat-Light.ttf");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Roboto-Regular.ttf");
}

.🐷 {
    margin-top: 40px;
}

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

body {
    font-size: 14px;
}

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

.wrap-content {
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-main img {
    height: auto !important;
}

.content-main table {
    display: block;
    overflow-y: auto;
}

img {
    max-width: 100%;
    display: inline-block;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

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

.scale-img {
    overflow: hidden;
}

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

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

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

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

.header {
    background: url(../images/bg_hd.png) no-repeat left top/cover;
    padding: 10px 0;
}

.header-search {
    border: 1px solid rgba(254, 0, 0, 0.18);
    background-color: #fff;
    border-radius: 10px;
    height: 50px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(254, 0, 0, 0.18);
}

.header-search input {
    flex: 1 1 0;
    font-size: 14px;
    color: #333;
    border: 0;
}

.header-search p {
    margin-bottom: 0;
    width: 65px;
    background-color: var(--color-main);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-hotline p {
    font-size: 14px;
    line-height: 28px;
    color: #333333;
    font-weight: 300;
    font-family: "Montserrat";
    margin-bottom: 0;
}

.header-hotline span {
    font-size: 20px;
    color: #fe0000;
    font-weight: 800;
    font-family: "Montserrat";
}

.header-cart p {
    font-size: 14px;
    line-height: 28px;
    color: #333333;
    font-weight: 300;
    font-family: "Montserrat";
    margin-bottom: 0;
}

.header-cart a {
    font-size: 18px;
    color: #fe0000;
    font-weight: 600;
    font-family: "Montserrat";
}

.menu {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--color-main);
}

.menu .left .title {
    background-color: var(--color-hover);
    border-radius: 5px;
    border-top: 3px solid var(--color-main);
    border-bottom: 3px solid var(--color-main);
}

.menu .left .title span {
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
}

.menu .right {
    padding: 0px 25px;
}

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

.menu .right ul li.line {
    width: 1px;
    height: 15px;
    box-shadow: 1px 0px 0px #e35357;
    background-color: #871719;
}

.menu .right ul li a {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    line-height: 50px;
}

.menu .right ul li a:hover,
.menu .right ul li a.active {
    color: #ff0;
}

.menu .right ul li ul {
    position: absolute;
    min-width: 250px;
    left: 0;
    background: #fff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
    transform: perspective(600px) rotateX(-90deg);
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.menu .right ul li ul li {
    text-align: left;
    border-bottom: 1px solid rgba(173, 173, 173, 0.32);
}

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

.menu .right 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 .right ul li ul li a:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: #5172fd;
    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;
}

.menu .right ul li ul li a:hover {
    padding-left: 40px;
}

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

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

#menu {
    display: none;
}

#hamburger {
    display: none;
    width: 35px;
    height: 23px;
    position: relative;
}

#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 {
    transition: none 0.5s ease 0.5s;
    transition-property: transform, top, bottom, left, opacity;
}

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

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

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

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

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

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

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

.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: var(--color-main);
    font-size: 17px;
    margin: 0px;
}

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

.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #fff;
    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: 35px;
    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% - 35px);
    float: right;
    outline: none;
    border: none;
    color: var(--color-main);
}

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

.title-main {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    background: url(../images/after_title.png) no-repeat center bottom;
}

.title-main span,
.title-main h4 {
    font-size: 35px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 800;
    font-family: "Montserrat";
}

.title-main p {
    margin-bottom: 0;
    font-size: 15px;
    letter-spacing: 1px;
    color: #333333;
}

.grid-tintuc {
    display: flex;
    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%;
}

.name-news:hover {
    color: #5172fd;
}

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

.desc-news {
    color: #333333;
    margin-top: 0px;
    line-height: 20px;
    height: 60px;
}

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

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

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

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

.footer {
    background: url(../images/bg_ft.png) no-repeat left top/cover;
}

.footer-article {
    padding: 55px 0;
}

.footer-title {
    margin-bottom: 1.5rem;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
}

.footer-ul li {
    padding-left: 20px;
    position: relative;
}

.footer-ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.footer-ul li a {
    font-size: 16px;
    color: #ffffff;
}

.footer-ul li a:hover {
    text-decoration: underline;
}

.footer-fanpage {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: -10px 0 0 #671013;
}

.branch {
    position: relative;
}

.branch .left {
    position: relative;
    height: 550px;
}

.branch .right {
    height: 100%;
    position: relative;
    min-height: 300px;
    border: 1px solid #ccc;
}

.branch .right .box {
    position: absolute;
    inset: 0;
    overflow-y: scroll;
}

.branch .right .box .item {
    padding: 15px;
    cursor: pointer;
}

.branch .right .box .item span {
    font-size: 16px;
    line-height: 25px;
    color: #333;
    font-weight: 700;
    text-transform: capitalize;
}

.branch .right .box .item:hover {
    background-color: #f4f5f7;
}

.branch .right .box .item:hover span {
    color: var(--color-main);
}

.branch .right .box .item.active {
    background-color: lightyellow;
}

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

.loading-ajax {
    position: absolute;
    inset: 0;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
}

.loading-ajax .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-block;
}

.loading-ajax .loader .loader-star {
    position: static;
    width: 60px;
    height: 60px;
    transform: scale(0.7);
    animation: loader-2-star 1s ease alternate infinite;
}

.loading-ajax .loader .loader-star polygon {
    fill: var(--color-main);
}

.loading-ajax .loader .loader-circles {
    width: 8px;
    height: 8px;
    background: var(--color-main);
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 4px);
    top: calc(50% - 4px);
    transition: all 1s ease;
    animation: loader-2-circles 1s ease-in-out alternate infinite;
}

.loading-ajax .loader-star {
    position: absolute;
    top: calc(50% - 12px);
}

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

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
    color: #404040;
    background: #fff;
}

.js-facebook-messenger-tooltip.closed {
    display: none !important;
}

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

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

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

.js-facebook-messenger-box {
    z-index: 999;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.js-facebook-messenger-top-header {
    color: #ffffff;
    background: #1182fc;
    width: 220px;
}

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

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

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

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

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

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

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

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

.box-about h3 {
    color: #ca0000;
    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;
}

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

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

.product {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #d3d3d3;
}

.product-name {
    font-size: 14px;
    line-height: 25px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 0;
}

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

.product-info {
    padding: 15px 10px;
    background-color: #f8f9fd;
    text-align: center;
}

.product-price {
    margin-bottom: 0.5rem;
}

.product-price-new {
    font-size: 14px;
    font-weight: 700;
    color: #d0021c;
    display: inline-block;
}

.product-price-old {
    font-size: 14px;
    text-decoration: line-through;
    display: inline-block;
    color: #666666;
    margin-right: 8px;
}

.product-addcart {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-image: linear-gradient(90deg, #29166f 0%, var(--color-main) 100%);
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.product-addcart:hover {
    color: #ff0;
}

.item-news {
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.item-news a.img {
    display: block;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.item-news a.img img {
    width: 100%;
    display: block;
}

.item-news a.name {
    font-size: 16px;
    line-height: 26px;
    color: #232323;
    font-weight: 700;
    -webkit-line-clamp: 2 !important;
    display: flex;
    display: -webkit-box;
}

.item-news .info {
    width: 100%;
    background: #fff;
}

.item-news .info .time {
    display: block;
    line-height: 25px;
    color: #00A5D9;
    font-size: 13px;
    margin-bottom: 3px;
    font-style: italic;
}

.item-news .info .time a {
    color: #ebc252;
    font-size: 15px;
}

.item-news h3 {
    font-weight: normal;
    margin: 0;
}

.item-news .desc {
    color: #333;
    line-height: 25px;
    margin: 0 0 9px 0;
    display: flex;
    display: -webkit-box;
}

.first_img {
    position: absolute;
    top: 0;
    transition: all 0.5s ease;
    height: 100%;
}

.second_img {
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    transition: all 0.5s ease;
    height: 100%;
}

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

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

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

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

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

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

.toolbar ul li a {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

.toolbar ul li a i {
    display: block;
    color: #fff;
    font-size: 20px;
}

.toolbar ul li a img {
    height: 20px;
    width: auto;
}

.toolbar ul li a span {
    font-weight: 400;
    color: #fff;
    font-size: 12px;
    display: block;
    width: 100%;
}

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

.cart-product span {
    cursor: pointer;
    color: #fff;
    text-align: center;
    padding: 0px 5px;
    border-radius: 5px;
    display: inline-block;
    line-height: 34px;
    font-size: 13px;
    font-weight: 700;
}

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

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

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

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

.desc-pro-detail {
    overflow: hidden;
    clear: both;
    display: block;
    background: #F6F6F4;
    border-radius: 5px;
    padding: 15px;
    margin: 0 0 15px 0 !important;
    border-left: 2px solid var(--color-main);
}

.information-pro-detail {
    background-color: #f2f6fb;
    padding: 10px 25px;
    padding-top: 25px;
}

.wrap-desc .content-main {
    position: relative;
}

.wrap-desc .content-main:is(.show):after {
    display: none;
}

.wrap-desc .content-main:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.box-cat:not(:last-child) {
    margin-bottom: 40px;
}

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

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

.size-pro-detail {
    border: 1px solid #232323;
    padding: 0 5px;
    display: inline-block;
    position: relative;
    color: #232323;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    line-height: 25px;
    min-width: 27px;
    text-align: center;
    margin: 2px;
}

.size-pro-detail.active,
.size-pro-detail:hover,
.color-pro-detail.active {
    color: #fff !important;
    background: #232323;
}

/*.color-pro-detail.active:before, .size-pro-detail.active:before { content: ''; position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; bottom: 0px; right: 0px; margin: auto; z-index: 1; background-image: url(../images/check-cart.png); background-repeat: no-repeat; background-position: bottom right; }*/
.color-pro-detail input[type=radio],
.size-pro-detail input[type=radio] {
    outline: none;
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    border: 0px;
    top: 0px;
    left: 0px;
}

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

.quantity-pro-detail span {
    line-height: 40px;
    padding: 0px;
    width: 30px;
    height: 40px;
    color: #000;
    cursor: pointer;
    font-size: 22px;
}

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

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

.quantity-pro-detail input {
    height: 40px;
    width: calc(100% - 60px);
    text-align: center;
    font-size: 20px;
    padding: 5px;
    border: none;
    font-weight: 700;
}

.cart-pro-detail {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cart-pro-detail a {
    width: auto;
    text-align: center;
    color: #fff;
    padding: 10px 15px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 15px;
    font-weight: 500;
}

.cart-pro-detail a.addnow {
    margin-right: 10px;
    border: solid 1px #000;
    color: #000;
}

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

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

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

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

.tabs-pro-detail {
    margin: 1rem 0px 2rem 0px;
}

.tabs-pro-detail .nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    border: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.tabs-pro-detail .nav-tabs {
    border: 0;
}

.tabs-pro-detail .nav-tabs .nav-link.active {
    color: var(--color-main);
    border-color: var(--color-main);
}

.tags-pro-detail a {
    float: left;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px 7px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: var(--color-red);
    border-radius: 3px;
}

.tags-pro-detail a:hover {
    background-color: var(--color-medium-red);
}

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

.newsletter-input {
    position: relative;
    margin-bottom: 10px;
}

.newsletter-input input {
    padding: 0px;
    font-size: 14px;
    text-indent: 10px;
    border: solid 1px #E4E4E4;
    height: 35px;
    color: #000;
    border-radius: 5px;
}

.newsletter-input textarea {
    height: 75px;
    border: solid 1px #E4E4E4;
    font-size: 14px;
    border-radius: 5px;
}

.newsletter-input input::-moz-placeholder,
.newsletter-input textarea::-moz-placeholder {
    color: #000;
    font-weight: 300;
}

.newsletter-input input::placeholder,
.newsletter-input textarea::placeholder {
    color: #000;
    font-weight: 300;
}

.newsletter-button input[type=submit] {
    border: 0px;
    background-color: #5172fd;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
    width: 140px;
    height: 40px;
    border-radius: 5px;
    font-weight: 600;
}

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

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

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

.breadCrumbs ol {
    margin: 0px;
}

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

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

.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: #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 {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.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 .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;
    margin: 10px 0px;
}

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

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

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

/* Scroll */
.scroll-maded {
    overflow-y: scroll;
    overflow-x: hidden;
}

.scroll-maded::-webkit-scrollbar {
    width: 2px;
}

.scroll-maded::-webkit-scrollbar-thumb {
    width: 2px;
    background: var(--color-main);
}

.scroll-maded::-webkit-scrollbar-thumb:hover,
.scroll-maded::-webkit-scrollbar-thumb:active {
    width: 2px;
}

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

.grecaptcha-badge {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    overflow: hidden;
}

.line-product {
    height: 10px;
    background: linear-gradient(180deg, #e7e7e7 0%, #f3f3f3 100%);
    border-radius: 10px;
    margin: 40px 0 25px;
}

.title-product {
    border-bottom: 1px solid #d4d0e2;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.title-product:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 55px;
    height: 6px;
    background: var(--color-main);
    border-radius: 10px;
}

.title-product .left span,
.title-product .left a {
    font-size: 24px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 800;
    font-family: "Montserrat";
}

.title-product .right a,
.title-product .right span {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 22px;
    color: #666666;
}

.title-product .right a:hover,
.title-product .right a.active {
    color: var(--color-main) !important;
    cursor: pointer;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 185px;
    height: 50px;
    background-color: #fff;
    border-radius: 5px;
    filter: drop-shadow(0.349px 3.985px 0px #d72329);
    border: 1px solid var(--color-main);
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--color-main);
    font-weight: 700;
    transition: 0.3s;
}

.view-more a:hover {
    color: #fff;
    background-color: var(--color-main);
    filter: drop-shadow(0.349px 3.985px 0px #fff);
}

.filter {
    border-radius: 10px;
    border: 1px solid #c1c1c1;
    background: white;
    overflow: hidden;
}

.filter-title {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    padding: 10px 10px 5px 10px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid rgb(240, 240, 240);
    text-transform: uppercase;
}

.filter-item {
    padding: 10px 12px;
}

.filter-item__title {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111;
}

.filter-item__title:after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Pro";
}

.filter-item__ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-item__ul li {
    margin: 15px 0 0;
    display: block;
}

.filter-item__ul li a {
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 500;
}

.filter-item__ul li a span {
    border: 1px solid #cccccc;
    border-radius: 0px;
    width: 15px;
    height: 15px;
    display: block;
    position: relative;
}

.filter-item__ul li a span:after {
    content: "\f00c";
    font-size: 13px;
    position: absolute;
    top: -3px;
    right: 1px;
    z-index: 1;
    color: white;
    font-family: "Font Awesome 6 Pro";
}

.filter-item__ul li a.checked span {
    border-color: var(--color-hover);
    background-color: var(--color-hover);
}

.filter-reset {
    padding: 10px 20px;
    background: var(--color-hover);
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: white;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 2em;
    transition: 0.3s ease-in-out;
}

.filter-reset:hover {
    background: var(--color-main);
}

.section-1 .swiper-auto {
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.1));
}

.section-1 .item {
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    overflow: hidden;
}

.section-1 .item .info {
    padding: 10px 10px 20px;
    background-color: #f8f9fd;
}

.section-1 .item .info .name {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 700;
}

.section-1 .item .info .name:hover {
    color: var(--color-main);
}

.section-1 .item .info .view {
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, #29166f 0%, var(--color-main) 100%);
    padding: 5px 50px;
    border-radius: 5px;
    transition: 0.3s;
}

.section-1 .item .info .view:hover {
    color: #ff0;
}

.section-2 .title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.section-2 .title span {
    font-size: 30px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 800;
    font-family: "Montserrat";
    filter: drop-shadow(2px 3.464px 4px rgba(0, 0, 0, 0.43));
    text-shadow: 0 0 0 transparent, -1px -1px 0 #cc1b20, 0px -1px 0 #cc1b20, 1px -1px 0 #cc1b20, -1px 0px 0 #cc1b20, 0px 0px 0 #cc1b20, 1px 0px 0 #cc1b20, -1px 1px 0 #cc1b20, 0px 1px 0 #cc1b20, 1px 1px 0 #cc1b20, -2px -2px 0 #cc1b20, -1px -2px 0 #cc1b20, 0px -2px 0 #cc1b20, 1px -2px 0 #cc1b20, 2px -2px 0 #cc1b20, -2px -1px 0 #cc1b20, -1px -1px 0 #cc1b20, 0px -1px 0 #cc1b20, 1px -1px 0 #cc1b20, 2px -1px 0 #cc1b20, -2px 0px 0 #cc1b20, -1px 0px 0 #cc1b20, 0px 0px 0 #cc1b20, 1px 0px 0 #cc1b20, 2px 0px 0 #cc1b20, -2px 1px 0 #cc1b20, -1px 1px 0 #cc1b20, 0px 1px 0 #cc1b20, 1px 1px 0 #cc1b20, 2px 1px 0 #cc1b20, -2px 2px 0 #cc1b20, -1px 2px 0 #cc1b20, 0px 2px 0 #cc1b20, 1px 2px 0 #cc1b20, 2px 2px 0 #cc1b20;
}

.section-2 .main {
    filter: drop-shadow(2.5px 4.33px 2.5px rgba(0, 0, 0, 0.22));
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: url(../images/bg_spbc.png) no-repeat left top/cover;
}

.section-4 {
    padding: 35px 0px 55px;
    background: url(../images/bg_tt.png) no-repeat left top/cover;
}

.section-4 .item {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.section-4 .item .info {
    background-color: #fff;
    padding: 20px 15px 30px;
}

.section-4 .item .info .time {
    padding-left: 30px;
    font-size: 14px;
    line-height: 36px;
    color: var(--color-main);
    background: url(../images/i_time.png) no-repeat center left;
    margin-bottom: 0;
}

.section-4 .item .info .name {
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    font-weight: 700;
    height: 60px;
}

.section-4 .item .info .name:hover {
    color: var(--color-main);
}

.section-4 .item .info .desc {
    font-size: 15px;
    line-height: 28px;
    height: 56px;
    color: #666666;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .menu,
    .header-search,
    .header-hotline,
    .header-cart {
        display: none;
    }

    #hamburger,
    .search-res,
    .toolbar {
        display: block;
    }

    .content-main img,
    .content-auto img,
    #info-pro-detail img {
        height: auto !important;
    }

    .content-main iframe,
    .content-auto iframe,
    #info-pro-detail iframe {
        width: 100% !important;
        height: auto !important;
    }

    .cart-fixed {
        bottom: 230px;
    }

    .filter {
        border: 0;
    }

    .cart-pro-detail a {
        font-size: 12px;
        padding: 10px 5px;
    }
}

@media (max-width: 767px) {
    .section-1 .item .info .name {
        -webkit-line-clamp: 2;
        font-size: 15px;
        height: 50px;
    }

    .section-1 .item .info .view {
        padding: 5px 20px;
    }

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

    .product-addcart {
        font-size: 11px;
        padding: 5px;
        gap: 5px;
    }

    .product-name {
        -webkit-line-clamp: 2;
        height: 50px;
    }

    .product-price {
        height: 42px;
    }

    .product-price-new {
        display: block;
    }

    .title-product .left span {
        font-size: 18px;
    }

    .title-main span,
    .title-main h4 {
        font-size: 23px;
    }

    .section-4 .item .info .name {
        font-size: 14px;
        line-height: 22px;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .news-image {
        margin-bottom: 1rem;
    }

    .grid-product {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 369px) {
    .cart-pro-detail a {
        width: 100%;
    }

    .cart-pro-detail a:first-child {
        margin-right: 0px;
        margin-bottom: 0.5rem;
    }

    .cart-pro-detail a i {
        display: none;
    }
}