/* ----- custom var ----- */
body
{
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    margin: 0; 
    padding: 0; 
    width: 100vw;
}

:root
{
    --cus-clr-text-btn: white;
    --cus-clr-primary: #215F1D;
    --cus-clr-secondary: #008ABD;
    --cus-clr-secondary-hover: #00b4f5;
    --cus-clr-grey : #f5f5f5;
    --cus-clr-grey2 :#787b80;
    --cus-clr-border: none;
}

/* ----- Spacing ----- */
.w-70
{
    width: 70%;
}

.c_home--des p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-clr
{
    color: #002a80;
}

.p-block-300
{
	padding-block: 300px;
}

.p-block-150
{
    padding-block: 150px;
}

.p-block-50
{
    padding-block: 50px;
}

.m-block-100
{
    margin-block: 100px;
}

.gap-2
{
    gap: 0.5rem;
}

.gap-4
{
    gap: 1rem;
}

.gap-20
{
    gap: 20px;
}

.mw-70pc
{
    max-width: 70%;
}

.m-inline-50
{
    margin-inline: 50px;
}

.ml-3
{
    margin-left: 0.75rem;
}

.iCartDt
{
    position: absolute;
    top: -7px;
    right: -6px;
    width: 15px;
    background: white;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 50%;
}
/* ----- Position ----- */
.z-index-1
{
    z-index: 1;
}
.z-index-2
{
    z-index: 2;
}

/* ----- color ----- */
.clr-primary
{
    color: var(--cus-clr-primary);
}

.clr-secondary
{
    color: var(--cus-clr-secondary);
}

.clr-grey2
{
    color: var(--cus-clr-grey2);
}

.bg-grey-cus
{
    background-color: var(--cus-clr-grey);
}

