/* Xoo Login */
.xoo-el-section {
    padding-left: 0 !important;
}
.xoo-el-form-container.xoo-el-form-inline {
    margin: 0 !important;
}
.xoo-el-sing-fields, form.xoo-el-action-form {
    margin-top: 0 !important;
}
.xoo-aff-group, .xoo-el-notice {
    width: 100% !important;
}
.xoo-el-section[data-section="single"] .xoo-el-notice, .xoo-el-notice {
    margin-bottom: 40px !important;
}
.xoo-el-form-container button.button.btn.xoo-el-action-btn {
    padding: 16px 0px;
    font-weight: 600;
    border: 1px solid var(--input-border);
    border-radius: var(--input-radius);
    text-align: center;
    cursor: pointer;
    transition: all .2scubic -bezier(.68, .01, .58, .75);
    transition-behavior: normal;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.68, 0.01, 0.58, 0.75);
    transition-delay: 0s;
    transition-property: all;
    box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.25);
    height: auto !important;
    margin: 0 !important;
    width: 100% !important;
    line-height: 24px;
    background-color: var(--label-color);
    font-size: 16px !important;
}
.xoo-el-form-container button.button.btn.xoo-el-action-btn:hover {
    transform: scale(1.02);
}
.xoo-aff-group.onehalf {
    margin: 0 !important;
}
.xoo_el_reg_terms_cont {
    margin-bottom: 30px !important
}
div.xoo-aff-checkbox_single label {
    position: inherit;
    background-color: transparent;
    color: #fff;
    line-height: normal;
    margin: 0 !important;
}
div.xoo-aff-checkbox_single label a {
    color: var(--label-color);
}
input.xoo-aff-checkbox_single {
    height: 18px !important;
    width: 18px;
    margin-right: 10px;
}

/* Tel */

.iti--inline-dropdown {
    width: 100%;
    .iti__country-container {
        left: 3px !important;
        padding-top: 2px;
        color: #fff;
    }
    .iti__tel-input {
        padding-left: 92px !important;
    }

    .iti__dropdown-content {
        z-index: 5 !important;
        background-color: var(--main-bg) !important;
        max-height: 190px !important;
        box-shadow: none !important;
        border: 1px solid var(--input-border) !important;
        border-radius: var(--border-radius);
        overflow: hidden !important;

        .iti__country.iti__highlight {
            background-color: var(--label-color);
        }

        .iti__dial-code {
            color: inherit;
        }
    }


}



/* Woocommerce */

.form-row.dropdown, .form-row.dropdown select {
    width: 100%;
    margin-bottom: 0;
}


/* Maps New */

.autocomplete, .autoinput {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    .fa-xmark {
        position: absolute;
        right: 10px;
        font-size: 20px;
        cursor: pointer;
        color: #e1624b;
    }

    .close {
        display: none;
    }

    .autocomplete-input, .autoinput-input {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden !important;
        padding: 2px 10px 0 46px !important;

        @media (max-width: 767px) {
            padding: 2px 10px 0 10px !important;
        }
    }

    .autocomplete-input.waypoint {
        padding-right: 30px !important;
    }

    .autocomplete-icon {

        position: absolute;
        display: flex;
        left: 10px;
        width: 30px;
        height: 30px;
        margin-top: 5px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;

        @media (max-width: 767px) {
            margin-top: 0;
        }

        i {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            display: var(--fa-display, inline-block);
            font-style: normal;
            font-variant: normal;
            line-height: 1;
            text-rendering: auto;
        }
    }
}

.input-div {
    display: flex;
    align-items: center;
    position: relative;
}

.select-div {
    display: flex;
    position: relative;
}

.autocomplete-results {
    display: none;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
    background-color: var(--main-bg);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--input-border);
    margin-top: 10px;

    .fa-solid {
        margin-right: 6px;
        width: 30px;
        text-align: center;
    }

    .autocomplete-item {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .autocomplete-item:hover {
        color: var(--label-color);
    }

    .autocomplete-text {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden !important;
    }
}

