/*=================================================
             section-breadcrumb
===================================================== */
.section-breadcrumb {
    padding: 20px 0;
}

.section-breadcrumb .breadcrumb-inner {
    margin-bottom: 0;
}

.section-breadcrumb .breadcrumb-item,
.section-breadcrumb .breadcrumb-item > a {
    font-weight: 500;
    color: var(--bs-gray-600);
}

@media (max-width: 576px) {


    .section-breadcrumb .breadcrumb-item:nth-child(1),
    .section-breadcrumb .breadcrumb-item:nth-child(2) {
        display: block;
    }
}

/*================================================
                   heading
================================================*/

.section-heading .heading,
.section-introduce__heading .title {
    font-weight: 700;
    font-size: var(--text-5xl);
    color: var(--bg-dark);
    text-transform: uppercase;
    text-align: center;
    display: inline-flex;
    position: relative;
    padding-bottom: 10px;
}

.section-heading .heading:before {
    position: absolute;
    content: '';
    bottom: 10px;
    left: auto;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 1;
    transform: translateY(15px) translateX(-50%);
    transition: var(--transition-default);
}

.section-heading .heading.aos-animate:before {
    transition-delay: 1s;
    left: 50%;
    right: auto;
    width: 80%;
}

.section-heading .text {
    font-size: 15px;
    margin-top: 20px;
    text-align: justify;
}

.section-heading {
    margin-bottom: 35px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .section-heading .heading,
    .section-introduce__heading .title {
        font-size: calc(var(--text-5xl) - 1px);
    }
}

@media (max-width: 991px) {
    .section-heading .heading,
    .section-introduce__heading .title {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 576px) {
    .section-heading .heading,
    .section-introduce__heading .title {
        font-size: calc(var(--text-3xl) - 1px);
    }
}

/*================================================
                  custom-link
================================================*/
.custom-link {
    font-size: var(--text-sm);
    background-color: var(--bs-white);
    text-transform: uppercase;
    color: var(--bs-gray-800);
    font-weight: 700;
    padding: 15px 60px;
    border: 1px solid var(--bs-gray-800);
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
    letter-spacing: 1px;
    position: relative;
    width: auto;
    z-index: 2;
    display: inline-flex;
    overflow: hidden;
}

.custom-link span {
    z-index: 3;
    position: relative;
}

.custom-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: var(--primary-color);
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    transform-origin: right;
    transform: scaleX(0);
    z-index: 1;
    color: var(--bs-white);
    display: inline-flex;
}

.custom-link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.custom-link:hover span {
    color: var(--bs-gray-800);
}

.custom-link i {
    transition: var(--transition-default);
}

.custom-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .custom-link {
        font-size: var(--text-xs);
        padding: 12px 35px;

    }
}

@media (max-width: 576px) {
    .custom-link {
        font-size: calc(var(--text-xs) - 1px);
        padding: 10px 30px;

    }
}

/*================================================
                   header
================================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.header-top {
    border-bottom: 1px solid var(--gray-primary);
}

.header-top__social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top__social > a {
    color: var(--bg-dark);
    transition: var(--transition-default);
}

.header-top__social > a:hover {
    color: var(--bs-white);
}

.header-top__contact {
    gap: 15px;
}

.header-top__item,
.header-top__item > a {
    color: #222;
    transition: var(--transition-default);
    white-space: nowrap;
}

.header-top__item:hover > a,
.header-top__item:hover {
    color: var(--bs-white);
}

.header-top__form {
    background-color: var(--primary-color);
    color: var(--bs-gray-800);
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 32px;
    transition: var(--transition-default);
    white-space: nowrap;
}

.header-top__form i {
    transition: var(--transition-default);
}

.header-top__form:hover i {
    transform: translateX(5px);
}

.header-top__form:hover {
    background-color: var(--primary-hover);
    color: var(--bs-gray-800);
}

.header-bottom {
    transition: var(--transition-default);
}

.header-bottom__wrap {
    padding: 5px 0;
}

.header-navigation > ul > li {
    position: relative;
}

.header-navigation > ul > li > a {
    color: var(--bs-white);
    font-weight: 700;
    padding: 35px 25px;
    display: block;
    transition: var(--transition-default);
}

.header-navigation > ul > li > a:hover {
    color: var(--primary-color);

}

.header-navigation > ul > li > ul {
    position: absolute;
    top: 100%;
    z-index: 1;
    left: 0;
    background-color: var(--bs-white);
    border-radius: 0;
    border: 0;
    min-width: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(30px);
    transition: var(--transition-default);

}

.header-navigation > ul > li > ul > li > a,
.header-navigation > ul > li > ul > li > ul > li > a {
    color: var(--bs-gray-700);
    padding: 12px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    transition: var(--transition-default);
}

.header-navigation > ul > li > ul > li {
    position: relative;
}

.header-navigation > ul > li > ul > li > ul {
    position: absolute;
    top: 0;
    z-index: 1;
    left: 100%;
    background-color: var(--bs-white);
    border-radius: 0;
    border: 0;
    min-width: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-default);
}

.header-navigation > ul > li:hover > ul,
.header-navigation > ul > li > ul > li:hover > ul {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation > ul > li > ul > li:hover > a,
.header-navigation > ul > li > ul > li > ul > li:hover > a {
    color: var(--primary-color);
}

.header-navigation .header-line {
    position: relative;
}

.header-navigation .header-line::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
    transform: translateY(8px);
    transition: var(--transition-default);
}

.header-navigation > ul > li:hover .header-line::before {
    left: 0;
    right: auto;
    width: 100%;
}

.header-navigation .header-line i {
    margin-left: 5px;
    transition: var(--transition-default);
}

.header-navigation > ul > li:hover i {
    transform: rotate(180deg);
}

.header-search {
    /*color: var(--bs-white);*/
    font-size: 20px;
    margin-left: 10px;
    cursor: pointer;
}

.header-hamburger {
    /*color: var(--bs-white);*/
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
}

.header-bottom__logo img {
    transition: var(--transition-default);
}

/*.other-page .header-top {*/
/*    background-color: var(--bg-dark);*/
/*}*/

.other-page .header-bottom {
    background-color: var(--bs-white);
    box-shadow: 0 6px 12px -6px rgb(24 39 75 / 12%), 0 8px 24px -4px rgb(24 39 75 / 8%);
}

.other-page .header-navigation > ul > li > a,
.other-page .header-search,
.other-page .header-hamburger {
    color: var(--dark-color);
}

.other-page .header-navigation > ul > li > a {
    padding: 15px 25px;
}

.other-page .header-bottom .header-bottom__logo img {
    width: 160px;
}

.other-page .header-scroll .header-bottom .header-bottom__logo img {
    width: 150px;
}

.header-top,
.header-scroll .header-top {
    background-color: var(--primary-color);
}

.header-bottom,
.header-scroll .header-bottom {
    background-color: var(--bs-white);
    box-shadow: 0 6px 12px -6px rgb(24 39 75 / 12%), 0 8px 24px -4px rgb(24 39 75 / 8%);
}

.header-navigation > ul > li > a,
.header-scroll .header-navigation > ul > li > a {
    color: var(--dark-color);
    padding: 15px 25px;
}

.header-bottom .header-bottom__logo img {
    height: 60px;
}

.header-scroll .header-bottom .header-bottom__logo img {
    height: 70px;
}


@media (max-width: 991px) {
    .header-bottom__logo img,
    .other-page .header-bottom .header-bottom__logo img {
        width: 140px;
    }

    .header-scroll .header-bottom .header-bottom__logo img {
        width: 125px;
    }
}

@media (max-width: 576px) {
    .header-bottom .header-bottom__logo img {
        height: 50px !important;
    }

    .header-top .container {
        padding-right: 0;
    }

    .header-bottom__wrap {
        padding: 8px 0;
    }

    .header-bottom__logo img,
    .other-page .header-bottom .header-bottom__logo img {
        width: 120px;
    }

    .header-scroll .header-bottom .header-bottom__logo img {
        width: 110px;
    }
}

.header-scroll .header-search,
.header-scroll .header-hamburger {
    color: var(--bs-gray-800);
}

.trang-chu.header-scroll .header-bottom .header-bottom__logo img {
    filter: unset;
    -webkit-filter: unset;
}

.hero-slide .hero-content .hero-content_inner .hero-text {
    position: relative;
}

.hero-slide .hero-content .hero-content_inner .hero-text::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: var(--bs-white);
    top: 50%;
    left: 100%;
    transform: translateX(5px);
}

.hero-slide .hero-content .hero-content_inner .hero-text::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: var(--bs-white);
    top: 50%;
    right: 100%;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .hero-slide .hero-content .hero-content_inner .hero-text::before,
    .hero-slide .hero-content .hero-content_inner .hero-text::after {
        display: none;
    }
}