/* ----- Custome ----- */
.owl-stage
{
    display: flex;
}
.item
{
    height: 100%;
}
.payment-cart
{
    padding-top: 150px;
}
.discount-tag
{
    z-index: 10;
    position: absolute;
    top: 0;
    right: 10px;
    background: var(--cus-clr-secondary);
    color: white;
    padding: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
/* .carousel-item img
{
    max-width: 100% !important;
    max-height: 100% !important;
} */
.scroll-snap-center
{
    scroll-snap-type: x mandatory;
    overflow-x: auto;
}

.scroll-snap-item
{
    scroll-snap-align: center;
}

.mw-150
{
    max-width: 150px;
}

.mw-80pc
{
    max-width: 70%;
}

.item
{
    padding-inline: 10px;
}
.gap-lg-100
{
    gap: 100px;
}

.product-deiwt__price
{
    display: none;
}

.product-deiwt__price.active
{
    display: inline-block;
}

.cus-btn-secondary.active {
    background-color: var(--cus-clr-secondary-hover);
    color: white;
}

.grid-2-col
{
    grid-template-columns: repeat(2,1fr);
}

.grid-3-col
{
    grid-template-columns: repeat(3,1fr);
}

.grid-col
{
    grid-column: var(--grid-column);
}

.product-deiwt__header
{
    border-bottom: 3px solid #008abd;
}

.product-detitle__des
{
    max-width: 50%;
}

.product-detitle__line
{
    border: 1px solid #b6b6b6;
    max-width: 250px;
    width: 100%;
}
.product-des-detail__img
{
    max-height: 600px;
    padding: 0 30px;
}
.product-description__imgs img
{
    max-height: 500px;
}

.product-slide__content
{
    max-width: 50%;
    margin: 0 auto;
}
.carousel-item img
{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.carousel-item ul{
    padding: 0px;
}

.header
{
    background-color: transparent;
    position: absolute;
    z-index: 100;
}
.ctnr-cus
{
    margin-block: 40px;
}

.img-with-text__ctnr
{
    padding-block: 40px;
}

.img-with-text__content
{
    max-width: 35%;
}

.owl-stage-outer
{
    margin-bottom: 30px;
}

.product-img-container
{
    overflow: hidden;
}

.product-img-container:hover .product-img1
{
    transform: scale(1.1);
    transition: .3s;
}

.product-img-container {
    position: relative;
    overflow: hidden;
}

.product-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    transform: skewX(-30deg);
    transition: 1s;
}

.product-img-container:hover::after {
    left: 100%;
}

.product-img1
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.summary-info__icon
{
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #dee2e6;
}

.nav-submenu
{
    position: absolute;
    display: none !important;
    flex-direction: column;
    justify-content: start;
    align-items: start !important;
    background: white;
    padding: 20px !important;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.nav-submenu.active
{
    display: flex !important;
}

.rotate-180
{
    transition: .3s;
}

.rotate-180.active
{
    transform: rotate(180deg);
    transition: .3s;
}

.js-btn-clssubmenu
{
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-main::after
{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000bf;
    z-index: 100;
    display: none;
}

.overlay-main.active::after
{
    display: block;
}

.overlay-search::after
{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000bf;
    z-index: 200;
    display: none;
}

.overlay-search.active::after
{
    display: block;
}
/* ----- text ----- */
.fs-16
{
    font-size: 16px;
}

.fs-18
{
    font-size: 18px;
}

.fs-25
{
    font-size: 25px;
}

.fs-30
{
    font-size: 30px;
}

.fw-bold
{
    font-weight: bold;
}

.banner
{
    height: 90vh;
}

.banner-prod
{
    height: 100vh;
}

.banner-style
{
    background-size: cover;
    background-position: left;
    position: relative;
}

/* .banner-style::after
{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffffb0;
} */

.form-search
{
    top: 0;
    background: white;
    width: 100%;
    display: none;
    z-index: 999;
}

.form-search.active
{
    display: flex;
}

.search-input
{
    padding: 10px 20px;
    border: 1px solid #dee2e6;
}

.search-input:active,
.search-input:hover,
.search-input:focus
{
    border: 1px solid #dee2e6;
    outline: none;
    padding: 10px 20px;
}
.btn-search-desk
{
    margin-left: -44px;
    border: none;
    background: white;
    padding: 5px;
}
/* ----- Library ----- */
.h-800
{
    height: 800px;
}
.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.overlay-dark::after
{
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(60deg, black, transparent);
    background-size: 100%;
    transition: .5s;
}

.object-fit-cover
{
    object-fit: cover;
}

.img-square
{
    aspect-ratio: 1/1;
}

.rectangle
{
    aspect-ratio: 2/1;
}
.rectangle1
{
    aspect-ratio: 1/1;
}
.overlay-dark:hover::after,
.overlay-dark:active::after,
.overlay-dark:focus::after {
    background-size: 300%;
    transition: 1s;
}

.cursor-pointer
{
    cursor: pointer;
}

/* ----- Button ----- */
.cus-btn-secondary
{
    background-color: var(--cus-clr-secondary) !important;
    color: var(--cus-clr-text-btn) !important;
    border: 1px solid var(--cus-clr-border);
}

.cus-btn-quantity
{
    border: none !important;
    background: none !important;
}

.cus-btn-quantity-ctnr
{
    border: 1px solid black;
    padding: 10px 15px;
}

.animation-shiny {
    position: relative;
    overflow: hidden;
}

.animation-shiny::after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    transform: skewX(-30deg);
    transition: 1s;
}

.animation-shiny:hover::after {
    left: 100%;
}

.nav-item-cus
{
    transition: .3s;
}

.nav-item-cus:hover
{
    color: #008ABD !important;
    transition: .3s;
}

/*Shopping cart shortcut*/
.shoppingcart-shortcut
{
    position: fixed;
    right: 0;
    height: 100%;
    width: 0px;
    background-color: white;
    z-index: 1000;
    top: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    right: 10px;
    overflow: hidden;
    transition: .3s;
}

.shoppingcart-shortcut.active
{
    width: 400px;
    transition: .3s;
}

.shoppingcart-shortcut__button
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #dee2e6;
}

.shoppingcart-shortcut__items
{
    display: flex;
    padding: 10px;
    margin: 20px;
    border-top: 1px solid #dee2e6;
}

.shoppingcart-shortcut__items:last-child
{
    border-bottom: 1px solid #dee2e6;
}

.shoppingcart-shortcut__title-ctnr
{
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.shoppingcart-shortcut__items--img
{
    max-width: 100px;
    aspect-ratio: 1/1;
}
.shoppingcart-shortcut__items--header
{
    display: flex;
    gap: 10px;
}
.shoppingcart-shortcut__content
{
    display: flex;
    flex-direction: column;
}

.shoppingcart-shortcut__items--title
{
    font-size: 16px;
}

.shoppingcart-shortcut__items--price
{
    font-size: 14px;
}

.shoppingcart-shortcut__items--counterctnr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
    padding: 10px;
    border: 1px solid black;
}

.js-btn-subtractProds, .js-btn-addProds {
    background-color: white;
    border: none;
}
.ml-2
{
    margin-left: .5rem;
}
.js-counterval {
    font-size: 13px;
}

.js-btn-delprods, .js-btn-opencart
{
    background: none;
    border: none;
}

.shoppingcart-shortcut__products
{
    height: 100%;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
}

.cartempty-text
{
    font-size: 16px;
    padding: 20px;
    text-align: center
}

.opacity-transform
{
    opacity: 0;
}

.opacity-transform.active
{
    opacity: 1;
}

.shoppingcart-shortcut__ctnr
{
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.btn-close-cus
{
    position: absolute;
    left: 5%;
}
/* General Styles */
.header-mobile {
    background-color: white;
}

/* Mobile Styles (max-width: 576px) */
@media (max-width: 576px) {
    .shoppingcart-shortcut.active {
        width: 100%;
        transition: .3s;
    }
    .timeline.timeline-one .timeline-item {
        width: 100%;
        margin-left: 0;
    }
    .timeline.timeline-one .timeline-item:nth-child(2n+1) {
        padding-right: 0;
        padding-left: 1.5rem;
    }
    .timeline.timeline-one .timeline-item:nth-child(2n+1)::after,
    .timeline.timeline-one .timeline-item:nth-child(2n+1)::before {
        right: auto;
        left: 0;
    }
    .timeline.timeline-four::before {
        margin: 0;
        left: 0;
    }
    .timeline.timeline-four .timeline-item:nth-child(2n) .timeline-content {
        width: 95%;
        padding: .5rem 0;
        text-align: center;
    }
    .timeline.timeline-four .icon {
        margin: auto -7px;
        top: 3rem;
    }
    .timeline.timeline-four .date-content {
        width: 95%;
        float: right;
    }
    .timeline.timeline-four .date-outer::before,
    .timeline.timeline-four .date-outer::after {
        width: 130px;
        height: 130px;
    }
    .timeline.timeline-four .date {
        top: 27%;
    }
    .p-block-sm-100px {
        padding-block: 100px;
    }
    .m-block-sm-50 {
        margin-block: 50px;
    }
    .img-with-text__content {
        max-width: 100%;
    }
    .img-with-text__ctnr {
        padding-block: 40px;
    }
}

/* Tablet Styles (max-width: 768px) */
@media (max-width: 768px) {
    .banner_mb {
        display: block;
    }
    .banner_dt {
        display: none;
    }
    .social-links-two a {
        text-align: left;
    }
    .block_social {
        float: left;
    }
    .block_social .iconBlock {
        margin-left: 0;
        margin-right: 12px;
    }
    .sidebar {
        width: 100%;
        height: 100%;
        top: 0;
    }
    .intro-body img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
    .c_top_one--content {
        margin-top: 25px;
    }
    .home_top {
        padding: 0;
    }
    .top_other {
        display: block;
        align-items: unset;
        justify-content: unset;
        margin-bottom: 16px;
    }
    .top_other_item {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        vertical-align: top;
        margin-bottom: 16px;
    }
    .top_other_item .top_other_title {
        margin-top: 5px;
    }
    .top_other_item .top_other_img {
        width: 33%;
    }
    .top_other_item .top_other_ctent {
        width: 62%;
    }
    .style_black {
        padding: 15px 0;
    }
    .c_home_box {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        vertical-align: top;
        margin-bottom: 16px;
    }
    .c_home_box .c_home_image {
        width: 33%;
    }
    .c_home_box .c_home_content {
        width: 62%;
    }
    .c_home_box img {
        aspect-ratio: 1/1 !important;
    }
    .c_home_danhmuc {
        flex-wrap: wrap;
    }
    .c_article_cate--box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        vertical-align: top;
        margin-bottom: 16px;
    }
    .c_article_image {
        width: 33%;
    }
    .c_article_content {
        width: 62%;
    }
    .c_blog_cate--box_top {
        margin-bottom: 15px;
    }
    .c_blog_cate--box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        vertical-align: top;
        margin-bottom: 16px;
    }
    .c_blog_cate--image img {
        aspect-ratio: 1/1;
        object-fit: cover;
    }
    .c_blog_list--box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        vertical-align: top;
        margin-bottom: 16px;
    }
    .c_blog_list--image {
        width: 33%;
    }
    .c_blog_list--content {
        width: 62%;
    }
    footer .text_logo {
        font-size: 25px;
        padding: 15px;
    }
    footer .py-5 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    footer .p-4 {
        padding: 15px !important;
    }
    footer .box_icon {
        justify-content: flex-start;
    }
    .social-links-two a {
        font-size: 0.9rem;
    }
    .breadcrumbs {
        margin-top: 68px;
    }
    .navbar ul {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
}

