:root{
    --main-color:#105b92;
    --second-color:#044370;
    --text-color:#71747D;
}
p{
    font-family: 'Nunito';
    color: var(--text-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4rem;
}
.sch-wrapper{
    /* min-height: 100vh; */
}
.home .tf-topbar{
    background-color: transparent;
}
.home .tf-topbar .menu li *{
    color: #fff;
}
.tf-topbar{
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 50px !important;
    z-index: 999;
}
.tf-topbar .brand img{
    width: 200px;
}
.home .tf-topbar .brand img{
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.tf-topbar .menu li{
    list-style: none;
    margin-left: 25px;
}
.tf-topbar .menu li *{
    color: #000;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}
.tf-topbar .menu li svg{
    margin-right: 1px;
    width: 22px;
}
.tf-topbar .menu .count{
    position: absolute;
    top: -10px;
    right: -17px;
    font-size: 10px;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b00000;
    border-radius: 100%;
}
.home .header-wrapper:before{
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
}
/* BOOKING FORM */
.load-box{
    min-height: 100vh;
}
.main-bg{
    background: #f5f7fe;
}
.booking-form {
    position: relative;
    background: #fff;
    width: 100%;
    margin: auto;
    padding: 25px;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 10px -5px rgba(0,0,0,.4);
    box-shadow: 0 0 10px -5px rgba(0,0,0,.4);
    margin-top: -80px;
}

.booking-form .form-group {
    position: relative;
}

.booking-form .form-control {
    background-color: #fff;
    height: 65px;
    padding: 15px;
    padding-left: 45px;
    color: #191a1e;
    border: 1px solid #dfe5e9;
    font-size: 15px;
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 30px;
    -webkit-transition: .2s all;
    transition: .2s all
}

.booking-form .form-control2 {
    background-color: #f5f7fe;
    height: 65px;
    padding: 15px;
    padding-left: 60px;
    color: #191a1e;
    border: none;
    font-size: 15px;
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 30px;
    -webkit-transition: .2s all;
    margin-bottom: 0px;
    transition: .2s all
}

.booking-form .form-control2::-webkit-input-placeholder {
    color: #717171;
    font-size:15px;
    font-weight: 400;
}

.booking-form .form-control2:-ms-input-placeholder {
    color: #717171;
    font-size:15px;
    font-weight: 400;
}

.booking-form .form-control2::placeholder {
    color: #717171;
    font-size:15px;
    font-weight: 400;
}

.booking-form .form-control2::-webkit-input-placeholder {
    color: #717171;
    font-size:15px;
    font-weight: 400;
}

.booking-form .form-control:-ms-input-placeholder {
    color: #dfe5e9;
}

.booking-form .form-control::placeholder {
    color: #dfe5e9;
}

.booking-form .form-control:focus {
    background: #f9fafb;
}

.booking-form input[type=date].form-control:invalid {
    color: #dfe5e9;
}

.booking-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.booking-form select.form-control+.select-arrow {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: #dfe5e9;
    font-size: 14px
}

.booking-form select.form-control+.select-arrow:after {
    content: '\279C';
    display: block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.booking-form .form-label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-left: 17px;
    margin-bottom: 0px;
}

.booking-form .form-checkbox input {
    position: absolute!important;
    margin-left: -9999px!important;
    visibility: hidden!important
}

.booking-form .form-checkbox label {
    position: relative;
    padding-top: 4px;
    padding-left: 30px;
    font-weight: 700;
    color: #191a1e;
    font-size: 15px;
}

.booking-form .form-checkbox label+label {
    margin-left: 15px
}

.booking-form .form-checkbox input+span {
    position: absolute;
    left: 2px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #dfe5e8;
    /* border: 2px solid #dfe5e9; */
    border-radius: 50%
}

.booking-form .form-checkbox input+span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: .2s all;
    transition: .2s all
}

.booking-form .form-checkbox input:not(:checked)+span:after {
    opacity: 0
}

.booking-form .form-checkbox input:checked+span:after {
    opacity: 1;
    width: 10px;
    height: 10px
}

.booking-form .submit-btn {
    color: #fff;
    background-color: #4fa3e3;
    font-weight: 400;
    height: 65px;
    font-size: 18px;
    border: none;
    width: 100%;
    border-radius: 4px;
    text-transform: uppercase
}

.booking-cta {
    margin-top: 45px
}

.booking-cta h1 {
    font-size: 52px;
    text-transform: uppercase;
    color: #4fa3e3;
    font-weight: 400
}
.rw-form{
    margin-bottom: -90px;
}
.booking-cta p {
    font-size: 22px;
    color: #191a1e
}
.booking-form .switch{
    position: absolute;
    top: 0;
    width: 35px;
    height: 35px;
    left: 0;
    right: 0;
    background: var(--main-color);
    border-radius: 100%;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
}
.booking-form .switch svg{
    width: 20px;
}
.booking-form .switch svg path{
    fill: #fff;
}
.booking-form .form-control.left{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-right: 25px;
    padding-left: 50px;
    text-align: left;
}
.booking-form .form-control.right{
    border-left: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-left: 55px;
    text-align: left;
}
.booking-form .form-control.wb{
    border: 1px solid #dfe5e9 !important;
    border-radius: 30px !important;
}
.bk-btn{
    background: var(--main-color);
    border-radius: 30px;
    height: 55px;
    color: #ffff;
}
.bk-btn:hover{
    background: var(--second-color);
    border-color: var(--second-color);
    color: #ffff;
}
.tf-panel.dropdown{
    position: relative;
    z-index: 999999;
    width: 100%;
}
.dropdown .panel_overlay{
    background: transparent !important;
}
.tf-panel.dropdown .panel-box{
    position: absolute;
    top: 4px;
    height: max-content;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    width: 500px;
    border-radius: 20px;
}

.lists{
    padding: 13px 25px;
}
.lists:hover{
    background: #e7f2ff;
}

.number-form button{
    width: 30px !important;
    height: 30px !important;
    border: 1px solid var(--main-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}
.number-form button svg{
    height: 18px;
    color: var(--main-color);
}
.number-form .num{
    width: 45px;
    margin: 0px 10px;
    border: none;
    text-align: center;
    padding: 0px;
    font-size: 17px;
    font-weight: 500;
}

.dates-wrapper{
    border-radius: 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px -5px rgba(0,0,0,.4);
    box-shadow: 0 0 10px -5px rgba(0,0,0,.4);
}
.dates-wrapper .item-label{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #dfe5e9;
    color: #191a1e;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.dates-wrapper .item-label.active{
    background: #e4efff;
}
.dates-wrapper .swiper-wrapper .swiper-slide:first-child .item-label{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.dates-wrapper .swiper-slide.swiper-slide-active .item-label{
    border-left: none !important;
}

.sch-list{
    position: relative;
    background: #fff;
    width: 100%;
    margin: auto;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 10px -5px rgba(0,0,0,.4);
    box-shadow: 0 0 10px -5px rgba(0,0,0,.4);
    margin-bottom: 15px;
}
.sch-list .schedule{
    padding-right: 25px;
    padding-top: 20px;
    padding-left: 0px;
    padding-bottom: 20px;
}
.sch-list .info{
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.sch-list .brand img{
    width: 30px;
    margin-right: 10px;
}
.sch-list .time{
    display: flex;
}
.sch-list .time h2{
    font-size: 19px;
}
.sch-list .route-time{
    width: 200px;
    text-align: center;
    padding: 0px 20px;
}
.sch-list .start p,
.sch-list .end p{
    font-size: 15px;

}
.sch-list .time .border-bottom svg{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -7px;
    color: #dee2e8;
    width: 20px;
}
.sch-list .label label{
    font-size: 11px;
    font-weight: 400;
    border-radius: 30px;
    padding: 2px 8px;
    margin-right: 7px;
}
.sch-list .label label.true{
    background: #038548;
    font-weight: 500;
}
.sch-list .label label.false{
    background: #c5c5c5;
    color: #fff;
    font-weight: 500;
}
.sch-list .label svg{
    width: 15px;
    margin-right: 3px;
}
.sch-list .info .price{
    display: flex;
    align-items: center;
    justify-content: end;
}
.sch-list .info .price h2{
    font-size: 22px;
    font-weight: 600;
    color: #f08900;
    margin-right: 5px;
}
.sch-list .info .dsc-price{
    text-decoration: line-through;
    font-size: 15px;
    color: #d8d3d3;
    font-weight: 400;
}
.sch-list .img .swiper-slide-active img{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.sch-list .img.open .swiper-slide-active img{
    border-bottom-left-radius: 0px;
}
.sch-list .img img{
    max-height: 191px;
    min-height: 191px;
    object-fit: cover;
}
.sch-list .swiper-pagination-bullet{
    background: white !important;
    opacity: 0.5;
    margin: 0px 2px !important;
    width: 8px;
    height: 8px;
}
.sch-list .swiper-pagination-bullet-active{
    background-color: #fff !important;
    width: 13px;
    border-radius: 5px;
    opacity: 1;
}
.sch-list .swiper-pagination-bullets{
    bottom: 10px !important;
}
.sch-list .detail{
    background: #e9f2ff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-right: 20px;
}
.sch-list .detail a{
    margin-left: auto;
    display: flex;
    align-items: center;
}
.sch-list .detail a svg{
    width: 20px;
    margin-left: 2px;
}
.sch-list .detail .body-wrapper{
    display: none;
}
.sch-list .detail .body-wrapper.open{
    display: block;
}
.list-icon{
    line-height: 2rem;
}
.list-icon li.check,
.list-icon li.close{
    display: flex;
    align-items: center;
    line-height: 1.2rem;
    margin-bottom: 10px;
}
.list-icon .check span,
.list-icon .close span{
    width: 98%;
    padding-left: 5px;
}
.list-icon li.check svg{
    width: 20px;
    height: 20px;
    fill: #088500;
}
.list-icon li.close svg{
    width: 20px;
    height: 20px;
    fill: #b00404;
}

.act1{
    color: var(--main-color);
    font-weight: 600;
    padding-bottom: 20px;
    display: block;
    font-size: 13px;
}
.act1:hover{
    color: #0d6efd;
}
.act2{
    max-width: max-content;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 13px;
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
.act2:focus{
    color: #fff;
}
.act3:hover{
    color: var(--main-color);
    border-color: var(--main-color);
}
.act3{
    max-width: max-content;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 13px;
    background: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
}
.act2:hover{
    background-color: #044370;
    border-color: #044370;
    color: #fff;
}
.filters{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.filters .box{
    border: 1px solid #dee5e8;
    padding: 8px 10px;
    border-radius: 30px;
    min-width: 100px;
    text-align: center;
    margin-right: 10px;
    background: #fff;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.filters .box svg{
    height: 20px;
    padding-right: 5px;
}
.filters .box svg:last-child{
    padding-left: 10px;
    padding-right: 0px;
}
.lists .form-check-label{
    font-size: 15px;
}
.lists .form-check-input{
    width: 20px;
    height: 20px;
}

.nav-tabs .nav-link{
    font-weight: 500;
    padding: 0px 1rem 10px 1rem;
    position: relative;
    border: none !important;
    color: #495057;
    font-size: 15px;
}
.nav-tabs .nav-link.active{
    color: var(--main-color);
}
.nav-tabs .nav-link.active:before{
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0072ce;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.box-wrap{
    position: relative;
    background: #fff;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(48, 49, 53, 0.16);
    margin-bottom: 30px;
}
.box-wrap .box-body{
    padding: 30px 25px;
}
.box-wrap .box-header{
    padding: 18px 30px;
    background: var(--main-color);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: #fff;
    font-weight: 700;
}
.box-title h2{
    font-size: 20px;
    margin-bottom: 7px;
    font-weight: 600;
}
.booking-form .oneway .form-control.left{
    border-radius: 30px !important;
}
.panel-calendar{
    padding: 20px;
    width: auto !important;
}
.panel-calendar .dp__menu{
    border: none !important;
}
.panel-calendar .dp__month_year_col_nav,
.panel-calendar .dp__month_year_select{
    padding: 0px !important;
    font-weight: 700;
    font-family: 'Nunito';
}
.panel-calendar .dp__month_year_col_nav{
    width: 10% !important;
}
.panel-calendar .dp__month_year_wrap{
    padding: 0% 30%;
}
.panel-calendar .dp__calendar_header_item{
    font-family: 'Nunito';
    font-size: 14px;
    font-weight: 500;
}
.panel-calendar .dp__cell_inner{
    padding: 20px;
    font-family: 'Nunito';
}
.panel-calendar .dp__range_end, .panel-calendar .dp__range_start, .panel-calendar .dp__active_date{
    background-color: var(--main-color) !important;
}
.panel-calendar .dp__today {
    border: 1px solid var(--main-color) !important;
}
.counting p{
    font-size: 15px;
}
.counting small{
    font-size: 15px;
}
.tooltip2 {
    position: relative;
    display: inline-block;
    border-bottom: none !important;
}
.route-time p{
    font-size: 14px;
}
.tooltip2 .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    font-size: 13px;
}
  
.tooltip2:hover .tooltiptext {
    visibility: visible;
}

.nav-schedule .nav-tabs{
    border: none !important;
}
.nav-schedule .nav-content{
    background: #fff;
    padding: 30px !important;
    border-radius: 20px;
    min-height: 300px;
}
.nav-content.first{
    border-top-left-radius:0px;
}
.nav-schedule{
    border: none !important;
}
.nav-schedule .nav-link.active:before{
    display: none;
}
.nav-schedule .nav-link {
    font-weight: 500;
    padding: 15px 30px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}
.nav-content .desc *{
    font-size: 15px;
    color: #495057;
    font-weight: 400;
}
.nav-content .desc a{
    color: var(--main-color);
    font-weight: 800;
    font-size: 14px;
}
.nav-content .desc h6,
.nav-content h1,
.nav-content h2,
.nav-content h3,
.nav-content h4,
.nav-content h5,
.nav-content h6{
    font-weight: 800;
    font-size: 16px;
}
.review-wrap{
    display: flex;
    align-items: center;
    padding-top: 30px;
}
.review-wrap .profile{
    width: 17px;
    padding: 25px;
    height: 17px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    border-radius: 100%;
    font-size: 17px;
}
.review-wrap .info{
    padding-left: 30px !important;
    padding: 0px;
}
.review-wrap .info p{
    font-size: 15px;
    margin-top: 5px;
}
.review-wrap small{
    font-weight: 500;
    color: #b1a8a8;
    font-size: 13px;
    display: block;
}
.stars svg{
    width: 15px; 
    margin-right: 1px;
}
.stars svg.selected{
    fill: var(--main-color);
    color: var(--main-color);
}
.tf-form.booking .group-input label{
    font-size: 15px;
    color: #787878;
    background-color: transparent !important;
    font-weight: 400;
    top: 18px;
}
.tf-form.booking .group-input:has(input:focus) label,
.tf-form.booking .group-input:has(input) label,
.tf-form.booking .group-input:has(select:focus) label,
.tf-form.booking .group-input:has(select) label{
    top: 5px;
    font-size: 12px;
}
.tf-form.booking .group-input:has(input:focus) input,
.tf-form.booking .group-input:has(input) input,
.tf-form.booking .group-input:has(select:focus) select,
.tf-form.booking .group-input:has(select) select{
    padding: 26px 14px 10px 14px;
}

.rw-group {
    border: 1px solid #e4e5e4;
    padding: 40px 25px 40px 25px;
    border-radius: 10px;
    margin: -10px 0px 0px 0px !important;
}
.h4-group {
    display: inline-block;
    margin-left: 19px;
    background: #fff;
    z-index: 11;
    position: relative;
    padding: 0px 5px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.box-wrap.a-item{
    border: 1px solid #e5e5e5;
    padding: 17px;
    box-shadow: none;
}
.a-item .content,
.box-aitem{
    background: #f5f7fe;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    margin: 10px 0px;

}
.a-item .info .btn{
    background-color: var(--main-color) !important;
    border-color: var(--main-color);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    padding: 4px 16px;
}
.tf-form .group-input {
    margin-bottom: 15px;
}
.wrap-guest{
    padding-bottom: 20px;
}
.tf-form .wrap-guest:last-child{
    padding-bottom: 0px;
}

.box-wrap .sch-list {
    box-shadow: none;
    border: 1px solid #dddddd;
    padding: 5px 15px;
    border-radius: 10px;
}
.box-wrap .sch-list .time h2 {
    font-size: 16px;
}
.box-wrap .sch-list .start p, .box-wrap .sch-list .end p {
    font-size: 13px;
}
.box-wrap .sch-list .route-time {
    width: 145px;
}
.box-wrap .route-time p {
    font-size: 13px;
}
.box-body .date{
    font-size: 16px;
    font-weight: 800;
}
.box-body .total{
    padding-top: 15px;
}
.box-body .sch-wrap:last-child{
    padding-bottom: 0px !important;
}
.payment-wrap img{
    width: auto;
    height: 18px;
}
.payment-wrap .logos{
}
.payment-wrap .paymod{
    border: 1px solid #e9d8d8;
    padding: 20px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500;
}
.payment-wrap .paymod:hover,
.payment-wrap .paymod.active{
    background-color: #f4f4f4;
}
.payment-wrap .name{
    margin-left: 15px;
}
.payment-wrap .paymod svg {
    display: none;
}
.payment-wrap .paymod.active{
    border: 2px solid var(--main-color);
    color: var(--main-color);
}
.payment-wrap .paymod.active svg {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    fill: var(--main-color);
}
thead,
tbody tr{
    border-bottom: 1px solid #dfdbdb;
}
thead th:last-child,
tbody tr td:last-child,
tfoot tr td:last-child{
    text-align: right;
    padding-right: 0px;
}
thead th:first-child,
tbody tr td:first-child,
tfoot tr td:first-child{
    padding-left: 0px;
}
table td,
table th{
    font-size: 14px !important;
}
.bar-star{
    background: #f8f3f3;
    margin: 0px 10px;
    width: 70%;
    height: 5px;
}
.bar-star div{
    background-color: var(--main-color);
    height: 5px;
}
.stars.big svg{
    width: 40px;
    height: 40px;
}
.stars.big h2{
    font-size: 32px !important;
}
.reviews{
    max-height: 350px;
    overflow-x: scroll;
}
.badge-ava{
    background-color: #b9e1ff !important;
    border-radius: 30px;
    font-size: 12px;
    padding: 7px 10px;
    font-weight: 400;
    color: #000;
}
.center-panel .panel-box{
    width: 50%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 80vh;
    border-radius: 15px;
}
.center-panel .panel-box .panel-form{
    padding: 40px;
}
.center-panel .sch-list{
    box-shadow: none !important;
    border: 1px solid #ecedec;
    border-radius: 15px;
    padding: 0px;
}
.center-panel .sch-list .brand{
    border-bottom: 1px solid #ecedec;
    padding: 15px;
}
.center-panel .sch-list .time{
    padding: 15px;
}
.center-panel .sch-list .brand h4{
    font-size: 15px;
    font-weight: 700;
}
.center-panel .sch-list .brand p{
    font-size: 14px;
}
.center-panel .sch-list .time h6{
    font-size: 14px;
    font-weight: 800;
}
.center-panel .sch-list .time p{
    font-size: 13px;
    margin-top: 3px;
}
.center-panel .sch-list .footer {
    border-top: 1px solid #f0f0f0;
    padding: 9px 15px;
    display: flex;
    align-items: center;
}
.center-panel .sch-list .footer h6{
    font-size: 14px;
}
.app-content.home{
    min-height: 100vh;
    padding-bottom: 70px;
}
.panel-booking .panel-form {
    height: 60vh;
    overflow: hidden;
    overflow-y: scroll;
    padding-bottom: 30px !important;
}
.desc-tx > ul{
    list-style: inherit;
    padding-left: 30px;
    line-height: 1.5rem;
    margin-top: 9px;
    margin-bottom: 9px;
    font-size: 16px;
}
.desc-tx > h3{
    margin-bottom: 10px;
}
.panel-booking .panel-act{
    position: fixed;
    bottom: 0px;
    left: 0;
    background: #fff;
    padding: 20px 40px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100%;
    border-top: 1px solid #ecedec;
}
.panel-booking .panel-act button,
.panel-booking .panel-act a{
    margin-top: 0px;
}
.stickyCart .box-wrap{
    max-width: 392px;
    position: fixed;
    background-color: #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    top:0;
}
.box-confirm .title{
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 3rem;
}

.box-confirm .act2{
    padding: 14px 25px;
    max-width: max-content;
    min-width: 180px;
    font-size: 15px;
    font-weight: 700;
}
.box-confirm .act2.trp{
    background: transparent;
    color: #105b92;
    border: 2px solid;
}
.table-bk td{
    padding-bottom: 5px;
    border: none;
}
.table-bk tr{
    border: none;
}
.table-bk td strong{
    font-weight: 700;
}
.box-chc.booking-form{
    padding: 0px;
    box-shadow: none;
    margin: 0px;
}
.box-chc.booking-form .form-checkbox label{
    margin: 0px;
}
.box-chc.booking-form .form-checkbox label{
    margin-bottom: 15px;
}
.col-lang{
    border-right: 1px solid #ededee;
}
.panel-booking .panel-lang{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    height:80vh;
}
.panel-lang .clear-panel{
    width: auto;
    right: 15px;
    top: 20px;
    text-align: right;
}
.booking-form .form-checkbox small{
    font-weight: 300;
    font-size: 14px;
    margin-left: 5px;
}
.panel-lang .panel-box{
    width: 65%;
}
.home .header-wrapper{
    justify-content:center;
    height:300px;
    background-size: cover !important;
    background-position: center center;
    background-color: var(--main-color);
}
.sosmed a{
    width: 35px;
    height: 35px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 7px;
}
.sosmed a svg{
    color: #fff;
    stroke-width: 1.5px;
    width: 20px;
}
.contact-info span{
    font-size: 16px;
}
.contact-info svg{
    color: #000;
    stroke-width: 1.5px;
    width: 25px;
    margin-right: 5px;
}
.contact-info a{
    color: #717171;
}
.copyright{
    background-color: var(--main-color);
    padding: 10px 120px;
}
.copyright p{
    font-size: 14px;
    color: #fff;
}
.footer-wrapper{
    padding-bottom: 70px !important;
    padding-top: 90px !important;
}
.menu-info li{
    margin-bottom: 8px;
}
.menu-info li{
    font-size: 16px;
}
.tx-desc > *,
.contact-info span{
    color: #1e1e1e;
}
.skeleton {
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: #ddd;
    background: linear-gradient(to right, #ffffff 8%, #f4f4f4 18%, #ffffff 33%);
    /* background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%); */
    background-size: 1200px 100%;
}

@-webkit-keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1200px 0;
    }
    100% {
        background-position: 1200px 0;
    }
}
@media (min-width: 1400px) {
    .container.container-be {
        max-width: 1200px;
    }
}
@media (max-width: 768px) {
    .box-confirm .title {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    .box-confirm .act2 {
        font-size: 12px;
    }
    .tf-statusbar {
        padding: 30px 20px;
    }
    .order p{
        font-size: 15px;
    }
    .booking-total h5{
        font-size: 15px;
    }
    .stickyCart .box-wrap{
        position: relative !important;
    }
    .wrap-cart-right .sch-list .schedule {
        padding: 0px !important;
    }
    .app-content.home {
        padding-bottom: 50px;
    }
    .copyright{
        text-align: center;
        padding: 10px 20px;
    }
    .footer-wrapper{
        padding-bottom: 60px !important;
        padding-top: 60px !important;
    }
    .dates-wrapper{
        display: none;
    }
    .col-lang{
        border-right: none;
    }
    .sch-list .review-wrap{
        display: block;
        padding-top: 5px;
    }
    .reviews {
        margin-top: 40px;
    }
    .review-wrap .profile {
        font-size: 15px;
        padding: 20px;
    }
    .sch-list .review-wrap .info{
        display: block;
        padding: 20px 0px !important;
    }
    .star-rate{
        padding: 0px 15px !important;
        margin-top: 30px;
    }
    .port-list table td,
    .port-list table th{
        font-size: 13px !important;
    }
    .nav-content .ports{
        display: block !important;
    }
    .payment-wrap .paymod {
        font-size: 15px;
        padding: 15px 10px;
    }
    .order .tf-btn{
        font-size: 15px;
    }
    .payment-wrap img {
        height: 15px;
    }
    .order .box-wrap .box-body {
        padding: 20px;
    }
    .order .title-h1 {
        font-size: 1.2rem;
    }
    .sch-list.items .schedule {
        padding: 0px!important;
    }
    .sch-list .img .swiper-slide-active img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
    }
    .sch-list .schedule {
        padding: 20px 30px 0px 30px !important;
    }
    .sch-list .info{
        padding: 20px 30px;
        text-align: left !important;
        display: flex;
        align-items: center;
    }
    .sch-list .info .info-2{
        text-align: right;
        margin-left: auto;
    }
    .sch-list .info .price h2 {
        font-size: 17px;
    }
    .filters .box {
        padding: 5px 6px;
        font-size: 12px;
    }
    .filters .box svg {
        height: 16px;
    }
    .filter-list.operator .panel-box.panel-up{
        left: -100px;
    }
    .tf-topbar {
        padding: 10px 10px !important;
    }
    .tf-topbar .brand img {
        width: 150px;
    }
    .sch-list .info .act2{
        margin: 0;
        padding: 3px 8px;
        margin-left: auto;
        font-size: 11px;
    }
    .sch-list .label label {
        font-size: 11px;
        padding: 0px 7px;
    }
    .sch-list .time h2 {
        font-size: 16px;
    }
    .badge-ava {
        font-size: 10px;
        padding: 5px 7px;
    }
    .sch-list .info .price,
    .sch-list .info .act1{
        justify-content: start !important;
    }
    .sch-list .start p, .sch-list .end p{
        font-size: 12px;
    }
    .container.container-be{
        padding: 0px 20px;
    }
    .booking-form {
        padding: 15px;
    }
    .booking-form .form-checkbox label+label{
        margin-left: 0px;
    }
    .booking-form .form-checkbox label {
        padding-left: 26px;
        font-size: 14px;
        margin-right: 7px;
    }
    .booking-form .form-checkbox input+span {
        left: 2px;
        top: 6px;
        width: 17px;
        height: 17px;
    }
    .booking-form .form-control {
        font-size: 14px;
        height: 50px;
        margin-bottom: 10px;
        padding: 0px;
    }
    .booking-form .switch {
        top: -10px;
        width: 25px;
        height: 25px;
    }
    .booking-form .bk-btn {
        height: 45px;
        font-size: 15px;
    }
    .dates-wrapper .item-label {
        height: 50px;
        font-size: 11px;
    }
    .tf-panel.dropdown .panel-box {
        width: 300px;
    }
    .sch-list .detail {
        padding-right: 15px;
    }
    .nav-schedule .nav-content {
        padding: 20px !important;
        margin-bottom: 15px;
    }
    .nav-schedule .nav-link {
        padding: 11px;
        font-size: 14px;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
    }
    .sch-list .detail .body-wrapper.open {
        padding: 0px !important;
        margin-top: 15px;
    }
    .panel-booking .panel-box {
        width: 90%;
    }
    .panel-booking .panel-box .panel-form {
        padding: 20px;
    }
    .panel-booking .sch-list .schedule {
        padding: 0px !important;
    }
    .panel-booking h6.date{
        font-size: 16px;
    }
    .panel-booking  .sch-list .brand p {
        font-size: 13px;
    }
    .center-panel .sch-list .brand h4 {
        font-size: 13px;
    }
}
