.pt-100 {
    padding-top: 100px;
}

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

.bg-red {
    background-color: var(--red);
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.second_img {
    opacity: 0;
    transition: .5s all;
}

.inner-image:hover .second_img {
    opacity: 1;
}

#google_translate_element {
    position: fixed;
    top: 8rem;
    right: 2rem;
    z-index: 10;
}

#google_translate_element > .goog-te-gadget > span {
    display: none;
}

.goog-te-menu-value span:first-child {
    display: none;
}

.goog-te-menu-value {
    padding-left: 30px !important;
    background: url('https://flagcdn.com/w40/gb.png') no-repeat left center;
    background-size: 20px 15px;
}

#google_translate_element .goog-te-combo option[value="en"] {
    background-image: url('https://flagcdn.com/w40/gb.png');
}

.goog-te-combo option[value="vi"] {
    background-image: url('https://flagcdn.com/w40/vn.png');
}

.goog-te-combo option[value="fr"] {
    background-image: url('https://flagcdn.com/w40/fr.png');
}

.goog-te-combo option[value="ja"] {
    background-image: url('https://flagcdn.com/w40/jp.png');
}

.goog-te-combo option[value="ko"] {
    background-image: url('https://flagcdn.com/w40/kr.png');
}

.goog-te-combo option[value="zh-CN"] {
    background-image: url('https://flagcdn.com/w40/cn.png');
}

.skiptranslate.goog-te-gadget {
    color: transparent;
    font-size: 0;
    padding-left: 20px;
}

.goog-te-gadget .goog-te-combo {
    border: 0;
    margin: 4px 0;
}

.goog-te-gadget .goog-te-combo {
    border-radius: 5px;
    padding: 0.8rem 0rem 0.7rem 0.3rem;
    border: 1px solid var(--color-black);
    outline: none;
}

/*header*/
.slogan-header {
    color: #fff;
    display: flex;
    align-items: center;
}

