.pb-6, .py-6 {
    padding-bottom: 6rem;
}.pt-6, .py-6 {
    padding-top: 6rem;
}.mb-6, .my-6 {
    margin-bottom: 6rem;
}.mt-6, .my-6 {
    margin-top: 6rem;
}

.gap {
    gap: 5px;
}

.color-gray-bold {
    color: var(--gray-bold);
}
/*header*/
.rounded-8{
    border-radius: 8px;
}
.box-section-header-top {
    background: var(--bg-gradient);
}

.box-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    color: #fff;
}

.header-main {
    position: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.09);
    width: 100%;
    z-index: 999;
    transition: all .4s ease;
}

.header-main.scroll {
    background: rgba(0, 0, 0, 0.6);
}

.header-main .logo-section img {
    padding: 0.95rem 0;
    max-height: 9rem;
    height: 100%;
}

.header-main>.container>.row>div:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.search-section .input-group .form-control {
    background: #f6f6f6;
    border-radius: 20px !important;
}
.search-section .input-group .btn-submit {
    position: absolute;
    background: none;
    border: 0;
    right: 0;
    z-index: 4;
    color: #000;
    font-size: 18px;
    padding: 5px 15px;
}

.language-select > ul {
    display: flex;
    align-items: center;
}

.language-select > ul > .item-language a {
    color: var(--black);
    font-size: 1.5rem;
    border-bottom: 2px solid transparent;
}

.language-select > ul > .item-language a.active,
.language-select > ul > .item-language a:hover {
    border-color: var(--black);
}

.btn-site-map {
    font-size: 1.5rem;
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    border: 1px solid var(--black);
    margin-left: 2.5rem;
}

.btn-site-map:hover {
    color: var(--white);
    background: var(--color-highlight);
    border-color: var(--color-highlight);
}

.header-main .menu-section > ul > li > a {
    font-size: 1.8rem;
    font-weight: 400;
    position: relative;
}

.header-main .menu-section > ul > li > a:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    height: 1px;
    width: 0%;
    border-bottom: 2px solid #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.header-main .menu-section > ul > li:hover > a:before,
.header-main .menu-section > ul > li > a.active:before {
    width: 50%;
}

.header-main .btn-site-map {
    border: 1px solid var(--white);
    color: var(--white);
}

.header-main .language-select > ul > .item-language a.active,
.header-main .language-select > ul > .item-language a:hover {
    border-color: var(--white);
}

.header-main .language-select > ul > .item-language a {
    color: var(--white);
}

.header-main .menu-section > ul > li.has-child > a span {
    display: none;
}

.header-main .logo-section img {
    filter: brightness(0) invert(1);
}

@media (min-width: 1200px) {
    .header-main .menu-section > ul > li > a {
        line-height: 9rem;
        height: 9rem;
    }
    
    .header-main .menu-section > ul > li > a,
    .header-main .menu-section > ul > li > a.active {
        color: var(--color-text) !important;
    }
}

/*header*/

/*home*/
.intro-title a {
    font-size: 2.2rem;
    font-weight: bold;
    color: black;
}

.section-peoduction-line .about-us .row {
    flex-direction: row-reverse;
}

.box-highlight .item .info {
    display: flex;
    align-items: center;
}

.box-highlight .item .info .number {
    font-size: 4.5rem;
    color: var(--color-highlight);
    font-weight: bold;
    line-height: 1;
}
.box-highlight .item .description, .fs-16 {
    font-size: 1.6rem;
    line-height: 1.6;
}

