@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slide-bottom {
    -webkit-animation: slide-bottom 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-bottom 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@font-face {
    font-family: 'Averta';
    src:url('/fonts/Averta/Averta-Regular.otf');
    font-weight: 500;
}

@font-face {
    font-family: 'Averta';
    src:url('/fonts/Averta/Averta-Bold.otf');
    font-weight: 600;
}

@font-face {
    font-family: 'Averta';
    src:url('/fonts/Averta/Averta-Bold.otf');
    font-weight: 700;
}

body {
    font-size: 13px;
    /*font-family: 'Bai Jamjuree', sans-serif;*/
    font-family: 'Averta';
    font-weight: 500;
    color: #000;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: inherit;
}

header {
    background: #000;
    position: relative;
}

.top-header {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    background: #fff;
}
.left-menu ul {
    display: flex;
    flex-wrap: wrap;
}

.left-menu ul li {
    padding-right: 50px;
    position: relative;
}

.left-menu ul li:not(:last-child):after {
    content: "";
    position: absolute;
    right: 25px;
    width: 0.05rem;
    height: 75%;
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;
    display: none;
}

.left-menu ul li a {
    color: #ccc;
}

.right-social ul {
    display: flex;
    flex-wrap: wrap;
}

.right-social ul li {
    margin-right: 10px;
}

.right-social ul li a {
    color: #ccc;
}

.mid-header {
    padding: 20px 0;
    color: #fff;
}

.mid-header>.container>.row {
    align-items: center;
}

.mid-header.fixed {
    width: 100%;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9;
    background: #000;
}

.header-search form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

.header-search form:before {
    content: "";
    height: 60%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    position: absolute;
    width: 1px;
}

.header-search form input {
    background: transparent;
    border: none;
    outline: none;
    width: 90%;
    font-size: 13px;
    text-indent: 5px;
    color: #fff;
}

.header-search form input::placeholder {
    font-size: 13px;
    color: #fff;
}

.header-search form button {
    background: transparent;
    border: none;
    width: 10%;
    font-size: 16px;
    color: #fff;
}

.logo {
    color: #fff;
}

.header-user {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
}

.header-user>a {
    padding-left: 40px;
    color: #fff;
    font-weight: 500;
}

.header-user>a.btn-signup {
    padding-left: 15px;
    position: relative;
}

.header-user>a.btn-signup:after {
    content: "";
    position: absolute;
    right: -20px;
    width: 0.05rem;
    height: 75%;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
}

.header-user>i {
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-header {
    background: #fff;
}

.owl-dots {
    position: absolute;
    bottom: 5%;
    width: 100%;
    left: 0;
}

.owl-dots {
    text-align: center;
}

.owl-carousel button.owl-dot {
    background: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 10px;
}

.head-title p {
    color: #000;
    font-weight: 600;
    font-size: 20px;
}

.product-new {
    margin-top: 30px;
}

.tab-category {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-bottom: 5px;
    justify-content: center;
}

.tab-category>li {
    margin: 0 40px 0 0;
    height: 100%;
}

.tab-category>li:last-child {
    margin-right: 0;
}

.tab-category>li>a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    color: #000;
    height: 100%;
}

.tab-category>li>a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 0.15rem;
    transform: translateX(-50%);
    transition: all .3s;
    background: #ccc;
    display: none;
}

.tab-category>li.active>a, .tab-category>li:hover>a {
    color: #000;
    font-weight: 500;
}

.tab-category>li:hover>a:after, .tab-category>li.active>a:after {
    width: 70%;
}

a.product-name {
    color: #000;
    text-transform: uppercase;
    display: block;
    text-align: center;
    padding: 8px 0 5px;
    background: transparent;
    font-weight: 600;
}

.product-price {
    margin: 0 0 7.5px;
}

.product-price--current {
    color: #a91f1b;
    font-weight: 600;
    margin-right: 5px;
}

.product-price--origin {
    text-decoration: line-through;
    color: #b9b9b9;
}

.product-color {
    margin-top: 5px;
}

.pc-wrapper {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.pc-wrapper .color-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 6px 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all .4s;
}

.pc-wrapper .color-item:hover {
    transform: scale(1.2);
}

.color-item a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #9c99999c;
    border-radius: 50%;
}

@keyframes MoveUpDown {
    0%, 100% {
        bottom: -20px;
    }
    50% {
        bottom: -10px;
    }
}

.move {
    animation: MoveUpDown 1s linear infinite;
}

a.product-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    position: relative;
}

