@-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('/tp/T0453/font/Averta-Light.otf');
    font-weight: 300;
}
@font-face {
    font-family: 'Averta';
    src: url('/tp/T0453/font/Averta-Regular.otf');
    font-weight: 500;
}
@font-face {
    font-family: 'Averta';
    src: url('/tp/T0453/font/Averta-Semibold.otf');
    font-weight: 600;
}
@font-face {
    font-family: 'Averta';
    src: url('/tp/T0453/font/Averta-Bold.otf');
    font-weight: 600;
}

@font-face {
    font-family: 'FzPoppins';
    src: url('/tp/T0453/font/FzPoppins/FZ Poppins-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'FzPoppins';
    src: url('/tp/T0453/font/FzPoppins/FZ Poppins-Regular.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'FzPoppins';
    src: url('/tp/T0453/font/FzPoppins/FZ Poppins-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'FzPoppins';
    src: url('/tp/T0453/font/FzPoppins/FZ Poppins-Bold.ttf');
    font-weight: 700;
}

:root {
    --blue-color: #265ce9;
    --gray-color: #b9b9b9;
}

::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
}

::-webkit-scrollbar-thumb {
    background-color: #000;
}

::-webkit-scrollbar-track {
    background-color: #e5e5e5;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

body {
    font-family: 'FzPoppins';
    font-weight: 500;
    font-size: 14px;
}

.top-header {
    padding: 15px 0;
    border-bottom: 1px solid #f7f7f7;
}

.top-header ul {
    display: flex;
    gap: 15px;
}

.top-header ul li:not(:last-child) {
    padding-right: 15px;
    position: relative;
}
.top-header ul li:first-child:after{
    display: none;
}
.top-header ul li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 50%;
    transform: translateY(-50%);
    background: #000;
    width: 0.1rem;
    display: none;
}

.top-header ul li a {
    font-size: 13px;
}

.bottom-header {
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .08);
    margin-bottom: 2px;
}

.hd-menu>ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hd-menu>ul>li {
    margin: 0 35px;
    position: relative;
    height: 100%;
}

.hd-menu > ul > li:last-child {
    margin-right: 0;
}

.hd-menu>ul>li>a {
    font-weight: 600;
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 14px;
}

.hd-menu>ul>li>ul {
    position: absolute;
    top: 100%;
    background: #fff;
    border: 1px solid #eee;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 2;
}
.hd-menu>ul>li>ul>li {
    height: 45px;
}

.hd-menu>ul>li>ul>li>a {
    line-height: 45px;
    display: block;
    width: 100%;
    padding: 0 15px;
    transition: all .3s;
}

.hd-menu>ul>li>ul>li:hover>a {
    background: #000;
    color: #fff;
}

.title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.intro-home {
    margin-top: 95px;
    margin-bottom: 100px;
}

.list-category.list-menu, .most-search ul {
    display: flex;
    justify-content: center;
    gap: 75px;
    margin-top: 25px;
    margin-bottom: 50px;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
}
.slide-category button.owl-next{
    right: 0;
    left: auto;
}
.slide-category button.owl-prev{
    top: 50%;
    transform: translateY(-50%);
}
.slide-category button:hover{
    background: none !important;
    color: #000 !important;
}
.slide-category button{
    position: absolute;
    left: 0;
    margin: 0 !important;
    padding: 0;
    line-height: normal;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.slide-category button span{
    font-size: 20px;
}

.slide-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.slide-category li{
    width: fit-content;
    text-align: center;
}
.list-category li a, .most-search ul li a {
    color: #000;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    display: block;
    font-size: 13px;
}

.product-info {
    margin-top: 12px;
}

.product-img img {
    border-radius: 5px;
}

.product-item {
    margin-bottom: 60px;
}

.product-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
    height: 42px;
    line-height: 21px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
}

.date {
    margin-top: 8px;
    font-size: 13px;
    color: #000;
}
.list-album-image{
    display: inline-block;
    width: 100%;
}
.list-album-image a img {
    border-radius: 8px;
}

.most-search .title {
    font-size: 21px;
    text-align: left;
}

.most-search ul {
    gap: 65px;
    justify-content: center;
}

.e-item-wrap {
    background: #fff !important;
    padding: 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 20px;
    border: 1px solid #000;
}

.e-image {
    display: block;
    margin: 0 auto 20px;
}

.e-info {
    text-align: center;
}

.e-name {
    font-weight: 600;
    font-size: 16px;
}

.e-desc {
    font-size: 12px;
}

.e-image img {
    border-radius: 50%;
    height: 155px;
    color: #fff;
}

.title-desc {
    display: block;
    margin: 30px 60px;
}

.list-application {
    margin: 30px 0 60px;
}

.app-item-wrap {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 100px 30px;
    color: var(--black-color);
    height: 100%;
    text-align: center;
}

.app-item p {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

.app-item span {
    font-size: 13px;
    text-align: justify;
    display: block;
}

.news-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0 30px;
}

.news-cate, .news-date, .brand-name {
    color: var(--gray-color);
    font-size: 13px;
}

.news-title {
    font-weight: 600;
    font-size: 13px;
    line-height: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
}

.product-price {
    font-size: 13px;
}

.tp_product_price {
    color: #ed2e2c;
    font-weight: 600;
    font-size: 13px;
}

.news-img img {
    border-radius: 8px;
}

.star i {
    padding: 0 1px;
}

.total-rating {
    font-weight: 600;
}

.banner-bottom img {
    border-radius: 8px;
}

footer {
    background: #fff;
    padding: 80px 0 0;
}

.ft-title {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.ft-group ul li:not(:last-child) {
    margin-bottom: 10px;
}

.ft-group ul li a, .ft-group ul li *, .ft-group p, .ft-group p * {
    font-size: 13px;
}

.w-45, .w-30 {
    width: 100%;
}

.bct {
    margin-top: 20px;
}

.bct img {
    height: 45px;
    width: auto;
    margin-left: -7px;
}

.copyright ul {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin-left: 10px;
}

.top-footer {
    padding: 0 120px;
}

.bottom-footer {
    margin-top: 30px;
}

.info-right {
    font-size: 11px;
    gap: 20px;
    display: flex;
}

.info-right i {
    font-size: 16px;
    color: #000;
    margin-right: 3px;
}

.paging-next:before, .paging-last:before, .paging-previous:before, .paging-first:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
}

.paging-last:before {
    content: "\f101";
}

.paging-previous:before {
    content: "\f104";
}

.paging-next:before {
    content: "\f105";
}

.paging-first:before {
    content: "\f100";
}

.paginator {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.paginator a, .paginator span {
    position: relative;
    text-decoration: none;
    background-color: #f9f9f9;
    margin-right: 10px;
    color: #312c2c;
    font-weight: 600;
    transition: ease-in-out .3s;
    border: 1px solid #f9f9f9;
    line-height: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

span.labelPages, span.titlePages {
    display: none;
}

.paginator .currentPage {
    border-color: #000;
    color: #fff;
    background: #000;
}

.date {
    align-items: center;
}

.ceb-item img {
    display: block;
    margin-bottom: 10px;
}

.ceb-item-wrap {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 20px 40px 5px;
}

.trade-detail .e-item-wrap {
    /*border: 1px solid #ddd;*/
    background: transparent;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.navigation li:not(:last-child) {
    margin-right: 10px;
}

.navigation li:not(:last-child):after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    display: inline;
    margin-left: 10px;
    color: #000;
    font-size: 10px;
}

.navigation li a {
    color: #000;
    font-size: 13px;
}

.category-child ul li a.active {
    color: #000;
}

.filter-right .filter-item.sort-list {
    margin-left: auto;
    border: none;
    padding-left: 0;
    padding-right: 0;
}

.filter-right .sort-list .filter-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.filter-right .sort-list .filter-list {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .08);
}

.br-item img {
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.trade-detail .category-child ul {
    justify-content: flex-start;
}

/*.intro-brand img {*/
/*    border-radius: 50%;*/
/*}*/

.intro-brand {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /*box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.08);*/
    border: 1px solid #000;
}

.pview-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    background: #000;
    width: 100%;
    height: 40px;
    border-radius: 25px;
    color: #fff;
}

.pview-btn.pview-call {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.filter-wrap .highlight {
    padding: 20px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.owl-banner img {
    border-radius: 7px;
}

.flash-sale {
    padding: 25px 50px;
    background: #4ba997;
    border-radius: 25px;
    /*background: linear-gradient(90deg, #329c89 0%, #9ae1d3 5%, #9ae1d3 95%, #329c89 100%);*/
    background: linear-gradient(to left, #9ae1d3 0%, #329c89 80%);
}

.address-map {
    padding-right: 3rem;
}

.address-detail {
    display: flex;
    flex-direction: column-reverse;
}

.agency-item {
    padding: 20px;
    border: 1px solid #363636;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
    border-radius: 7px;
}

.btn-view a {
    border: 1px solid #ccc;
    padding: 5px 20px;
    border-radius: 5px;
}

.info-wrap {
    width: calc(100% - 170px);
}

#modalMap iframe {
    width: 100% !important;
}

.logo img {
    width: 203px;
    height: 60px;
    object-fit: scale-down;
}

.wishlist-btn {
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.wishlist-btn img {
    width: 18px;
    height: 18px;
}

.bottom-header.fixed {
    width: 100%;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9;
    background: #000;
}

.product-img, .news-item .news-img {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    display: block;
}

.product-img img, .news-item .news-img img {
    transform: scale(1);
    transition: all .5s;
}

.product-img:hover img, .news-item:hover .news-img img {
    transform: scale(1.2);
}

.pointTag {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes cusBigger {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes cusBigger {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.pointTag::after {
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    top: -3px;
    left: -3px;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
    animation: cusBigger 1.5s ease-out infinite;
}

.pointTag>a {
    width: 16px;
    height: 16px;
    background: #bbb;
    border-radius: 50%;
    padding: 0;
    display: block;
    outline: none;
}

.product-in-tag {
    position: absolute;
    left: calc(100% + 10px);
    bottom: calc(100% + 10px);
    width: 200px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6.5px);
    border-radius: 10px;
}

.list-category li.active a {
    color: #fff;
    background: #000;
}
.block-list-bn-wrp a img{
    padding: 5px;
    width: 100%;
}
.block-list-bn-wrp .list-bn-left{
    width: 62%;
}
.block-list-bn-wrp .list-bn-right{
    width: 38%;
}
.list-bn-1 .mini-right, .list-bn-3 .mini-right{
    width: 59%;
}
.list-bn-1 .mini-left, .list-bn-3 .mini-left{
    width: 41%;
}
.fs-18 {
    font-size: 18px !important;
}
.list-product .product-img img {
    height: 169px;
    max-height: unset;
}
.news-date {
    display: flex;
    justify-content: unset;
    gap: 50px;
}
.news-date span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}
.news-date span i {
    font-size: 16px;
}
.news-item .news-img img:not(.top-news .news-item .news-img img) {
    height: 183px;
    object-fit: cover;
}
.news-item.first-news .news-img img {
    max-height: unset;
}
.bg-cover {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.7);
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
}

.info-right span img {
    width: 18px !important;
}

.info-right span:nth-child(2) {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.form-contact .title {
    font-size: 20px;
}

.form_login input:focus-visible {
    outline: none !important;
}

.pd-attr .e-item-wrap {
    padding: 10px;
}

.slide-category button.owl-prev, .slide-category button.owl-next {
    top: 30%;
}

.app-item-wrap a:hover {
    color: #fff !important;
}

.life-style .list-product .product-img img {
    max-height: unset;
    height: unset;
}

.form-control:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.slide-category.owl-carousel .owl-stage {
    margin: 0 auto !important;
}

.slide-category.list-cate-album button.owl-prev {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.slide-category.list-cate-album button.owl-next {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.album-name {
    display: block;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.inspiration {
    display: none;
}

.most-search .title {
    text-align: center;
    font-size: 22px;
}

.slide-category li {
    padding: 0;
    text-align: center;
    border-radius: 25px;
    transition: all .4s;
    cursor: pointer;
}

.slide-category li:hover {
    background: #000;
    color: #fff;
}

.wrap-expert {
    padding: 30px 0;
}

.application .app-item-wrap:hover {
    transition: all .4s;
    transform: scaleY(1.1);
    color: #fff;
    background: #000;
}

.application .app-item-wrap:hover * {
    color: #fff;
}

.percent {
    color: #ed2e2c;
    font-weight: 600;
}

.home-review {
    padding: 50px 0;
    background: #f9f9f9;
    margin-bottom: 50px;
}

.bottom-header {
    background: #000;
}

.logo img {
    filter: invert(1);
}

.hd-menu > ul > li > a {
    color: #fff;
}

.footer-logo img {
    height: 40px;
    margin-left: -20px;
}

.bottom-footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #f9f9f9;
}

.ih-item-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-right {
    font-size: 13px;
}

.btn-modal {
    padding: 10px 20px;
    border-radius: 25px;
    background: #000;
    color: #fff;
    font-size: 14px;
    border: none;
    margin-left: auto;
    float: right;
}

.contact-footer {
    background: #f9f9f9;
    padding: 60px 0;
}

.contact-footer p {
    margin-bottom: 5px;
}

.modal.modal-lg {
    left: 50%;
    transform: translateX(-50%);
}

.modal-lg .modal-dialog {
    max-width: 100%;
}

.form-contact .form-control::placeholder {
    color: #000;
}

.pd-top {
    background: #f9f9f9;
    padding: 40px 0 15px;
    margin-bottom: 60px;
}

.pd-share {
    position: relative;
    padding: 0 15px;
    cursor: pointer;
}

.pd-share ul {
    position: absolute;
    top: 100%;
    left: 100%;
    background: #fff;
    padding: 5px 0;
    border-radius: 5px;
    transition: all .4s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.pd-share:hover > ul {
    opacity: 1;
    visibility: visible;
}

.pd-share ul li {
    padding: 10px 25px;
    min-width: 200px;
}

.pd-share i {
    font-size: 16px;
}

#productTags > span {
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    margin-right: 30px;
    margin-bottom: 10px;
}

#productTags a {
    display: inline-flex;
    padding: 10px 25px;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 25px;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
}

.form-contact {
    margin: 0;
    background: #fff;
}

.btn-contact {
    background: #000 !important;
    width: fit-content;
    margin: 30px auto 0;
    padding: 10px 35px;
    border-radius: 25px;
    font-size: 12px;
}

#popupContact .modal-content {
    border-radius: 15px;
}

.list-priority {
    margin-top: 60px;
    display: flex;
}

.priority-item {
    display: inline-block;
    width: calc((100% / 3) - 45px);
}

.priority-item:not(:last-child) {
    margin-right: 53px;
}

.priority-item-wrap {
    padding: 35px 30px 100px;
    position: relative;
    height: 100%;
}

.priority-item-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    z-index: -1;
    transform: scaleY(1);
    transition: all .5s;
    box-shadow: 0px 30px 25px rgba(0, 0, 0, 0.08);
}

.priority-item b {
    display: block;
    font-size: 15px;
}

.priority-desc {
    margin-top: 20px;
    text-align: justify;
    color: #000000;
    line-height: 21px;
}

.priority-item:hover > .priority-item-wrap:before {
    background: #000;
    transform: scaleY(1.05);
}

.priority-item:hover * {
    color: #fff !important;
}

.order-number i {
    font-size: 16px;
    margin-right: 1px;
}

.priority-desc * {
    letter-spacing: 0.01rem;
    font-size: 13px;
}

.form-contact {
    padding: 65px !important;
}

.form-search {
    margin-left: auto;
    margin-right: 80px;
}

.list-category li:hover a {
    color: #fff !important;
}

.custom-select {
    position: relative;
    width: 200px;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select label {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #fff;
    padding: 0 26px 0 8px;
    font-size: 12px;
    color: #333;
    z-index: 1;
}

select.custom-select {
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 12px;
    color: #888;
    border: 1px solid #212121;
    border-radius: 8px;
    appearance: none;
    background-color: #fff;
}

.custom-select i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #828282;
    font-size: 13px;
}

.wrap-brand-main {
    padding-top: 40px;
}

.filter-brand .filter-list > li {
    margin: 5px 0;
}

.result {
    font-size: 15px;
    display: block;
    margin: 20px 0 30px;
}

.pd-wrap {
    position: relative;
}

.pd-wrap:before {
    content: "";
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);;
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.most-search {
    padding-bottom: 80px;
}

.most-search ul {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 15px;
}

.most-search .d-flex .title {
    margin: 0 35px 0 0;
    font-size: 14px;
}

.most-search ul li a {
    /*border: 1px solid #000;*/
    border-radius: 25px;
    color: #000;
    background: #fff;
    transition: all .4s;
    font-weight: 500;
    font-size: 14px;
}

.most-search ul li a:hover {
    background: #000;
    color: #fff !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.news-info .news-intro {
    display: none !important;
}

.wrap-faq > div {
    display: none;
}

.wrap-faq > ul > li {
    margin: 30px 0;
}

.wrap-faq > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
}

.wrap-faq > ul > li > a span {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag-block a {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 25px;
    background: #f3f3f3;
    margin-right: 10px;
    font-size: 13px;
    transition: all .4s;
}

.tag-block a:hover {
    background: #000;
    color: #fff !important;
}

.order-number {
    text-align: right;
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
}

.priority-item:hover .order-number {
    font-size: 36px;
}

.policy-contact-btn {
    padding: 8px 35px;
    background: #000;
    color: #fff !important;
    border-radius: 25px;
    display: block;
    margin: 40px auto 60px;
    width: fit-content;
    font-size: 13px;
}

.br-item img {
    width: 40px !important;
}

.w-40 {
    width: 40% !important;
}

.w-33 {
    width: 33.3333333333%;
}

.info-img {
    height: 150px;
    width: 150px;
}

.depot-name {
    font-size: 16px;
    font-weight: 600 !important;
}

.btn-view a {
    width: 200px;
    padding: 5px 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

#loading-screen {
    display: none;
}

.intro-home {
    padding: 40px 0 30px;
    background: #f9f9f9;
}

#popupContact .btn-contact {
    background: #000 !important;
}

.intro-brand {
    position: sticky;
    top: 120px;
}

.album-item img {
    height: 208px;
}

.detail_prd ul.navigation li:first-child::before {
    display: none !important;
}

.pd-brand a {
    color: #000 !important;
    margin-left: 10px;
}

#addQuickCart {
    background: #a70000 !important;
}

.most-search ul {
    flex-wrap: wrap;
}

.form-search {
    margin-right: 0;
}

.notification {
    padding-left: 0 !important;
    padding-bottom: 0 !important;
}

.ms-home .slide-category li {
    padding: 10px 15px;
}

.ms-home .slide-category li:hover * {
    color: #fff !important;
}

.ms-home ul li a {
    padding: 10px 15px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    font-size: 13px;
    transition: all .4s;
    cursor: pointer;
}

.ms-home ul li:hover a {
    background: #000;
    color: #fff;
}

.ms-home ul li:hover * {
    color: #fff !important;
}

.owl-brand-home .e-item-wrap {
    box-shadow: none;
}

.hover-btn, .reverse {
    transition: all .4s;
}

.hover-btn:hover {
    background: #000 !important;
    color: #fff !important;
}

.reverse:hover {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
}

.text-justify, .text-justify * {
    text-align: justify !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.form_login input {
    border-color: #000 !important;
}

.ih-item-wrap h3 {
    min-width: 82px;
}

.contact-footer p {
    text-align: justify;
}

.filter-list > li > label {
    font-size: 13px !important;
}

#productTags {
    margin-top: 45px;
    align-items: center;
}

.pd-info-bottom {
    padding-bottom: 30px;
}

.pd-share ul li a {
    font-size: 13px;
}

.btn-hover {
    width: fit-content;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    margin: 30px auto 80px;
    border-radius: 25px;
    gap: 20px;
    align-items: center;
}

.top-intro .btn-hover {
    padding: 10px 45px;
}

.name-desc {
    text-align: center;
}

.name-desc b {
    display: block;
}

.priority-item-wrap b, .priority-item-wrap p {
    font-size: 14px;
}

.paging-last, .paging-first {
    display: none !important;
}

.wrap {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.08);
}

.form-contact .form-control {
    border-color: #000 !important;
}

.application .priority-item-wrap:before {
    background: #f9f9f9;
    box-shadow: none;
}

#popupContact .btn-contact {
    color: #fff;
}

.product-exp {
    border-radius: 0 !important;
}

.pview-contact {
    top: 135px !important;
}

.discovery {
    margin-top: 15px;
}

.contact-footer strong {
    font-size: 18px !important;
}

.contact-footer * {
    font-family: 'FzPoppins' !important;
}

.pd-attr .price_sale {
    font-size: 24px;
}

#addQuickCart {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.blockShipContent {
    max-height: 218px;
    overflow: hidden;
    transition: all .4s;
}