@media (max-width: 1024px) {
    .hero-slide {
        height: 80vh !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-title {
        font-size: var(--text-6xl) !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-text {
        font-size: var(--text-md) !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-button .effect-link {
        font-size: var(--text-xs) !important;
        padding: 12px 25px !important;
    }

    .header-navigation {
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        max-height: 100vh;
        padding-bottom: 70px;
        overflow-x: hidden;
        overflow-y: auto;
        width: 320px;
        transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
        background: var(--bs-white);
        touch-action: manipulation;
        display: flex !important;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(104%, 0, 0);
        z-index: 21;
    }

    .header .header-navigation .header-navigation_logo {
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        width: 100%;
        border-bottom: 1px solid var(--bs-gray-100);
    }

    .header .header-navigation .header-navigation_logo img {
        height: 40px;

    }

    .header .header-navigation > ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header-navigation > ul > li + li {
        border-top: 1px solid var(--bs-gray-100);
    }

    .header-navigation > ul > li > a {
        width: 100%;
        padding: 15px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-transform: inherit;
        color: var(--gray-800);
    }

    .header-navigation .header-line {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.8rem;
    }

    .header-navigation > ul > li > a > i {
        transition: var(--transition-default);
    }

    .header-navigation > ul > li > a[aria-expanded=true],
    .header-navigation > ul > li > a:active {
        color: var(--primary-color);
    }

    .header-navigation > ul > li > a[aria-expanded=true] > i {
        transform: rotate(180deg);
    }

    .header-navigation > ul > li > ul {
        display: flex;
        flex-direction: column;
        background: #f8f9faa3;
        border-top: 1px solid var(--bs-gray-100);
        padding-left: 1rem;
        position: unset !important;
        box-shadow: none !important;
        top: unset;
        min-height: unset;
        transform: unset;
        visibility: unset;
        pointer-events: unset;
        opacity: unset;
    }

    .header-navigation > ul > li > ul > li > ul {
        position: unset !important;
        box-shadow: none !important;
        padding-left: 25px;
        top: unset;
        min-height: unset;
        transform: unset;
        visibility: unset;
        pointer-events: unset;
        opacity: unset;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header-navigation > ul > li > ul > li + li {
        border-top: 1px solid var(--bs-gray-100);
    }

    .header-navigation > ul > li > ul > li > a {
        width: 100%;
        padding: 15px 15px 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--bs-gray-800);
        position: relative;
    }

    .header-navigation > ul > li > ul > li:hover > i {
        transform: rotate(90deg);
    }

    .header-navigation > ul > li:hover > ul, .header-navigation > ul > li > ul > li:hover > ul {
        transform: unset;
        visibility: unset;
        pointer-events: unset;
        opacity: unset;
    }

    .header-navigation > ul > li > ul > li > a:hover {
        color: var(--primary-color);
    }

    .navigation-show .header .header-navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .header-overlay {
        background: rgba(0, 0, 0, .7);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-default);
    }

    .navigation-show .header-overlay {
        opacity: 1;
        visibility: visible;
    }

    .overflow-hidden .header-overlay {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 991px) {

    .hero-slide {
        height: 80vh !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-title {
        font-size: var(--text-4xl) !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-text {
        font-size: var(--text-xs) !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-button .effect-link {
        font-size: var(--text-xs) !important;
        padding: 12px 25px !important;
    }

    .header-top__form {
        font-size: var(--text-xs);
    }


}

@media (max-width: 576px) {


    .hero-slide {
        height: 60vh !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-title {
        font-size: var(--text-2xl) !important;
    }

    .hero-slide .hero-content .hero-content_inner .hero-button .effect-link {
        font-size: calc(var(--text-xs) - 1px) !important;
        padding: 10px 22px !important;
    }

    .header-top__form {
        font-size: calc(var(--text-xs) - 1px);
    }
}

/*================================================
                   section-hero
================================================*/

.hero-slide {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide .hero-image {
    /*  width: 100%;
      max-width: 100%;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    transform: scale3d(1, 1.05, 1.1);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 4s ease-in-out;
    animation: scale-image 12s ease-in-out 4s infinite;
    overflow: hidden;
}

@keyframes scale-image {
    0% {
        transform: scale3d(1, 1.05, 1.1);
    }
    50% {
        transform: scale3d(1.05, 1.09, 1.1);
    }
    100% {
        transform: scale3d(1, 1.05, 1.1);

    }

}

.hero-slide .hero-image img {
    object-fit: cover;
    transition: transform 4s ease-in-out;


}

.hero-slide.hero-slide_overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.65);
    transition: var(--transition-default);
}

.hero-slide .hero-content {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide .hero-content .hero-content_inner {
    z-index: 2;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-slide .hero-content .hero-content_inner .hero-title {
    font-size: var(--text-9xl);
    color: var(--bs-white);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-slide .hero-content .hero-content_inner .hero-text {
    font-size: var(--text-md);
    color: var(--bs-gray-100);
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-slide .hero-content .hero-content_inner .hero-button {
    margin-top: 20px;
}

.hero-slide .hero-content .hero-content_inner .hero-button .effect-link {
    font-size: var(--text-sm);
    background-color: var(--bs-white);
    text-transform: uppercase;
    color: var(--gray-800);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--rounded-full);
    transition: var(--transition-default);
}

.hero-slide .hero-content .hero-content_inner .hero-button .effect-link i {
    transition: var(--transition-default);

}

.hero-slide .hero-content .hero-content_inner .hero-button .effect-link:hover {
    background-color: var(--primary-color);

}

.hero-slide .hero-content .hero-content_inner .hero-button .effect-link:hover i {
    transform: translateX(5px);

}

.section-hero .swiper-pagination-bullet {
    background: var(--bs-white);
    opacity: 1;
    margin: 10px !important;
    position: relative;
    width: 5px;
    height: 5px;
}

.section-hero .swiper-pagination-bullet::before {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    border: 1px solid var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-default);
}

.section-hero .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    opacity: 1;
}

.section-hero .swiper-horizontal > .swiper-pagination-bullets,
.section-hero .swiper-pagination-bullets.swiper-pagination-horizontal,
.section-hero .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 25px;
    left: 0;
    width: 100%;
}


/*=======================================
                section-service
==========================================*/
.section-service__gird {
    display: grid;
    grid-template-columns: repeat(3, 34.1%);
    margin-left: -30px;

}

.service-item:not(:last-child) {
    border-right: 1px solid var(--gray-primary);
}

.card-service {
    gap: 25px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: transparent;
}

.card-service__title {

    font-size: var(--text-2xl);
    font-weight: 500;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-primary);
}

.card-service__title span {
    height: 65px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.card-service__content {
    color: var(--bs-gray-900);
    font-size: calc(var(--text-ratio) - 1px);
    margin-bottom: auto;

}

.card-service__content > ul {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}

.card-service__content > ul > li {
    position: relative;
    padding-left: 20px;
    line-height: 1.7;
}

.card-service__content > ul > li:not(:last-child) {
    margin-bottom: 12px;
}

.card-service__content > ul > li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    left: 0;
    top: 0;
    color: var(--bs-gray-800);
}

.card-service__link {
    border-top: 1px solid var(--gray-primary);
    padding-top: 30px;
    text-align: center;
}

@media (max-width: 1024px) {
    .card-service {
        padding: 0;
    }

    .card-service__title {
        font-size: var(--text-xl);

    }

    .card-service__title span {
        height: 55px;
    }
}

@media (max-width: 991px) {
    .card-service__title {
        font-size: var(--text-xl);
    }
}

/*=======================================
                section-category
==========================================*/
.section-category__gird {
    display: grid;
    grid-template-columns: repeat(8, auto);
    gap: 15px;
    flex-grow: 1;
}

.section-category__item {
    border: 1px solid transparent;
    box-shadow: 0 6px 12px -6px rgb(24 39 75 / 12%), 0 8px 24px -4px rgb(24 39 75 / 8%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: var(--transition-default);
    flex-grow: 1;
    width: 100%;
    text-align: center;
}

.section-category__image {
    /*width: 100px;
    height: 100px;*/
    padding: 10px;
    overflow: hidden;
}

.section-category__image img {
    transition: transform 2.2s cubic-bezier(.14, .4, .09, .99);
}

.section-category__title {
    font-weight: 500;
}

.section-category__item:hover {
    box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.22), 0px 10px 32px -4px rgba(24, 39, 75, 0.2);
}

.section-category__item:hover .section-category__image img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .section-category__gird {
        display: grid;
        grid-template-columns: repeat(6, auto);
    }
}

@media (max-width: 991px) {
    .section-category__gird {
        display: grid;
        grid-template-columns: repeat(4, auto);
    }
}

@media (max-width: 576px) {
    .section-category__gird {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(3, auto);
    }

    .section-category__item {
        padding: 10px;
    }

    .section-category__image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 375px) {
    .section-category__gird {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(3, auto);
    }

}

/*===================================
            section-module
======================================*/
.section-module {
    background-color: var(--light-color);
}

/*===================================
            product-card
======================================*/

.product-card {
    background-color: var(--bs-white);
    border: 1px solid transparent;
    padding: 15px;
    transition: var(--transition-default);
}

.product-card:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
}

.product-card:hover .card-image_avatar {
    transform: scale(1.05);
}

.product-card .card-header .card-image {
    display: block;
}

.product-card .card-header .card-image .card-image_thumb {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    will-change: opacity;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.product-card .card-header .card-image .card-image_avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
    -o-transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
    transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
}

.product-card .card-header .card-promotion {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
}

.product-card .card-header .card-promotion > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    border-radius: 4px;
    padding: 5px 7px 3px;
    background: var(--primary-color);
    color: var(--bs-white);
    letter-spacing: 1px;
    font-size: .9em;
}

.product-card .card-header .card-promotion > span svg {
    width: 15px;
    height: 15px;
    fill: var(--bs-white);
    margin-right: 2px;
    position: relative;
    top: -2px;
}

.product-card .card-header .card-action {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 3;
}

.product-card .card-header .card-action button {
    height: 35px;
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    background-color: transparent;
    border: 0;
    padding: 0;
}

.product-card .card-header .card-action button svg {
    stroke: var(--bs-white);
    width: 24px;
    height: 24px;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.product-card .card-header .card-action button.is-selected svg {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}


.product-card .card-properties {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(115%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    background-color: rgba(var(--bs-white-rgb), .75);
    display: flex;
    flex-direction: column;
    z-index: 3;
    gap: 15px;
    padding: 15px;
}

.product-card:hover .card-header .card-properties {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}


.product-card .card-properties .properties-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-card .card-properties .properties-list .properties-list_item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .card-properties .properties-list .properties-list_item > a {
    color: var(--bs-gray-900);
    padding: 4px 15px 2px;
    font-size: .95em;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition-default);
    cursor: pointer;
}

.product-card .card-properties .properties-list .properties-list_item--color > a {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid #e9e9e9;
}

.product-card .card-properties .properties-list .properties-list_item--color > a > span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.product-card .card-properties .properties-list .properties-list_item > a:hover,
.product-card .card-properties .properties-list .properties-list_item.active > a {
    border-color: var(--gray-500);
    color: var(--bs-gray-700);
}

.product-card .card-properties .properties-list .properties-list_item--color.active > a {
    padding: 2px;
    border: 1px solid var(--gray-500);
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 1rem 0 0 0;
}

.product-card .card-body .card-title > a {
    font-size: calc(var(--text-md) - 1px);
    color: var(--bs-gray-800);
    font-weight: 600;
    transition: var(--transition-default);
}

.product-card .card-body .card-title > a:hover {
    color: var(--primary-hover);
}

.product-card .card-body .card-price {
    gap: 5px;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.product-card .card-body .card-price .card-price_current {
    font-size: 1.1em;
    color: var(--red-color);
    font-weight: 700;
}

.product-card .card-body .card-price .card-price_old {
    font-size: 1em;
    color: var(--bs-gray-600);
    text-decoration: line-through;
}

.product-card .card-body .card-price .card-price_badge {
    font-size: .8em;
    font-weight: 700;
    color: var(--bs-white);
    background: var(--bs-danger);
    border-radius: 4px;
    padding: 3px 6px 1px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.product-card .card-text {
    margin-top: 0.5rem;
    color: var(--red-color);
    font-size: 0.85rem;
    font-weight: 500;
}

@media screen and (min-width: 992px) {
    .header-top__social {
        opacity: 0;
    }

    #hasMenu {
        width: 100%;
    }

    .header-bottom__wrap > a {
        margin-top: -35px;
    }

    .header-bottom .header-bottom__logo img {
        height: 80px;
    }

    .product-card:hover .card-header .card-image .card-image_thumb {
        opacity: 1;
    }

    .product-card:hover .card-header .card-image .card-image_avatar {
        transform: scale(1.05);
    }
}

/*===============================================
                card-blogs
===================================================*/
.card-blogs__image {
    overflow: hidden;
    display: block;
    position: relative;
}

.card-blogs__overplay {
    position: relative;
}

.card-blogs__overplay::before {
    position: absolute;
    content: '';
    top: -50%;
    left: 50%;
    background-color: var(--bs-white);
    width: 1px;
    height: 50px;
    z-index: 2;
    transform: translateY(-50%);
    transition: var(--transition-default);

}

.card-blogs__overplay::after {
    position: absolute;
    content: '';
    top: 50%;
    left: -50%;
    background-color: white;
    width: 50px;
    height: 1px;
    z-index: 2;
    transform: translatex(-50%);
    transition: var(--transition-default);

}

.card-blogs__overplay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-blogs__image::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: var(--transition-all);
}

.card-blogs__image img {
    transition: transform 2.2s cubic-bezier(.14, .4, .09, .99);
}

.card-blogs:hover .card-blogs__image img {
    transform: scale(1.02);
}

.card-blogs:hover .card-blogs__overplay::before {
    top: 50%;
}

.card-blogs:hover .card-blogs__overplay::after {
    left: 50%;

}

.card-blogs:hover .card-blogs__image::after {
    opacity: 0.4;
}

.card-blogs__title {
    color: var(--bs-gray-700);
    font-weight: 700;
    transition: var(--transition-default);
    font-size: var(--text-lg);
    height: 48px;
}

.card-blogs:hover .card-blogs__title {
    color: var(--bs-gray-900);
}

.card-blog__wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: auto;
}

.card-blogs .card-body {
    padding: 1rem 0;
}

.card-blogs__date {
    color: var(--bs-gray-600);
    font-size: calc(var(--text-md) - 1px);
}

.card-blogs__date span {
    color: var(--primary-hover);
}

.card-blogs__desc {
    margin-top: auto;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: calc(var(--text-ratio) - 1px);
}

.card-blogs__link {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    color: var(--bs-gray-800);
    letter-spacing: 0.6px;
    overflow: hidden;
    padding-bottom: 10px;

}

.card-blogs__link span {
    position: relative;
}

.card-blogs__link span::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 2px;
    transform: translateY(5px);
    background-color: var(--primary-color);
    transition: var(--transition-default);
}

.card-blogs__link span::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(5px);
    background-color: var(--primary-color);
    transition: var(--transition-default);
}

.card-blogs__link:hover {
    color: var(--primary-color);
}

.card-blogs__link:hover span::before {
    left: 0;
    right: auto;
    width: 100%;
}

.card-blogs__link:hover span::after {
    opacity: 0;
    left: -200%;
}

@media (max-width: 1024px) {
    .card-blogs__all {
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-blogs__title {
        font-size: var(--text-md);
        height: 42px;
    }

    .card-blogs__date {
        font-size: calc(var(--text-md) - 3px);
    }
}

@media (max-width: 991px) {
    .card-blogs__desc {
        font-size: var(--text-sm);
    }
}

@media (max-width: 576px) {
    .card-blogs__link {
        font-size: calc(var(--text-sm) - 1px);
    }
}

/*====================================================
                        section-partner
================================================*/
.section-partner {
    position: relative;
    background-attachment: fixed;
}

.section-partner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.95;
    background: var(--bg-dark);
    z-index: 1;
}

.section-partner__logo {
    width: 120px;
    height: 40px;
}

.section-partner__logo img {
    object-fit: contain;
    transition: var(--transition-default);

}

.section-partner__logo img:hover {
    transform: translateY(-5px);
}

/*====================================================
                      footer
================================================*/
.footer {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 40px 0 10px 0;
    overflow: hidden;
    background-color: var(--primary-color);
}

.footer-top {
    position: relative;
    z-index: 2;
    /*color: var(--gray-primary);*/
    padding-bottom: 35px;
    border-bottom: 1px solid var(--bg-dark);
}

.footer-top__title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #333;
}

.footer-top__content {
    font-size: 15px;
}

.footer-top__content > ul > li > a,
.footer-item__right .footer-top__title {
    color: #333;
    transition: var(--transition-default);
}

.footer-top__content > ul > li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-top__content > ul > li > a:hover {
    color: #000;
}

.footer-bottom {
    padding-top: 10px;
    position: relative;
    z-index: 2;
    /*color: var(--gray-primary);*/
}

.footer-bottom__social {
    align-items: center;
    /*justify-content: flex-end;*/
    gap: 10px;
    margin-top: 15px;
}

.footer-bottom__social a {
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    border: 1px solid rgb(87 81 81 / 40%);
    color: #333;
    transition: var(--transition-default);
}

.footer-bottom__social a:hover {
    background-color: var(--primary-color);
    color: var(--gray-800);
}

.footer-bottom__copyright > a,
.footer-bottom__copyright {
    /*color: var(--bs-gray-300);*/
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .footer-top,
    .footer-bottom,
    .footer-bottom__social {
        display: flex;
        align-items: center;
        justify-content: center !important;
        text-align: center !important;
    }

    .footer {
        padding: 60px 0 120px;
    }

    .footer-item__right {
        text-align: center !important;
        justify-content: center;
    }

    .footer-top__logo img {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .footer-top__title {
        margin-bottom: 15px;
        font-size: calc(var(--text-md) - 1px);
    }
}

/*===========================================
             return-top
==============================================*/

.button-return-top {
    position: fixed;
    bottom: 75px;
    right: -10px;
    z-index: 3;
    height: 45px;
    width: 45px;
    border: 2px solid var(--bs-gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background-color: var(--bs-gray-900);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--transition-default);
    z-index: 4;
}

#returnTop.is-show {
    right: 30px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: var(--transition-default);
}

.button-return-top:hover {
    color: var(--bs-gray-800);
    background-color: var(--primary-hover);
    border: 2px solid var(--primary-hover);
}

@media (max-width: 576px) {
    .button-return-top {
        font-size: 10px;
        height: 40px;
        width: 40px;
    }

    #returnTop.is-show {
        right: 20px;
    }
}

/*===========================================
             taskbar-contact
==============================================*/


.taskbar-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background-color: var(--bg-dark);
    box-shadow: rgba(17, 17, 26, 0.1) 0 0 16px;
    border-top: 1px solid #eaeaea;
}