.product-more i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.about-us {
    background: #000;
    /*padding: 40px 0;*/
    margin: 60px 0;
}

.au-wrap {
    padding: 40px 80px 40px 40px;
}

.au-info>* {
    color: #fff;
}

.au-title {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
}

.au-img img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.au-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
}

.au-date {
    writing-mode: vertical-rl;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

.au-intro {
    width: calc(100% - 45px);
    font-size: 14px;
    color: #e6e6e6;
    font-weight: 500;
}

.au-intro * {
    font-size: 14px !important;
    color: #e6e6e6;
}

a.continue {
    margin-top: 45px;
    margin-left: auto;
    color: #e6e6e6;
    font-size: 14px !important;
}

a.continue i {
    font-size: 11px;
}

.news-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
    padding-left: 15px;
}

a.news-title {
    width: calc(100% - 30px);
    font-weight: 500;
    font-size: 16px;
    margin-top: 5px;
    font-family: Averta;
}

.news-block .news-img img, .mostViewedNews .news-img img {
    width: 100%;
    height: 278px;
    object-fit: cover;
    border-radius: 5px;
}

.publish-date {
    writing-mode: vertical-rl;
    letter-spacing: 0.05rem;
    font-size: 13px;
    color: #ccc;
}

.home-news, .home-review {
    margin-top: 60px;
}

.rv-item {
    position: relative;
    padding: 60px 0;
}

.rv-item img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px !important;
    height: 120px;
    transform: translateX(-50%);
    border-radius: 50%;
}

.rv-content {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 75px 75px 15px;
}

.rv-content * {
    text-align: center;
}

.review-slider.owl-carousel button.owl-dot {
    background: #000;
}

.home-partner {
    margin-top: 30px;
    padding: 40px 0;
    /*background: #f4f4f4;*/
}

footer {
    background: #000;
    padding: 45px 0 0;
}

.ft-title {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
}

.ft-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ft-social ul li a {
    color: #fff;
    font-size: 16px;
}

.ft-social ul {
    display: flex;
    flex-wrap: wrap;
}

.ft-social ul li {
    margin-right: 15px;
}

.newsletter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.subscribe {
    display: flex;
    align-items: center;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    height: 30px;
    width: 33%;
    margin-left: 50px;
}

.subcribe-email, button#subscribe {
    background: transparent;
    color: #d2d2d2;
    height: 100%;
    border: none;
}

.subcribe-email {
    width: 75%;
    text-indent: 7px;
}

.subcribe-email::placeholder {
    color: #d2d2d2;
    font-size: 13px;
}

button#subscribe {
    width: 25%;
    border-left: 1px solid #d2d2d2;
}

.top-footer {
    padding-bottom: 5px;
}

.col-lg-custom {
    width: 40% !important;
}

.bottom-footer {
    padding: 0;
}

.ft-content *, .ft-content ul li a {
    color: #d2d2d2;
    font-size: 13px;
}

.ft-content ul li {
    margin-bottom: 10px;
}

.bct ul li a img {
    height: 40px;
}

.ft-more-info {
    margin-top: 30px;
}

.bct ul {
    display: flex;
    flex-wrap: wrap;
}

.bct ul>li {
    margin-right: 15px;
}

.bct ul>li>a {
    color: #fff;
    text-transform: uppercase;
}

.bottom-menu {
    margin-top: 30px;
}

.bottom-menu li {
    padding-right: 15px;
    border-right: 1px solid #fff;
}

.bottom-menu li:last-child {
    border: none;
}

.main-footer {
    padding: 45px 0 30px;
    border-bottom: 1px solid #6e6e6e;
    border-top: 1px solid #6e6e6e;
}

.copyright {
    color: #000;
    text-align: center;
    background: #fff;
    padding: 15px 0;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    padding: 0.8rem 0 !important;
}

.navigation>li {
    margin-right: 15px;
}

.navigation>li:not(:last-child):after {
    content: "/";
    display: inline;
    margin-left: 15px;
}

::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
}

::-webkit-scrollbar-thumb {
    background-color: #000;
}

::-webkit-scrollbar-track {
    background-color: #e5e5e5;
}

.bg-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 8;
    display: none;
}

.close-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    color: #000;
}

.cart-content {
    position: fixed;
    right: 0;
    top: 0;
    background: #fff;
    width: 30vw;
    height: 100vh;
    z-index: 999;
    filter: drop-shadow(0px 0px 60px rgba(0, 0, 0, 0.06));
    padding: 75px 60px 30px 30px;
    transform: translateX(100%);
    transition: all .4s;
}

