html{
    scroll-behavior: smooth;
}


.bg-whitesmoke {
    background: whitesmoke;
}

.space-7_5 {
    margin: 0 -.75rem;
}

.space-7_5 > div {
    padding: 0 .75rem;
}

.row-align-center-custom > div:nth-child(1) {
  height: 50vh;
}


/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ecedf1;
    max-height: 16.5rem;
}

header.fixed{
    position: fixed;
    animation: stuckMoveDown .6s;
    -moz-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.1);
}

.is-mobile header {
	position: relative;
	max-height: unset;
	z-index: 2;
}
.is-mobile header.fixed {
    position: relative;
}

.top_body_box {
    transition: 400ms ease-in-out 0 ;
}

@media(max-width: 764px) {
    .top_body_box.fixed{
        padding-top: 0 ;
    }
    
}

body {
    padding-top: 14.225rem;
}

@keyframes stuckMoveDown {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes stuckMoveUp {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-100%)
    }
}

/*.shake {*/
/*  animation: shake 1.5s cubic-bezier(.36,.07,.19,.97) infinite;*/
/*  transform: translate3d(0, 0, 0);*/
/*  backface-visibility: hidden;*/
/*  perspective: 1000px;*/
/*}*/

/*@keyframes shake {*/
/*  10%, 90% {*/
/*    transform: translate3d(-1px, 0, 0);*/
/*  }*/
  
/*  20%, 80% {*/
/*    transform: translate3d(2px, 0, 0);*/
/*  }*/

/*  30%, 50%, 70% {*/
/*    transform: translate3d(-4px, 0, 0);*/
/*  }*/

/*  40%, 60% {*/
/*    transform: translate3d(4px, 0, 0);*/
/*  }*/
/*}*/

.header_st {
    position: relative;
}

.header_st > .container > .row > div {
    display: flex;
    justify-content: flex-end;
}