.box-highlight .item .img {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 110px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.box-highlight .item  .info .name {
    font-weight: 600;
}

.box-highlight .item .info .description {
    font-size: 13px;
}


.box-category-product .item .inter-content .name a {
    color: #000;
    font-size: 16px;
}

.category-list .item .inter-img {
    margin-bottom: 10px;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.box-section-home-01 {
    padding: 50px 0;
}

.box-flashsale {
    background: var(--bg-gradient);
    padding: 15px;
    border-radius: 12px;
}

.box-flashsale .title-flashsale {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-flashsale .title-flashsale .icon img {
    -webkit-animation: zoom-in-out 2500ms infinite;
    -moz-animation: zoom-in-out 2500ms infinite;
    -o-animation: zoom-in-out 2500ms infinite;
    animation: zoom-in-out 1500ms infinite;
    max-width: 180px;
}

@keyframes zoom-in-out {
    0% {
        transform: scale(0.8, 0.8)
    }

    10%,20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-4deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1, 1, 1) rotate(4deg)
    }

    40%,60%,80% {
        transform: scale3d(1, 1, 1) rotate(-4deg)
    }

    100% {
        transform: scale(0.9)
    }
}

.box-flashsale .swiper .product-item {
    margin-bottom: 0 !important;
    background: #fff;
}

.product-item .inner-content {
    padding: 10px;
}

.box-flashsale .swiper .product-item .inner-image {
    margin-bottom: 0 !important;
}
.title-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.title-link a {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #444;
    float: right;
    font-size: 13px;
    height: 34px;
    white-space: nowrap;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
}
.box-section-home-02, .box-section-home-03, .box-section-home-04 {
    margin-bottom: 40px;
}

.slider-customer-reviews {
    background: var(--bg-gradient);
    padding: 25px;
    border-radius: 12px;
}

.slider-customer-reviews .item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.slider-customer-reviews .item .top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.slider-customer-reviews .item .top .icon img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.slider-customer-reviews .item .top .icon {
    margin-right: 15px;
}

.slider-customer-reviews .item .note {
    margin-bottom: 10px;
}

.slider-customer-reviews .item .description-short {
    height: 84px;
    overflow: hidden;
}

.box-customer-reviews .info-title .title-section {
    font-size: 40px;
    margin-bottom: 20px;
}

.title-section > span {
    color: var(--color-highlight);
}

.box-customer-reviews .info-title .dsc {
    font-size: 20px;
}

.box-customer-reviews  .info-title i {
    font-size: 70px;
}

.box-section-home-06,.box-section-home-07{
    margin-bottom: 6rem;
}

.box-form-contact {
    background: var(--bg-gradient);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
}

.box-form-contact form {
    display: flex;
    position: relative;
}

.box-form-contact .box-form .form-group {
    margin-bottom: 0;
}

.box-form-contact .box-form .form-group .form-control {
    width: 300px;
    max-width: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.box-form-contact .box-form .form-group .btn-submit {
    background: var(--color-highlight);
    border: 0;
    height: 40px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 0 15px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.box-form-contact .info-title .title {
    font-size: 20px;
    color: #fff;
}

.box-form-contact .info-title .dsc {
    color: #fff;
}
/*home*/


.footer-mid-top {
    position: relative;
}

.footer-mid-top:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    left: 0;
    background: var(--light);
    z-index: 0;
}

.footer-mid-top {
    position: relative;
}

.footer-mid-top:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    left: 0;
    background: var(--light);
    z-index: 0;
}

.title-footer {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 2.2rem;
    font-weight: 700;
    color: var(--color-highlight);
}

.menu-footer ul {
    padding-left: 0;
}

.menu-footer ul>li {
    list-style: none;
    margin-bottom: 10px;
}

.menu-footer ul>li>a {
    color: var(--black);
    font-size: 1.6rem;
}.menu-footer ul>li>a:hover {
    color: var(--color-highlight);
}

.categories, .content-filter-product {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    box-shadow: none !important;
}

.title-left {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    font-weight: 700;
}

.box-article-home .article-item {
    background: #f3f3f3;
    border-radius: 8px;
}

.box-article-home .article-item .inner-image {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.box-article-home .article-item .inner-content {
    padding: 15px;
}

.box-article-home .article-item .inner-content .article-description {
    height: 63px;
    overflow: hidden;
    text-align: justify;
}

.box-fanpage .info iframe {
    width: 100%;
    height: 170px;
}
.header-menu>.container>.row>div:nth-child(2) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotline-top>a {
    background: #d40e00;
    padding: 0 20px;
    border-radius: 20px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    -webkit-animation: zoom-in-out 2500ms infinite;
    -moz-animation: zoom-in-out 2500ms infinite;
    -o-animation: zoom-in-out 2500ms infinite;
    animation: zoom-in-out 1500ms infinite;
}

.hotline-top>a>i {
    font-size: 16px;
}
/*san-pham*/
.title-left-atb {
    font-size: 18px;
    font-weight: 700;
}


.load-more {
    position: relative;
    margin-top: 20px;
}

.load-more>a {
    padding: 8px 25px;
    background: var(--color-highlight);
    color: #fff;
    display: inline-block;
    border-radius: 20px !important;
    cursor: pointer;
}

.load-more>.btn-hide, .info-show-content.show .load-more>.btn-show {
    display: none;
}

.info-show-content.show .load-more>.btn-hide {
    display: inline-block;
}

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

.info-show-content.show .content-text {
    max-height: 100%;
}
.load-more>a>i {
    font-size: 10px;
}

.box-category-page.info-show-content {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.content-text h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.content-text h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.content-text img {
    width: 100%;
    height: auto;
}

.wrap-suggestion>.list-unstyled>li>a {
    align-items: center;
}

.wrap-suggestion>.list-unstyled>li>a>div:nth-child(1) {
    flex: 0 0 100px;
    max-width: 100px;
}

.wrap-suggestion>.list-unstyled>li>a>div:nth-child(2) {
    flex-basis: calc(100% - 100px);
    max-width: calc(100% - 100px);
}

.view-small-tuyendung .title-section {
    font-size: 3.2rem;
    text-transform: uppercase;
    color: var(--color-highlight);
    border: none;
    padding: 0;
}

.view-small:not(.view-small-tuyendung) {
    border: 1px solid #d1d5db; 
    border-radius: 12px; 
    padding: 15px; 
}

.view-small-tuyendung .view-small {
    border: none;
    border-radius: 0;
    padding: 0;
}

.view-small-tuyendung .view-small .info .article-item .inner-image {
    flex: 0 0 165px;
    max-width: 165px;
}.view-small-tuyendung .view-small .info .article-item .inner-content {
    padding-left: 1.8rem;
}.view-small-tuyendung .view-small .info .article-item .inner-content .article-title a {
    font-size: 1.8rem;
}.view-small-tuyendung .view-small .info .article-item .inner-content .article-description {
    font-size: 1.4rem;
    line-height: 2rem;
    color: #333;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: calc(3 * 2rem);
}.view-small-tuyendung .view-small .info .article-item .inner-content .article-title {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-height: 1.4;
    height: auto;
}

.view-small .title {
    border-bottom: 1px solid #d1d5db;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.view-small .info .article-item {
    border: 0;
    border-radius: 0;
    display: flex;
    margin-bottom: 20px;
}

.view-small .info .article-item .inner-image {
    flex: 0 0 95px;
    max-width: 95px;
}

.view-small .info .article-item .inner-content {
    padding: 0;
    flex: 1 1;
    padding-left: 10px;
}


.view-small .info .article-item .inner-content .article-title a {
    font-size: 14px;
}

.view-small .info .article-item .inner-content .article-title {
    line-height: 1.2;
    margin-bottom: 5px !important;
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.view-small .info .article-item .inner-image .img {
    border-radius: 8px;
    overflow: hidden;
}

.view-small .info .article-item .inner-content .article-description {
    font-size: 13px;
    display: none;
}

.view-small .info .article-item:last-child {
    margin-bottom: 0;
}

.article-page .article-item {
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 0;
}

.article-page .article-item .inner-image {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.article-page .article-item .inner-content {
    padding: 10px;
}
.article-detail-page, .box-detail-tags {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
}
.article-detail .title-detail {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
}
.article-content-info {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.article-entry-info {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.article-detail .date-view {
    display: flex;
    align-items: center;
}
.article-detail .date-view .view {
    color: #747474;
    font-size: 16px;
    position: relative;
}
.article-detail .date-view .view i {
    display: inline-block;
    margin-right: 6px;
}
.article-detail .date-view span.seperate {
    display: inline-block;
    margin: 0 10px;
    line-height: 1;
    height: 15px;
    overflow: hidden;
    color: #747474;
}
.article-detail .date-view .post-date {
    color: #747474;
    font-size: 16px;
}
.action-share--content {
    position: absolute;
    width: 170px;
    background: #e1e1e1 !important;
    right: 0;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem;
    z-index: 1;
}
.article-entry-info .action-item--title {
    color: #000;
    font-size: 16px;
    margin-bottom: 1rem;
}
.article-entry-info .list-social {
    -ms-flex-pack: distribute;
    justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.article-entry-info .list-social .btn-social {
    margin: 0 4px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.article-entry-info .list-social .btn-social a {
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: #000000;
}
.article-entry-info .article-action .action-item i {
    font-size: 2rem;
    margin-right: 0.8rem;
}

.article-entry-info .action-item {
    position: relative;
}



.categories .categories-section > li:first-child > a {
    padding-top: 0;
}

.categories .categories-section.list-unstyled {
    margin-bottom: 0;
}

.content-text ul {
    padding-left: 20px;
}

.article-page .swiper .swiper-slide .article-item .inner-content .article-description {
    height: 63px;
    overflow: hidden;
}


.menu-vertical--content li.has-child:first-child a:hover {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.menu-vertical--content li.has-child:last-child a:hover {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.box-product-image-detail {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

.box-product-info-detail, .box-description-detail, .product-content-detail .social-share, .product-detail-footer {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

.product-rating-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.product-rating-action .title-prd {
    margin-bottom: 0;
}
.box-product-info-detail .product-rating {
    margin-bottom: 7px;
}
.product-action-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-action-detail .btn-cart-buy {
    flex-basis: calc(100% - 60px);
    max-width: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-action-detail .btn-cart-buy a.add-to-cart {
    flex-basis: calc(50% - 10px);
    display: inline-flex;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
}

.box-action-detail .product-quantity {
    margin-bottom: 15px;
}
.box-product-info-detail .price {
    margin-bottom: 10px;
}

.product-action-detail .btn-product-action {
    border-radius: 8px;
    border-color: #ddd;
}
.box-description-detail .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 17px;
}

.box-description-detail .content ul {
    padding-left: 20px;
}
.product-content-detail .social-share .share-title {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-content-detail .social-share .list-social {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.product-content-detail .social-share .list-social .btn-social {
    padding-left: 10px;
    padding-right: 10px;
}

.product-content-detail .social-share .list-social .btn-social a {
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #000;
}

.product-detail-head>.row {
    display: flex;
    align-items: flex-start;
}


.product-detail-head {
    margin-bottom: 30px;
}

@media (min-width:1200px){
    .product-detail-head>.row>div {
        position: sticky;
        top: 0;
    }
    
    
    .box-product-content .info-tskt {
        position: sticky;
        top: 0;
    }
    .box-sticky-top>.container>.row {
        display: flex;
        align-items: flex-start;
    }
    
    .box-sticky-top>.container>.row>div {
        height: auto;
        position: sticky;
        top: 0;
        z-index: 4;
        display: inline-block;
        /* width: auto; */
    }

}
 .box-product-content .info-tskt {
    border: 1px solid #ddd;
    border-radius: 8px;
}
.box-product-content .info-tskt .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    padding: 10px;
}

.box-product-content .info-tskt .value {
    overflow: hidden;
}

.box-product-content .info-tskt .value table {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0;
    border: 0;
}

.box-product-content .info-tskt .value table tbody {
    border: 0;
}

.box-product-content .info-tskt .value table tbody tr, .box-product-content .info-tskt .value table tbody td {
    border: 0;
}

.box-product-content .info-tskt .value table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.box-product-content .info-tskt .value table tbody td {
    padding: 5px;
    font-size: 13px;
}
.product-detail-footer .nav li {
    margin-right: 20px;
}
.swiper .swiper-slide {
    /* margin-bottom: 1px; */
}

.box-image-product .item.item-img>a {
    position: absolute;
    z-index: 9;
    bottom: 10px;
    left: 10px;
    display: inline-block;
    background: #fff;
    padding: 5px 25px;
    border-radius: 5px;
    color: #000;
}

.box-contact-website .img {
    border-radius: 20px;
    overflow: hidden;
}

.box-contact-website .info-form .title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.box-contact-website .info-form .dsc {
    margin-bottom: 20px;
    font-size: 15px;
}

.box-contact-website .info-form .form-group {
    margin-bottom: 15px;
}

.box-contact-website .info-form .form-group .form-control {
    border-radius: 8px;
    height: 48px;
    border-color: #ddd;
}

.box-contact-website .info-form .form-group textarea.form-control {
    height: 100px;
}

.box-contact-website .info-form .form-group .btn-submit {
    border-radius: 8px;
}
.box-map-contact {
    /* background: var(--light); */
    /* margin-top: 50px; */
    /* padding-left: calc((100% - 1170px)/2); */
    /* overflow: hidden; */
}

.box-map-contact>.row {
    display: flex;
    align-items: center;
}

.info-website .info .item>span {display: block;}
.info-website .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-website .dsc {
    margin-bottom: 25px;
    font-size: 16px;
}

.info-website .info .item {
    margin-bottom: 30px;
}

.info-website .info .item span.name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.info-website .info .item span.name>svg {
    display: inline-block;
    margin-right: 10px;
}
.info-website .info>.row>div:nth-child(3) .item, .info-website .info>.row>div:nth-child(4) .item {
    margin-bottom: 0;
}
.box-section-home-06 {
    background: #f3f3f3;
    padding: 40px 0;
}

.item-paa {
    background: wheat;
    text-align: center;
    padding: 3rem 3rem 5rem;
} 

.item-paa .desc {
    font-size: 17px;
}

.item-paa .name {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width:1200px){
    .btn-action-header span {
        display: none;
    }
    
    .main-header-mobile>.container>.row>div:nth-child(3) {
        display: flex;
        justify-content: flex-end;
    }
    
    .btn-action-header {
        padding: 0;
        height: 35px;
        width: 35px;
        color: var(--color-highlight);
        border: 1px solid var(--color-highlight);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }
    
    .btn-action-header i {
        padding: 0 !important;
        color: var(--color-highlight);
    }

    .box-highlight .item {
        margin-top: 7px;
        margin-bottom: 7px;
    }
    .box-section-home-01 {
        padding: 30px 0;
    }
    .box-category-product .item .inter-content .name a {
        font-size: 14px;
    }
    .box-flashsale .title-flashsale .icon img {
        max-width: 122px;
    }
    
    .countdown--number {
        font-size: 13px;
        width: 30px;
        height: 30px;
        border-radius: 5px;
    }
    
    .wrp-rating-price .price {
        display: flex;
        flex-direction: column;
    }
    
    .price-amount.old-price {
        margin-left: 0;
    }
    .swiper .product-item .product-title {
        height: 35px;
        overflow:hidden;
        margin-bottom: 5px;
    }
    
    .box-section-home-02 {
        margin-bottom: 30px;
    }
        
    .title-link {
        margin-bottom: 15px;
    }
    
    .title-section {
        font-size: 20px;
    }
    
    .box-section-home-03, .box-section-home-04 {
        margin-bottom: 20px;
    }

    .box-customer-reviews .info-title i {
        font-size: 45px;
    }
    
    .box-customer-reviews .info-title .title-section {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .box-customer-reviews .info-title .dsc {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .box-section-home-06, .box-section-home-07 {
        margin-bottom: 30px;
    }
    
    .article-item .article-title {
        height: 35px;
    }
    .box-form-contact .box-form .form-group .form-control {
        width: 100%;
        height: 40px;
    }
    
    .box-form-contact .box-form .form-group {
        flex: 1 1;
    }
    
    .box-form-contact .box-form{
        width: 100%;
    }
    
    .box-form-contact .box-form .form-group:last-child {
        flex: 0 0 96px;
    }
    
    .box-form-contact .info-title {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .box-form-contact {
        padding: 20px;
    }
    .box-footer-mb {
        padding: 30px 0;
    }
    a.btn-filter-mobile {
        padding:  5px 10px;
        background: var(--color-highlight);
        display: inline-flex;
        align-items: center;
        color: #fff;
        border-radius: 5px;
    }
    .product-image-detail-top {
        margin-bottom: 10px;
    }
    
    .product-action-detail .btn-cart-buy a.add-to-cart {
        flex-basis: calc(50% - 5px);
        font-size: 11px;
        padding: 0 0.5rem;
    }
    
    .product-action-detail .btn-cart-buy {
        flex-basis: calc(100% - 53px);
        max-width: calc(100% - 53px);
    }
    .product-detail-head ,.product-detail-footer{
        margin-bottom: 10px;
    }
    .product-detail-footer .nav li a {
        font-size: 14px;
    }
    .product-detail-footer .nav li:last-child{
        margin-right: 0;
    }
    .box-contact-website .info-form .title {
        font-size: 25px;
    }
    
    .box-contact-website .img {
        margin-bottom: 15px;
    }
    
    .box-map-contact {
        margin-top: 15px;
    }

    .box-map-contact .info-website {
        padding: 10px 15px 0;
    }
    
    .info-website .title {
        font-size: 25px;
    }
    
    .info-website .dsc {
        margin-bottom: 20px;
    }
    
    .info-website .info .item {
        margin-bottom: 15px;
    }
    
    .info-website .info .item span.name {
        margin-bottom: 10px;
    }
    .content-text h2 {
        font-size: 18px;
    }
    
    .content-text h3 {
        font-size: 16px;
    }
    .logo-section {
        text-align: center;
    }
    .box-mobile-header>.container>.row>div:nth-child(2) {
        flex: 0 0 90px;
        max-width: 90px;
    }
    
    .box-mobile-header>.container>.row>div:nth-child(1) {
        flex-basis: calc(100% - 90px);
        max-width: calc(100% - 90px);
    }
    .slider-customer-reviews {
        padding: 15px;
    }
    .box-section-home-06 {
        padding: 30px 0;
    }
}
@media (max-width:992px){
    .box-highlight .item {
        display: flex;
        flex-direction: column;
        /* text-align: center; */
    }
    
    .box-highlight .item .img {
        margin-right: 0;
        width: 40px;
    }
        .box-map-contact>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
}
@media (max-width:767px){
    
    .box-footer-mb .container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .article-detail .title-detail {
        font-size: 20px;
    }
    
    .article-detail .date-view .post-date {
        font-size: 13px;
    }
    
    .article-detail .date-view .view {
        font-size: 13px;
    }
    
    .article-entry-info .action-item .name {
        font-size: 13px;
    }
    .box-product-info-detail, .box-description-detail, .product-content-detail .social-share, .product-detail-footer {
        padding: 10px;
    }
    .box-flashsale, .view-small,.box-category-page.info-show-content,.box-rating-vm, .comment-section ,.article-detail-page, .box-detail-tags{
        padding: 10px;
    }
    
    .rating-form {
        padding: 2rem;
    }
    .menu-section, .menu-vertical--nav {
        width: 100%;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.breadcrumbs-section a:last-child::after {
    display: none;
}
a.btn-product-action.added-wishlist i {
    color: var(--color-highlight);
}

.title-rating-cm {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}


.swiper .product-item .product-title {
    height: 34px;
}

@media (min-width:992px) and (max-width:1200px){
    .box-product-pc a.btn-filter-mobile {
        display: none;
    }
    
    .box-product-pc .content-filter-product {
        position: initial;
        width: auto;
        transform: none;
    }
    
    .box-product-pc .content-filter-head {
        display: none;
    }
}
@media (min-width:500px) and (max-width:1200px){
        
    .header-menu .container>.row>div:nth-child(1) {
        display: none;
    }
    
    .header-menu .container>.row>div:nth-child(2) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .box-article-pc>.container>.row>div:nth-child(1) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .box-article-pc>.container>.row>div:nth-child(2) {
        display: none;
    }
}

@media (min-width:500px) and (max-width:992px){
    .footer-mid-top .box-form-contact {
        display: flex;
        justify-content: center;
    }
    .box-header-top .header-right, .box-header-top .text-welcome {
        font-size: 12px;
    }
    .header-main .header-action {
        margin-left: 10px;
    }
    
    .box-product-pc>.container>.row>div:nth-child(1), .box-product-pc>.container>.row>div:nth-child(2) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .box-product-pc .categories {
        display: none;
    }
    
    .box-product-pc .filter-url {
        margin-bottom: 15px;
    }
}

@media (max-width:768px){
    .box-header-top .text-welcome {
        display: none;
    }
}

@media (min-width:992px) and (max-width:1200px){
    .header-main a.btn-action-header {
        border: 0;
        width: auto;
        color: #000;
        margin-left: 15px;
    }
    
    .header-main a.btn-action-header i {
        color: #000;
        margin-right: 5px;
    }
    
    .header-main a.btn-action-header span {
        display: inline-flex;
    }
}

.box-cart-info {
    border: 1px solid #142239;
    border-radius: 8px;
    font-size: 14px;
    overflow: hidden;
}

.order footer .footer-mid-top, .member footer .footer-mid-top {
    background: #f3f3f3 !important;
}
.box-category-page .title-section {
    margin-bottom: 15px;
    font-size: 25px;
}
.bootstrap-select.form-control .btn-light {
    background: #fff;
}

.footer-menu-section ul.list-inline a {
    display: block;
    background: var(--color-highlight);
    aspect-ratio: 1 / 1;
    padding: 3px;
    width: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu-section ul.list-inline li {
    margin-right: 5px;
}

.swiper-slide--description-short {
    font-size: 5rem;
    font-weight: 700;
    color: #3ffffb;
}

.swiper-slide--link::before, .box-content .title-section:before {
    content: "";
    width: 5rem;
    height: 1px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}

.swiper-slider-main .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    background: var(--white);
}

.swiper-slider-main .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white);
}

.swiper-container {
    width: 100%;
    height: 450px; 
}

.swiper-container .box-image.swiper-slide img {
    height: 100%; 
    max-height: 450px; 
    width: 100%;
    object-fit: cover;
}

.bg-product {
    margin-top: 6rem;
    width: 100%;
    padding-bottom: 6rem;
    background-position: center 110px;
    background-repeat: repeat-x;
}

.box-content {
    height: 100%;
    max-height: 100%;
    position: relative;
}

.box-content .title-section {
    font-size: 2.4rem;
    font-weight: 400;
    padding: 5rem 0;
    position: relative;
}

.box-content .product-title a {
    font-size: 4.3rem;
}

.box-content .product-description {
    font-size: 1.6rem;
    line-height: 2.7rem;
    color: var(--color-text);
    margin-top: 4rem;
}.box-content .product-description p {
    margin-bottom: 0;
}

.box-content .title-section:before {
    background: var(--black);
    width: 4rem;
}

.box-content .swiper-button-prev,
.box-content .swiper-button-next {
    left: 0;
    bottom: 2rem;
    top: unset;
    width: 4rem;
    height: 4rem;
    border-radius: 0;
    border-color: var(--white);
    color: var(--white);
    transition: all .3s ease;
}

.box-content .swiper-button-next {
    left: 4.5rem;
}

.box-content .swiper-button-prev:hover,
.box-content .swiper-button-next:hover {
    background: var(--color-text);
    border-collapse: var(--color-text);
    color: var(--color-highlight);
}

.bg-banner {
    width: 100%;
    height: 36rem;
    padding-top: 5.5rem;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 0;
}

.content-slider .swiper-slide--tile {
    font-size: 3.5rem;
    line-height: 1.5;
}

.content-slider .swiper-slide--description {
    font-size: 1.7rem;
    line-height: 3rem;
    margin: 4rem 0;
}

.btn-see-more {
    min-width: 20rem;
    background: var(--color-highlight);
    font-size: 1.7rem;
    border-radius: 5rem;
    color: var(--white);
}

.banner-gioi-thieu {
    background-size: cover;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.article-detail-about .box-created,
.article-detail-about .social-share,
.article-detail-about .description-short {
    display: none !important;
}

.article-detail-about .content-detail-article {
    padding: 0 !important;
    background: var(--white) !important;
}

.item-new-value {
    border: 1px solid var(--gray);
    min-height: 26rem;
    padding: 3rem 2rem;
    font-size: 1.7rem;
    color: var(--color-text-2);
    line-height: 3.5rem;
}

.item-content-value {
    margin: 0;
}

.section-new-value > div:first-child .item-new-value .title-value {
    color: var(--pink);
    margin-bottom: 3rem;
    line-height: 3.5rem;
}

.section-new-value > div:last-child .item-new-value .title-value {
    color: var(--blue-light);
    margin-bottom: 1rem;
    line-height: 3.5rem;
}

.section-conduct {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.item-conduct {
    min-height: 6rem;
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    font-size: 1.5rem;
    margin: 5px;
    line-height: 6rem;
    padding: 15px 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--black);
    flex-direction: column;
}

.title-conduct {
    font-size: 1.8rem;
}

.content-conduct {
    font-weight: 300;
    line-height: 1.5;
}

.section-conduct .item-conduct:last-child {
    max-width: 100%;
    width: 100%;
}

.section-history .item-history {
    padding: 2rem 0 2rem 3rem;
    border-bottom: 1px dashed #ccc;
    font-size: 2.8rem;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.section-history .item-history .year::before {
    content: "ㆍ";
}

.item-history .year {
    max-width: 12%;
    flex: 0 0 12%;
}

.item-history .text-history {
    max-width: 88%;
    flex: 0 0 88%;
    font-size: 1.7rem;
    line-height: 4.2rem;
}

.section-history .item-history:nth-child(odd) {
    color: var(--color-highlight);
}

.title-seo {
    font-size: 5.4rem;
}

.content-address table {
    margin-left: 2rem;
}

.content-address table th {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 4rem;
    color: #111;
    border-bottom: 1px solid #111;
    padding: 1.5rem 0;
    text-align: center;
}

.content-address table td {
    font-size: 1.6rem;
    border-bottom: 1px solid #e7e7e7;
    line-height: 2.7rem;
    padding: 1.5rem 2rem;
    word-break: keep-all;
}

.img-address img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1.275;
}

.section-direction .title-tab .block-tab .nav-item .nav-link,
.box-list-prd-tab .title-tab .block-tab .nav-item .nav-link {
    border: 1px solid var(--blue-light);
    border-radius: 30px;
    padding: 0.5rem 2.5rem;
    line-height: 2.8rem;
    font-size: 1.6rem;
    color: var(--blue-light);
}

.section-direction .title-tab .block-tab .nav-item .nav-link:hover,
.section-direction .title-tab .block-tab .nav-item .nav-link.active,
.box-list-prd-tab .title-tab .block-tab .nav-item .nav-link:hover,
.box-list-prd-tab .title-tab .block-tab .nav-item .nav-link.active {
    background: var(--blue-light);
    color: var(--white);
}

.line {
    width: 100%;
    margin: 6rem 0;
    border-bottom: 1px dotted #ccc;
}

.description-title {
    font-size: 1.7rem;
    line-height: 3rem;
    color: #777;
}

.item-quality {
    border: 1px solid #e7e7e7;
    padding: 4rem 0;
    font-size: 1.6rem;
    line-height: 2.5rem;
    text-align: center;
    color: var(--color-text-2);
    height: 100%;
}

.item-quality .description {
    padding: 0 2rem;
    word-break: keep-all;
}

.item-quality .title {
    color: var(--color-highlight);
    line-height: 4rem;
    margin-bottom: 2.5rem;
    letter-spacing: -0.05em;
    font-size: 2.3rem;
}

.item-quality .description-short {
    font-size: 1.5rem;
    color: var(--color-blue);
    line-height: 4rem;
}

.item-red.item-quality, .item-quality.item-blue-dark,
.item-quality.item-blue-light, .item-quality.item-gray {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #fe6262;
}

.item-red .title, .item-blue-dark .title,
.item-blue-light .title, .item-gray .title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 3rem;
}

.item-quality.item-gray {
    background: #676d75;
}.item-quality.item-blue-light {
    background: #498fe7;
}.item-quality.item-blue-dark {
    background: #0f5492;
}

.title-assurance {
    font-size: 2rem;
    line-height: 3.2rem;
}

.title-assurance span {
    line-height: 3.2rem;
    display: inline-block;
    vertical-align: text-bottom;
}

.content-assurance {
    background: #f5f5f5;
    padding: 3rem 3.5rem 3rem 5rem;
}

.content-assurance li {
    font-size: 1.5rem;
    line-height: 2.7rem;
}

.item-basic .product-title {
    font-size: 2rem;
}

.product-description .cont li {
    font-size: 1.7rem;
    line-height: 3.5rem;
    color: var(--color-text-2);
    background: url(https://cdn5950.cdn4s7.io.vn/media/check_gray.webp) right center no-repeat;
}.product-description .cont li.check {
    background: url(https://cdn5950.cdn4s7.io.vn/media/check_blue.webp) right center no-repeat;
}

.description-prd-tab h2 {
    font-size: 2.7rem;
    font-weight: bold;
}.description-prd-tab .pd_txt {
    font-size: 1.7rem;
    line-height: 3rem;
    color: var(--color-text-2);
}

.content-prd-tab .title-detail {
    font-size: 2.2rem;
    color: var(--color-highlight);
    line-height: 3.5rem;
}

.content-prd-tab .ul-detail li {
    width: 100%;
    padding: 2.5rem 3rem;
    font-size: 1.6rem;
    line-height: 3rem;
    letter-spacing: -0.02em;
    color: #777;
    background: #f5f5f5;
    margin-bottom: 1rem;
}

.content-prd-tab .ul-detail li h4 {
    color: var(--black);
    font-size: 1.7rem;
}

.detail-tuyendung .content-detail-article .description-short {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: justify;
}

.detail-tuyendung .swiper-button-next,
.detail-tuyendung .swiper-button-prev {
    width: 5rem;
    height: 5rem;
    border: none;
    color: var(--white);
    transition: all .3s ease;
}.detail-tuyendung .swiper-button-next:hover,
.detail-tuyendung .swiper-button-prev:hover {
    background: rgba(0,0,0,.5);
}

.item-whychoose .img img {
    max-height: 7rem;
}

.content-whychoose, .content-whychoose .title {
    font-size: 1.5rem;
    color: var(--color-text-2);
}

.content-whychoose {
    color: var(--color-text-2);
}

.title-tuyendung {
    font-size: 3.2rem;
}

.description-container {
    position: relative;
}

.description.expanded {
    max-height: 270px !important;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-highlight);
    margin-top: 0.5rem;
    display: block;
    padding: 0;
    transition: all .25s ease;
}

.read-more-btn:hover {
    color: var(--blue-light);
}

.search-tuyendung {
    background: #f5f5f5;
    padding: 5%;
}

.search-tuyendung .input-group {
    border: 1px solid var(--blue-light);
    background: var(--white);
}

.search-tuyendung .input-group .form-control {
    background: transparent;
    border-radius: 0 !important;
}

.search-tuyendung .input-group .btn-submit {
    padding: 0;
    line-height: 4rem;
    height: 4rem;
    width: 4rem;
    transition: all .25s ease;
    border-radius: 0;
}.search-tuyendung .input-group .btn-submit:hover {
    background: var(--color-highlight);
    color: var(--white);
}

.item-tuyendung .inner-content {
    max-width: 75%;
    flex: 0 0 75%;
}

.btn-ungtuyen {
    flex: 0 0 25%;
    max-width: 25%;
    text-align: center;
}.btn-ungtuyen a {
    color: var(--color-highlight);
    border: 1px solid var(--color-highlight);
    line-height: 1.2;
    padding: 0.65rem 2.25rem;
}.btn-ungtuyen a:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.item-tuyendung .inner-content .article-title {
    display: flex;
    height: auto;
    font-weight: 400;
}

.item-tuyendung .inner-content .featured {
    background: var(--color-secondary);
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
    margin: 0 0.6rem 0 0;
    display: inline-block;
    /* height: auto; */
    line-height: 1;
    border-radius: 3px;
    text-transform: uppercase;
    vertical-align: middle;
}

.item-tuyendung .inner-content .article-title a {
    color: var(--color-highlight);
}.item-tuyendung .inner-content .article-title a:hover {
    color: var(--blue-light);
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1.5em 0 0 -1.5em;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 6rem;
    height: 6rem;
    font-size: 2.2rem;
    transition: transform .2s;
}

.item-article-video .inner-image:hover .btn-play {
    transform: scale(1.2);
}

.title-tuyendung-detail .title-detail-tuyendung {
    font-size: 3rem;
}

.title-tuyendung-detail .title-detail-tuyendung,
.content-detail-article .description-short,
.article-content p, .contact-form-section .form-group {
    margin-bottom: 2.2rem;
}

.content-detail-article .description-short, .info-form .title {
    font-size: 2.4rem;
}

.box-title-tuyendung {
    display: grid;
    gap: var(--columns-gap, 3rem);
    grid-template-columns: 2fr 1fr;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 4.5rem;
}

.title-tuyendung-detail, .ungtuyen-share {
    min-width: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.article-detail .btn-ungtuyen {
    max-width: 100%;
}

.article-detail .btn-ungtuyen a {
    max-width: 100%;
    display: block;
    background: var(--color-highlight);
    color: var(--white);
    font-weight: bold;
    font-size: 1.6rem;
}.article-detail .btn-ungtuyen a:hover {
    background: var(--color-secondary);
}

.ungtuyen-share .social-share .list-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ungtuyen-share .social-share .list-social .btn-social a {
    width: 3.8rem;
    height: 3.8rem;
    display: inline-flex;
    background: var(--color-highlight);
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 2.5px;
}.ungtuyen-share .social-share .list-social .btn-social #Twitter {
    background: #0f1419;
}.ungtuyen-share .social-share .list-social .btn-social #Facebook {
    background: #1e77f0;
}.ungtuyen-share .social-share .list-social .btn-social #Pinterest {
    background: #e60023;
}

.cvlienquan .title-section {
    text-align: left !important;
    margin-bottom: 1.5rem;
}

.form-ungtuyen {
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.09);
}

.form-ungtuyen .form-group {
    margin-bottom: 1.5rem;
}

.form-ungtuyen .form-control {
    border-color: var(--color-highlight);
    height: 4.6rem;
}

.sub-input {
    margin: 0.5rem 0 0;
    color: var(--gray-bold);
    font-weight: 400;
}

.breadcrumbs-section-bg {
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10rem 0;
    background-size: cover;
}

.breadcrumbs-section-bg .breadcrumbs-section a, .breadcrumbs-section-bg .breadcrumbs-section span {
    color: white;
}

.entire-map iframe, .contact-form-section .btn-submit {
    border-radius: 2.4rem;
}

.contact-form-section .title-section {
    font-size: 3.6rem;
}

.contact-form-section .form-control {
    border: 1px solid #e1e1e1;
    border-radius: 2.4rem;
}

.item-partner img {
    width: 100%;
    object-fit: cover;
}


.hotline-phone-ring-wrap {
    right: 20px;
    bottom: 20px;
    position: fixed;
    z-index: 990;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotline-phone-ring-img-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-phone-ring-circle {
    width: 6.5rem;
    height: 6.5rem;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgb(51 152 205);
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 5rem;
    height: 5rem;
    position: absolute;
    background-color: rgb(51 152 205);
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

#zalo .hotline-phone-ring-circle, .messenger-toggle .hotline-phone-ring-circle {
    border-color: #0e95e5;
}

#zalo .hotline-phone-ring-circle-fill, .messenger-toggle .hotline-phone-ring-circle-fill {
    background-color: #0a92e8;
}

#tiktok .hotline-phone-ring-circle {
    border-color: #7c7c7c;
}

#tiktok .hotline-phone-ring-img-circle {
    background-color: #fff;
}

#tiktok .hotline-phone-ring-circle-fill {
    background: #585858;
}

#facebook .hotline-phone-ring-circle {
    border-color: #3c5996;
}

#facebook .hotline-phone-ring-circle-fill {
    background: #3c5996;
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(15deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(15deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}


.tooltip-social .tooltip-text {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    bottom: 4px;
    white-space: nowrap;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    right: 130%;
}

.tooltip-social:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-social:hover .tooltip-text::after {
    content: "";
    position: absolute;
    top: 27%;
    left: 100%;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.75);
}

.tooltip-social:hover img {
    border-radius: 50%;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%), 0 4px 15px rgb(0 0 0 / 13%);
}
.item-certifications .img {
    border: 1px solid #ddd;
    padding-top: 125%;
    position: relative;
}

.item-certifications .img img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.item-certifications .name {
    font-size: 1.8rem;
}

.item-partner, .item-partner img {
    max-height: 7.7rem;
}

.item-partner.item-custome {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
    height: 7.7rem;
}

.item-custome.kefico-partner img {
    max-height: 3rem;
}

.item-custome.elentec-partner img {
    max-height: 4rem;
}

.item-custome.mobis-partner img {
    max-height: 3.5rem;
}

.marquee-style .swiper-wrapper{
  -webkit-transition-timing-function:linear!important;
  transition-timing-function:linear!important; 
}

.video-area {
    width: 100%;
    max-width: 650px;
    position: fixed;
    right: -600px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 1.2s ease;
}

.video-area.video-area--visible {
    right: 0;
}

.video-box {
    width: calc(100% - 50px);
    display: inline-block;
    vertical-align: middle;
}

.video-box a:hover .swiper-slide--tile {
    color: var(--color-highlight);
}

.video-wrap {
    width: 100%;
    height: 0;
    padding-bottom: calc(707 / 1256 * 100%);
    background: #000;
    position: relative;
    overflow: hidden;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-box .swiper-slide--tile {
    width: 100%;
    box-sizing: border-box;
    background: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #fff;
    word-wrap: break-word;
    word-break: keep-all;
    padding: 10px 5px;
    line-height: 1.5;
    transition: all .25s ease;
}

.btn-hide {
    width: 50px;
    height: 100px;
    border-radius: 100px 0 0 100px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.btn-hide i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 22px;
}

.btn-hide.no-hide i:before {
    content: '\f054';
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.swiper-slider-main .swiper-slide-active .swiper-slide--description {
    transition: 2s all;
}

.swiper-slider-main .swiper-slide-active .swiper-slide--tile {
    transition: 2.2s all;
}

.swiper-slider-main .swiper-slide-active .swiper-slide--link {
    transition: 2.4s all;
}

.swiper-slider-main .swiper-slide--wrap * {
    top: 100px;
    position: relative;
}

.swiper-slider-main .swiper-slide-active .swiper-slide--wrap * {
    top: 0;
}

.swiper-slider-main .swiper-slide-active img {
    animation-name: out;
    animation-duration: 8s;
    animation-fill-mode: forwards;
}

.entire-info-website address p a {
    color: var(--black);
}.entire-info-website address p a:hover {
    color: var(--color-highlight);
}

.skiptranslate.goog-te-gadget {
    color: white !important;
}

.skiptranslate.goog-te-gadget #text {
    display: none !important;
}

.skiptranslate.goog-te-gadget > *:not([id*="targetLanguage"]) {
    display: none !important;
}

@keyframes out {
    from {
        transform: scale(1.5)
    }

    to {
        transform: scale()
    }
}

.item-policy {
    display: flex;
    gap: 1rem;
}

.item-policy img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}

@media (min-width: 576px) {
    .swiper-slide--wrap {
        max-width: 510px;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .content-prd-tab .ul-detail .li-detail {
        max-width: calc(50% - 0.5rem);
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .swiper-slide--wrap {
        max-width: 690px;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .swiper-slide--wrap {
        max-width: 930px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .col-xl-custome {
        flex: 0 0 calc(100% / 7);
        max-width: calc(100% / 7);
    }
    
    .swiper-slide--wrap {
        max-width: 1170px;
        padding: 0;
    }
}

@media (max-width: 1200px) {
    .header-main > .container > .row > div:nth-child(2) {
        max-width: 65px;
        flex: 0 0 65px;
        order: -1;
    }
    
    .header-main > .container > .row > div:first-child {
        flex: 1 1 0;
        max-width: 100%;
    }
    
    .header-main > .container > .row > div:last-child {
        max-width: 65px;
        flex: 0 0 65px;
    }
    
    .header-main.scroll .btn-menu-mobile {
        color: var(--white);
        border-color: var(--white);
    }
    
    .btn-menu-mobile:hover, .header-main.scroll .btn-menu-mobile:hover {
        background: var(--color-highlight);
        border-color: var(--color-highlight);
        color: var(--white);
    }
}

@media (max-width:992px) {
    .swiper-slide--tile {
        font-size: 5rem;
        line-height: 4.8rem;
    }
    
    .swiper-slide--description-short {
        font-size: 3rem;
    }
    
    .swiper-slide--description {
        margin: 3rem 0;
    }
    
    .item-tuyendung .inner-content {
        max-width: 65%;
        flex: 0 0 65%;
    }
    
    .btn-ungtuyen {
        flex: 0 0 35%;
        max-width: 35%;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .item-basic .product-title {
        line-height: 2.2rem;
        height: calc(2 * 2.2rem);
    }
}

@media (max-width: 768px) {
    .bg-product {
        padding-bottom: 0;
        margin-top: 0;
    }
    
    .swiper-container {
        height: 385px;
    }
    
    .swiper-container .box-image.swiper-slide img {
        height: auto;
        max-height: auto;
        aspect-ratio: 1.3333;
    }
    
    .swiper-slide--tile {
        font-size: 4rem;
        line-height: 3.8rem;
    }
    
    .swiper-slide--description-short {
        font-size: 2.6rem;
    }
    
    .swiper-slide--description {
        margin: 1rem 0;
        font-size: 1.8rem;
        line-height: 2.5rem;
    }
    
    .filter-url, .view-small-tuyendung {
        margin-bottom: 3rem;
    }
    
    .row-mobile > .container > .row > div {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .box-content .swiper-button-prev, .box-content .swiper-button-next {
        width: 3rem;
        height: 3rem;
        font-size: 1.8rem;
        bottom: 1rem;
    }
    
    .swiper-container {
        height: 200px;
    }
    
    .swiper-slider-main .swiper-slide--description {
        display: none;
    }
    
    .swiper-slider-main .swiper-slide img {
        height: 45vw;
    }
    
    .box-title-tuyendung {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .bg-banner {
       padding-top: 2.5rem; 
    }
    
    .swiper-slide--tile {
        font-size: 3rem;
    }
    
    .swiper-slider-main .swiper-slide img {
        height: 50vw;
    }
}