.taskbar-contact .taskbar-contact__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
    padding: 0.5rem 0 0.5rem 0;
}

.taskbar-contact .taskbar-contact__list .item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    color: var(--bs-white);
    font-size: 18px;
}

.taskbar-contact .taskbar-contact__list .item.facebook .item-icon,
.taskbar-contact .taskbar-contact__list .item.call .item-icon {
    opacity: 0.8;
}

.taskbar-contact .taskbar-contact__list .item .item-text {
    font-size: 0.8125rem;
    padding-top: 0.25rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .taskbar-contact .taskbar-contact__list .item .item-text {
        font-size: 0.7rem;

    }
}

.taskbar-contact .taskbar-contact__list .item .item-icon img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    opacity: 0.8;
    object-fit: contain;
}

.taskbar-contact .taskbar-contact__list .item svg {
    display: inline-block;
    height: 1.5rem;
    object-fit: contain;
    vertical-align: middle;
}

.taskbar-contact .taskbar-contact__list .item svg.is-selected {
    fill: #ffffff;
}

.taskbar-contact .taskbar-contact__list .item .svg-fill {
    fill: currentColor;
}

.taskbar-contact .taskbar-contact__list .item .svg-stroke {
    stroke: currentColor;
}

@media (min-width: 1024px) {
    .taskbar-contact {
        display: none;
    }
}


/*===========================================
             category-product
===============================================*/


.heading-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.heading-category .head {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 250px
}

.heading-category .sort {
    position: absolute;
    top: 0px;
    right: 0;
    display: flex;
    align-items: center;
}

.heading-category .sort > span {
    font-size: 1em;
    text-transform: uppercase;
    color: var(--bs-gray-600);
    margin-right: 10px;
}

.heading-category .sort .sort-dropdown {
    position: relative;
}

.heading-category .sort .sort-dropdown > span {
    height: 34px;
    border-radius: 0;
    color: var(--bs-gray-600);
    font-size: 1em;
    border: 1px solid var(--bs-gray-300);
    padding: 0.375rem 0.75rem;
    background: var(--bs-white);
    transition: var(--transition-default);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.heading-category .sort .sort-dropdown > span > i {
    font-size: 1.3em;
    text-align: center;
    color: var(--bs-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
    position: relative;
    margin-left: 10px;
}

.heading-category .sort .sort-dropdown .sort-dropdown_inner {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bs-white);
    min-width: 210px;
    width: max-content;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-default);
    transform-origin: top;
    transform: scaleY(0);
    z-index: 11;
    border-radius: 4px;
    box-shadow: var(--shadow-primary);
}

.heading-category .sort.is-show .sort-dropdown .sort-dropdown_inner {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.heading-category .sort.is-show .sort-dropdown > span > i {
    transform: rotate(180deg);
}

.heading-category .sort .sort-dropdown .sort-dropdown_inner > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    color: var(--bs-gray-600);
    font-size: 1em;
    transition: var(--transition-default);
}

.heading-category .sort .sort-dropdown .sort-dropdown_inner > a:hover,
.heading-category .sort .sort-dropdown .sort-dropdown_inner > a.active {
    background-color: rgba(var(--primary-rgb), .15);
    color: var(--primary-color);
}


.page-category__heading {
    text-transform: uppercase;
    font-weight: 500;

}