.header_st .logo-section {
    position: absolute;
    top: -6.5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.setting-menu > .container > .row > div {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.setting-menu > .container > .row > div::before {
    content: "";
    position: absolute;
    top: 0;
    height: .1rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: var(--gray);
}

.header_search input,
.btn_search button {
    height: 3.6rem;
}

.header_search input {
    border-radius: 3rem;
    padding-left: 4.5rem;
    max-width: 100%;
    width: 32rem;
}

.btn_search {
    position: absolute;
    top: 0;
    left: 0;
}

.btn_search button {
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--gray-bold);
    font-size: 1.6rem;
    width: 4rem;
    padding: 0 1.4rem;
}

.text-box {
    font-size: clamp(0.455rem, 1vw - 0.05rem, 1.4rem);
}

.is-mobile .logo-section img {
	max-height: 50.93vh;
	position: absolute;
	max-width: 89vw;
	width: 44rem;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 40.93vh;
}

.catalogue-menu {
    background-color: var(--color-highlight);
    color: var(--white);
    padding: 0.1rem 1rem;
    transition: 0.3s ease-in-out;
}

.catalogue-menu a {
    color: var(--white) !important;
}

.catalogue-menu:hover {
    background-color: var(--color-main);
}
.catalogue-menu:hover a {
    color: inherit;
}


@keyframes flashTextColor {
    0% {
        left: -100px
    }

    20% {
        left: 100%
    }

    100% {
        left: 100%
    }
}

.flashing-text {
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.flashing-text:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient( 120deg, rgba(255,255,255, 0) 30%, rgba(255,255,255, .8), rgba(255,255,255, 0) 70% );
    overflow: hidden;
    top: 0;
    left: -100px;
    animation: flashTextColor 3s infinite linear;
}

.menu-section .entry-menu.dropdown {
    padding: 0;
}

.menu-section .menu-link {
    padding: 0.7rem 1.7rem;
}

.menu-section .entry-menu.dropdown li:hover > a {
    background-color: var(--color-highlight);
    color: var(--white);
}

/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.main_video_or_image img,
.main_video_or_image video,
.main_video_or_image iframe {
    width: 100%;
    object-fit: cover;
}

.bl_video .row {
    margin: 0 -.75rem;
}

.bl_video div[class^="col-"] {
    padding: 0 .75rem;
}

.box_title {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.box_title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3rem;
    right: -3rem;
    transform: translateY(-50%);
    height: .4rem;
    border: .1rem solid var(--color-highlight);
    z-index: -1;
}

.section-fash-sale {
    background-color: var(--color-highlight);
    padding: 1.5rem;
    border-radius: 1.3rem;
    background-position: center;
}

.title_sale {
    background: linear-gradient(180deg, #1ad0f7 0%, #2940B8 100%);
    padding: 1rem;
    border-radius: .8rem;
}

#time_sale_all_product {
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

#time_sale_all_product p {
    background: red;
    padding: 5px 10px;
    border: 2px solid white;
    text-align: center;
    border-radius: 3rem;
    margin: 0 .5rem;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.section-fash-sale .title-section img {
    width: 4.5rem;
    margin-right: 1rem;
}

.section-fash-sale .product-item {
    background: white;
}

.section-flashsale {
    position: relative;
}

.section-flashsale:before, .section-flashsale:after {
    content: "";
    position: absolute;
    height: 130%;
    width: calc(120px + (100vw - 1440px) / 2);
    top: 50%;
    transform: translateY(-50%);
    background: var(
    --color-highlight);
    z-index: -1;
}

.section-flashsale:before {
    left: 0;
    -webkit-clip-path: polygon(0% 0%, 93.535% 11.004%, 93.535% 11.004%, 94.664% 11.161%, 95.705% 11.355%, 96.652% 11.582%, 97.496% 11.84%, 98.23% 12.125%, 98.848% 12.433%, 99.341% 12.762%, 99.702% 13.109%, 99.924% 13.469%, 100% 13.841%, 100% 86.159%, 100% 86.159%, 99.924% 86.531%, 99.702% 86.891%, 99.341% 87.238%, 98.848% 87.567%, 98.23% 87.875%, 97.496% 88.16%, 96.652% 88.418%, 95.705% 88.645%, 94.664% 88.839%, 93.535% 88.996%, 0% 100%, 0% 0%);
    clip-path: polygon(0% 0%, 93.535% 11.004%, 93.535% 11.004%, 94.664% 11.161%, 95.705% 11.355%, 96.652% 11.582%, 97.496% 11.84%, 98.23% 12.125%, 98.848% 12.433%, 99.341% 12.762%, 99.702% 13.109%, 99.924% 13.469%, 100% 13.841%, 100% 86.159%, 100% 86.159%, 99.924% 86.531%, 99.702% 86.891%, 99.341% 87.238%, 98.848% 87.567%, 98.23% 87.875%, 97.496% 88.16%, 96.652% 88.418%, 95.705% 88.645%, 94.664% 88.839%, 93.535% 88.996%, 0% 100%, 0% 0%);
}

.section-flashsale:after {
    right: 0;
    -webkit-clip-path: polygon(100% 0%, 6.466% 11.004%, 6.466% 11.004%, 5.337% 11.161%, 4.295% 11.355%, 3.349% 11.582%, 2.504% 11.84%, 1.77% 12.125%, 1.152% 12.433%, .659% 12.762%, .298% 13.109%, .076% 13.469%, 0% 13.841%, 0% 86.159%, 0% 86.159%, .076% 86.531%, .298% 86.891%, .659% 87.238%, 1.152% 87.567%, 1.77% 87.875%, 2.504% 88.16%, 3.349% 88.418%, 4.295% 88.645%, 5.337% 88.839%, 6.466% 88.996%, 100% 100%, 100% 0%);
    clip-path: polygon(100% 0%, 6.466% 11.004%, 6.466% 11.004%, 5.337% 11.161%, 4.295% 11.355%, 3.349% 11.582%, 2.504% 11.84%, 1.77% 12.125%, 1.152% 12.433%, .659% 12.762%, .298% 13.109%, .076% 13.469%, 0% 13.841%, 0% 86.159%, 0% 86.159%, .076% 86.531%, .298% 86.891%, .659% 87.238%, 1.152% 87.567%, 1.77% 87.875%, 2.504% 88.16%, 3.349% 88.418%, 4.295% 88.645%, 5.337% 88.839%, 6.466% 88.996%, 100% 100%, 100% 0%);
}

.prd-item-cate {
    background: white;
    display: block;
    border-radius: 1rem;
    font-weight: 500;
    border: 1px solid var(--gray);
    margin: 1%;
    box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

.prd-item-cate:hover {
    box-shadow: 1px 2px 5px 2px #b3afaf;
}

.prd-item-cate img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.prd-cate-title {
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    background: var(--color-highlight);
    font-weight: 700;
    border-bottom-right-radius: 1rem;
    font-size: 1.25rem;
    padding: 1rem;
    border-bottom-left-radius: 1rem;
}

.content-filter-product {
    position: fixed;
    width: 32rem;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1100;
    background-color: #fff;
    overflow: auto;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate3d(-32rem, 0, 0);
    -moz-transform: translate3d(-32rem, 0, 0);
    -ms-transform: translate3d(-32rem, 0, 0);
    -o-transform: translate3d(-32rem, 0, 0);
    transform: translate3d(-32rem, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    -webkit-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
}

.content-filter-product.open {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.filter-url .back-drop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1020;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.filter-url .back-drop.open {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.content-filter-head {
    background: #faf9f8;
    padding: 2rem 3rem;
}

.content-detail-product {
    border: 1px solid #e3e3e3;
    padding: 10px;
    margin-bottom: 10px;
}

.ratio-image-cate {
    padding-top: 23%;
}

/*chi tiet san pham*/
.prd-detail-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.cart-item .product-title {
	height: unset;
}

.product-detail-specifications table .row-info p {
    margin: 0;
}

.product-detail-specifications table tr td:first-child {
    width: 35%;
    background: #cdcdcd;
}

/*show room*/
.shops-system .list > .bg-shop:nth-child(odd) {
    background: whitesmoke;
}

.shops-system .list > .bg-shop {
    padding: 3rem 0;
}

.shop-city {
    text-align: center;
    background: var(--color-highlight);
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 2rem 0;
}

.shop-info .shop-name {
    font-size: 2.45rem;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.shop-info .shop-name:before {
    content: "";
    width: 10rem;
    height: .3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-highlight);
}

.shop-info {
    font-size: 1.6rem;
}

.shop-info span {
    font-weight: bold;
}

.box-map {
    background: var(--color-highlight);
    padding: 1rem;
    border-radius: 1rem;
}

.box-map .map-info {
    padding-top: 40%;
}

.shop-address {
    display: flex;
    align-items: center;
    color: white;
    padding-top: 1rem;
}

.shop-address i {
    font-size: 5rem;
}

.shop-address .shop-add-info {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.shop-address .shop-add-info p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
}

.banner-shop {
    padding: 3rem 0 0 0;
    background-position: center bottom;
    background-size: contain;
    border-bottom: 1rem solid var(--color-highlight);
    background-repeat: repeat-x;
}

.icon-simple img {
    width: 20rem;
    animation-name: fadeInLeftBig;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

.icon-shop img {
    width: 30rem;
}

.title-banner-shop {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.desc-banner-shop {
    font-size: 2rem;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.image-utilities-shop img {
    width: 6.4rem;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.utilities-shop--tile {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 1rem;
}

.highlight-item {
    height: 100%;
    background: #211d700f;
    padding: 1rem;
    border-radius: .5rem;
    border-bottom: .2rem solid var(--color-highlight);
}

.highlight-item:hover {
    box-shadow: 1px 2px 5px 2px #b3afaf;
}

.highlight-image {
    height: 3rem;
}

.highlight-image img {
    height: 5rem;
    transform: translateY(calc(-50% - 1rem));
}

.highlight-tile {
    color: var(--color-highlight);
    font-size: 2.2rem;
    font-weight: 700;
}

.highlight-description {
    font-size: 1.8rem;
}

.bg-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
}

.html1-pay-info {
    font-size: 2rem;
    color: white;
}

.html1-pay-info h1 {
    font-size: 3rem;
}

.html1-pay-info h1 > b {
    font-size: 5rem;
}

.btn-registertrial {
    position: relative;
    padding: 1.4rem 1.7rem;
    font-size: 1.6rem;
    line-height: 2rem;
    border: 0;
    border-radius: 0.8rem;
    background: var(--bg-grd);
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.btn-registertrial:before, .btn-registertrial:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.8rem;
    z-index: 0;
    background: transparent;
}

.btn-registertrial:after {
    animation: pulse-blue-small-sm 3s infinite;
}

.btn-registertrial:before {
    animation: pulse-blue-medium-sm 3s infinite;
}

@keyframes pulse-blue-small-sm {
    0% {
        box-shadow: 0 0 0 0 rgb(18 97 211 / 70%);
    }
    100%,
    30% {
        box-shadow: 0 0 0 12px transparent
    }
}

@keyframes pulse-blue-medium-sm {
    0% {
        box-shadow: 0 0 0 0 rgb(143 81 248 / 70%);
    }
    100%,
    30% {
        box-shadow: 0 0 0 20px transparent
    }
}

.btn-registertrial:hover {
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 2px 5px 0 0 #f66a20;
    color: #fff !important;
}

.section-payment {
    position: relative;
}

.section-payment:before, .section-payment:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-highlight);
    z-index: -1;
}

.section-payment:before {
    left: calc(-30rem + 2vw);
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
}

.section-payment:after {
    right: calc(-77rem + 2vw);
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
}

.html2-pay-info .h3 {
    color: var(--color-highlight);
}

.html2-pay-info .h3 > b {
    font-size: 3.5rem;
}

.item-pay {
    background-color: #edf6ff;
    padding: 1.5rem;
    border-radius: 1rem;
}

.item-pay-qr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.image-qr img {
    max-height: 25rem;
}

.item-pay-qr span {
    background: var(--color-highlight);
    color: white;
    padding: 1rem;
    font-size: 2rem;
    margin-right: 2rem;
    border-radius: 1rem;
}

.bg-payment {
    background: #edf6ff;
}

.read_more {
    border-radius: 1rem;
    line-height: 1;
    padding: 1.5rem 3rem;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 500;
}

.is_cate .box_title {
    display: none;
}

.title_catalogue {
    font-size: 4.4rem;
    text-transform: none;
    padding: 0;
    margin-top: 1.5rem;
}

.catalogue-item {
    box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    border-radius: 1rem;
}

.catalogue-title {
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    background: #fff;
    color: var(--color-highlight);
    margin: .8rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.catalogue_hover {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-color: rgb(0 0 0 / 58%);
    transition: all .3s linear;
}

.catalogue-item .inner-image:hover .catalogue_hover{
    opacity: 1;
    visibility: visible;
}

.catalogue_hover img {
    height: 6rem;
}

.catalogue_hover span {
    display: block;
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    padding-top: .5rem;
}

.bg_contact {
    background-size: cover;
}

.content_contact label:not([class^="error"]) {
    color: var(--color-highlight);
    font-size: 1.6rem;
    padding-bottom: .5rem;
}

.title_contact {
    font-size: 3.2rem;
    color: var(--color-highlight);
}

.des_contact {
    font-size: 1.6rem;
}

.btn_contact {
    border-radius: .8rem;
    color: white;
    background-color: var(--color-highlight);
    border: .2rem solid var(--color-highlight);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.list_truso {
	border: .1rem solid white;
	padding: 1.5rem;
	background-color: #fff9e3;
	color: var(--color-main);
	border-radius: 1rem;
}

.truso_item p {
    font-size: 1.6rem;
}

.truso_title {
    font-size: 1.8rem;
    font-weight: 700;
}

.link_map {
    color: var(--blue) !important;
    font-weight: 700;
}

.attribute_label {
    color: var(--red) !important;
    font-size: 1.69rem;
    font-weight: 700;
}

.khuyenmai_new {
    margin-top: 2rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 1px 0px 4px 3px #ddd;
    margin-bottom: 2rem;
    border: 1px solid;
    border-style: dashed;
}

.title_promotion {
    color: var(--red);
    font-size: 2rem;
    font-weight: 700;
}

.sticky_right > .container > .row > div:last-child {
    position: sticky;
    top: 5rem;
    height: max-content;
    z-index: 900;
}

.view-small .star-rating::before,
.view-small .star-rating span::before {
    font-size: 1.2rem;
}

.btn_cart_small {
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/*CSS by quyettq*/

.box-anh-quangcao-header img {
    width: 200px;
}

.box-anh-quangcao-header {
    position: relative;
    float: right;
    margin-top: -120px;
    z-index: 9;
    right: 80px;
}

/*nut lien he rung lac*/
.rung-lac-home {
    -webkit-animation: shake-top 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
    animation: shake-top 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

@-webkit-keyframes shake-top {
    0%, 100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }

    10% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }

    20%, 40%, 60% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }

    30%, 50%, 70% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }

    80% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }

    90% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
}

@keyframes shake-top {
    0%, 100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }

    10% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }

    20%, 40%, 60% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }

    30%, 50%, 70% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }

    80% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }

    90% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
}

.article-item .gradient-background {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
    border-bottom-right-radius: 25px;
}

.animation--border {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.animation--border::before {
    content: "";
    background-image: conic-gradient(var(--color-highlight) 20deg, transparent 120deg);
    width: 150%;
    height: 150%;
    position: absolute;
    animation: rotate 2s linear infinite;
}

.bl_video .article-item .inner_video,
.bl_video .article-item .inner-image  {
    border-radius: 25px;
    overflow: hidden;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.wrp-effect-change-img {
    position: relative;
}

.wrp-effect-change-img .effect-change-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 10;
}

.wrp-effect-change-img:hover .effect-change-img img {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

/*social footer*/
.hotline-phone-ring-wrap {
    right: 10px;
    bottom: 10px;
    position: fixed;
    z-index: 1025;
}

.is-mobile .hotline-phone-ring-wrap{
      bottom: 50px;
}


.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    right: 10px;
    bottom: 0;
    display: block;
}

.hotline-phone-ring-circle {
    width: 70px;
    height: 70px;
    top: -15px;
    right: -15px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid var(--color-highlight);
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

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

.hotline-phone-ring-img-circle {
    background-color: transparent;
    width: 40px;
    height: 40px;
    top: 0px;
    right: 0px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hotline-phone-ring-img-circle img {
    border-radius: 50%;
    overflow: hidden;
}

.hotline-bar {
    position: absolute;
    background: rgb(246 68 57 / 0.75);
    height: 40px;
    max-width: 200px;
    line-height: 40px;
    background-size: 100%;
    cursor: pointer;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    z-index: 9;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px !important;
    left: 33px;
    bottom: 37px;
    text-align: center;
    color: #fff;
    padding: 0 3rem 0 6rem;
    width: max-content;
    z-index: 0;
}

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

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

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    
}
/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
footer {
    background: url(https://cdn4846.cdn4s8.io.vn/media/abstract_bg2.jpg);
    background-attachment: fixed;
    border-top: .1rem solid #fff;
    background-size: cover;
}

.f-tong_dai p {
    font-size: 1.6rem;
    color: white;
    text-align: justify;
}

.f-tong_dai a {
    color: var(--white);
    font-weight: 600;
}

.f-transport {
    display: inline-flex;
    flex-wrap: wrap;
    background-color: var(--light);
    padding: .5rem;
}

.f-transport li {
    list-style: none;
}

.f-transport li img {
    width: 5rem;
    background-color: white;
}


.social-section a {
    background: var(--color-highlight);
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    color: white;
}

.entire-info-website address {
    margin-bottom: 2.5rem;
}

.entire-info-website .block-tab.nav .nav-link.active {
    background: white;
    font-weight: bold;
    color: #002152;
}

.entire-info-website .block-tab.nav .nav-item {
    margin-right: 0;
}

.entire-info-website .block-tab.nav .nav-link {
    border-radius: 0;
    padding: .8rem 3rem;
    text-transform: capitalize !important;
}

.entire-info-website .tab-content {
    color: #002152;
    padding: 2.5rem 1.5rem;
    border-radius: 0 0 .8rem .8rem;
    box-shadow: 0 3px 6px 0px rgb(0 0 0 / 16%);
}

.entire-info-website address p i {
    font-size: 17px;
    width: 30px;
    aspect-ratio: 1/1;
    color: #002152;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .8rem;
}

.entire-info-website address p:nth-child(n+2) i {
    background: #002152;
    color: white;
    border-radius: 100%;
}
/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
@media (min-width: 992px) {
    .home .menu-vertical--content {
        display: block !important;
        margin-top: 1rem;
        height: 30rem;
        overflow-y: scroll;
    }
    
    .home .menu-vertical--content::-webkit-scrollbar {
        width: .5em;
    }
     
    .home .menu-vertical--content::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: white;
    }
     
    .home .menu-vertical--content::-webkit-scrollbar-thumb {
        background-color: #196bcf;
    }
    
    .home .menu-vertical--content .full-width {
        height: calc(100% - 1rem);
        margin-top: 1rem;
    }
}

.box-table-nav .table-content .list-item .table-content .list-item {
    list-style: none;
} 

.btn-price-sp {
    text-align: center;
}

.btn-price-sp .price .price-amount {
    border: 1px solid red;
    padding: 3px 15px;
    border-radius: 30px;
}

.btn-price-sp .price:hover .price-amount {
    background-color: red;
}

.btn-price-sp .price:hover .price-amount {
    color: white;
}