.cart-content.active {
    transform: translateX(0);
}

.total-cart-price {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #000;
}

.total-cart-price span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}

.total-cart-price>span>span {
    float: right;
}

.cart-content>* {
    display: none;
}

.cart-content.active>*:not(script) {
    display: block;
}

.cart-title p {
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.cart-title span {
    font-size: 1.125rem;
    float: right;
    cursor: pointer;
}

.cart-img {
    width: 35%;
}

.cart-info {
    width: 65%;
    padding-left: 1rem;
}

.cart-img>a>img {
    display: block;
    width: 100%;
}

.cart-p-name {
    font-size: 0.8rem;
    width: 90%;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}

.cart-info .product-price {
    margin-top: 2px;
}

.cart-info .qty-wrapper {
    width: 45%;
    height: 30px;
    margin: 5px 0;
}

.cart-info .qty-wrapper button {
    font-size: 1rem;
    line-height: 16px;
    width: 30px;
}

.cart-qty {
    box-shadow: unset !important;
    width: 30px;
    height: 100%;
    text-align: center;
    outline: none;
    border: none;
    font-size: 0.8rem;
    background: #f1f1f1;
    margin: 0 5px;
}

.cart-item {
    margin-bottom: 0.75rem;
    position: relative;
}

.removeCart {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.item-total-price {
    font-size: 0.8rem;
}

.cart-body {
    max-height: 58vh;
    overflow: auto;
    position: relative;
}

.cart-show-more {
    margin-top: 20px;
}

.cart-show-more a {
    width: 48%;
    padding: 0 25px;
    height: 35px;
    border-radius: 0;
    background: #000;
    box-shadow: 0px 0px 50px rgba(238,90,138,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}

.cart-load {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.8);
    justify-content: center;
    align-items: center;
}

.cart-load img {
    width: 40px;
    display: block;
    margin: 0 auto;
}

.cn-title {
    font-weight: 500;
    font-size: 18px;
    margin: 35px auto;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    padding: 0 45px;
    background: #fff;
    z-index: 1;
    position: relative;
    font-family: Averta;
}

.cate-news {
    position: relative;
}

.cate-news:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.05rem;
    background: #ccc;
    top: 12.5px;
    left: 0;
    z-index: 0;
    display: none;
}

.main-news .news-info {
    padding-left: 0;
    margin-top: 5px;
}

.main-news .publish-date {
    writing-mode: unset;
}

.join-us {
    margin: 30px auto 60px;
    display: block;
    width: fit-content;
    padding: 10px 50px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    border-radius: 25px;
}
.join-us:hover {
    color:#fff;
}

.most-view-news .cn-title {
    margin: 0 auto 20px;
    padding: 0 20px;
}

.most-view-news .news-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.most-view-news .news-img {
    width: 45%;
}

.most-view-news .news-info {
    width: 55%;
    flex-direction: column-reverse;
    justify-content: flex-end;
    margin-top: 0;
}

.most-view-news .publish-date {
    writing-mode: unset;
}

.most-view-news a.news-title {
    margin: 0;
    font-size: 14px;
}

.catalogue {
    margin-top: 30px;
    padding: 25px 15px 40px;
    border: 1px solid #ccc;
}

/*.most-view-news .cate-news:after {*/
/*    top: 37.5px;*/
/*    width: 100%;*/
/*    left: 0;*/
/*}*/

.share {
    display: flex;
    margin-top: 25px;
}

.fixed-btns {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 15px;
    background: #eeeeec;
}

a.btn-fixed, .btn-fixed {
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    font-weight: 600;
    z-index: 2;
    position: relative;
    margin: 20px 0;
}

.back-to-top {
    bottom: 35px;
    font-size: 21px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    display: none !important;
}

.btn-fixed.zalo-fixed {
    font-size: 9px;
    background: #000;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.btn-fixed.hotline-fixed {
    font-size: 20px;
}

.back-to-top.in {
    opacity: 1;
    visibility: visible;
}

.top-news .news-item {
    position: relative;
    margin-top: 1.5rem;
}

/*.top-news .news-info {*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*width: 100%;*/
    /*padding: 15px;*/
/*}*/

/*.top-news .news-info * {*/
/*    color: #fff;*/
/*}*/

.header-user>a.btn-profile {
    padding-left: 10px;
}

.main-news .cate-news .news-img img, .top-news .news-item img {
    height: 208px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.top-news .news-item img {
    height: 200px;
}

.top-news .col-lg-6 .news-item img {
    height: calc(477px + 1.5rem);
}

.header-user>img {
    width: 22px;
    filter: invert(1);
}

.form-control:focus {
    background-color: #fff;
    border-color: #ced4da;
    box-shadow: none;
}

button {
    outline: none;
    border: none;
    box-shadow: none;
}

.btn-check:focus+.btn, .btn:focus {
    box-shadow: none;
}

.share-twitter {
    margin-left: 5px;
}

.share-twitter a {
    font-size: 18px;
}

#subscribeBtn {
    width: fit-content;
}

.most-view-news .news-img img {
    height: 125px;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
}

.loading {
    display: none;
}

.loading img {
    display: block;
    width: 40px;
    margin: 0 auto;
}

.tittle-news {
    font-family: Averta;
}

.home-category a img {
    width: 100%;
}

.home-category a span {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}

.op-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.op-item strong {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}

.op-item p {
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
}

.pu-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

#newsletterBtn, #phoneBtn {
    width: fit-content;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    border-radius: 25px;
}