/* Small Desktops (max-width: 996px) */
@media (max-width: 996px) {
    .product-deproductmore iframe {
        aspect-ratio: 866 / 487;
        width: 100%;
        object-fit: cover;
    }
    .index-banner-eodor,
    .banner-cate-mb {
        margin-top: 80px !important;
    }
    .index-banner-eodor {
        display: none;
    }
    .banner_mb {
        padding-top: 70px;
    }
    .product-slide__content {
        max-width: 90%;
        align-items: center;
    }
    .product-slide__button-cart,
    .w-lg-100-cus {
        width: 100%;
    }
    .product-des-detail__img {
        padding-inline: initial;
    }
    .banner {
        height: 50vh;
    }
    .grid-lg-col {
        grid-column: var(--grid-lg-column);
    }
    .gap-50 {
        gap: 50px;
    }
    .p-inline-lg-30 {
        padding-inline: 30px;
    }
    .header {
        position: fixed;
    }
}

/* Tablets and Small Desktops (max-width: 1199px) */
@media (max-width: 1199px) {
    .sidebar {
        position: fixed;
    }
}

/* Small Desktops (max-width: 1280px) */
@media (max-width: 1280px) {
    .nav-submenu {
        position: static !important;
        box-shadow: none;
        background-color: transparent;
        padding-block: 5px !important;
        padding-inline: 15px !important;
    }
    .d-xl-block-cus {
        display: block !important;
    }
    .navbar {
        transition: .3s;
        width: 98%;
        z-index: 999;
    }
    .navbar.active {
        left: 0;
        transition: .3s;
    }
    .ctnr-cus {
        margin-block: 20px;
    }
    .flex-xl-cl-cus {
        flex-direction: column !important;
    }
    .gap-sm-cus {
        gap: 1rem;
    }
    .product-detitle__des {
        max-width: 80%;
    }
}