.section-category__heading {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-category__box > ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-category__box > ul > li > ul {
    padding: 12px 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-category__box > ul > li > a,
.section-category__box > ul > li > ul > li > a {
    color: var(--bs-gray-800);
    transition: var(--transition-default);
    font-weight: 500;

}

.section-category__box > ul > li > a:hover,
.section-category__box > ul > li > ul > li > a:hover {
    color: var(--primary-color);

}

.section-category__box > ul > li > a.active,
.section-category__box > ul > li > ul > li > a.active {
    color: var(--primary-color);

}

@media (max-width: 991px) {
    .page-category-blog .section-category__box {
        padding: 0;
    }
}


.product-empty {
    text-align: center;
    padding: 50px 0;
}

.product-empty .product-empty_icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-empty .product-empty_icon img {
    width: 150px;
    height: 150px;
}

.product-empty .product-empty_title {
    margin-top: 10px;
    font-size: 1.2em;
    color: var(--bs-gray-600);
    font-weight: 700;
}

.product-empty .product-empty_title > a {
    font-weight: 400;
    color: var(--primary-color);
}

.list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.list-tags .tags_item {
    color: var(--bs-gray-900);
    border: 1px solid var(--gray-primary);
    padding: 4px 8px;
    transition: var(--transition-default);

}

.list-tags .tags_item:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--bs-gray-900);
}


/*=====================================
            section-pagination
=========================================*/
.section-pagination {
    padding: 30px 0 20px 0;
    text-align: center;
}

.section-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-pagination .pagination .page-link {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-primary);
    color: var(--dark-color);
    transition: var(--transition-default);
    box-shadow: none !important;

}

.section-pagination .pagination .pageactive .page-link {
    background-color: var(--primary-hover);
    font-weight: 500;
    color: var(--bs-white);
    border: 1px solid var(--primary-hover);
}

.page-item:first-child .page-link {
    border-top-left-radius: unset !important;
    border-bottom-left-radius: unset !important;
}

.page-item:last-child .page-link {
    border-top-right-radius: unset !important;
    border-bottom-right-radius: unset !important;
}

.button-category {
    height: 34px;
    border-radius: 0;
    font-size: 1em;
    border: 1px solid var(--bs-gray-300);
    padding: 0.375rem 0.75rem;
    background: var(--bs-white);
    transition: var(--transition-default);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.button-category span {
    margin-right: 8px;
}

.button-category:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .section-category__box {
        padding: 25px;
    }

    .section-category {
        /*position: fixed;*/
        /*top: 0;*/
        /*right: -100%;*/
        /*max-width: 300px;*/
        /*height: 100%;*/
        /*background-color: var(--bs-white);*/
        /*z-index: 20;*/
        /*border-radius: 0;*/
        /*opacity: 0;*/
        /*visibility: hidden;*/
        /*pointer-events: none;*/
        /*transition: all 0.6s ease-in-out;*/

    }

    .is-show-category .section-category {
        right: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .section-category.section-category__product {
        /*position: unset !important;*/
        /*top: unset !important;*/
        /*right: unset !important;*/
        /*max-width: unset !important;*/
        /*opacity: unset !important;*/
        /*visibility: unset !important;*/
    }
}


.section-html {
    transition: all 0.5s ease-in-out !important;
    background-color: var(--light-color);
}

.section-html .content {
    max-height: 408px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    position: relative;
    margin-bottom: 20px;

}

.section-html .content p:last-child {
    margin-bottom: 0;
}

.section-html .expand {
    padding: 10px;
}


.section-html {
    --height: 400px;
}

.section-html__inner.is-show .content {
    max-height: calc(var(--height) + 40px);
    transition: all 0.5s ease-in-out;
    padding-bottom: 30px;
}

.section-html__inner.is-show {
    transition: all 0.5s ease-in-out;
}

#section-html-project {
    transition: all 0.5s ease-in-out;
}

/*==========================================
            page-detail
============================================*/


.detail-images {
    display: flex;
    gap: 15px;
}

.detail-images .product-images_thumb {
    width: 115px;
    flex-shrink: 0;
}

.detail-images .product-avatar_photo {
    width: calc(100% - 130px);
    padding-bottom: 40px;
    position: relative;
}

.detail-images .product-avatar_photo .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    transition: var(--transition-default);
    opacity: 1;
}

.detail-images .product-avatar_photo .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.detail-images .product-avatar_photo .product-image {
    border: 1px solid var(--bs-gray-400);
}

.detail-images .product-images_thumb .product-image {
    border: 1px solid var(--bs-gray-400);
    opacity: .5;
    transition: var(--transition-default);
    cursor: pointer;
}

.detail-images .product-images_thumb .swiper-slide-thumb-active .product-image {
    opacity: 1;
}


.detail-information .detail-information_properties .properties-list {
    display: flex;
    gap: 8px;
}

.detail-information .detail-information_properties .properties-list .properties-list_item--color {
    transition: var(--transition-default);
    background: var(--bs-white);
    height: 55px;
    width: 55px;
    border: 1px solid var(--bs-gray-400);
    padding: 3px;
}

.detail-information .detail-information_properties .properties-list .properties-list_item--color > a {
    padding: 0;
    display: flex;
    width: 100%;
    height: 100%;

}

.detail-information .detail-information_properties .properties-list .properties-list_item--color > a:hover {
    opacity: .7;
}

.detail-information .detail-information_properties .properties-list .properties-list_item--color.active {
    background: transparent;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--bs-gray-800);


}

@media (max-width: 576px) {
    .detail-images .product-images_thumb {
        display: none;
    }

    .detail-images .product-avatar_photo {
        width: 100%;
    }
}

/*==========================================
                card-project
==========================================*/
.ratio-image {
    --bs-aspect-ratio: calc(800 / 500 * 100%);
}

.card-project__image img {
    transition: transform 2.2s cubic-bezier(.14, .4, .09, .99);
}

.card-project__absolute {
    flex: 1 0 0;
    color: var(--bs-white);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px 20px 15px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);


}

.bg-image::after {
    background: rgba(0, 0, 0, .2);
    background: linear-gradient(0deg, #323232 0, rgba(50, 50, 50, 0) 33%);
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition-default);
    opacity: 0.8;
}

.card-project__image:hover .bg-image::after {
    opacity: 1;
}

.card-project__title {
    font-size: calc(var(--text-md) - 1px);
    font-weight: 600;
    transition: var(--transition-default);
    margin-bottom: 3px;
}

.card-project__image:hover .card-project__title {
    color: var(--primary-hover);
}

/*==========================================
               page-detail-product
==========================================*/
.detail-information_title {
    font-weight: 700;
    font-size: calc(var(--text-3xl) - 1px);
    margin-bottom: 22px;
}

.detail-information_desc {
    color: var(--bs-gray-700);
    margin-bottom: 22px;
}

.detail-information_properties .properties-item {
    margin-top: 10px;
}

.properties_title {
    margin-bottom: 10px;
}

.detail-information_properties .text-color {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.detail-information__text {
    margin: 22px 0;
    padding: 22px 0;
    border-top: 1px solid var(--gray-primary);
    border-bottom: 1px solid var(--gray-primary);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.detail-information__text .item__text {
    display: flex;
    align-items: center;
    color: var(--bs-gray-700);

}

.detail-information__text > .item__text > .text {
    min-width: 135px;
    flex-shrink: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
    color: var(--bs-gray-800);

}

.detail-information__tags > ul > li > a {
    color: var(--bs-gray-900);
    border: 1px solid var(--gray-primary);
    padding: 4px 8px;
    margin: 0 5px 5px 0;
    transition: var(--transition-default);
    font-size: 0.75rem;
}

.detail-information__tags > ul > li > a:hover {
    color: var(--bs-gray-800);
    border: 1px solid var(--primary-hover);
    background-color: var(--primary-hover);
}

.detail-information__category > ul > li > a {
    color: var(--bs-gray-800);
    text-transform: uppercase;
    transition: var(--transition-default);
}

.detail-information__category > ul > li > a:hover {
    color: var(--primary-hover);
}

@media (max-width: 576px) {
    .detail-information__tags > ul > li {
        margin: 8px 5px;
    }

    .detail-information__tags > ul > li > a {
        margin: 0;
    }
}

.detail-information__category > ul > li {
    position: relative;
}

.detail-information__category > ul > li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
}

.detail-information__category > ul > li:not(:last-child)::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 12px;
    width: 1px;
    transform: translateY(2px);
    background-color: var(--bs-gray-800);
}

.detail-information__price,
.detail-information__status {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-gray-800);
    font-size: 0.8rem;
}

.detail-information__price > .text,
.detail-information__status > .text {
    min-width: 135px;
    margin-right: 10px;
    flex-shrink: 0;
    font-weight: 500;
    color: var(--bs-gray-800);
}

.detail-information__status {
    margin: 12px 0;
}

.detail-information__price {
    color: var(--red-color);
    font-weight: 600;
}

.detail-information__status {
    color: #0a970a;
    font-weight: 600;
}

.detail-information__contact {
    margin: 20px 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-primary);
}

.detail-information__contact .contact-item {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    font-weight: 600;
    color: var(--bs-gray-700);
    transition: var(--transition-default);
}

.detail-information__contact .contact-item:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: var(--bs-gray-900);
}

.detail-information__contact .contact-phone .icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.detail-information__share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.detail-information__share > ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-information__share .zalo-share-button {
    margin-top: 3px;
    z-index: 1;
}

.detail-information__heading {
    margin-bottom: 22px;
}

.detail-heading {
    font-weight: 700;
    font-size: calc(var(--text-2xl) - 1px);
    display: inline-flex;
    margin-bottom: 10px;
}

.detail-information__heading {
    position: relative;
}

.detail-information__heading::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gray-primary);
}

.detail-information__heading::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 40%;
    height: 1px;
    background-color: var(--bs-gray-800);
}

.detail-information__content {
    padding-bottom: 30px;
}

.section-related {
    background-color: var(--light-color);
}

.detail-information__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.detail-information__call .icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.detail-information__call .text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.detail-information__call .text span:last-child {
    color: var(--bs-gray-700);
    font-weight: 400;
    font-size: 0.85rem;
}

.detail-information__policy h6 {
    color: #f6e900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 12px 15px;
    background: rgb(246, 233, 0, .1);
    border: 1px solid var(--primary-color);
    color: var(--bs-gray-900);
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 20px;
}