@media (max-width: 767px) {
    .autocomplete.fixed {
        position: fixed;
        top: 0;
        left: 0;
        padding: 50px 30px 30px;
        width: 100%;
        height: 100%;
        background-color: var(--input-bg);
        z-index: 999;
        .autocomplete-icon {
            display: none;
        
        }
        .close {
            font-size: 28px;
            display: inherit;
            position: absolute;
            top: 15px;
            right: 30px;
            cursor: pointer;
        }
    }

    .mt26 {
        margin-top: 0 !important;
    }
}

/* HTML marker styles */
.price-tag {
    background-color: #4285F4;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
  }
  
  .price-tag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4285F4;
  }

/* Bookingform_1 */

#bookingform_1 {

    --main-bg:          #22232a;
    --input-bg:         #2d2d34;
    --input-border:     #38383e;
    --input-radius:     8px;
    --border-radius:    16px;

    --label-color:      #31a7b9;
}

.label-color {
    color: var(--label-color);
}

.error {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 8px;

    .reload, .no-reload {
        padding: 5px 10px;
        border-radius: 8px;
        background-color: #fff;
        color: #000;
        font-weight: 600;
        cursor: pointer;
    }

    .reload:hover, .no-reload:hover {
        scale: 1.1;
    }
}

/* Loader */

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    z-index: 999;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid;
    border-color: var(--label-color) transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    }
    
    ::-webkit-scrollbar-track {
    background: var(--input-border);
    border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #D4D4D4;
    min-height: 30px;
    cursor: grab;
    }
    
    ::-webkit-scrollbar-thumb:hover {
    background: var(--label-color);  
    }

/* Framework */

.transition {
    transition: all .2scubic-bezier(.68,.01,.58,.75);
    transition-behavior: normal;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.68, 0.01, 0.58, 0.75);
    transition-delay: 0s;
    transition-property: all;
}

.flex {
    display: flex;
    min-width: 0;
}

.column {
    flex-direction: column;
}

/* Mobile */

@media (max-width: 767px) {
    .mobile-row {
        flex-direction: row;
    }
    
    .mobile-column {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .mobile-hidden {
        display: none;
    }
}

/* Tablet */

@media (max-width: 1025px) {
    .tablet-hidden {
        display: none;
    }
    .tablet-column {
        flex-direction: column;
        align-items: stretch !important;
    }
}

/* Flex */

.stretch {
    align-items: stretch;
}

.start {
    align-items: flex-start;
}

.center {
    align-items: center;
}

.end {
    align-items: end;
}

.h-center {
    justify-content: center;
}

.h-end {
    justify-content: end;
}

.h-around {
    justify-content: space-around;
}

.h-between {
    justify-content: space-between;
}
.h-start {
    align-items: flex-start;
}

.f1 {
    flex: 1;
}
.f2 {
    flex: 2;
}
.f3 {
    flex: 3;
}
.f4 {
    flex: 4;
}
.f5 {
    flex: 5;
}
.f6 {
    flex: 6;
}
.f7 {
    flex: 7;
}
.f8 {
    flex: 8;
}
.f9 {
    flex: 9;
}

.g10 {
    gap: 10px;
}
.g20 {
    gap: 20px;
}
.g30 {
    gap: 30px;
}
.g40 {
    gap: 40px;
}
.g45 {
    gap: 45px;
}
.g60 {
    gap: 60px;
}

/* General */

a {
    color: var(--label-color);
}

.mt26 {
    margin-top: 26px;
}

.w100 {
    width: 100%;
}

.hidden {
    display: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* Box */

.border-box {
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius);
    padding: 20px;
}

.padding-box {
    padding: 20px;
}

.box-bg {
    background-color: var(--input-bg);
}

.box-switch {
    margin-top: -44px;
}

.margin-box {
    margin-top: 20px;
}

/* Buttons */

.buttons .next, .buttons .back {
    padding: 16px 0px;
    font-weight: 600;
    border: 1px solid var(--input-border);
    border-radius: var(--input-radius);
    text-align: center;
    cursor: pointer;

    transition: all .2scubic-bezier(.68,.01,.58,.75);
    transition-behavior: normal;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.68, 0.01, 0.58, 0.75);
    transition-delay: 0s;
    transition-property: all;
}