/* Desktops (min-width: 1280px) */
@media (min-width: 1280px) {
    .d-xl-none-cus {
        display: none !important;
    }
    .flex-xl-row-cus {
        flex-direction: row !important;
    }
    .nav-item-cus {
        position: relative;
        overflow: hidden;
    }
    .nav-item-cus::before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #008ABD;
        transition: width 0.5s;
    }
    .nav-item-cus:focus::before,
    .nav-item-cus:active::before,
    .nav-item-cus:hover::before {
        width: 100%;
    }
}

/* Larger Desktops (min-width: 1400px) */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1160px !important;
    }
}

/* Styles for navbar dropdown (max-width: 1366px) */
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/* Styles for fixed sidebars (min-width: 1200px) */
@media (min-width: 1200px) {
    #main, #footer {
        margin-left: 300px;
    }
}

/* General Styles for large screens (max-width: 991px) */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.color-title-sp{
    color: #215F1F !important;
}
.giohang2-sp{
    width: 50px !important;
    height: 50px;
    background-color: #038ABA;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 100px;
    right: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 999;
}
.size-img-eodor{
    /* width: 830px !important;
    height: 600px; */
}
.text-red{
    color: red;
    font-weight: 700;
}
.text-nd-dq span{
    text-align: left;
    color: white !important;
}
.sweetaler-new-li li{
    margin-left: 20px;
}