.blockShipContent.active {
    max-height: 5000px;
}

.pd-stick-buy .pd-name h1 {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.pd-stick-buy .price_sale {
    font-size: 16px !important;
}

.filter-wrap > ul {
    z-index: 2;
}

.list-news-category-child {
    display: flex;
    margin-bottom: 75px;
}

.list-news-category-child li {
    margin-right: 80px;
}

.list-news-category-child li a {
    font-weight: 500;
}

.list-news-category-child li.active a {
    font-weight: 600;
}

.category-child > p, .category-child > p * {
    font-size: 16px;
}

.category-child ul li:hover > a, .category-child > p:hover, .category-child > p:hover * {
    font-weight: 600;
}

.category-main .pview-btn.pview-zalo:hover {
    color: #fff !important;
}

.form-title {
    font-weight: 600;
    font-size: 16px;
}

.form-contact .form-control {
    background: transparent;
}

.form-contact {
    padding: 65px 65px 65px 0;
}

h3.form-title {
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.form-desc {
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
}

.form-contact input, .form-contact textarea {
    background: transparent;
    border: 1px solid #d2d2d2;
}

.form-contact input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #d2d2d2 !important;
}

.form-contact textarea {
    margin-bottom: 10px;
}

.form-contact input::placeholder, .form-contact textarea::placeholder {
    color: #d2d2d2;
    font-size: 13px;
}

.list-news-category-child li a {
    transition: all .4s;
}

.list-news-category-child li:hover a {
    font-weight: 600;
}

@media (min-width: 992px) {
    .list-category {
        gap: 15px !important;
    }

    .list-category li a {
        padding: 8px 15px !important;
        border: 1px solid #000;
    }

    .list-category li {
        background: #fff !important;
    }

    .list-category li:hover {
        background: #000 !important;
    }

    .pview-title {
        font-size: 18px !important;
    }

    .detail_prd .most-search .title {
        font-size: 18px !important;
    }
}