/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/*
* Element Name: UX BUilder Marquee
* Discover More: https://flelements.com/
* Author: Obelix Media
*/
.section-uy-tin .icon-box{
    align-items: center;
}
.title-phu{
    font-size: 25px;
    color: var(--primary-color) !important;
    margin-bottom: 0px;
}
.title-chinh{
       font-size: 45px; 
}
.button-dat-mua {
  position: absolute;
  bottom: 10px; /* Hoặc vị trí bạn muốn */
  left: 50%;
  transform: translateX(-50%) translateY(100%) scale(0);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10;
}

.product-small.box:hover .button-dat-mua {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
}
/* Thêm hiệu ứng hover cho product-small */
.product-small {
 position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-small.box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}
 @-webkit-keyframes shine {
                100% {
                    left: 125%
                }
            }

            @keyframes shine {
                100% {
                    left: 125%
                }
            }
.div-dat-xe > .col-inner{
        box-shadow: 0 4px 8px -2px #091e4240, 0 0 0 1px #091e4214;
    padding: 22px;
    border: 9px solid #F5F5F5;
    border-radius: 10px;
}
.div-dat-xe > .col-inner .icon-box{
        border: 2px dashed #eee;
    padding: 20px;
}
.div-trai-nghiem > .col-inner{
        background: #F8F8F8;
    padding: 20px;
}
.obelix-marquee-wrapper .obelix-marquee {
    --obelix-text-dark-gray: #555353;
    --marquee-gap: 0px;
    --obelix-duration: 30s;
    --obelix-scroll-distance: calc(100% + var(--marquee-gap));
    --obelix-color-white: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: var(--marquee-gap);
    position: relative;
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: var(--box-height, 400px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-scroll-text {
    line-height: 1.65;
    text-align: center;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-scroll-text, .obelix-marquee-wrapper .obelix-marquee .obelix-marquee-group i {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-marquee-group svg {
    height: auto;
    width: 2rem;
    fill: currentColor;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: var(--marquee-gap);
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical.icon-right .obelix-text-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical.icon-bottom .obelix-text-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.obelix-marquee-wrapper .marquee-icon {
    --icon-width: 1.5rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Image icon */
.obelix-marquee-wrapper .marquee-icon.is-image {
    width: calc(var(--icon-width) * 2);
}

.obelix-marquee-wrapper .marquee-icon img {
    /* height: var(--icon-width, 3rem); */
    width: 100%;
    max-width: unset;
}

/* Svg inline icon */
.obelix-marquee-wrapper .marquee-icon.is-image svg {
    width: var(--icon-width);
}

.obelix-marquee-wrapper .marquee-icon.is-image svg > * {
    fill: currentColor!important;
}

/* Library icon */
.obelix-marquee-wrapper i.marquee-icon {
    font-size: var(--icon-width);
}

.obelix-marquee .obelix-scroll-image img {
    height: var(--image-ratio);
    width: auto;
    max-width: unset;
}

.obelix-marquee-wrapper .is-vertical .obelix-scroll-image img {
    width: var(--image-ratio);
    height: auto;
}

@-webkit-keyframes obelix-scroll-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@keyframes obelix-scroll-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@-webkit-keyframes obelix-scroll-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@keyframes obelix-scroll-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@-webkit-keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Wrapper Styles */
.obelix-marquee-wrapper .obelix-marquee-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: var(--marquee-gap);
    white-space: nowrap;
    -webkit-animation: obelix-scroll-x var(--obelix-duration) linear infinite;
    animation: obelix-scroll-x var(--obelix-duration) linear infinite;
}

.obelix-marquee.is-vertical .obelix-marquee-group {
    -webkit-animation-name: obelix-scroll-y;
    animation-name: obelix-scroll-y;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.obelix-marquee-wrapper .is-vertical.v-align-left .obelix-marquee-group {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
}

.obelix-marquee-wrapper .is-vertical.v-align-right .obelix-marquee-group {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right;
}

.obelix-marquee-wrapper .obelix-marquee.reverse .obelix-marquee-group {
    animation-direction: reverse;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

/* Text effect */
.obelix-marquee-wrapper .stroke .obelix-scroll-text.odd {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
}

.obelix-marquee-wrapper .gold .obelix-scroll-text {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(18%, #dec58d), color-stop(24%, #d8c08c), color-stop(26%, #cfc09f), color-stop(27%, #cfc09f), color-stop(40%, #ffecb3), color-stop(78%, #af8734));
    background: -o-linear-gradient(top, #dec58d 18%, #d8c08c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #af8734 78%);
    background: linear-gradient(to bottom, #dec58d 18%, #d8c08c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #af8734 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    position: relative;
}

.obelix-marquee-wrapper .is-vertical.v-align-left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.obelix-marquee-wrapper .is-vertical.v-align-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.obelix-marquee-wrapper .is-vertical.v-align-left .obelix-scroll-text {
    text-align: left;
}

.obelix-marquee-wrapper .is-vertical.v-align-right .obelix-scroll-text {
    text-align: right;
}

/* Shadow */
.obelix-marquee-wrapper .obelix-marquee.has-shadow::before, .obelix-marquee-wrapper .obelix-marquee.has-shadow::after {
    position: absolute;
    content: "";
    z-index: 1;
    pointer-events: none;
}

.obelix-marquee-wrapper .has-shadow.is-vertical::before, .obelix-marquee-wrapper .has-shadow.is-vertical::after {
    width: 100%;
    height: var(--shadow-width, 20%);
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::before, .obelix-marquee-wrapper .has-shadow.is-horizontal::after {
    height: 100%;
    width: var(--shadow-width, 20%);
}

.obelix-marquee-wrapper .has-shadow.is-vertical::before {
    bottom: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--shadow-color, #fff)), to(rgba(255, 255, 255, 0)));
    background-image: -o-linear-gradient(bottom, var(--shadow-color, #fff), rgba(255, 255, 255, 0));
    background-image: linear-gradient(to top, var(--shadow-color, #fff), rgba(255, 255, 255, 0));
}

.obelix-marquee-wrapper .has-shadow.is-vertical::after {
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::before {
    left: 0;
    top: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::after {
    right: 0;
    top: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .obelix-marquee-wrapper .obelix-marquee-group {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
}

/* End UX BUilder Marquee */
.mfp-close{
    color: #fff !important;
        mix-blend-mode: unset;
}
.category-page-title{

        background: #F7F9FB;
}
.entry-header-text.text-center{
    padding: 0px !important;
}
.page-tin-tuc h1{
    font-size: 40px;
}
.blog-archive{
    padding-top: 0px;
}
.page-tin-tuc .page-title-inner {
  min-height: 300px;
}
.page-tin-tuc .title-bg {
  background-image: url(images/travel.jpg);
}
.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
}
.section-chinh-sach li.tab{
    border-top: none;
}
.section-chinh-sach li.tab a:before{
    display: none;
}
.section-chinh-sach li.tab a{
    background: #f5f5f5;
    border-radius: 0;
    border: none;
    margin: 5px 0;
    padding: 10px 15px;
    color: #322f31;
    text-transform: inherit;
    font-weight: normal;
    font-size: 15px;
}
.section-chinh-sach .tab-panels{
    border-left: none;
}
.section-chinh-sach li.tab a:hover{
    background: #FFC80B;
}
.price-list-car{
    border-right: 1px solid #ccc;
}
.price-list-car{
    font-size: 15px;
}
.price-list-car .col{
    padding-bottom: 0px !important;
}
.price-list-car .row{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.price-location .price-vh .col:last-child {
    border-right: 1px solid #ccc !important;
}
.price-list-car .row .col{
   -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; 
}
.price-vh br{
    display: none;
}
.price-vh:last-child .col {
    border-bottom: none;
}
.car-rental-price-table, .extra-rental-price-table {
    width: 100%;
}
.car-rental-price-table .price-header {
    border-bottom: 1px solid #ccc;
}
.car-rental-price-table .price-header .col-1, .car-rental-price-table .price-header .col-11 {
    padding: 10px 2px;
    text-align: center;
}
.car-rental-price-table .price-location {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.car-rental-price-table .price-location .col-1 {
    font-weight: 700;
        text-align: center;
}
.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.price-vh .col {
padding-left: 5px;
    padding-right: 5px;
    padding-top: 16px;
    padding-bottom: 10px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.price-vh .col:first-child {
    font-weight: 700;
    min-width: 200px;
}
.price-vh .date {
    font-size: 12px;
    display: none;
}
.car-rental-price-table .price-header .col-11 .col:first-child {
    min-width: 200px;
}
.car-rental-price-table .price-header .col-11 .col {
        padding-left: 4px;
    padding-right: 5px;
    border-left: 1px solid #333;
}
.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.car-rental-price-table .price-header {
    background-color: #ffc80b;
    color: #333;
    font-weight: 700;
}

.title-breadcrumbs{
    font-size: 90%;
}
.dark .breadcrumbs a {
    color: #322f31;
}
.dark .breadcrumbs {
    color: #322f31;
}

.devvn_woocommerce_price_suffix{
    font-size: 20px;
        font-weight: bold;

}
b, strong{
    font-weight: bold !important;
}
.product-small .price-wrapper{
        margin-bottom: 20px;
    margin-top: 20px;
}

.product-small .button-dat-mua .button{
        padding: 0px 30px;
    line-height: 2.2em;
    min-height: 2.2em;
}
.button-dat-mua{
        position: relative;
    z-index: 2;
}
.price.product-page-price {
        color: #ffc107;
}
.product-short-description ul {
    list-style: none;
}
.product-short-description ul li{
    margin-left: 0px;
}
.product-short-description ul li i{
    padding-right: 10px;
}
.section-slide .box-image img{
        border-radius: 20px;
}
.section-slide .box-text h4{
    font-size: 23px;
}
.section-slide .box-text h3{
    font-size: 40px;
}
.section-slide .box-text{
        top: 40%;
}
.section-slide .box-image{
    border-radius: 20px;
border: 1px solid white;
}
.section-slide h1{
    font-size: 3.5rem;
    line-height: 1.5;
}
.section-noi-bat ,.section-slide{
    background: white !important;
}
.section-noi-bat .section-bg,.section-slide .section-bg{
        -webkit-clip-path: polygon(88% 100%, 100% 80%, 100% 0, 100% 0, 0 0, 0 90%);
    clip-path: polygon(88% 100%, 100% 80%, 100% 0, 100% 0, 0 0, 0 90%);
    padding: 110px 0 160px;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}
.product-small.box .box-text{
        padding-top: 50px;
            padding-bottom: 0px;
}
.product-small.box{
        padding: 20px 0px;
        background: white;
    border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  
}
.section-slide .box-image:hover:before{
       -webkit-animation: shine .75s;
    animation: shine .75s; 
}
.section-slide .box-image:before{
position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
 .section-noi-bat .box-kham-pha {
        margin-bottom: 24px;
 }
 .section-noi-bat .box-kham-pha .icon-box-text{
    border-left: 5px solid var(--primary-color);
    margin-left: 20px;
 }
.section-noi-bat .icon-box{
        align-items: center;
}
.section-noi-bat .box-thu-tuc{
    margin-bottom: 20px;
}
.section-noi-bat .box-thu-tuc p{
    font-size: 20px;
}
.title-home span{
        position: relative;
    padding-bottom: 10px;
}
.title-home{
  font-size: 40px;

    padding-bottom: 9px;
    text-align: center;
}
.title-home span:before{
        background: var(--primary-color);
    bottom: 0;
    content: "";
    height: .3vw;
    position: absolute;
    right: 0;
    width: 6vw;
    z-index: -1;
}
.div-form{
    position: relative;
}
.post-item .is-divider{
    display: none;
}
.product-section{
    border-top: none;
}

.product-title a{
    color: black;
    font-size: 26px;
}
.page-header-wrapper .entry-title{
        color: #322f31;
    text-transform: uppercase;
    box-shadow: none;
    font-weight: 700;
}
.page-header-wrapper .title-overlay{
    background-color: unset;
}
.section-xe-may .product-small .price-wrapper{
        color: #ffc107;
}
#dat-xe .formdatxe {
    background: #000000a6 !important;
  
}
.lightbox-content{
    background-color: transparent !important;
}
.product-small ul li i{
    margin-right: 10px;
}
.product-small ul li{
    margin-left: 0px;
}
.product-small ul{
    list-style: none;
}
.product-footer .woocommerce-tabs{
    padding-top: 0px !important;
    border-top: none;
}
.button.primary{
    color: black;
}
span.amount{
        color: #ffc107;
    font-size: 25px;
}
div#top-bar {
    background-image: linear-gradient(90deg,#61c73f,#29b94c);
}
div#top-bar li.html.custom.html_topbar_right {
    font-size: 20px;
}
div#top-bar li.html.custom.html_topbar_right a {
    color: #e4ff00;
}
div#top-bar a.hotline-top i {
    padding-right: 6px;
}


div#masthead ul li.menu-item a.nav-top-link {

    font-size: 15px;

}


/* css hiệu ứng khách hàng đặt xe */
.box_marquee_slider {
    padding: 10px;
    background: #fff;
    font-size: 17px;
    border-radius: 8px;
    display: inline-block;
    overflow: hidden;
    height: 130px;
}
ul.box_datxe {
	top: 7em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
}
.box_datxe>li {
    margin-left: 0px!important;
    margin-bottom: 0px;
    list-style: none;
    border-bottom: 1px dashed #737373;
    font-size: 14px;
    padding: 10px 0px;
    transition: background-color 0.5s;
    position: relative;
    width: 100%;
    float: left;
    overflow: visible!important;
}
.box_datxe li span, .box_datxe li b {
	color: #5bc641;
}
@keyframes marquee {
    0%   { top:   4em }
    100% { top: -11em }
}

/* css section dịch vụ */
.title-dichvu h2 {
    text-align: center;
    color:#222222;
}
.box-dichvu {
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 1px 6px 2px;
    border-radius: 6px;
    background: #fff;
	padding-bottom: 15px;
	cursor: pointer;
}
.box-dichvu:hover {
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 8px 0px, rgb(60 64 67 / 15%) 0px 0px 5px 1px;
}
.box-dichvu .icon-box-img {
    margin-bottom: 8px;
}
.box-dichvu p {
    font-size: 16px;
    color: #000000;
    text-transform: uppercase;
}


.dichvu-gia>.col-inner {
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 1px 6px 2px;
    border-radius: 10px;
    background: #fff;
}
.dichvu-gia>.col-inner h4 {
    background: #FFC709;
    text-align: center;
    padding: 6px 0;
    border-radius: 11px 10px 0 0;
  color: #332F31;
}
.dichvu-gia>.col-inner ul {
    padding: 20px;
}
.dichvu-gia>.col-inner ul li {
    color: #332F31;
}

/* css section tour */
.title-tour {
    text-align: center;
}
.title-tour h3 {
    font-size: 22px;
    color: #000;
}
.title-tour p {
    color: #000;
}
.box-tour {
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 1px 6px 2px;
    border-radius: 10px;
    background: #fff;
    padding-bottom: 10px;
}
.box-tour .icon-box-img {
    border-radius: 10px 10px 0 0;
	overflow: hidden;
}
.box-tour .icon-box-img img {
    padding: 0;
}
.box-tour h4 {
    text-align: center;
    color: #12a8e1;
    font-size: 18px;
}
.box-tour p {
    color: #000;
    margin-bottom: 0;
    padding: 0 8px 0 12px;
	text-align: left;
}
.box-tour p strong {
    color: red;
}
.box-tour .icon-box-text {
    height: 200px;
    overflow: hidden;
    overflow-y: scroll;
}
.box-tour .icon-box-text::-webkit-scrollbar {
    width: 4px;
}
.box-tour .icon-box-text::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #12a9e2;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 50%);
}

/* css form */
.col.col-padding {
    padding-bottom: 0;
}
.formdatxe {
     background: #00000085;
    padding: 30px;
}
.formdatxe .col.col-padding {
    padding-bottom: 1px;
}
.formdatxe h4 {
   text-align: left;
    color: white;
}
.formdatxe input.wpcf7-form-control.wpcf7-text, .formdatxe select {
 height: 41px;
    margin-bottom: 10px;
    box-shadow: 0 0;
    padding-left: 30px;
    font-size: 14px;
}
.formdatxe i {
        position: absolute;
    bottom: 15px;
    left: 12px;
    z-index: 9;
    font-size: 14px;
    top: 13px;
        color: #bfbfbf
}
i.fas.fa-street-view, i.fas.fa-phone-square-alt {
    color: #56c441;
}
i.fas.fa-user, i.fas.fa-map-marker-alt {
    color: #bfbfbf
}
i.fas.fa-car, i.fas.fa-calendar-alt {
    color: #0a5ec7;
}

.formdatxe input.wpcf7-form-control.has-spinner.wpcf7-submit {
background: #ffc107!important;
    border: 2px solid #fed03d!important;
    color: #322f31!important;
    width: 100%!important;
    height: 100%!important;
    margin-right: 0px;
    margin: 0px !important;
}
.wpcf7-spinner{
    display: none;
}
.formdatxe .btn-datxe {
    text-align: center;
}
.btn-click {
    text-align: center;
 background: #ffc107!important;
  color: black;
    border-radius: 20px;
    line-height: 30px;
    cursor: pointer;
}
.wpcf7 form.invalid .wpcf7-response-output , .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output {
      background: #ffc107!important;
    color: black;
    border-color: #ffc107!important;
}

/* css đội xe */
.col.col-doixe {
    background: #fff;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 1px 6px 2px;
    border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 0;
}
.col.col-doixe h2 {
    margin-bottom: 0;
}

/* css section đánh giá */
.title-khachhang h2 {
    color: #5bc641;
    font-size: 38.5px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    text-shadow: rgb(0 0 0) 1px 1px 1px;
}


/* css footer */
.footer-widgets.footer.footer-1 {
    /* background-image: linear-gradient(90deg,#61c73f,#29b94c); */
    background-color: #292929;
}
.ct-foo p {
    font-size: 15px;
    line-height: 25px;
}
.ct-foo ul li {
    margin-left: 0;
    margin-bottom: 12px;
    line-height: 20px;
}
.ct-foo h4 {

    padding-bottom: 8px;
    color: #ffc80b;
}


.copyright-footer {
    color: #fff;
}

@media (max-width: 549px) {
	/* 	css col tour */
	.col.col-tour {
		padding: 6px 5px;
	}
	.box-tour p {
		font-size: 15px;
	}
	/* 	css form */
	span.wpcf7-list-item.first {
		margin-right: 6px;
	}
	input[type=checkbox] {
		margin-right: 2px;
	}
	.col.col-daochieu {
		padding-right: 0;
	}
	.btn-click {
		text-align: right;
		padding-right: 10px;
	}
	
}

@media(max-width: 855px){
    .title-phu {
    font-size: 19px;}
     #header  #logo img, #header  .stuck #logo img {
 
    max-height: 33px !important;
}
   #header .header-main {
    height: 50px;
}
    #header.show-on-scroll,#header .stuck .header-main {
    height: 50px !important;
}
    .title-chinh {
    font-size: 28px;
}
    .title-home span:before {
  
    height: 4px;

    width: 63px;
    z-index: -1;
}
    .title-home {
    font-size: 30px;}
    .section-noi-bat .section-bg, .section-slide .section-bg{
            -webkit-clip-path: unset;
    clip-path: unset;
    }
    .page-tin-tuc h1 {
    font-size: 22px;
    margin-bottom: 0px;
}
    .pt-half {
    padding-top: 0px;
}
    .section-slid{
        padding-bottom: 0px !important;
    }
    .section-slide h1 {
    font-size: 2.0rem;
    line-height: 1.5;
}
    .page-header-wrapper .page-title-inner {
            min-height: 134px !important;
    }
    .car-rental-price-table .price-vh {
    margin-left: -15px;
    margin-right: -15px;
    border-right: 1px solid #ccc;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}
    .price-header {
    display: none;
}
    .price-vh .col:first-child {
    width: 200px;
    max-width: 200px;
    flex: 0 0 200px;
    text-align: left;
}
    .price-vh .date {
    text-align: left;
    color: #9e9e9e;
    display: block;
    line-height: 1;
}
    .price-location .col-11 {
    width: 100%;
    min-width: 100%;
    flex: auto;
    color: #333;
    font-weight: 700;
    text-align: center;
}
    .price-location .col-1 {
    width: 100%;
    min-width: 100%;
    flex: auto;
    background-color: #ffc80b;
    color: #333;
    font-weight: 700;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}