.cart-info
{
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding-block: .5rem;
}

.cart_image
{
    width: 100px !important;
    aspect-ratio: 1/1;
}

.div-count
{
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    font-size: 13px;
    position: absolute;
    top: -10px;
    right: -7px;
}

.cart_item
{
    border-bottom: 1px solid #dee2e6;
    padding-block: 1rem;
}

.btn__product--group
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
}

.product_category_img
{
    display: block;
    transition: .3s;
    opacity: 1;
    transform: scale(1);
}

.product__group:hover .product_category_img
{
    transform: scale(1.2);
    transition: .3s;
    opacity: 0.3;
}

.product__group:hover .btn__product--group
{
    opacity: 1;
    transition: .3s;
}

.product__group
{
    cursor: pointer;
}

.square
{
    aspect-ratio: 1/1;
}

.btn-white
{
    background-color: white;
    border: 1px solid black;
    color: black;
}

.btn-white:hover,
.btn-white:active,
.btn-white:focus
{
    border: 1px solid black !important;
    background-color: white;
}

.detail__product
{
    border-top: 1px solid #dee2e6;
    padding-block: 20px;
}

.dropdown__content
{
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
}

.dropdown__content.active
{
    max-height: 1000px;
    transition: max-height .3s;
}

.dropdown__icon
{
    transform: rotate(0);
    transition: .3s;
}

.dropdown__icon.active
{
    transform: rotate(180deg);
    transition: .3s;
}

.product__content--ctnr
{
    position: sticky;
    top: 20px; 
    bottom: 0;
    right: 0;
    left: 0;
}
.banner-img-core{
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}
.justify-content-space-between{
    display: flex;
    justify-content: space-between;
}
.justify-content-space-around{
    display: flex;
    justify-content: space-around;
}
.gallery {
    background: #EEE;
}
.gallery-cell {
    width: 100%;
    height: auto;
    margin-right: 10px;
    overflow: hidden;
}
.gallery-cell img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sApkZm {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 2px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .8);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    margin: 8px 8px 0 0;
    min-height: 2.5rem;
    min-width: 5rem;
    outline: 0;
    overflow: visible;
    padding: .5rem;
    position: relative;
    text-align: left;
    word-break: break-word;
}
.selected-option {
    opacity: 1 !important;
    border: 2px solid rgba(255, 0, 0, 0.94);
}
.justify-content-space-evenly{
    display: flex;
    justify-content: space-evenly;
}
.dis-img-index{
    position: absolute; 
    right: 0px; 
    top: 10px;
}
.title-dis{
    font-size: 15px !important;
    color: white;
}
.color-core{
    color: #f32424;
}
.back-core{
    background-color: #f32424;
}
 .carousel {
            background: #FAFAFA;
            margin-bottom: 40px;
        }

        .carousel-main .carousel-cell {
            width: 100%;
            height: auto;
            margin-right: 10px;
            background: #8C8;
            border-radius: 5px;
            position: relative;
        }

        .carousel-main .carousel-cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

        .carousel-nav .carousel-cell {
            height: 80px;
            width: 100px;
            margin-right: 10px;
            background: #8C8;
            border-radius: 5px;
            position: relative;
        }

        .carousel-nav .carousel-cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

        .carousel-nav .carousel-cell.is-nav-selected {
            background: #ED2;
        }

        .text-decoration-line-through{
            color: #929292;
            font-weight: 300;
        }