.buttons >*:hover {
    transform: scale(1.02);
}

.buttons .next {
    background-color: var(--label-color);
}

.buttons .back {
    background-color: var(--input-bg);
}

/* */

.shadow {
    box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.25);
}

i.fa-solid {
    line-height: 1.5em;
}


/* Elements */

input[type='radio'] {
    accent-color: var(--label-color);
}

label:has(> input[type='radio']:checked) {
    color: var(--label-color);
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 !important;
    margin-bottom: -10px !important;
    line-height: normal;
}

.h1, .h2, .h3 {
    color: var(--label-color);
    line-height: normal;
}

.h1 {
    font-size: 22px;
}

.h2 {
    font-size: 18px;
}

.input-div label, .select-div label {
    position: absolute;
    font-size: 13px;
    font-weight: 600;
    top: -4px;
    left: 10px;
    line-height: 0.6;
    z-index: 3;
    color: var(--label-color);
}

.input-div input, select, textarea {
    background-color: var(--main-bg) !important;
    border: 1px solid var(--input-border) !important;
    border-color: var(--input-border) !important;
    border-radius: var(--input-radius) !important;
    height: 50px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    padding: 2px 10px 0 10px !important;
    color: #fff !important;
    font-size: 16px !important;
}

.input, select, textarea {
    position: relative;
    color: #fff;
}

textarea {
    min-height: 200px;
    max-height: 400px;
    min-width: 75%;
    max-width: 100%;
    padding: 20px !important;
}

/* Route */

#route {

    .fa-clock {
        font-size: 19px !important;
        left: -35px !important;
    }

    #add-waypoint {
        opacity: .2;
        cursor: pointer;
        width: fit-content;
    }

     #add-waypoint:active {
        opacity: 1;
        color: var(--label-color);
    }

    @media (hover: hover) {
        #add-waypoint:hover {
            opacity: 1;
            color: var(--label-color);
        }
      }

    @media (max-width: 767px) {

        #add-waypoint {
            margin-bottom: 4px;
        }

        .autocomplete-icon {
            position: absolute;
            left: -35px;
            z-index: 200;
            padding: 5px;
            font-size: 20px;
        }
    }

    #add-waypoint {
        order: 1;
    }
}

/* Line */

.line-div {
    margin-top:25px;
    @media (max-width: 767px) {
        display: inherit !important;
        position: absolute;
        top: 16px;
        width: 5px;
        left: -21px;
        height: calc(100% - 129px);
    }
}

#panel_hourly .line-div {
    @media (max-width: 767px) {
        height: calc(100% - 80px);
    }
}

.line {
    color: #fff;
    position: absolute;
    width: 0%;
    -webkit-animation: increase 4s;
    -moz-animation: increase 4s;
    -o-animation: increase 4s;
    animation: increase 4s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    z-index: 9;
    @media (max-width: 767px) {
        height: 0%;
        border-left: 2px solid var(--label-color);
    }
}

.line_2 {
    color: #fff;
    position: absolute;
    z-index: 1;
    width: 100%;
    @media (max-width: 767px) {
        height: 100%;
        border-left: 2px solid transparent;
    }
}

.row:last-child>.left>.line, .row:last-child>.left>.line_2 {
border: none;
}

@keyframes increase {
0% {width: 0;}
100% {width: 100%;}
}

@media (max-width: 767px) {
    @keyframes increase {
        0% {height: 0;}
        100% {height: 100%;}
        }
}

/* Infobox */

#info {
    top: 50%;
    transform: translateY(-50%);

    z-index: 1;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;

    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    max-width: 1024px;
    font-weight: 600;

    >span {
        transform: scale(1);
        animation: pulse 2s infinite;
        background-color: #f35757;
        color: #fff;
        padding: 14px 30px;
        margin: auto;
        border-radius: var(--input-radius);

    }
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(243, 87, 87, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

/* Google Maps */


.map {
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid var(--input-border);
}

#map, #hourly_map {
    height: 350px;
    width: 100%;
    border-radius: var(--border-radius);
}