.detail-information__desc > ul {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-information__desc > ul > li {
    padding-left: 23px;
    position: relative;
    line-height: 1.7;
}

.detail-information__desc > ul > li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    left: 0;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.section-related .detail-heading {
    font-size: var(--text-3xl);
}

.section-related .swiper-wrapper {
    margin: 30px 0;
}


.detail-information__content .content {
    max-height: 400px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    position: relative;
    /*padding-bottom: 20px;*/
    margin-bottom: 20px;

}

.detail-information__content .content p:last-child {
    margin-bottom: 0;
}

.detail-information__content .expand {
    padding: 10px;
}


.detail-information__content {
    --height: 400px;
}

.detail-information__content.is-show .content {
    max-height: calc(var(--height) + 40px);
    transition: all 0.5s ease-in-out;
    /*padding-bottom: 30px;*/
}

.detail-information__content .custom-link {
    font-size: var(--text-xs);
    padding: 12px 35px;
}

.detail-information__content h1 {
    font-size: calc(var(--text-2xl) - 1px);
}

.detail-information__content h2 {
    font-size: var(--text-xl);
}

.detail-information__content h3 {
    font-size: var(--text-lg);
}

.detail-information__content h4 {
    font-size: var(--text-md);
}

.detail-information__content h5 {
    font-size: var(--text-sm);
}

.detail-information__content h6 {
    font-size: var(--text-xs);
}

.detail-information__content img {
    max-width: 100% !important;
    height: auto !important;
}

.detail-information__content iframe {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .detail-information_title {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 991px) {
    .detail-information_title {
        font-size: calc(var(--text-2xl) - 1px);
    }

    .detail-heading {
        font-size: var(--text-xl);
    }

    .section-related .detail-heading {
        font-size: var(--text-2xl);
    }

    .detail-information__content .custom-link {
        font-size: calc(var(--text-xs) - 1px);
        padding: 10px 25px;
    }
}

@media (max-width: 576px) {
    .detail-information_title {
        font-size: var(--text-xl);
    }

    .detail-information__content h1 {
        font-size: calc(var(--text-2xl) - 2px);
    }

    .detail-information__content h2 {
        font-size: calc(var(--text-xl) - 1px);
    }

    .detail-information__content h3 {
        font-size: calc(var(--text-lg) - 1px);
    }
}


.page-category-blog {
    padding-bottom: 50px;
    overflow: hidden;
}

/*==============================================
                   page-detail-article
===================================================*/
.page-detail-article {
    margin-bottom: 50px;
}

.page-artice-related .card-blogs .image-blog {
    width: 90px;
    flex-shrink: 0;
    overflow: hidden;
    display: block;
    position: relative;
}

.page-artice-related .card-blogs .image-blog::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    padding-top: calc(5 / 8 * 100%);
    background-color: #000;
    opacity: 0;
    transition: var(--transition-all);
}

.page-artice-related .card-blogs .image-blog:hover::after {
    opacity: 0.4;
}

.page-artice-related .card-blogs .image-blog > img {
    transition: var(--transition-default);
    position: absolute;
    width: 100%;
    height: auto !important;
    top: 0;
    left: 0;
}

.page-artice-related .card-blogs .image-blog:hover img {
    transform: scale(1.05);
}

.page-artice-related .card-blogs .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-artice-related .card-blogs .card-body {
    padding: 0 1rem 0 1rem;
}

.page-artice-related .card-blogs .blog-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.75rem;
}

.page-artice-related .card-blogs .blog-name {
    margin-bottom: 5px;
}

.page-artice-related .card-blogs .blog-name > a {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--bs-gray-800);
    transition: var(--transition-default);
    font-size: 0.85rem;
}

.page-artice-related .card-blogs:hover .blog-name > a {
    color: var(--bs-gray-900);
}

.page-artice-related .blog-date {
    color: var(--bs-gray-600);
    font-weight: 400;
    font-size: 12px;
    margin-top: 5px;
}

.page-artice-related .blog-date span {
    margin-right: 3px;
}

.page-artice-related .blog-date i {
    color: var(--primary-color);
}

.page-article_inner {
    padding-left: 15px;
}

@media (max-width: 991px) {
    .page-article_inner {
        padding-left: 0;
    }
}

.page-article_inner__title {
    font-weight: 700;
    font-size: var(--text-3xl);
    margin-bottom: 20px;
}

.page-article .page-article_inner .page-article_inner__meta {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9e9e9;
}

.page-article_inner__meta-social > ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-article_inner__meta-social .zalo-share-button {
    margin-top: 3px;
}

.page-article_inner__content {
    font-size: 1rem;
}

.page-article_inner__content img {
    max-width: 100%;
    height: auto;
}

.page-article_inner__content h1 {
    font-size: var(--text-2xl);
}

.page-article_inner__content h2 {
    font-size: var(--text-xl);
}

.page-article_inner__content h3 {
    font-size: var(--text-lg);
}

.page-article_inner__content h4 {
    font-size: var(--text-md);
}

.page-article_inner__content h5 {
    font-size: var(--text-sm);
}

.page-article_inner__content h6 {
    font-size: var(--text-xs);
}

@media (max-width: 1024px) {
    .page-article_inner__title {
        font-size: var(--text-2xl);

    }
}

@media (max-width: 991px) {

    .page-detail-article .section-category__box {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .page-article_inner__title {
        font-size: var(--text-xl);

    }

    .page-article_inner__content p {
        font-size: 0.9rem;
    }

    .page-article_inner__content h1 {
        font-size: var(--text-xl);
    }

    .page-article_inner__content h2 {
        font-size: var(--text-lg);
    }

    .page-article_inner__content h3 {
        font-size: var(--text-md);
    }

    .page-article_inner__content h4 {
        font-size: var(--text-sm);
    }

    .page-article_inner__content h5 {
        font-size: var(--text-xs);
    }

    .page-article_inner__content h6 {
        font-size: var(--text-xs);
    }
}

/*========================================
              page-detail-project
=======================================*/

.page-project__left {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
    padding: 50px 20px 50px 0;

    color: var(--bs-gray-800);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-project__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
}

.page-project__item .title {
    color: var(--bs-gray-900);
    font-weight: 600;
}

.page-project__right {
    padding: 50px 0px 50px 50px;
}

.page-project__name {
    font-weight: 700;
    font-size: var(--text-6xl);
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.page-project__desc {
    line-height: 1.7;
    color: var(--bs-gray-900);
    font-size: calc(var(--text-ratio) - 1px);
}

.page-project__desc img {
    max-width: 100%;
    height: auto !important;
}

.page-project__desc h1 {
    font-size: calc(var(--text-2xl) - 1px);
}

.page-project__desc h2 {
    font-size: var(--text-xl);
}

.page-project__desc h3 {
    font-size: var(--text-lg);
}

.page-project__desc h4 {
    font-size: var(--text-md);
}

.page-project__desc h5 {
    font-size: var(--text-sm);
}

.page-project__desc h6 {
    font-size: var(--text-xs);
}

@media (max-width: 576px) {
    .page-project__desc h1 {
        font-size: calc(var(--text-2xl) - 2px);
    }

    .page-project__desc h2 {
        font-size: calc(var(--text-xl) - 1px);
    }

    .page-project__desc h3 {
        font-size: calc(var(--text-lg) - 1px);
    }
}

.page-project__tag > ul,
.page-project__category > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page-project__tag > ul {
    gap: 5px;
}

.page-project__tag > ul > li > a {
    color: var(--bs-gray-900);
    border: 1px solid var(--gray-primary);
    padding: 4px 8px;
    transition: var(--transition-default);
    font-size: 0.75rem;
    text-transform: capitalize;
    display: block;
}

.page-project__tag > ul > li > a:hover {
    background-color: var(--primary-color);
    color: var(--bs-gray-800);
    border: 1px solid var(--primary-color);
}

.page-project__category > ul > li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
}

.page-project__category > ul > li {
    position: relative;
}

.page-project__category > ul > li:not(:last-child)::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 12px;
    width: 1px;
    transform: translateY(2px);
    background-color: var(--bs-gray-800);
}

.page-project__category > ul > li > a {
    color: var(--bs-gray-800);
    text-transform: uppercase;
    transition: var(--transition-default);
}

.page-project__category > ul > li > a:hover {
    color: var(--primary-hover);
}

.section-related .card-project__content {
    padding: 15px 0;
}

.section-related .card-project__title {
    margin-bottom: 5px;
}

.section-related .card-project__text {
    letter-spacing: 1px;

}

span.layer-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 58, 64, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    flex-direction: column;
    font-size: 1rem;

}

.page-project__image {
    margin-bottom: 50px;
}

.page-project__image .galley-item {
    display: block;
    overflow: hidden;
    background-color: red;
}

.page-project__image .galley-item img {
    cursor: zoom-in;
    transition: transform 2s cubic-bezier(.14, .4, .09, .99);
}

.page-project__image .galley-item:hover img {
    transform: scale(1.05);
}

.section-related.section-related-project {
    background-color: var(--bs-white);
}

@media (max-width: 991px) {
    .page-project__left,
    .page-project__right {
        padding: 40px 0;
    }

    .page-project__name {
        font-size: var(--text-3xl);
    }

    .border-end {
        border-right: none !important;
    }

    .page-project__right {
        border-top: 1px solid #dee2e6;
    }
}

@media (max-width: 576px) {
    .page-project__name {
        font-size: var(--text-2xl);
    }
}

/*=================================
          contact-form
================================*/
.contact-form .form-control {

    border-radius: 0;
    border-style: solid;
    border: 0;
    border-bottom: 1px solid var(--gray-primary);
    box-sizing: border-box;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0 0 11px;
    outline: 0;
    padding: 15px 0;
    font-size: var(--text-sm);

}

.contact-form .form-control:hover {
    border-bottom: 1px solid var(--bs-gray-800);
}

textarea {
    resize: none;
}

.page-contact__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-contact__left .page-contact__item,
.page-contact__left .page-contact__item a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition-default);

    color: var(--bs-gray-800);
}

.page-contact__left .page-contact__item a {
    font-size: 0.85rem;
}

.page-contact__left .page-contact__item a:hover {
    color: var(--bs-gray-900);
}

.page-contact__left .page-contact__item .title {
    color: var(--bs-gray-900);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;

}