.limited-lines {
    height: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.contact-form .btn-submit {
    border-radius: 0;
    border: none;
    font-weight: 700;
    background: #fcb14e;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 30px;
}
.weup-form label {
    color: #495057;
    font-weight: 700;
    font-size: 13px;
}
.contact-form .form-group {
    margin-bottom: 1rem;
}

/*Xtrust*/

.packet-product {            
    padding-bottom: 40px;
    padding-top: 40px;
    /*background-position: left top !important;
    background: linear-gradient(180deg, rgb(224, 236, 251) 0.00%,rgb(244, 249, 252) 100.00%);*/
}
.packet-product .container{
/* width:940px; */
}
.packet-product .packet-header H2{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}
.packet-product-item{
    width: 100%;    
    box-shadow: 0px 0px 40px 0px rgb(0 44 122 / 10%);
    background: #fff;
    border-radius: 8px;
    gap: 0px;
}
.packet-product-item1{
  width: 100%;    
  /* box-shadow: 0px 0px 40px 0px rgb(0 44 122 / 10%); */
  background: #fff;
  border-radius: 8px;
  gap: 0px;
}
.packet-product-item1{
  width: 100%;    
  background: #fff;
  border-radius: 10px;
}
.packet-product-item .packet-header-title h3{
    padding: 15px 0;
    /*background: linear-gradient(180deg, #134889 0%, rgba(0, 106, 203, 0.92) 114.84%);
    border-radius: 8px 8px 0 0;*/
}
.packet-product-item .packet-header-title h3 a {
    /*color:#fff;*/
    color:#1d2e3b;
}

.packet-product-item .bd-bottom {
    padding: 5px 0;
    font-size: 15px;
}


.packet-product-item .packet-content{
    padding: 25px 2rem;
}
.xemthem-xtube{
  font-size: 16px;
  font-weight: 500;
}


.packet-title-banner p{
    font-size: 1.1rem;
    font-weight: 600;
}
.packet-product-item .packet-box-price{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}
   
.packet-box-price .packet-price{
    color: #e18726;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;   
    margin-right: 1rem;
}   
.packet-box-price .p-through{
    color: #e18726;
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: normal;
}       

.packet-product-item .packet-des{
    font-size:1rem;
}
.footer {
    padding-block: 25px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(235, 236, 239);
    border-right: none !important;
    border-bottom: none !important;
    border-left: none !important;
    /* margin-top: 50px; */
}
#topBtn {
    position: fixed;
    bottom: 50px !important;
    left: 20px !important;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    outline: none;
    z-index: 999;
    background-size: 97%;
    background-color: #194787;
    color: #fff;
}
.body-index{
    background: linear-gradient(90deg, rgb(244, 249, 252) 49.00%,rgb(224, 236, 251) 100.00%);
}
.info-footer a {
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 24px;
    color: #4d5256;
    margin-bottom: 1rem;
    padding-left: 30px;
}

.info-footer span.address {
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 24px;
    color: #4d5256;
    padding-left: 30px;
}
.title-banner2-index {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-touts{
    padding-top: 12%;
  }
  .bo-vien-img {
    border-radius: 8px;
}
.footer iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.footer .div-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5em;
    opacity: .25;
}
.info-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 450px;
    margin: 2rem 0;
}
.Title-footer-xtube {
    font-size: 19px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 20px;
    margin-top: -20px;
    font-weight: 600;
}
.fs-15
{
    font-size: 15px !important;
}
.footer .div-link h3 {
    text-align: left;
    color: rgb(77, 82, 86);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 120%;
    font-size: 1.06rem;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}
.footer{
    background-color: #f2f9fe;
}
.backgr-newde-body{
    background-color: #e0e0e0;
}
.bg-blue {
    background-color: #194787 !important;
}
.title-detail {
    color: #177358;
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 15px;
}
.news_content .news-des {
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 8px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}
.breadcrumb-item a {
    color: #194787;
    font-weight: 600;
    font-size: 1.1rem;
}
.breadcrumb-item.active {
    color: #e18726;
    font-weight: 600;
}
.fix-thumb {
    width: 100% !important;
    height: 70px !important;
    object-fit: cover;
}
.Blog .card-title, .list-top-view .card-title {
    /* font-size: 1rem; */
    font-weight: 600;
    line-height: 160%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #111111;
}