@media (max-width: 767px) {
    #map, #hourly_map {
        width: 100vw;
        height: 250px;
        position: relative;
        margin-left: -50vw;
        margin-top: -10px;
        left: 50%;
        border-radius: 0;
    }
    .gm-style>div:nth-last-child(3)>div {
        display: none !important
    }
}

.gm-style-iw.gm-style-iw-c {
    background-color: var(--input-border);
    border: 1px solid #31a7b9;
    padding: 10px 20px !important;

    .gm-style-iw-chr {
        display: none !important;
    }
    .gm-style-iw-d {
        overflow: hidden !important;
        >div {
            color: #fff;
            font-weight: 600;
        }
    }
}

.gm-style .gm-style-iw-tc::after {
    background: var(--input-border);
}

.gm-style-iw button {
    display: none !important;
}

/* Ride Type */

.switch {
    display: flex;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 50px;

    >div {
        flex: 1;
        text-align: center;
        font-weight: 600;
        height: 49px;
        align-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    >div.active {
        background-color: var(--label-color);
        color: var(--white-color);
    }
}

/* Timepicker */

#timepicker-div {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

li.ui-timepicker-selected, .ui-timepicker-list li:hover, .ui-timepicker-list .ui-timepicker-selected:hover {
    background-color: var(--input-bg) !important;
}

.ui-timepicker-wrapper {
    
    position: relative !important;
    background-color: var(--main-bg) !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: 190px !important;
    box-shadow: none !important;
    border: 1px solid var(--input-border) !important;
    border-radius: var(--border-radius);
    overflow-y: auto;

    @media (max-width: 767px) {
        position: fixed !important;
        height: 100%;
        max-height: 100% !important;
        border-radius: 0;
    }

    .ui-timepicker-list {
        height: 190px;

        padding: 10px 0 ;

        @media (max-width: 767px) {
            height: 100%;
        }

        >li {
            padding: 5px 15px;
            color: #D4D4D4;
            font-weight: 600;
        }

        >li:hover {
            background: var(--label-color) !important;
        }

        >li.ui-timepicker-selected {
            background: var(--label-color) !important;
        }
    }

    .ui-timepicker-list:hover .ui-timepicker-selected {
        color: inherit;
    }
}

/* Datepicker */

#datepicker-div, #timepicker-div, #return-date-div, #return-time-div, #hourly-duration-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#ui-datepicker-div {
    z-index: 9999 !important;
    display: none;
    position: inherit !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    background-color: var(--main-bg);
    padding-bottom: 10px;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius);
    .ui-datepicker-calendar {
        width: 100%;
    }
    @media (max-width: 767px) {
        position: fixed !important;
        height: 100%;
        border-radius: 0;
    }
}

#ui-datepicker-div {

    >div {
        width: 100%;
        padding: 10px 20px;
        transition: all .2scubic-bezier(.68,.01,.58,.75);
        transition-behavior: normal;
        transition-duration: 0.2s;
        transition-timing-function: cubic-bezier(0.68, 0.01, 0.58, 0.75);
        transition-delay: 0s;
        transition-property: all;
    }
    .ui-datepicker-header {
        display: flex;
    }
    .ui-datepicker-header>* {
        display: flex;
        align-items: center;
    }
    .ui-datepicker-title {
        flex: 1;
        order: 2;
        justify-content: center;
        text-align: center;
        font-weight: 600;
    }
    .ui-datepicker-prev {
        order: 1;
    }
    .ui-datepicker-prev span, .ui-datepicker-next span {
        color: #D4D4D4;
        cursor: pointer;
        transition: all .2scubic-bezier(.68,.01,.58,.75);
        transition-behavior: normal;
        transition-duration: 0.2s;
        transition-timing-function: cubic-bezier(0.68, 0.01, 0.58, 0.75);
        transition-delay: 0s;
        transition-property: all;
    }
    .ui-datepicker-prev span:hover, .ui-datepicker-next span:hover {
        color: var(--label-color);
    }
    .ui-datepicker-prev span:after {
        font-family: 'Font Awesome 6 Free';
        content: "\f30a";
        font-size: 20px;
    }
    .ui-datepicker-next {
        order: 3;
    }
    .ui-datepicker-next span:after {
        font-family: 'Font Awesome 6 Free';
        content: "\f30b";
        font-size: 20px;
    }
    .ui-datepicker-calendar {
        width: 100%;

        >thead>tr {
            background-color: var(--input-border);
            padding: 5px 15px;
            margin-bottom: 10px;
        }

        tr {
            display: flex;
            padding: 5px 15px;
        }

        tr>* {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        td>*{
            color: #D4D4D4;
            text-align: center;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            align-content: center;
            margin: auto;
            font-weight: 600;
        }

        td:not(.ui-datepicker-current-day)>a:hover {
            background-color: var(--label-color);
        }

        .ui-state-disabled {
            opacity: .2;
        }



        .ui-datepicker-today>a {
            background-color: var(--input-border);
            font-weight: 600;
        }

        .ui-datepicker-current-day>a {
            background-color: var(--label-color);
            color: #D4D4D4;
            font-weight: 600;

        }
    }
}