.page-contact__list {
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(60px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 410px;

}

.page-contact__left .section-heading {
    padding-top: 100px;
}

.page-contact__left .section-heading .heading {
    font-size: var(--text-5xl);
}


/*.page-contact_map {*/
/*	height: 100%;*/
/*	overflow: hidden;*/
/*}*/

/*.page-contact_map iframe {*/
/*	height: 100%;*/
/*}*/

.form-control.is-valid, .was-validated .form-control:valid {
    background-image: none !important;
    border-bottom: 1px solid var(--gray-primary);
}


@media (max-width: 1024px) {
    .page-contact_map {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .page-contact_map iframe {
        width: 100%;
    }

    .contact-form {
        padding: 0;
    }

    .page-contact__left .section-heading .heading {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 576px) {
    .page-contact__left .page-contact__item .title {
        font-size: 0.8rem;
    }

    .page-contact__left .page-contact__item a {
        font-size: 0.75rem;
    }

    .page-contact__left .section-heading .heading {
        font-size: calc(var(--text-3xl) - 1px);
    }

    .page-contact__list {
        right: 25px;
        transform: translateY(120px);
        padding: 25px;
        width: 290px;
    }

    .page-contact__left .section-heading {
        padding-top: 135px;
    }
}

@media (max-width: 375px) {
    .page-contact__list {
        width: 245px;
    }
}

/*=================================
          floating-search
 ====================================*/

.floating-search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background: var(--bs-white);
    display: none;
    flex-direction: column;
    max-height: 100vh;
}

.floating-search.is-search {
    display: flex;
}

.floating-search .search-form_overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(52, 58, 64, 0.92);
    display: block;
    content: "";
}

.floating-search .search-form {
    width: 100%;
    background-color: var(--primary-color);
    padding: 25px 15px;
    position: relative;
    z-index: 2;
}

.floating-search .search-form .search-close {
    position: absolute;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 1.8em;
    border-radius: 0;
    opacity: .7;
    top: 30px;
    right: 45px;
    transition: var(--transition-default);
    color: var(--bs-gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;

}

.floating-search .search-form .search-close:hover {
    opacity: 1;
}

.floating-search .search-form .frmSearch-form {
    display: flex;
    align-items: center;
}

.floating-search .search-form .frmSearch-form .frmSearch-button {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 1.6em;
    border-radius: 0;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--bs-gray-800);
}

.floating-search .search-form .frmSearch-form .frmSearch-input {
    width: 100%;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 15px;
    font-size: 1.1em;
    color: var(--bs-gray-800);
}

.floating-search .search-form .frmSearch-form .frmSearch-input::placeholder {
    color: var(--bs-gray-700);
}

.floating-search .search-result {
    display: none;
    position: relative;
    z-index: 2;
    overflow-y: auto;
}

.floating-search .search-result.is-show {
    display: block;
}

.floating-search .search-result .search-result_inner {
    padding: 30px 0;
    background: var(--bs-white);
}

.page-search .heading,
.page-tag .heading {
    margin-bottom: 35px;
}

.page-search .title,
.page-tag .heading .title {
    font-weight: 700;
    font-size: calc(var(--text-3xl) - 1px);
    color: var(--bg-dark);
}

.page-tag {
    background-color: var(--light-color);
}

.page-category.page-tag {
    background-color: white;
}

@media (max-width: 1024px) {
    .page-search .title,
    .page-tag .heading .title {
        font-weight: 700;
        font-size: var(--text-2xl);


    }
}

@media (max-width: 991px) {
    .page-search .title,
    .page-tag .heading .title {
        font-weight: 700;
        font-size: var(--text-xl);
    }

    .floating-search .search-form {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {

    .floating-search .search-form {
        padding: 15px;
    }

    .floating-search .search-form .frmSearch-form .frmSearch-button {
        border: 0;
        background: transparent;
        padding: 0;
        font-size: 1.2em;
        border-radius: 0;
        width: 20px;
        height: 30px;
        flex-shrink: 0;
        color: var(--bs-gray-800);
    }

    .floating-search .search-form .frmSearch-form .frmSearch-input {
        width: 100%;
        height: 44px;
        border: 0;
        padding: 10px 30px 10px 10px;
        font-size: 1.05em;
    }

    .floating-search .search-form .search-close {
        font-size: 1.6em;
        border-radius: 0;
        opacity: .7;
        top: 23px;
        right: 25px;
        width: 30px;
        height: 30px;
    }
}


.modal-theme .modal-content {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.modal-theme .button-close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    border-radius: 50%;
    background: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--bs-white);
    border: 0;
    transition: var(--transition-default);
    font-size: 1.2em;
}

.modal-theme .button-close:hover {
    background: var(--red-hover);
}

.section-service {
    background-color: #fafafaa6;
}

/*========================================
             loading-page
=========================================*/
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1200;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /*  transition-delay: 1s;*/

}

.loading-page__logo {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bs-white);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1250;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-page__logo .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;

}

.loading-page__logo .logo img {
    transition: var(--transition-default);
    opacity: 0;
    transform: translateY(-30px);

}

@keyframes transform-Y {
    0% {
        transform: translateY(0px);
        opacity: 1;
        /*transition-delay: 1s;*/
    }
    50% {
        transform: translateY(-30px);
        opacity: 1;
        /*transition-delay: 3s;*/
    }
    100% {
        transform: translateY(-60px);
        opacity: 0;
        /*transition-delay: 1s;*/
    }
}

.show-loading .loading-page {
    background-color: var(--bs-white);
}

.show-loading .loading-page,
.show-loading .loading-page__logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.is-loading .loading-page__logo .logo img {
    animation: transform-Y 1s ease-in;
}

.is-loading .loading-page__logo {
    animation: height-Y 1s ease-in 2s;
}

.is-loading .loading-page {
    animation: height-Y 0.5s ease-in 4s;
}

@keyframes height-Y {
    100% {
        height: 0;
        opacity: 0;
        visibility: hidden;
        top: -100% !important;
    }
}


/*======================================
          section-introduce
=======================================*/
.section-introduce {
    padding: 80px 0 50px 0;
}

.section-introduce__heading {
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 20px;
}

.section-introduce__heading .sub-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.section-introduce__heading .title {
    font-weight: 700;
    color: var(--bg-dark);
    text-transform: uppercase;
    text-align: center;
    display: inline-flex;
    position: relative;
    padding-bottom: 10px;
}

.section-introduce__text {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.section-introduce__text p:last-child {
    margin-bottom: 0;
}

.section-introduce__link .custom-link {
    padding: 13px 45px;
}

@media screen and (min-width: 992px) {
    .sidebar-category__right {
        position: sticky;
        left: 0;
        top: 0;
    }
}

/*=================================================
		[11] FEATURE PAGE
==================================================*/
.button-accent-75 {
    background-color: var(--primary-color);
}

.form-fields .form-fields_heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    position: relative;
    z-index: 1;
}

.form-fields,
.form-fields_heading {
    margin-bottom: 1rem;
}

.form-fields .form-fields_heading > * {
    position: relative;
    z-index: 3;
}

.form-fields .form-fields_heading::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: 2;
}

.form-fields .form-fields_heading h2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 0.625rem;
    white-space: nowrap;
    background-color: var(--primary-color);
}

.form-fields .form-fields_heading button {
    background-color: transparent;
    border-color: transparent;
    height: auto;
    text-transform: none;
    padding-left: 1rem;
    padding-right: 1rem;
}

.form-fields .form-fields_heading button:hover {
    --color: var(--primary-color);
}

.form-fields .form-fields_main .form-field {
    height: 100%;
}

.form-fields .form-fields_main .form-field > .form-field_label,
.form-fields .form-fields_main .form-field > label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.form-fields .form-fields_main .form-field > .form-select {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    -webkit-transition: var(--transition-all);
    -o-transition: var(--transition-all);
    transition: var(--transition-all);
    background-color: var(--gray-50);
    color: var(--gray-500);
    font-size: 0.875rem;
    cursor: pointer;
}

.form-fields .form-fields_main .form-field > .form-select > option[disabled] {
    color: var(--gray-400);
}

