@charset "UTF-8";
/* CSS Document */

.small-submenu{
    left: auto!important;
    min-width: auto!important;
}
.small-submenu::before{
    left: 50%!important;
}
.small-submenu > li > a:hover{
    padding-left: 10px!important;
}

.stations-submenu {
    max-height: 400px;
    overflow-y: auto;
}

.select2-container--default .select2-selection--single{
    border: 1px solid #ced4da!important;
    height: 40px;
    padding: 5px 0px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 38px!important;
}

.disabled-input-field{
    background-color: #ddd!important;
    opacity: 0.85!important;
    cursor: not-allowed;
}

.wrong-input-field{
    outline: 1px solid red;
    border-radius: 5px;
}
.wrong-input-field:focus{
    border-color: red;
    box-shadow: 0 0 0 .25rem rgba(235, 52, 52, 0.25);
}

.img_list{
    display: flex;
    align-items: center;
    justify-content: center;
}
.img_list img{
    object-fit: contain;
    max-height: 120px;
    position: static!important;
}

.tour_list_desc{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 10px 10px 10px;
    align-items: flex-start;
    text-align: left;
}

.why-to-book-with-us{
    display: grid;
    gap: 15px;
    grid-template-columns: var(--chosen-columns-number);
}
.why-to-book-with-us > *{
    width: 100%;
    border: 2px solid lightgray;
    padding: 20px 10px;
    display: flex;
}
.why-to-book-with-us .item-inner{
    display: flex;
    align-items: center;
    gap: 5px;
}
.why-to-book-with-us .item-icon{
    font-size: 22px;
}
.why-to-book-with-us .item-text{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
}

.total_price{
    font-size: 38px;
	color: var(--text-gold);
    line-height: 1;
}

.ckeckbox-switch{
    width: 40px!important;
    height: 20px;
    cursor: pointer;
}

.form-check-input:checked{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.form-check-input:focus{
    border-color: var(--theme-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(248, 158, 70, .25)
}
.form-switch .form-check-input:focus{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.60%29'/%3e%3c/svg%3e");
}

#bookingForm{
    padding-top: 3%;
}
.book_now_container{
    height: fit-content;
    opacity: 0;
    padding: 5%;
    transition: max-height 800ms linear, opacity 800ms linear;
}
.book_now_container.hide{
    opacity: 0;
    max-height: 0;
}
.book_now_container.show{
    opacity: 1;
    max-height: 5000px;
}
.book_now_container .booking-extra-option-row{
    margin-bottom: 15px;
}

main .container.margin_60.padding_160 {
    padding-top: 160px!important;
}

.payment-available.hide, .payment-on-request.hide{
    display: none!important;
}

/* #validtoCountdown {
    box-shadow: 0px 0px 27px -5px black;
    z-index: 99999999999999999;
    border-radius: 10px;
    text-align: center;
    padding: 15px 0px;
    position: fixed;
    width: 200px;
    top: 20%;
    right: 2%;
} */

.reservation-result{
    color: white;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reservation-result.success{
    background-color: limegreen;
    font-size: 150px;
}
.reservation-result.failed{
    background-color: #000;
    font-size: 50px;
}

.extra-options-custom-grid{
    min-width: 150px;
    max-width: 200px;
}
.extra-options-custom-grid > *{
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.extra-options-values-custom-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-width: 500px;
    width: 100%;
}
.extra-options-values-custom-grid > *{
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scrollable-extra-options{
    overflow-x: auto;
}

#validtoCountdown {
    box-shadow: unset!important;
    z-index: 99999999999999999;
    border-radius: 10px;
    text-align: center;
    padding: 25px 0px!important;
    position: fixed;
    width: 100px!important;
    top: unset!important;
    right: 0!important;
    bottom: 70px!important;
    transition: 0.35s;
    transform: scale(0.7);
    background-color: rgba(0,0,0,.6);
    opacity: 1;
    transition: all 0.3s;
    color: #fff;
    font-size: 18px;
    pointer-events: all;
    cursor: pointer;
}
#validtoCountdownMobileText{
    z-index: 99999999999999999;
    padding: 20px 0px;
    position: absolute;
    pointer-events: none;
    width: 200px;
    display: inline-block;
    background-color: rgba(0,0,0,.8);
    text-align: center;
    color: #fff;
    font-size: 18px;
    right: 114px;
    bottom: -6px;
    border-radius: 10px;
    transition: opacity 150ms linear;
}
#validtoCountdownMobileText::after{
    content: '';
    position: absolute;
    border-bottom: solid 12px transparent;
    border-top: solid 12px transparent;
    border-left: solid 12px rgba(0,0,0,.8);
    border-right: solid 12px transparent;
    top: 40%;
    right: -23px;
}
#validtoCountdownMobileText.deactive{
    opacity: 0!important;
    z-index: -1!important;
}
#validtoCountdownMobileText.active{
    opacity: 1!important;
    z-index: 99999999999999999!important;
}

.expire-popup {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-color: rgb(51, 51, 51, 0.9);
    top: 0;
    left: 0;
    z-index: 9999999;
}
.expire-popup-container {
    padding: 8% 10%;
    border-radius: 10px;
    max-width: 95%;
    background-color: #ddd;
}

.btn_full.btn_promotions{
    border-radius: unset;
    margin: 0;
}

#map{
    min-height: 500px;
}
.leaflet-control-attribution.leaflet-control > a {
    display: none!important;
}

.car-types{
    display: grid;
    gap: 15px;
    grid-template-columns: var(--car-types-chosen-columns-number);
}

aside.sticky{
    top: 160px;
    right: 0;
    height: fit-content;
    position: sticky;
    z-index: 10;
}

.including-additional-fee {
    font-size: 15px;
    color: var(--text-black);
}

.flex-on-desktop{
    display: flex;
    justify-content: center;
}

.oragne-separator-line{
    border: 1px var(--background-booking-orange) solid;
}

.theme-color-separator-line{
    border: 1px var(--theme-color) solid;
}

.img_list.promotioned img{
    height: 120px!important;
}

.amenities-and-book-btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cover Spin */
#cover-spin-fixed {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:999999999;
    display:none;
}

#cover-spin-absolute, .cover-spin-asbolute {
    position:absolute;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:999999999;
    display:none;
}

#cover-spin-fixed::after, #cover-spin-absolute::after, .cover-spin-asbolute::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}