/* Vehicle List */

.vehicle-select {
    color: #fff;
    cursor: pointer;
    min-height: 180px;

    .vehicle-meta {
        @media (max-width: 767px) {
            margin-top: 50px;
        }
    }

    .vehicle-class {
        letter-spacing: .2px;
    }

    .vehicle-price {
        letter-spacing: .2px;
        background-color: var(--label-color);
        border-radius: 8px;
        padding: 5px 10px;
        text-align: center;
        white-space: nowrap;
    }

    .main {
        min-width: 50%;
    }

    .vehicle_price {
        max-width: fit-content;
        min-width: fit-content;
        @media (max-width: 767px) {
            position: absolute;
            top: 40px;
        }
    }
}

.vehicle-select.active {
    .vehicle-price {
        background-color: #fff;
        color: var(--label-color);
    }

    .tags .tag {
        background-color: #ffffff1c;
        padding: 4px 10px;
        border-radius: 8px;
        border: 1px solid #ffffff1f;
        font-size: 80%;
        white-space: nowrap;
    }
}


.vehicle-select:hover, .vehicle-select.active {
    scale: 1.02;
    box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.25);
}

.vehicle-select.active {
    background-color: var(--label-color);
}

.vehicle-select .fa-leaf {
    margin-left: 10px;
    color:#c9ff92;
}

.vehicle-img img {
    width: 90% !important;
}

.vehicle-description {
    margin-top: 15px;
    opacity: .4;
    font-size: 80%;
}

.tags {
    flex-wrap: wrap;

    .tag {
        background-color: #22232a;
        padding: 4px 10px;
        border-radius: 8px;
        border: 1px solid var(--input-border);
        font-size: 80%;
        white-space: nowrap;

        transition: all .2scubic-bezier(.68,.01,.58,.75);
        transition-behavior: normal;
        transition-duration: 0.2s;
        transition-timing-function: cubic-bezier(0.68, 0.01, 0.58, 0.75);
        transition-delay: 0s;
        transition-property: all;

        >i {
            margin-right: 10px;
            @media (max-width: 1025px) {
                margin-right: 0;
            }
        }
    }
}

.tax {
    max-width: 100px;
    opacity: .4;
    font-size: 80%;

    @media (max-width: 767px) {
        display: none;
    }
}

/* Step 5 */

.passenger {
    label {
        position: inherit !important;
        background-color: transparent;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
    }
    input {
        height: auto !important;
    }
}

#summary {
    display: flex;
    flex-direction: column;
    gap: 20px;

    >div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    label {
        font-size: 13px;
        font-weight: 600;
        color: var(--label-color);
    }

    .route {
        display: flex;
        flex-direction: column;
        gap: 20px;
        > div {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
    }

    .airport {
        gap: 10px !important;
    }

    .tags {
        display: flex;
        gap: 15px;

        span i {
                margin-right: 5px;
        }
    }

    .price {
        letter-spacing: .2px;
        background-color: var(--label-color);
        border-radius: 8px;
        padding: 5px 10px;
        text-align: center;
        white-space: nowrap;
        width: fit-content;
        font-size: 22px;
    }
}