.form-fields .form-fields_main .form-field > .form-select:focus {
    outline-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-fields .form-fields_main + .form-fields_main {
    margin-top: 1rem;
}

.form-fields .form-fields_main .form-field .form-field_group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.form-fields .form-fields_main .form-field .form-field_group > .form-check {
    margin-bottom: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    padding-right: 1.5rem;
}

.form-fields .form-fields_main .form-field .form-field_group > .form-check > label {
    margin-left: 5px;
}

.form-fields .form-fields_main .form-field .form-field_group > .form-check:first-child {
    padding-left: 0;
}

.form-fields .form-fields_main .form-field.form-field_groups {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.form-fields .form-fields_main .form-field.form-field_groups .form-field_group {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form-fields.form-fields--dark .form-fields_heading > h2 {
    color: var(--bs-white)
}

/*.form-fields.form-fields--dark .form-fields_heading > h2,*/
/*.form-fields.form-fields--dark .form-fields_heading::after {*/
/*    background-color: var(--gray-800);*/
/*}*/

.form-fields.form-fields--dark .form-fields_heading {
    margin-bottom: 0;
}

.form-fields.form-fields--dark .form-fields_wrapper {
    border: 2px solid var(--gray-800);
    border-top: none;
    padding: 0.625rem;
}

.page-feature_form .form-fields .form-fields_main .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.page-feature_form .form-fields .form-fields_main .form-field > *:first-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.page-feature_form .form-field > *:last-child {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.page-feature_form .form-fields .form-fields_main .form-field > input,
.page-feature_form .form-fields .form-fields_main .form-field > select {
    width: 100%;
    border-radius: 0.25rem;
}

.page-feature_form .form-fields .form-fields_main .form-field > input {
    background-color: var(--bs-white);
    height: 35px;
}

.page-feature_form .form-fields .form-fields_main .form-field > .button {
    max-height: 35px;
    height: 35px;
    max-width: 140px;
}

.form-table {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.form-table > * {
    scroll-snap-align: start;
}

.form-table .form-table_row .table_box > button,
.form-table .form-table_row,
.form-table .form-table_input {
    border: 1px solid var(--gray-300);
}

.form-table .form-table_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.form-table .form-table_row:not(:first-child) {
    border-top: 0;
}

.form-table .form-table_row.row-disabled {
    max-height: 0;
    border: none;
}

.form-table .form-table_row > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
}

.form-table .form-table_row .table_heading {
    font-weight: 700;
}

.form-table .form-table_row .table_box + .table_box {
    border-left: 1px solid var(--gray-300);
}

.form-table .form-table_row .table_box:nth-child(2) {
    min-width: 126px;
}

.form-table .form-table_row .table_box.table_box-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(2 / 3 * 100%);
    flex: 0 0 calc(2 / 3 * 100%);
}

.form-table .form-table_row .table_box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
    min-height: 40px;
    height: 100%;
    padding: 0 5px;
}

.form-table .form-table_row .table_box > button,
.form-table .form-table_input {
    display: inline-block;
    height: 30px;
    outline: none;
    text-align: center;
}

.form-table .form-table_row .table_box > button {
    width: 30px;
    font-size: 1rem;
    background-color: var(--gray-100);
    -webkit-transition: var(--transition-all);
    -o-transition: var(--transition-all);
    transition: var(--transition-all);
}

.form-table .form-table_row .table_box > button:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.form-table button + .form-table_input {
    border-left: none;
    border-right: none;
}

.form-table .form-table_input {
    width: 55px;

}

.form-table .form-table_input:focus {
    border-color: var(--primary-color);
}

.building-media {
    height: 100%;
}

.building-media .building-media_main,
.building-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.building-media .building-media_heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    display: block;
    width: 100%;
}

.building-media .building-media_main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.building-media .building-media_main .building-media_box {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.building-media .building-media_main .building-media_box .area {
    position: absolute;
    top: 55%;
    left: 16%;
    font-size: 11px;
    font-weight: 500;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.building-media .building-media_main .building-media_box .area.area-mai {
    top: unset;
    bottom: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.building-media .building-media_main .building-media_box .area.area-ham {
    color: var(--bs-white);
}

.form-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-result .form-result_table {
    display: inline-block;
    width: 360px;
}

.form-result .form-result_table .form-result_heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;

}

.form-result .form-result_table .form-result_heading::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--gray-800);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.form-result .form-result_table .form-result_heading > span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.625rem;
    font-weight: 700;
    color: var(--bs-white);
    text-transform: uppercase;
    background-color: var(--gray-800);
    position: relative;
    z-index: 3;
}

.form-result .form-result_table .list-result > .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-result .form-result_table .list-result > .item + .item {
    margin-top: 15px;
}

.form-result .form-result_table .list-result > .item > .item-label {
    font-weight: 700;
}

.form-result .form-result_table .list-result > .item * {
    white-space: nowrap;
}

.form-result .form-result_table .list-result > .item > .item-label > .item-notice {
    font-weight: 400;
}

.form-result .form-result_text {
    text-align: center;
}

.form-result .form-result_text ul {
    margin: 0 auto;
    padding: 0;
    list-style-type: '- ';
    max-width: 710px;
    color: rgb(220 38 38);
    font-weight: 500;
}

.form-actions,
.form-result .form-result_text {
    margin-bottom: 0;
    margin-top: 15px;
}

.form-actions .form-actions_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.form-actions .form-actions_item {
    padding: 0.25rem 0.25rem;
    width: calc(100% - 1.5rem);
}

.form-actions .button {
    color: var(--bs-dark);
    display: block;
}

.form-actions .button.button-md {
    padding: 12px 10px;
    border: 2px solid var(--bg-dark) !important;
    width: 100%;
}

input#chieudai,
input#chieurong {
    background-color: #fff !important;
}

@media screen and (min-width: 480px) {
    .building-media .building-media_main .building-media_box .area {
        font-size: 12px;
    }

    .form-table {
        padding: 15px;
    }

    .form-table .form-table_row .table_box {
        font-size: 0.875rem;
    }

    .form-actions {
        max-width: 516px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-actions .form-actions_wrapper .form-actions_item:first-child,
    .form-actions .form-actions_wrapper .form-actions_item:nth-child(2) {
        width: 50%;
    }

    .form-actions .form-actions_wrapper .form-actions_item:last-child {
        width: 100%;
    }

    .form-result .form-result_text {
        text-align: start;
    }

    .form-fields .form-fields_heading h2 {
        padding: 0.625rem;
    }
}

@media (min-width: 768px) {
    .form-fields.form-fields--dark .form-fields_wrapper {
        padding: 1rem;
    }

    .building-media .building-media_main .building-media_box .area {
        font-size: 14px;
    }
}

@media screen and (min-width: 992px) {

    .form-table {
        padding: 25px;
    }

    .form-table {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        min-height: 135px;
        margin-bottom: 0;
    }

    .building-media .building-media_main {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding: 20px 0;
    }

    .form-actions .form-actions_wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .form-actions {
        max-width: 100%;
    }

    .form-actions .form-actions_wrapper .form-actions_item:first-child,
    .form-actions .form-actions_wrapper .form-actions_item:nth-child(2),
    .form-actions .form-actions_wrapper .form-actions_item:last-child {
        width: auto;
        min-width: 280px;
    }

    .form-actions .form-actions_item {
        padding: 0.5rem 0.5rem;
    }

    .page-feature_form .form-fields .form-fields_main .form-field > input,
    .page-feature_form .form-fields .form-fields_main .form-field > select {
        max-width: 415px;
    }
}

.list-widget-products {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
    margin-bottom: 20px;
}

.widget-product {
    --border-color: #e0e0e0;
    --text-color: #333;
    --text-lighter: #757575;
    --border-radius: 0.25rem;
    border-radius: 0.5rem;
    /*box-shadow: rgb(0 0 0 / 8%) 0.1rem 0.1rem 0.5rem 0.1rem;*/
    transition-property: box-shadow;
    transition: box-shadow 0.25s ease-in-out;
    border: 1px solid var(--bs-gray-300);
}

.widget-product:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.widget-product .widget-product__wrapper {
    padding: 1rem;
    display: grid;
    grid-template-columns: 5rem 1fr auto;
    grid-gap: 1.25rem;
}

.widget-product .widget-product__main {
    display: flex;
    align-items: center;
}

.widget-product .widget-product__category {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--dark-color);
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.widget-product .widget-product__category > span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.widget-product .widget-product__main .main-media {
    flex-shrink: 0;
    width: 70px;
    border: 1px solid var(--bs-gray-400);
    border-radius: 0.25rem;
    overflow: hidden;
}

.widget-product .widget-product__main .main-info {
    flex-grow: 1;
    padding: 0 0.75rem;
}

.widget-product .widget-product__main .main-info > * + * {
    margin-top: 0.25rem;
}

.widget-product .widget-product__main .main-info > * {
    color: var(--text-color);
}

.widget-product .widget-product__main .main-info .product-name > a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.widget-product .widget-product__main .main-info .price-original {
    color: var(--text-lighter);
}

.widget-product .widget-product__action {
    display: flex;
    flex-flow: column nowrap;
}

.widget-product .widget-product__action .action-main {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.25rem;
    align-items: center;
}

.widget-product__selected .widget-product__action .action-main {
    grid-template-columns: repeat(4, auto);
}

.widget-product .widget-product__action .action-add {
    margin-top: auto;
    flex-shrink: 0;
    align-self: flex-end;
    padding-top: 1rem;
}

.widget-product .widget-product__action .action-add > button {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    outline: none;
    border: none;
    background-color: transparent;
    color: var(--bs-primary);
}

.widget-product .widget-product__action .action-quantity {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    grid-gap: 0.75rem;
}

.widget-product .widget-product__action .action-quantity[disabled=true] {
    opacity: 0.75;
    user-select: none;
    pointer-events: none;
}

.widget-product .widget-product__action .quantity-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    font-size: 0.8125rem;
    padding: 0;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 5px;
    background-color: transparent;
    transition: var(--transition);
}

.widget-product .widget-product__action .quantity-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bs-white);
}

.widget-product .widget-product__action .quantity-input {
    height: 2rem;
    padding: 0 0.5rem;
    outline: none;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.widget-product .widget-product__action .quantity-input:focus {
    border-color: var(--primary-color) !important;
}

.widget-product .widget-product__action .action-price {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.widget-product .widget-product__action .action-price .price-present,
.widget-product .widget-product__action .action-price .price-discounted {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

.widget-product .widget-product__action .action-price .price-present {
    color: var(--red-color);
}

.widget-product .widget-product__action .action-btn {
    padding: 0.5rem 1.25rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--bs-white);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.875rem;
    border: 0;
    outline: 0;
    box-shadow: none;
}

.widget-product .widget-product__action .action-btn.action-btn--warning {
    background-color: var(--primary-color);
}

.widget-product .widget-product__action .action-btn.action-btn--warning:hover {
    background-color: var(--primary-hover);
}

.widget-product .widget-product__action .action-btn.action-btn--danger {
    background-color: var(--red-color);
}

.widget-product .widget-product__action .action-btn.action-btn--danger:hover {
    background-color: var(--bs-danger);
}


.th-modal {
    --text-color: #333;
    --border-color: #E0E0E0;
    --blue-color: #1435c3;
    --text-lighter: #757575;
}

.th-modal .modal-dialog {
    max-width: 700px;
    height: 90%;
}

.th-modal .modal-content {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.th-modal .filter-price,
.th-modal .modal-header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 0;
    align-items: center;
    border-bottom: 0;
}

.th-modal .modal-content {
    border: 0;
}

.th-modal .modal-block {
    padding: 0 1rem 0.5rem;
}

.th-modal .modal-block--md {
    padding: 1rem;
}


.th-modal .modal-header .header-title {
    font-size: 1.25rem;
    position: relative;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

.th-modal .modal-header .header-title::before {
    content: '';
    display: inline-block;
    height: 100%;
    width: 3px;
    position: absolute;
    top: 0;
    left: -1rem;
    background-color: var(--text-color);
}

.th-modal .filter-price__radios,
.th-modal .modal-header .tags-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, max-content));
    grid-gap: 0.5rem 0.5rem;
    padding: 0 0.5rem;
}

.th-modal .modal-header .tags-list .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    padding: 0 1rem;
    color: var(--primary-color);
    border: 1px solid currentColor;
    border-radius: 99px;
    font-weight: 400;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.th-modal .modal-header .tags-list .tag i {
    font-size: 0.625rem;
    margin-left: 0.25rem;
    margin-top: 1px;
}

.th-modal .modal-header .tags-list .tag::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: -1px;
    left: 1px;
    right: -1px;
    bottom: -1px;
    z-index: 0;
    background-color: #fbead5;
    border-radius: inherit;
}

.th-modal .modal-header .tags-list .tag > * {
    position: relative;
    z-index: 2;
}

.th-modal .filter-dropdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5rem;
}

.th-modal .form-select {
    border-color: var(--border-color) !important;
    font-size: 0.8125rem;
    color: var(--text-color);
    background-size: 10px 10px;
}

.th-modal .form-select:focus {
    border-color: var(--primary-color) !important;
}

.th-modal .filter-price .filter-price__label {
    font-weight: 500;
}