#phoneBtn {
    width: 100%;
    border-radius: 8px;
    background: #e5e5e5;
    color: #000;
    font-weight: 600;
    height: 40px;
}

.pu-desc, .wrap-time>.left {
    color: #a5a5a5;
}

.pu-close {
    position: absolute;
    cursor: pointer;
    font-size: 20px;
    right: 20px;
    top: 15px;
}

#popupNewsletter .modal-content, #popupPhone .modal-content {
    border-radius: 10px;
}

.newsletter-form input {
    font-size: 13px;
    height: 40px;
    border-radius: 8px;
}

.top-news h1 {
    font-family: Averta;
    margin-bottom: 0 !important;
}

.btn-fixed.back-to-top {
    width: auto;
    height: auto;
    bottom: 20px;
    background: transparent;
    color: #FFCC00;
    right: 0;
    position: fixed;
    writing-mode: vertical-rl;
    font-size: 11px;
    text-transform: uppercase;
}
.back-to-top i {
    font-size: 23px;
    margin-bottom: 10px;
    font-weight: 500;
}
.paginator {
    display: flex;
    justify-content: center;
    margin-top: 5px !important;
}
.paginator a, .paginator span {
    position: relative;
    float: left;
    text-decoration: none;
    background-color: #fff;
    margin-right: 10px;
    transition: ease-in-out .3s;
    display: block;
    text-align: center;
    font-size: 14px;
    border: solid 1px #3a3a3a;
    line-height: 32px;
    width: 32px;
    height: 32px;
    border-radius: 5px;
}
.paginator span.currentPage, .paginator span:hover, .paginator a:hover {
    border: solid 1px #333;
    background: #3a3a3a;
    color: #fff;
}
span.labelPages, span.titlePages, .paginator a.paging-first, .paginator a.paging-last {
    display: none;
}
.main {
    margin-bottom: 30px;
}
.paginator a.paging-previous, .paginator a.paging-next {
    width: 80px;
}
.paging-previous:before {
    content: "< Trước";
}
.paging-next:before {
    content: "Sau >";
}

.wrap-time {
    display: flex;
    align-items: center;
    justify-content: center;
}
.countdown>span {
    padding: 10px 20px 5px;
    background: #eee;
    margin-right: 10px;
    border-radius: 7px;
}
.countdown>span strong {
    display: block;
    font-size: 26px;
    line-height: 26px;
}
.countdown>span>span {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
}
.wrap-time>div {
    margin: 0 15px;
}
.wrap-time>.left {
    font-size: 14px;
}

.manufactory-wrap {
    max-width: 85%;
    margin: 90px auto 0;
}

.mw-item {
    position: relative;
}

.mw-number {
    position: absolute;
    left: 50%;
    top: -30px;
    width: 50px;
    height: 50px;
    transform: translateX(-50%);
    background: #2f2f2f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50%;
}

.mw-info {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 25px 30px;
    height: 100%;
}

.mw-info p {
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

.mw-info span {
    text-align: justify;
    display: block;
}

.news-view .tittle-news, .cate-news .cn-title {
    font-weight: 600;
}
.head-title h2{
    color: #000;
    font-weight: 600;
    font-size: 20px;
}
.mw-info h3 {
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}
.news-item .news-intro {
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.admin-talk {
    padding: 15px 0;
}
.img-talk {
    text-align: center;
    border-radius: 100%;
    overflow: hidden;
}
.img-talk img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.name-admin {
    font-size: 22px;
    font-weight: 600;
}
.admin-talk ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
}
.admin-talk p {
    margin-bottom: 8px;
}