.slogan-header span.slogan {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.slogan-header span.slogan svg {
    margin-right: 5px;
}

.box-header-top>.container>.row>div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-menu-top>ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.header-menu-top>ul>li {
    list-style: none;
    margin-left: 15px;
}

.header-menu-top>ul>li>a {
    color: #fff !important;
}

.header-menu-top>ul>li>a>i {
    display: inline-block;
    margin-right: 8px;
}

.box-search .input-group {
    border: 1px solid var(--color-highlight);
    border-radius: 8px;
}

.box-search .input-group .form-control {
    height: 42px;
    border: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.box-search .input-group .input-group-append .btn-submit {
    background: white;
    border: 0;
    padding: 0 10px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (min-width: 1200px) {
    .menu-section>ul {
        display: flex;
        justify-content: space-between;
    }

    .menu-section > ul > li:first-child {
        margin-left: 0;
    }
}

/*header*/
.sub-image {
    position: absolute;
}

.sub-image .img-fluid {
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.balloon-slider-1 {
    right: 0;
    top: 0;
    animation: moveY 5s linear 1s infinite alternate running;
}

.balloon-slider-2 {
    bottom: 0;
    left: 0;
    animation: moveY 5s linear 1s infinite alternate running;
}

.cloud-slider-1 {
    top: -5rem;
    right: -25rem;
    animation: moveX 5s linear 1s infinite alternate running;
}

.cloud-slider-2 {
    left: -30rem;
    bottom: 5rem;
    animation: moveX 5s linear 1s infinite alternate running;
}

.ratio-slider {
    animation: moveX-slider 1s linear 1s infinite alternate running;
}

.fly-slider-1.sub-image {
    top: -2rem;
    left: -25rem;
    animation: hide-on 1s linear 1s infinite alternate running;
}

@keyframes hide-on {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes moveX-slider {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(15px);
    }
}

@keyframes moveX {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(45px);
    }
}

@keyframes moveY {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(15px);
    }
}

.bg-marquee {
    display: grid;
    grid-template-columns: repeat(5,minmax(12vmin,1fr));
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bg-marquee:before {
    content: "";
    background: var(--color-highlight);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
}

.item-marquee {
    /*--time: 30s;*/
    position: relative;
    width: max-content;
    grid-column: 1;
    grid-row: 1;
    left: calc(100% * 5);
    animation: marquee var(--time) linear infinite;
}

.item-marquee:nth-of-type(1) {
    animation-delay: calc((var(--time) / 5) * (5 - 1) * -1);
}

.item-marquee:nth-of-type(2) {
    animation-delay: calc((var(--time) / 5) * (5 - 2) * -1);
}

.item-marquee:nth-of-type(3) {
    animation-delay: calc((var(--time) / 5) * (5 - 3) * -1);
}

.item-marquee:nth-of-type(4) {
    animation-delay: calc((var(--time) / 5) * (5 - 4) * -1);
}

.item-marquee:nth-of-type(5) {
    animation-delay: calc((var(--time) / 5) * (5 - 5) * -1);
}

@keyframes marquee {
    to {
        left: -100%;
    }
}

.car-road {
    position: absolute;
    bottom: 10px;
    left: 20%;
}

.car {
    width: 110px;
    position: relative;
}

@-webkit-keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.before-note-pm {
    top: 0;
    right: 0;
    animation: moveY 3s linear 1s infinite alternate running;
}

.after-note-pm {
    bottom: 0;
    left: 0;
    animation: moveY 3s linear 1s infinite alternate running;
}

.box-banner-home {
    position: relative;
}

.inner-banner-home {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 5vw;
    text-align: center;
}

.inner-banner-home * {
    color: white;
}

.title-banner-home {
    font-weight: bold;
    text-transform: capitalize;
    font-size: calc(2.5rem + 1vw);
}

.car-base {
    background: white;
    width: 100%;
    height: 22px;
    border-radius: 2px 5px 10px 10px;
}

.car-top {
    height: 36px;
    width: 66px;
    background: white;
    margin-bottom: -18px;
    border-radius: 100px / 60px;
    margin-left: 15px;
    position: relative;
}

.car-top::before {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 43px solid white;
    position: absolute;
    left: -10px;
    content: '';
}

.car-top::after {
    position: absolute;
    right: -29px;
    content: '';
    top: 14px;
    border-radius: 50% 50% 0 0;
    width: 60px;
    height: 8px;
    background: white;
}

.window {
    position: absolute;
    background: var(--color-highlight);
    width: 42px;
    height: 11px;
    top: 3px;
    border-radius: 50% 50% 0 0;
    left: 12px;
}

.window::before {
    content: '';
    position: absolute;
    left: 20px;
    background: white;
    height: 100%;
    width: 5px;
}

.wheel {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #4a4a4a;
    position: absolute;
    border: 2px solid white;
    -webkit-animation: rotateWheel 0.7s infinite linear;
    animation: rotateWheel 0.7s infinite linear;
}

.wheel::before {
    content: '';
    width: 14px;
    height: 14px;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
}

.wheel:after {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: 3px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a4a4a;
}

.wheel-left {
    left: 12px;
    bottom: -10px;
}

.wheel-right {
    right: 12px;
    bottom: -10px;
}

.wheel-spike {
    position: absolute;
    top: 50%;
    bottom: 4px;
    width: calc(100% - 8px);
    left: 4px;
    height: 3px;
    transform: translateY(-50%);
    background: #4a4a4a;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.head-light {
    position: absolute;
    background: #e2dfcb;
    right: 1px;
    top: 19px;
    border-radius: 50% 15px 15px 50%;
    width: 10px;
    height: 4px;
}

.bg-promotion {
    background: #F5F1EB;
}

.title-holliday {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 4rem;
}

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

.promotion-holliday {
    color: #02010100;
    font-size: 6rem;
    line-height: 62px;
    -webkit-text-stroke-width: 2px;
    stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-highlight);
    stroke: var(--color-highlight);
}

.box-category-product .item .inter-img .img {
    border-radius: 16px;
    overflow: hidden;
}

.box-category-product .item .inter-img {
    margin-bottom: 15px;
}

.box-category-product .item .inter-content {
    text-align: center;
}

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

.box-home-01 {
    margin-bottom: 70px;
    margin-top: 70px;
}

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

.info-benefit .text-benefit .item .short {
    display: inline-block;
    background: var(--color-highlight);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 12px;
    color: white;
}

.info-benefit .text-benefit .item .title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.box-benefit .img {
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.box-benefit .img img {
    animation: moveY 2s linear 1s infinite alternate running;
}

.info-benefit .title-slogan {
    margin-bottom: 45px;
}

.box-home-02 {
    margin-bottom: 70px;
}

.title-tab {
    margin-bottom: 30px;
}

.title-tab .block-tab>li.nav-item {
    margin-right: 10px;
}

.title-tab .block-tab>li.nav-item>.nav-link {
    font-weight: 600;
    color: #7c828f;
    font-size: 14px;
    border-radius: 22px;
    padding: 12px 25px;
    margin-bottom: 0;
    border-bottom: 0;
    border: 1px solid var(--color-highlight);
}

.title-tab .block-tab>li.nav-item>.nav-link.active, .title-tab .block-tab>li.nav-item>.nav-link:hover {
    background: var(--color-highlight);
    color: #fff;
}

.title-tab .title-slogan {
    margin-bottom: 25px;
}

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

.product-item .inner-content .price {
    display: flex;
    justify-content: space-between;
}

.box-note-pm {
    position: relative;
    padding: 60px 0;
}

.box-note-pm .list-image {
    animation: moveY 2s linear 1s infinite alternate running;
}

.box-note-pm .info-note-pm .title-slogan .slogan {
    padding: 10px 15px;
    background: var(--color-highlight);
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 30px !important;
    color: white;
}

.box-note-pm .info-note-pm .title-slogan .dsc {
    font-size: 20px;
}

.box-note-pm .info-note-pm .title-slogan .title-section {
    margin-bottom: 30px;
}

.box-note-pm .list-image .img.image-left {
    padding-top: 160%;
    border-radius: 16px;
    overflow: hidden;
}

.box-note-pm .list-image .item-img {
    margin-bottom: 15px;
}

.box-note-pm .list-image .images-center .item-img:nth-child(1) .image {
    padding-top: 148%;
    border-radius: 20px;
    overflow: hidden;
}

.box-note-pm .list-image .item-img .image {
    border-radius: 20px;
    overflow: hidden;
}

.box-note-pm .list-image .images-right .item-img:nth-child(2) .image {
    padding-top: 115%;
}

.box-note-pm .list-image .item-img:last-child {
    margin-bottom: 0;
}

.box-note-pm .list-image>.row {
    display: flex;
    align-items: center;
}

.box-note-pm .list-image .images-center .item-img:nth-child(2) .image {
    padding-top: 90%;
}

.box-home-03 {
    margin-bottom: 50px;
}

.box-home-04 {
    margin-bottom: 80px;
}

.box-what-customers .title-slogan {
    margin-bottom: 30px !important;
}

.box-what-customers .item {
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 20px;
}

.box-what-customers .item .title {
    font-weight: 700;
    margin-bottom: 15px;
}

.box-what-customers .item .description {
    margin-bottom: 15px;
}

.box-what-customers .item .img-name {
    display: flex;
    align-items: center;
}

.box-what-customers .item .img-name .img {
    flex: 0 0 80px;
    max-width: 80px;
    margin-right: 15px;
}

.box-what-customers .item .img-name .img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.box-what-customers .item .inter-content .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.box-home-05 {
    margin-bottom: 80px;
}

.box-article-home .title-section {
    margin-bottom: 30px;
}

.article-item {
    border: 1px solid var(--color-highlight);
    border-radius: 12px;
    overflow: hidden;
}

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

.article-item .inner-content .post-date {
    margin-bottom: 5px;
}

.article-item.swiper-slide {
    margin-bottom: 0;
}

.swiper .article-item.swiper-slide {
    margin-bottom: 1rem;
}

.box-home-06 {
    margin-bottom: 80px;
}

.title-footer {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: 20px;
}

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

.menu-footer>ul>li {
    list-style: none;
}

.menu-footer>ul>li>a {
    color: var(--color-text);
    display: inline-block;
    margin-bottom: 15px;
}

.box-footer-mid {
    padding-top: 50px;
    border-top: 1px solid #ddd;
}

.box-footer-mid>.container>.row>div:nth-child(1), .box-footer-mid>.container>.row>div:nth-child(2) {
    flex: 0 0 25%;
    max-width: 25%;
}

.box-footer-mid>.container>.row>div:nth-child(3) {
    flex: 0 0 17%;
    max-width: 17%;
}

.box-footer-mid>.container>.row>div:nth-child(4) {
    flex: 0 0 33%;
    max-width: 33%;
}

.embed-responsive-1by1::before {
    padding-top: 80%;
}

.box-form-contact {
    background: #e3f0ff;
    border-radius: 30px;
    overflow: hidden;
}

.box-form-contact .form {
    padding: 20px 70px;
}

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

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

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

.box-form-contact .form .form-group .form-control {
    border-radius: 8px;
    height: 45px;
}

.box-form-contact .form .form-group textarea.form-control {
    height: 90px;
}

.box-form-contact .form .form-group .btn-submit {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 45px;
    padding: 0;
    line-height: 43px;
    border-radius: 8px;
}

.box-form-contact>.row {
    margin-right: 0;
    margin-left: 0;
}

.box-form-contact>.row>div {
    padding: 0;
}

.box-home-07 {
    margin-bottom: 70px;
}

footer .logo-section {
    margin-bottom: 15px;
}

.header-page-title {
    height: 375px;
    background-size: cover;
    backdrop-filter: brightness(60%);
    -webkit-backdrop-filter: brightness(60%);
    margin-bottom: 70px;
}

.header-page-title .breadcrumb {
    height: 100%;
    backdrop-filter: brightness(60%);
    -webkit-backdrop-filter: brightness(60%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-page-title .breadcrumb .content {
    text-align: center;
    position: relative;
    z-index: 9;
}

.header-page-title .breadcrumb .content .title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

.header-page-title .breadcrumb nav.breadcrumbs-section {
    justify-content: center;
}

.header-page-title .breadcrumb nav.breadcrumbs-section a, .header-page-title .breadcrumb nav.breadcrumbs-section a>span {
    color: #fff;
}

.header-page-title .breadcrumb nav.breadcrumbs-section a:last-child::after {
    display: none;
}

.box-section-product-page-01 {
    margin-bottom: 70px;
}

.article-hot .info-article-right .article-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.article-hot .info-article-right .article-item .inner-image {
    flex: 0 0 175px;
}

.article-hot .info-article-right .article-item:last-child {
    margin-bottom: 0;
}

.article-hot .info-article-left .article-item {
    margin-bottom: 0;
    position: relative;
}

.article-hot .info-article-left .article-item .inner-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 9;
}

.article-hot .info-article-left .article-item:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 190px;
    bottom: 0;
    background-image: linear-gradient(0deg, black, transparent);
    z-index: 1;
}

.article-hot .info-article-left .article-item .inner-content .article-title a {
    color: #fff;
}

.article-hot .info-article-left .article-item .inner-content .post-date {
    color: #fff;
}

.article-hot .info-article-left .article-item .inner-content .article-title {
    height: auto;
}

.article-hot .info-article-left .article-item .inner-content .article-description {
    color: #fff;
}

.article-hot {
    margin-bottom: 70px;
}

.article-hot .title-section {
    margin-bottom: 30px;
}

.article-hot .info-article-left .article-item .inner-image .img {
    padding-top: 75.5%;
}

.box-section-atc-page-02 {
    margin-bottom: 70px;
}

.box-article-page .article-item {
    display: flex;
    border: 0;
    border-radius: 0;
}

.box-article-page .article-item .inner-image {
    flex: 0 0 250px;
}

.box-article-page .article-item .inner-content {
    padding: 0 15px;
    flex: 1 1;
}

.box-article-page .article-item .inner-content .article-title {
    height: auto;
}

.box-article-page .article-item .inner-image .img {
    border-radius: 12px;
    overflow: hidden;
}

.view-small {
    border: 1px solid #d1d5db;
    border-radius: 12px;
}

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

.view-small .info {
    padding: 15px;
}

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

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

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

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

.view-small .info .article-item .inner-content .article-title {
    line-height: 1.2;
    margin-bottom: 5px !important;
    height: auto;
}

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

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

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

.product-item .inner-content .attributes .item {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.product-item .inner-content .attributes .item span {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
}

.product-item .inner-content .attributes .item span.value {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.product-item .inner-content .attributes .item span.name {
    padding-right: 1rem ;
}

.product-item .inner-content .attributes .item span.name>i {
    margin-right: 5px;
    color: var(--color-highlight);
    display: inline-block;
    width: 13px;
}

.product-item .inner-content .attributes .item span.value>span {
    margin-left: 3px;
    position: relative;
}

.product-item .inner-content .attributes .item span.value>span:first-child {
    margin-left: 0;
}

.product-item .inner-content .attributes .item span.value>span:before {
    content: ',';
    margin-right: 3px;
}

.product-item .inner-content .attributes .item span.value>span:first-child:before {
    display: none;
}

.box-article-detail .banner-article-detail {
    max-width: calc(100% - 10vw);
    margin-left: auto;
    margin-right: auto;
}

.box-article-detail .banner-article-detail .inner-image img {
    width: 100%;
    height: 25vw;
    object-fit: cover;
    border-radius: 50px;
}

.box-article-detail .article-detail {
    flex-basis: calc(100% - 90px);
    max-width: calc(100% - 90px);
    padding: 30px 20px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.box-article-detail .box-share-article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -140px;
}

.box-article-detail .social-share {
    background: #fff;
    display: inline-block;
    padding: 5px 5px;
    border-radius: 43px;
    border: 1px solid #dddd;
}

.box-article-detail .item-detail-share {
    flex: 0 0 60px;
    max-width: 60px;
}

.box-article-detail .social-share .list-social .btn-social a {
    color: #fff !important;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.box-article-detail .social-share .list-social .btn-social svg {
    width: 40px;
    height: 40px;
}

.box-article-detail .article-detail .article-top .title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    text-transform: upercase;
    padding: 0 50px;
    margin-bottom: 15px;
}

.box-article-detail .article-detail .article-top {
    text-align: center;
}

.box-article-detail .author-view-detail {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: right;
    margin-bottom: 20px;
}

.box-article-detail .author-view-detail .author {
    display: flex;
    align-items: center;
}

.box-article-detail .author-view-detail .author .img-author {
    margin-right: 15px;
}

.box-article-detail .author-view-detail .author .img-author img {
    width: 54px;
    height: 54px;
    border: 4px solid var(--blue-black);
    border-radius: 50%;
}

.box-article-detail .author-view-detail .view {
    background: #EAEAEA;
    padding: 2px 10px;
    border-radius: 20px;
    color: #000;
    font-size: 13px;
}

.box-article-detail .author-view-detail .view i {
    margin-right: 5px;
}

.box-article-detail .social-share .list-social .btn-social:last-child a {
    margin-bottom: 0;
}

.font-detail h2 {
    font-size: 23px;
}

.font-detail h3 {
    font-size: 20px;
}

.font-detail h4 {
    font-size: 18px;
}

.box-section-article-01, .box-section-article-02 {
    margin-bottom: 60px;
}

.box-section-article-02 .title-section {
    margin-bottom: 15px;
}

.box-image-product {
    margin-bottom: 40px;
    position: relative;
}

.box-image-product>.row {
    margin-right: -5px;
    margin-left: -5px;
}

.box-image-product>.row>div {
    padding-right: 5px;
    padding-left: 5px;
}

.box-image-product .img-right .img {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    padding-top: 65.9%;
}

.box-image-product .img-right .img:last-child {
    margin-bottom: 0;
}

.box-image-product .img-left {
    border-radius: 8px;
    overflow: hidden;
}

.product-content-detail-left .product-info-left {
    border: 1px solid #d1d5db;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.product-content-detail-left .product-info-left .product-title-detail {
    font-size: 28px;
    font-weight: 600;
}

.product-content-detail-left .product-info-left .dsc {
    font-size: 16px;
}

.product-content-detail-left .product-info-left .attributes {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.product-content-detail-left .product-info-left .attributes .item {
    margin-right: 30px;
    margin-bottom: 10px;
}

.product-content-detail-left .product-info-left .attributes span.name i {
    display: inline-block;
    color: var(--color-highlight);
    width: 25px;
    margin-right: 0;
}

.product-content-detail-left .product-info-left .attributes .item span.name {
    font-weight: 600;
}

.product-content-detail-right {
    border: 1px solid #d1d5db;
    padding: 30px;
    border-radius: 12px;
    position: sticky;
    top: 0;
}

.product-content-detail-right form .form-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.product-content-detail-right form .form-group span.icon {
    display: inline-block;
    flex: 0 0 40px;
}

.product-content-detail-right form .form-group span.icon svg {
    width: 30px;
    height: 30px;
}

.product-content-detail-right form .form-group input[type="checkbox"] {
    width: 3.5rem;
    transform: scale(1.5);
    position: relative;
    left: -3px;
}

.product-content-detail-right form .form-group span.value {
    flex: 1 1;
}

.product-content-detail-right form .form-group span.value input.form-control {
    border: 0;
    padding: 0;
    height: 35px;
}

.product-content-detail-right form .form-group .btn-submit {
    width: 100%;
    border-radius: 5px;
}

.product-content-detail-right .price {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    align-items: center;
    gap: 1rem;
}

.product-content-detail-right .price-number {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.product-content-detail-right .price-txt:before {
    content: "/";
}

.product-content-detail-right .price .price-amount {
    font-size: 20px;
    margin-left: 0;
}

.product-content-detail-right form .form-group span.value label {
    margin-bottom: 0;
}

.product-content-detail-left .produc-info-left-bottom {
    border: 1px solid #d1d5db;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.product-content-detail-left .produc-info-left-bottom .title, .product-content-detail-left .product-info-left-lt .title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.font-detail>ul {
    padding-left: 20px;
}

.font-detail img {
    width: 100%;
    height: auto;
}

.product-content-detail-right form .form-group textarea.form-control {
    padding: 0;
    border: 0;
}

.box-dt-prd-01, .box-dt-prd-02 {
    margin-bottom: 40px;
}

.swiper-button-prev i, .swiper-button-next i {
    color: #fff;
}

.tags span.tags-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.load-more {
    background: #ffffff;
    position: relative;
    padding: 10px;
}

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

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

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

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

.info-show-content.show .content-text {
    max-height: 100%;
}

.load-more>a>i {
    font-size: 10px;
}

.product-content-detail-left .product-info-left-lt {
    border: 1px solid #d1d5db;
    padding: 30px;
    border-radius: 12px;
}

.product-content-detail-left .product-info-left-lt .card {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.product-content-detail-left .product-info-left-lt .item-title-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    cursor: pointer;
    color: var(--color-highlight);
}

.product-content-detail-left .product-info-left-lt .card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.description-process {
    padding-top: 15px;
}

.product-content-detail-left .product-info-left-lt .item-title-process.collapsed {
    color: #000;
}

.product-content-detail-left .product-info-left-lt .item-title-process.collapsed i:before {
    content: '\f078';
}

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

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

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

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

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

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

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

.box-contact-website .info-form .form-group .btn-submit {
    border-radius: 8px;
}

.box-map-contact {
    background: var(--light);
    margin-top: 50px;
    padding-left: calc((100% - 1170px)/2);
}

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

.info-website .info .item>span {
    display: block;
}

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

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

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

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

.info-website .info .item span.name>svg {
    display: inline-block;
    margin-right: 10px;
}

.info-website .info>.row>div:nth-child(3) .item, .info-website .info>.row>div:nth-child(4) .item {
    margin-bottom: 0;
}

.banner-slider {
    position: relative;
    background-position: bottom;
    padding: 7rem 0;
    overflow: hidden;
}

.contact-right {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 3;
}

.contact-right li.entry-content {
    list-style: none;
}

.contact-right li.entry-content>a {
    margin-top: 10px;
    width: 180px;
    background-color: #fff;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 10px 20px !important;
    display: flex;
    align-items: center;
    color: #000;
}

.contact-right li.entry-content>a>span.icon>img {
    width: 32px;
    height: 32px;
    display: inline-block;
    object-fit: contain;
}

.contact-right li.entry-content>a span.icon {
    display: inline-block;
    margin-right: 10px;
}

.contact-right li.entry-content>a span.content span.name {
    font-weight: 500;
    display: block;
    font-size: 16px;
}

@media (min-width: 1200px) {
    .banner-slider .info-form .form form>.row>div {
        flex: 0 0 28%;
        max-width: 28%;
    }

    .banner-slider .info-form .form form>.row>div:last-child {
        flex: 0 0 16%;
        max-width: 16%;
    }

    .ratio-banner-home {
        padding-top: 40%;
    }
}

@media (max-width: 1200px) {
    .box-home-01 {
        margin-bottom: 30px;
    }

    .title-section {
        font-size: 2.4rem;
    }

    .info-benefit .text-benefit .item .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .info-benefit .text-benefit .item .short {
        margin-bottom: 10px;
    }

    .info-benefit .text-benefit .item {
        margin-bottom: 25px;
    }

    .box-benefit .img {
        border-top-right-radius: 100px;
        border-bottom-left-radius: 100px;
    }

    .info-benefit .title-slogan {
        margin-bottom: 30px;
    }

    .box-home-02 {
        margin-bottom: 30px;
    }

    .title-tab .title-slogan {
        margin-bottom: 15px;
    }

    .title-tab {
        margin-bottom: 15px;
    }

    .box-home-02 {
        margin-bottom: 30px;
    }

    .title-tab .title-slogan {
        margin-bottom: 15px;
    }

    .title-tab {
        margin-bottom: 15px;
    }

    .title-tab .block-tab>li.nav-item>.nav-link {
        padding: 8px 15px;
    }

    .row {
        margin-right: -7.5px;
        margin-left: -7.5px;
    }

    .row>div {
        padding-right: 7.5px;
        padding-left: 7.5px;
    }

    .box-home-03 {
        margin-bottom: 20px;
    }

    .box-note-pm .info-note-pm .title-slogan .slogan {
        margin-bottom: 15px !important;
    }

    .box-note-pm .info-note-pm .title-slogan .title-section {
        margin-bottom: 10px;
    }

    .box-note-pm {
        padding: 30px 0;
    }

    .box-note-pm .info-note-pm .title-slogan .dsc {
        font-size: 15px;
    }

    .info-note-pm {
        margin-bottom: 20px;
    }

    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .box-note-pm .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .box-note-pm .row>div {
        padding-right: 5px;
        padding-left: 5px;
    }

    .box-note-pm .list-image .item-img {
        margin-bottom: 10px;
    }

    .box-home-04,.box-home-05, .box-home-06, .box-home-07 {
        margin-bottom: 30px;
    }

    .box-form-contact .form {
        padding: 15px 20px;
    }

    .box-home-01 {
        margin-top: 30px;
    }

    .title-footer {
        margin-bottom: 15px;
    }

    .menu-footer>ul>li:last-child a {
        margin-bottom: 0;
    }

    .entire-info-website address p:last-child {
        margin-bottom: 0;
    }

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

    .menu-footer>ul>li>a {
        margin-bottom: 10px;
    }

    .entire-info-website address p {
        margin-bottom: 10px;
    }

    .logo-section {
        text-align: center;
    }

    .box-search .icon svg path {
        stroke: var(--color-highlight);
    }

    .header-page-title {
        height: 275px;
        margin-bottom: 30px;
    }

    .box-image-product>.row {
        margin-right: -2.5px;
        margin-left: -2.5px;
    }

    .box-image-product>.row>div {
        padding-right: 2.5px;
        padding-left: 2.5px;
    }

    .box-image-product .img-right .img {
        margin-bottom: 5px;
    }

    .box-image-product {
        margin-bottom: 30px;
    }

    .product-content-detail-left .product-info-left {
        padding: 15px;
        margin-bottom: 30px;
    }

    .product-content-detail-left .product-info-left .product-title-detail {
        font-size: 20px;
    }

    .product-content-detail-left .product-info-left .dsc {
        font-size: 14px;
    }

    .product-content-detail-left .produc-info-left-bottom {
        margin-bottom: 30px;
        padding: 15px;
    }

    .product-content-detail-left .product-info-left-lt {
        padding: 15px;
    }

    .product-content-detail-left .product-info-left-lt .item-title-process {
        font-size: 14px;
    }

    .product-content-detail-left .produc-info-left-bottom .title, .product-content-detail-left .product-info-left-lt .title {
        font-size: 20px;
    }

    .product-content-detail-right {
        padding: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .box-dt-prd-01, .box-dt-prd-02 {
        margin-bottom: 30px;
    }

    .article-hot .title-section {
        margin-bottom: 20px;
    }

    .info-article-left {
        margin-bottom: 15px;
    }

    .article-item .article-title {
        height: 44px;
    }

    .article-hot {
        margin-bottom: 30px;
    }

    .article-hot {
        margin-bottom: 30px;
    }

    .box-section-atc-page-02>.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .box-section-atc-page-02 .box-article-page {
    }

    .box-section-atc-page-02>.container>.row>div:first-child {
        margin-bottom: 30px;
    }

    .box-article-page .article-item .inner-image {
        flex: 0 0 175px;
    }

    .box-article-page .article-item .inner-content {
        padding-right: 0;
    }

    .box-article-page .article-item .inner-content .article-title {
        height: 45px;
    }

    .box-section-atc-page-02 {
        margin-bottom: 30px;
    }

    .box-article-detail .box-share-article {
        margin-top: 30px;
    }

    .box-article-detail .banner-article-detail .inner-image img {
        border-radius: 10px;
        height: 38vw;
    }

    .box-article-detail .article-detail {
        flex: 0 0 100%;
        max-width: 100%;
        border-radius: 8px;
        padding: 15px;
    }

    .box-article-detail .banner-article-detail {
        max-width: 100%;
    }

    .box-article-detail .article-detail .article-top .title {
        font-size: 20px;
        padding: 0;
        margin-bottom: 10px;
    }

    .box-article-detail .article-detail .article-top {
        margin-bottom: 15px;
    }

    .box-article-detail .item-detail-share {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .box-article-detail .social-share {
        border-radius: 8px;
        margin-top: 15px;
    }

    .box-article-detail .social-share .list-social {
        display: flex;
    }

    .box-article-detail .social-share .list-social .btn-social a {
        margin-bottom: 0;
        margin-right: 15px;
    }

    .box-article-detail .social-share .list-social .btn-social:last-child a {
        margin-right: 0;
    }

    .box-section-article-01, .box-section-article-02 {
        margin-bottom: 30px;
    }

    .row.no-gutters>div {
        padding-right: 7.5px;
        padding-left: 7.5px;
    }

    .box-contact-website .info-form .title {
        font-size: 25px;
    }

    .box-contact-website .img {
        margin-bottom: 15px;
    }

    .box-map-contact {
        margin-top: 15px;
    }

    .box-map-contact>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .box-map-contact .info-website {
        padding: 10px 15px 0;
    }

    .info-website .title {
        font-size: 25px;
    }

    .info-website .dsc {
        margin-bottom: 20px;
    }

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

    .info-website .info .item span.name {
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width:1200px) {
    .box-map-contact .info-website {
        padding: 20px;
    }

    .box-footer-mb>.container>.row>div:nth-child(1),.box-footer-mb>.container>.row>div:nth-child(2) {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .box-footer-mb>.container>.row>div {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        margin-bottom: 30px;
    }

    .box-search .icon {
        display: none;
    }

    .swiper-slider-main .swiper-slide img {
        height: 50vw;
    }

    .box-form-contact .form .title {
        font-size: 15px;
    }

    .box-form-contact .form .dsc {
        font-size: 13px;
    }

    .box-form-contact .form .form-group .form-control {
        height: 40px;
    }

    .box-form-contact .form .form-group textarea.form-control {
        height: 60px;
    }

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

    .box-form-contact .form .form-group .btn-submit {
        height: 40px;
        line-height: 38px;
    }

    .box-form-contact .inter-image .img {
        padding-top: 120%;
    }

    .box-article-page .article-item .inner-content .article-title {
        height: auto;
    }
}

@media (min-width: 992px) {
    .col-lg-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 768px) and (max-width:992px) {
    .banner-slider .info-form .form form>.row>div {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .banner-slider .info-form .form form>.row>div:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .banner-slider .info-form .form .btn-submit {
        height: 42px;
        margin-top: 15px;
    }

    .banner-slider .info-form .form {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .header-page-title {
        height: 175px;
    }

    .header-page-title .breadcrumb .content .title {
        font-size: 26px;
    }

    .box-footer-mb>.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .banner-slider .info-form {
        transform: none;
        position: initial;
    }

    .banner-slider .info-form .text {
        position: absolute;
        top: 18vw;
        left: 0;
        z-index: 1;
        width: 100%;
    }

    .banner-slider .info-form .text .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .banner-slider .info-form .text .dsc {
        font-size: 21px;
    }

    .banner-slider .info-form .form {
        margin-top: 15px;
        border: 1px solid #ddd;
    }

    .banner-slider .info-form .form .dropdown {
        margin-bottom: 15px;
    }

    .box-what-customers .title-slogan {
        margin-bottom: 20px !important;
    }

    .article-item .article-description {
        max-height: 61px;
        overflow: hidden;
    }

    .box-footer-mb {
        border-top: 1px solid #ddd;
    }

    .header-menu-mobile>.container>.row>div:nth-child(3) {
        display: flex;
        justify-content: flex-end;
    }

    .box-search:hover form {
        opacity: 1;
        display: block;
    }

    .banner-slider .info-form .form .btn-submit {
        height: 40px;
    }

    .box-form-contact .form .title {
        font-size: 18px;
    }

    .contact-right {
        left: 10px;
        bottom: 10px;
    }

    .contact-right li.entry-content>a {
        padding: 3px !important;
        width: 38px;
        margin-top: 5px;
        border-radius: 50%;
    }

    .contact-right li.entry-content>a span.content {
        display: none;
    }

    .contact-right li.entry-content>a span.icon {
        margin-right: 0;
    }
}

.breadcrumbs-section a:last-child::after {
    display: none;
}

.wrap-suggestion .title-cp {
    line-height: 1.3;
}

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

.wrap-suggestion .price-amount span.currency-symbol {
    margin-left: 0;
}

.box-member-top {
    margin-left: 15px;
    padding: .7rem 0;
    font-size: 1.8rem;
}

#login-modal .modal-content {
    border-radius: 12px;
}

/*css by thai tran*/
.form-search {
    background-image: -webkit-linear-gradient(top, var(--color-highlight), #4595d3);
    border-radius: .8rem;
    padding: 3rem;
    /* margin-bottom: 5rem; */
}

.form-search .row > div {
    flex: 0 0 20%;
    max-width: 20%;
}

.form-search .row > div:first-child {
    flex: 0 0 25%;
    max-width: 25%;
}

.form-search .row > div:last-child {
    flex: 0 0 15%;
    max-width: 15%;
}

.form-search .input-search {
    height: 4.5rem;
    border-radius: .8rem;
}

.form-search .orderby-title {
    display: flex;
    flex-direction: row;
    /*align-items: center;*/
}

.form-search .orderby-title span {
    cursor: pointer;
    display: block;
    color: var(--white);
}

.form-search .orderby-title span.icon {
    width: 4.5rem;
    height: 4.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 10px;
    color: var(--color-highlight);
    background-color: var(--white);
    font-size: 20px;
}

.form-search .orderby-title span[nh-text-change] {
    font-size: 1.3rem;
}

.form-search .btn-submit {
    width: 100%;
    border-radius: 8px;
    height: 4.5rem;
}

.form-search .list-item {
    max-height: 250px;
    overflow-y: auto;
}

.custom-control {
    padding-left: 0;
}

.form-search .dropdown-menu {
    min-width: 170px;
    padding: 0;
}

.form-search .dropdown-menu .list-item .item-check>label {
    display: block;
    margin-bottom: 0;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.form-search .dropdown-menu .checkmark {
    height: 16px !important;
    width: 16px !important;
    min-width: 16px;
    min-height: 16px;
    background-color: #fff;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #464646;
    border-radius: 3px;
    position: relative;
}

body:not(.is-mobile) .popular-tour > .row > div:last-child {
    display: none;
}

.popular-tour .product-item {
    height: auto;
}

.popular-tour .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-tour .product-item .price {
    flex-direction: column;
}

.popular-tour .product-item .old-price {
    margin-left: 0;
}

.is-mobile .form-search .row > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
}

.is-mobile .form-search .row > div {
    flex: 0 0 28%;
    max-width: 28%;
}

.is-mobile .form-search .row > div:last-child {
    flex: 0 0 16%;
    max-width: 16%;
}

.total-booking {
    margin-bottom: 15px;
}

.total-booking .item-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #eaeaea;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.total-booking .item-total:last-child {
    border: 0;
}

.flex-auto {
    flex: auto !important;
}

.flex-50 {
    flex: 0 0 50%;
}

.member-quantity {
    display: flex;
    align-items: center;
}

.member-quantity input {
    width: 7rem;
    height: 4.6rem;
    border: none;
    background-color: transparent;
    padding: 0 0.8rem;
}

.member-quantity .btn-quantity {
    border: 1px solid black;
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/*css by thai tran*/
.inquiry-form {
    -webkit-box-pack: justify;
    /* -webkit-justify-content: space-between; */
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    display: -ms-flexbox;
    display: flex;
    /* margin-top: 4rem; */
    /* -webkit-box-orient: vertical; */
    /* -webkit-box-direction: normal; */
    /* -webkit-flex-direction: column; */
    -ms-flex-direction: column;
    /* flex-direction: column; */
    /* -webkit-flex-flow: wrap; */
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.tour-form-title {
    display: block;
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    color: #0064b6;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.tour-form-group-full {
    width: 100% !important;
}

.tour-form-group {
    width: 45%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tour-form-subgroup, .tour-form-subgroup-2 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.checkbox input {
    margin-right: 1rem;
}

.inquiry-form label {
    font-size: 1.6rem;
    font-weight: 500;
}

.inquiry-form label.invalid-feedback {
    font-size: 1.3rem;
}

.checkbox-input input {
    margin-right: 1rem;
}

.checkbox-input {
    display: flex;
    align-items: baseline;
}

.tour-form-subgroup span.value {
    width: 30%;
}

.tour-guide-box {
    position: absolute;
    display: none;
    background: white;
    padding: 10px;
    width: 500px;
    border: 1px solid #a8a8a8;
    font-size: 1.5rem;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.input-number-selector {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border-left: 0.1rem solid #d4d4d4;
}

.quantity-control {
    position: relative;
}

.quantity-control {
    align-items: center;
    display: block;
    color: #000;
    font-size: 1.6rem;
    padding: 0 1.5rem;
    height: 4rem;
    box-shadow: none;
    outline: none;
    border-radius: .5rem;
    -webkit-appearance: none;
    border: 0.1rem solid #d4d4d4;
    max-width: 16rem;
}

.quantity-control button {
    font-size: 2rem;
    height: 100%;
    background-color: #fff;
    border: none;
    cursor: pointer;
    padding: 0 1.5rem;
    border-radius: .5rem;
}

.quantity-input {
    height: 100%;
    width: 40%;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

/*input-tag*/
.booking-confirm-name, .booking-confirm-globe, .booking-confirm-email {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    margin-bottom: 1.5rem;
    align-items: self-start;
    justify-content: space-between;
}

.booking-confirm-name i, .booking-confirm-globe i , .booking-confirm-email i {
    width: 10%;
    font-size: 24px;
}

.booking-confirm-globe input, .booking-confirm-email input {
    width: 89%;
}

.tour-contact-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tour-contact-group i {
    font-size: 24px;
    margin-right: 5px;
    width: 30px;
}

.tour-contact-group label {
    display: inline-block;
    width: 14rem;
}

.btn-form {
    width: 100%;
    text-align: center;
}

.form-search-nang-cao {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
}

.banner-slider .swiper > .swiper-wrapper .swiper-slide:nth-child(2) > .row {
    padding-top: 170px;
}

.form-booking-sp .form-group input::placeholder {
    color: #95959580;
}

.product-content-detail-right form .form-group span.value input.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: lightgray;
}

.product-content-detail-right form .form-group span.value input.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: lightgray;
}

.product-content-detail-right form .form-group span.value input.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: lightgray;
}

.product-content-detail-right .text-price {
    font-size: 3rem;
    line-height: 3rem;
}

/*Button Contact Fixed*/
.contact-fixed {
    z-index: 999;
    right: 2rem;
    bottom: 7rem;
    position: fixed;
    height: 6rem;
    width: 6rem;
    background: var(--color-highlight);
    border-radius: 50%;
    cursor: pointer;
}

.contact-fixed__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 1.1rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__button.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__button i {
    font-size: 2.2rem;
}

.contact-fixed__pulsation {
    width: 8.4rem;
    height: 8.4rem;
    background-color: var(--color-highlight);
    border-radius: 50%;
    position: absolute;
    left: -1.2rem;
    top: -1.2rem;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.contact-fixed__pulsation:nth-child(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.contact-fixed__close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 2.2rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__close.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__list {
    background: center no-repeat var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    width: 26rem;
    position: absolute;
    bottom: 8rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1.4rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000;
}

.contact-fixed__list:before {
    position: absolute;
    bottom: -0.7rem;
    right: 2.5rem;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: '';
}

.contact-fixed__list.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__item {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    width: 100%;
    color: var(--color-main);
    font-weight: bold;
}

.contact-fixed__item:hover {
    background-color: #eeeeee;
    color: var(--color-text);
}

.contact-fixed__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    border-radius: 50%;
}

@keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

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

/*End Button Contact Fixed*/
@media (max-width: 1200px) {
    .box-member-top a span {
        display: none;
    }

    .box-rating-cm {
        padding: 15px;
        margin-bottom: 30px;
    }

    .title-rating-comment {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .box-search .icon {
        width: 4rem;
        height: 4rem;
        border: 1px solid var(--color-highlight);
        border-radius: 5px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .box-search .icon svg {
        width: 18px;
        height: 18px;
    }

    .box-search form {
        position: absolute !important;
        top: 100%;
        z-index: 2;
        background: #fff;
        padding: 5px;
        border-radius: 5px;
        width: 100%;
        right: 0;
        display: none;
        opacity: 0;
    }

    .box-header-top .slogan-header {
        display: none;
    }

    .setting-menu-pc>.container>.row>div:nth-child(1) {
        order: 2;
    }

    .setting-menu-pc>.container>.row>div:nth-child(2) {
        order: 1;
    }

    .setting-menu-pc>.container>.row>div:nth-child(3) {
        order: 3;
        display: flex;
        justify-content: flex-end;
    }

    .setting-menu-pc>.container>.row>div {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .setting-menu-pc .box-search>.icon {
        display: inline-flex !important;
    }

    .box-member-top a {
        /*color: var(--color-highlight) !important;*/
    }

    .box-member-top a i, .btn-action-header i {
        display: inline-flex;
        width: 36px;
        height: 36px;
        border-radius: 5px;
        border: 1px solid;
        align-items: center;
        justify-content: center;
        padding-right: 0 !important;
    }

    .box-search .input-group .form-control {
        height: 32px;
    }
}

@media (max-width: 576px) {
    .is-mobile .btn-menu-mobile {
        float: right !important;
        margin-top: .8rem;
        margin-left: 1rem;
    }

    .btn-menu-mobile, .box-member-top a i, .btn-action-header i {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }

    .is-mobile .form-search {
        padding: 2rem;
    }

    .is-mobile .form-search .row > div {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1rem;
    }

    .is-mobile .form-search .row > div:last-child {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .form-search-nang-cao {
        top: 80px;
    }

    .banner-slider {
        padding: 17rem 0 1rem;
    }

    .title-tab .block-tab>li.nav-item>.nav-link {
        font-size: 12px;
    }

    .product-item .inner-content .price {
        flex-wrap: wrap;
    }

    .product-item .price-amount.old-price {
        margin: 0;
    }

    .tour-form-group {
        width: 100%;
    }

    #google_translate_element {
        top: inherit;
        bottom: 0;
    }

    .product-item .inner-content .attributes .item {
        display: flex;
        justify-content: left;
        margin-top: 7px;
    }

    .product-item .inner-content .attributes .item span {
        font-size: 8px;
    }

    .article-item .article-title {
        height: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .is-mobile .btn-menu-mobile {
        float: left;
    }

    .is-mobile .box-search form {
        position: relative !important;
        display: block;
        opacity: 1;
    }
}

/*CSS by quyettq*/
.box-footer-mid .entire-info-website address p {
    display: block;
}

.box-footer-mid .entire-info-website address p strong {
    color: var(--color-main);
}

.text-underline {
    text-decoration: underline;
}

/*CSS phucpd*/
/*Table to card*/
.card > .MsoTableGrid {
    width: 100%;
    font-family: sans-serif;
    border: 1px solid #d8d8d8 !important;
    border-radius: 5px;
}

.card > .MsoTableGrid > tbody > tr {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.card > .MsoTableGrid > tbody > tr > td {
    border: none !important;
}

.card > .MsoTableGrid > tbody > tr > td:first-child {
    display: block;
    font-weight: bold;
    background-color: #f5f5f5;
    width: 100% !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    align-content: center;
    padding-left: 3rem !important;
}

.card > .MsoTableGrid > tbody > tr > td:first-child span {
}

.card > .MsoTableGrid > tbody > tr > td:nth-child(2n) {
    display: block;
    background-color: #fff;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    height: fit-content !important;
    width: 100% !important;
}

.testimonial-section .item {
    padding: 3rem 2rem 3rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.03);
}

.testimonial-section .item:before {
    content: '';
    background-color: var(--color-highlight);
    width: 100%;
    height: 0.5rem;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.testimonial-section .item .img {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

.testimonial-section .item .img img {
    width: 8rem;
    height: 8rem;
}

.testimonial-section .item .quote-icon {
    height: 3.4rem;
    width: 3.4rem;
    line-height: 2.6rem;
    font-size: 1.7rem;
    color: white;
    background-color: var(--color-highlight);
    border-radius: 50%;
    border: 0.4rem solid white;
    display: block;
    text-align: center;
    position: absolute;
    bottom: -0.8rem;
    right: -1.2rem;
}

.testimonial-section .item .description {
    font-size: 1.6rem;
    color: var(--color-text)
}

.testimonial-section .item .subtitle {
    color: var(--color-text);
}