.th-modal .filter-price__radios .filter-radio {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    white-space: nowrap;
    border-radius: 0.25rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.th-modal .filter-price__radios .filter-radio .checked {
    position: absolute;
    top: 2px;
    right: 2px;
    color: #fff;
    z-index: 0;
    font-size: 8px;
}

.th-modal .filter-price__radios .filter-radio label {
    position: relative;
    z-index: 10;
    display: inline-block;
    cursor: pointer;
    border-radius: inherit;
    padding: 0.5rem 0.75rem;
}

.th-modal .filter-price__radios .filter-radio .triangle {
    display: inline-block;
    border-style: solid;
    border-width: 0 24px 24px 0;
    border-color: #fff var(--primary-color) #fff #fff;
    position: absolute;
    top: -2px;
    right: -2px;
    opacity: 0;
    visibility: hidden;
    transition: inherit;
}

.th-modal .filter-price__radios .filter-radio > input:checked ~ .triangle {
    opacity: 1;
    visibility: visible;
}

.th-modal .filter-price__radios .filter-radio > input:checked + label {
    border-color: var(--primary-color);
}

.th-modal .modal-block__last .filter-group {
    display: grid;
    grid-template-columns: 1fr 252px;
    align-items: center;
}

.th-modal .theme-form {
    width: 100%;
    padding-left: 2rem;
}

.th-modal .theme-form input {
    width: 100%;
    padding: 0.375rem 0.75rem;
    min-height: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 99px;
    font-size: 1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.th-modal .modal-block__body {
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    height: 365px;
    max-height: 365px;
    overflow: auto;
}

.th-modal .modal-block__body::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
}

.th-modal .modal-block__body::-webkit-scrollbar-thumb {
    background-color: #999;
}

.th-modal .modal-block__body::-webkit-scrollbar-track {
    box-shadow: rgb(0 0 0 / 30%) 0 0 6px inset;
    background-color: #f5f5f5;
}

.th-modal .item {
    padding: 0 1rem;
}

.th-modal .item .item-wrapper {
    display: grid;
    grid-template-columns: 12.5% 1fr 18% 12.5%;
    grid-gap: 0.5rem;
    padding: 0.5rem 0;
    align-items: center;

}

.th-modal .item + .item > .item-wrapper {
    border-top: 1px solid var(--border-color);
}

.th-modal .item .item-media .item-media__wrapper {
    width: 70px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 0.25rem;
    margin: 0 auto;
}

.th-modal .item .item-main .item-code,
.th-modal .item .item-main .item-name {
    font-size: 0.875rem;
}

.th-modal .item .item-main .item-name > a {
    color: var(--text-color);
}

.th-modal .item .item-main .item-name > a:hover {
    color: var(--bs-primary);
}

.th-modal .item .item-main .item-code {
    color: var(--text-lighter);
    margin-top: 0.25rem;
}

.th-modal .item .item-price {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    flex-flow: column nowrap;
}

.th-modal .item .item-price .price-bottom {
    font-size: 12px;
    font-weight: 400;
    display: flex;
}

.th-modal .item .item-price .price-bottom .price-original {
    color: var(--text-lighter);
    text-decoration: line-through;
}

.th-modal .item .item-price .price-present {
    color: var(--red-color);
    margin-left: 0.25rem;
}

@media (max-width: 767px) {
    .th-modal .modal-block__body {
        height: 260px;
        max-height: 260px;
    }

    .th-modal .filter-price {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
    }

    .th-modal .filter-dropdown {
        grid-template-columns: repeat(2, 1fr);
    }

    .th-modal .filter-price__radios {
        grid-template-columns: repeat(auto-fill, 130px);
        padding: 0.5rem 0;
    }

    .th-modal .filter-price__radios .filter-radio label {
        width: 120px;
    }

    .th-modal .modal-block__last .filter-group {
        grid-template-columns: 1fr;
        grid-gap: 0.75rem;
    }

    .th-modal .theme-form {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .th-modal .filter-dropdown {
        grid-template-columns: 1fr;
    }

    .th-modal .item .item-wrapper {
        grid-template-columns: repeat(2, auto);
    }

    .th-modal .item .item-wrapper .item-price {
        justify-self: center;
    }

    .th-modal .item .item-wrapper .item-price .price-top {
        font-size: 0.875rem;
    }

    .th-modal .item .item-wrapper .item-action {
        justify-self: end;
    }
}


.action-btn {
    border-radius: 0.25rem;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    position: relative;
    height: 2rem;
    width: 4rem;
}

.action-btn:hover {
    background-color: var(--primary-hover);
    border: 1px solid var(--primary-hover);
}

.th-modal .pagination {
    padding: 1rem 1rem;
    justify-content: center;
    margin-bottom: 0;
}

.th-modal .pagination .page-item {
    display: inline-block;
    padding: 0 0.25rem;
}

.th-modal .pagination .page-link {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    border-radius: 0.25rem;
}

.th-modal .pagination .page-item.pageactive .page-link {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.th-modal .modal-block__body {
    position: relative;
    z-index: 1;
}

.th-modal .modal-block__body::before,
.th-modal .modal-block__body::after {
    content: '';
    position: absolute;
    z-index: -1;
}

.th-modal .modal-block__body::before {
    content: attr(data-text-not-found);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transition: 0.25s cubic-bezier(0, 0, 0.2, 1);
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
}

.th-modal .modal-block__body::after {
    display: inline-block;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    border: 3px solid var(--primary-color);
    border-left-color: #fff;
    border-radius: 999px;
    opacity: 0;
    visibility: hidden;
    animation: spin 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.th-modal .modal-block__body.not-found::before,
.th-modal .modal-block__body.loading::before,
.th-modal .modal-block__body.loading::after {
    opacity: 1;
    visibility: visible;
    z-index: 100;
}

.th-modal .modal-block__body.not-found::before,
.th-modal .modal-block__body.loading::before {
    width: 100%;
    height: 100%;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.th-modal .modal-block__body.not-found {
    overflow: hidden;
}

.th-modal .modal-block__body.not-found::before {
    width: 100%;
    height: 100%;
    background: #fff var(--bgURL) center / 200px no-repeat;
    color: var(--text-color);
}

.aside-widget {
    --text-color: #333;
    --border-color: #E0E0E0;
    --text-lighter: #757575;
}

.aside-widget {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--bs-gray-300);
    /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
}

.widget-cost > * + * {
    margin-top: 0.5rem;
}

.widget-cost .widget-cost__price {
    display: flex;
    flex-flow: row nowrap;
    font-size: 1rem;
}

.widget-cost .widget-cost__price > .label {
    flex-shrink: 0;
    display: inline-block;
}

.widget-cost .widget-cost__price > .price {
    flex-grow: 1;
    display: inline-block;
    padding-left: 0.25rem;
}

.widget-cost .widget-cost__original {
    text-decoration: line-through;
    color: var(--text-lighter);
}

.widget-cost .widget-cost__final {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.widget-cost .widget-cost__discount {
    color: #d70018;
    font-weight: 700;
    font-size: 0.875rem;
}

.widget-cost .widget-cost__title {
    color: var(--text-color);
    font-size: 1rem;
}

.aside-wiget__actions > * + *,
.widget-cost__actions {
    margin-top: 1rem;
}

.aside-widget + .aside-widget {
    margin-top: 2rem;
}

.btn-widget {
    --btn-background: var(--gray-200);
    --btn-color: var(--text-color);
    --btn-border: transparent;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    border: 2px solid var(--btn-border);
    width: 100%;
    font-size: 1.05em;
    font-weight: 500;
    color: var(--btn-color);
    background-color: var(--btn-background);
    padding: 0.5rem 0;
    border-radius: 0.25rem;
    transition-property: background-color, border-color, color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.btn-widget.btn-wiget-outline:hover,
.btn-widget:hover {
    --btn-background: var(--primary-color);
    --btn-border: var(--btn-background);
    --btn-color: #fff;
}

.btn-widget.btn-wiget-outline {
    --btn-background: #fffff;
    --btn-color: var(--text-color);
    --btn-border: currentColor;
}

.btn-widget.btn-wiget-primary {
    --btn-background: var(--primary-color);
    --btn-border: var(--btn-background);
    --btn-color: #fff;
}

.btn-widget.btn-wiget-primary:hover {
    --btn-background: #fff;
    --btn-border: currentColor;
    --btn-color: var(--primary-color);
}

.button-theme {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 4px;
    outline: none;
    position: relative;
    overflow: hidden;
    border: 0;
    transition: var(--transition-default);
    font-size: 1.1em;
    text-transform: uppercase;
}

.button-theme_primary {
    color: var(--bs-white) !important;
    background-color: var(--primary-color);
}

/* Ẩn phần in ấn khi xem trên web */
.print-only {
    display: none;
}

#page-header {
    position: fixed !important;
    width: 100% !important;
    top: 0;
    height: 100px;
    background-image: url("/public/upload/files/header-print.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-print-color-adjust: exact;
}

#page-footer {
    position: fixed !important;
    height: 300px;
    width: 100% !important;
    bottom: 0;
    background-image: url("/public/upload/files/footer-print.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-print-color-adjust: exact;
}

@media print {
    /* Ẩn tất cả các thành phần website (menu, nút bấm, sidebar) */
    body * {
        visibility: hidden;
        height: 0;
    }

    /* Chỉ hiển thị phần print-section */
    .print-only, .print-only * {
        visibility: visible;
    }

    .print-only {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .print-table {
        width: 99.9%;
        border-collapse: collapse;
        margin-top: 20px;
        table-layout: fixed; /* Ép table tuân thủ đúng chiều rộng định sẵn */
        border-right: 1px solid #000 !important;
        box-sizing: border-box;
    }

    .print-table th, .print-table td {
        border: 1px solid #000;
        padding: 8px;
        text-align: left;
        box-sizing: border-box;
    }

    /* Cố định Header và Footer ở mỗi trang khi in nhiều trang */
    @page {
        size: A4;
        margin: 20mm;
    }
}

.logoCenterPC {
    width: 150px;
}

.logoCenterPC a {
    position: absolute;
    left: 0;
    top: -29px;
    width: 100%;
    padding: 10px !important;
    height: 100px;
    background-color: var(--primary-color);
    box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12), 0 10px 32px -4px rgba(24, 39, 75, 0.1);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.logoCenterPC img {
    width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .logoCenterPC {
        display: none;
    }

    .header-bottom,
    .header-scroll .header-bottom {
        background-color: var(--primary-color);
    }
}