.img-video-backgroup{
    background-size: cover;
    background-origin: content-box;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.ladi-headlineee{
    font-size: 21px;
    font-weight: bold;
    line-height: 1.6;
    color: rgb(0, 0, 0);
    text-align: center;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
}
.icon-play{
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    font-size: 45px;
    color: #000000bf;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); } /* Số lượng slide chia đôi */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); } /* Số lượng slide chia đôi */
}



@media only screen and (min-width: 992px) {
    .banner_mb {
        display: none;
    }
  }
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: calc(1600px + 10%) !important;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
    }
}
/*     Newsdetail        */

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-video-backgroup, .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-video-backgroup {
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.video-iframe {
    z-index: 2;
    display: none;
}

.customer-logos {
    background-color: white;
  }
  
  /* Slider */
  .slick-slide {
      margin: 0px 20px;
  }
  
  .slick-slide img {
      width: 100%;
  }
  
  .slick-slider
  {
      position: relative;
      display: block;
      box-sizing: border-box;
  
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
  
      -webkit-touch-callout: none;
      -khtml-user-select: none;
      -ms-touch-action: pan-y;
          touch-action: pan-y;
      -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list
  {
      position: relative;
      display: block;
      overflow: hidden;
  
      margin: 0;
      padding: 0;
  }
  .slick-list:focus
  {
      outline: none;
  }
  .slick-list.dragging
  {
      cursor: pointer;
      cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list
  {
      -webkit-transform: translate3d(0, 0, 0);
         -moz-transform: translate3d(0, 0, 0);
          -ms-transform: translate3d(0, 0, 0);
           -o-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
  }
  
  .slick-track
  {
      position: relative;
      top: 0;
      left: 0;
  
      display: block;
  }
  .slick-track:before,
  .slick-track:after
  {
      display: table;
  
      content: '';
  }
  .slick-track:after
  {
      clear: both;
  }
  .slick-loading .slick-track
  {
      visibility: hidden;
  }
  
  .slick-slide
  {
      display: none;
      float: left;
  
      height: 100%;
      min-height: 1px;
  }
  [dir='rtl'] .slick-slide
  {
      float: left;
  }
  .slick-slide img
  {
      display: block;
  }
  .slick-slide.slick-loading img
  {
      display: none;
  }
  .slick-slide.dragging img
  {
      pointer-events: none;
  }
  .slick-initialized .slick-slide
  {
      display: block;
  }
  .slick-loading .slick-slide
  {
      visibility: hidden;
  }
  .slick-vertical .slick-slide
  {
      display: block;
  
      height: auto;
  
      border: 1px solid transparent;
  }
  .slick-arrow.slick-hidden {
      display: none;
  }

  .slide-img
  {
    max-width: 250px;
    width: 100%;
    aspect-ratio: 2/1;
  }
  .btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #0078D4;
    border-color: var(--bs-btn-hover-border-color);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: #0078D4;
    border-color: var(--bs-btn-active-border-color);
}
.video-wrapper iframe{
    border-radius: 10px 10px 0px 0px;
}
.fw-700{
    font-weight: 700;
}
/*LH_Khachhang*/

.contact-button1 {
    width: 50px;
    height: 50px;
    background-color: #C50000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-buttons-containerrr {
    /* display: none; */
    position: fixed;
    bottom: 20px;
    right: 80px;
    flex-direction: column;
    border-radius: 7px;
    z-index: 999;
    /* background-color: white; */
    padding: 10px 20px;
}
.contact-button {
    width: 50px;
    height: 50px;
    background-color: #C50000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-buttons-container {
    /* display: none; */
    position: fixed;
    bottom: 20px;
    right: 20px;
    flex-direction: column;
    border-radius: 7px;
    z-index: 999;
    /* background-color: white; */
    padding: 10px 20px;
}
.whatsup-lh {
    position: fixed;
    bottom: 70px;
    right: 0px;
    flex-direction: column;
    border-radius: 7px;
    z-index: 999;
    /* background-color: white; */
    padding: 10px 20px;
}
.contact-buttons-containerxx {
    /* display: none; */
    position: fixed;
    bottom: 130px;
    right: 0px;
    flex-direction: column;
    border-radius: 7px;
    z-index: 999;
    /* background-color: white; */
    padding: 10px 20px;
}
/*End_LH_Khachhang*/
/* .news-des tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: thin;
    text-align: center !important;
}
.news-des table {
    caption-side: bottom;
    border-collapse: separate !important;
} */

@media (min-width: 996px) {
    .position-lg-absolute
    {
        position: absolute !important;
    }
    .text-lg-white
    {
        color: white !important;
    }
}