<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Toggle Button */
.switch-toggle {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    border: 0;
    outline: 0;
    cursor: pointer;
}

/* To create surface of toggle button */
.switch-toggle:after {
    content: '';
    width: 80px;
    height: 35px;
    display: inline-block;
    background: rgba(196, 195, 195, 0.55);
    border-radius: 18px;
    clear: both;
}

/* Contents before checkbox to create toggle handle */
.switch-toggle:before {
    content: '';
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Shift the handle to left on check event */
.switch-toggle:checked:before {
    right: 0;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.6);
}
/* Background color when toggle button will be active */
.switch-toggle:checked:after {
    background: #0066FF;
}

.xhf_trip_form_widget .form-image {
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    transition: all 200ms ease;
}

@-ms-keyframes spin {
    0% { -ms-transform: translateY(0); }
    100% { -ms-transform: translateY(30px); }
}

@-moz-keyframes spin {
    0% { -moz-transform: translateY(0); }
    100% { -moz-transform: translateY(30px); }
}

@-webkit-keyframes spin {
    0% { -webkit-transform: translateY(0); }
    100% { -webkit-transform: translateY(30px); }
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(30deg); }
}

.flip {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateX(0);
    -moz-backface-visibility: hidden;
    -moz-transform: translateX(0);
}

.flip.out {
    -webkit-transform: rotateY(-90deg) scale(.9);
    -webkit-animation-name: flipouttoleft;
    -webkit-animation-duration: 1000ms;
    -moz-transform: rotateY(-90deg) scale(.9);
    -moz-animation-name: flipouttoleft;
    -moz-animation-duration: 1000ms;
}

.flip.in {
    -webkit-animation-name: flipintoright;
    -webkit-animation-duration: 1000ms;
    -moz-animation-name: flipintoright;
    -moz-animation-duration: 1000ms;
}

.flip.out.reverse {
    -webkit-transform: rotateY(90deg) scale(.9);
    -webkit-animation-name: flipouttoright;
    -moz-transform: rotateY(90deg) scale(.9);
    -moz-animation-name: flipouttoright;
}

.flip.in.reverse {
    -webkit-animation-name: flipintoleft;
    -moz-animation-name: flipintoleft;
}

@-webkit-keyframes flipouttoleft {
    from { -webkit-transform: rotateY(0); }
    to { -webkit-transform: rotateY(-90deg) scale(.9); }
}

@-moz-keyframes flipouttoleft {
    from { -moz-transform: rotateY(0); }
    to { -moz-transform: rotateY(-90deg) scale(.9); }
}

@-webkit-keyframes flipouttoright {
    from { -webkit-transform: rotateY(0) ; }
    to { -webkit-transform: rotateY(90deg) scale(.9); }
}

@-moz-keyframes flipouttoright {
    from { -moz-transform: rotateY(0); }
    to { -moz-transform: rotateY(90deg) scale(.9); }
}

@-webkit-keyframes flipintoleft {
    from { -webkit-transform: rotateY(-90deg) scale(.9); }
    to { -webkit-transform: rotateY(0); }
}

@-moz-keyframes flipintoleft {
    from { -moz-transform: rotateY(-90deg) scale(.9); }
    to { -moz-transform: rotateY(0); }
}

@-webkit-keyframes flipintoright {
    from { -webkit-transform: rotateY(90deg) scale(.9); }
    to { -webkit-transform: rotateY(0); }
}

@-moz-keyframes flipintoright {
    from { -moz-transform: rotateY(90deg) scale(.9); }
    to { -moz-transform: rotateY(0); }
}

.xhf_trip_form_widget.mobile_popup {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-bottom: 50px;
    background-color: #fff;
    z-index: 999;
}

.xhf_trip_form_widget.mobile_popup .mobile_popup_header {
    border-bottom: 1px solid #00000026;
}

.xhf_trip_form_widget.mobile_popup .mobile_popup_header .xhf_mobile_popup_close {
    font-size: 20px;
    border: 0;
    font-weight: 600;
    padding: 10px 25px;
    text-align: left;
}

/** Steps **/
.xhf_trip_form_widget .bs-stepper .step-trigger {
    display: block;
    padding: 0;
    color: #333;
}

.xhf_trip_form_widget .with_flight, .xhf_trip_form_widget .with_hotel {
    display: none;
}

.xhf_trip_form_widget .with_flight.on, .xhf_trip_form_widget .with_hotel.on {
    display: flex;
    flex-direction: column;
}

.xhf_trip_form_widget .step_flight .trip_date_start_label,
.xhf_trip_form_widget .step_flight .trip_date_start_field,
.xhf_trip_form_widget .step_flight .trip_date_end_label,
.xhf_trip_form_widget .step_flight .trip_date_end_field,
.xhf_trip_form_widget .amount {
    display: inline-block;
}

.xhf_trip_form_widget .content.fade.dstepper-none {
    display: none;
}

.hotel_stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.hotel_stars&gt;input {
    display: none !important;
}

.hotel_stars&gt;label {
    position: relative;
    width: 1em;
    font-size: 12vw;
    color: #FFD600;
    cursor: pointer
}

.hotel_stars&gt;label::before {
    content: "\2605";
    position: absolute;
    opacity: 0;
}

.hotel_stars&gt;label:hover:before,
.hotel_stars&gt;label:hover~label:before {
    opacity: 1 !important;
}

.hotel_stars&gt;input:checked~label:before {
    opacity: 1;
}

.hotel_stars:hover&gt;input:checked~label:before {
    opacity: 0.4;
}

/* Create a custom checkbox */
input.xhf_checkbox {
    background-color: #009EF7;
    height: 1.8rem;
    width: 1.8rem;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 5px;
}

input.xhf_checkbox:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%3e%3c/svg%3e");
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.container-checkbox .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

label.container-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

label.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

label.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

label.container-checkbox .checkmark:after {
    right: 9px;
    top: 7px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Create a custom checkbox */

.form_indicator_wrap .line {
    margin: unset;
    background-color: unset;
    margin-bottom: 35px;
    margin-left: -40px;
    margin-right: -35px;
    z-index: 1;
}

.form_indicator_wrap .step {
    z-index: 2;
}

.form_indicator_wrap .step .bs-stepper-circle {
    display: block;
    margin: 0 auto;
    background: #fff;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.form_indicator_wrap .line:after {
    content: ' ';
    background-color: #00000033;
    min-width: 1px;
    min-height: 10px;
    width: 80%;
    display: inline-block;
}

.form_indicator_wrap .line.xhf_activated,
.form_indicator_wrap .line.xhf_active {
    margin-bottom: 34px;
}

.form_indicator_wrap .line * {
    display: none;
}

.form_indicator_wrap .line.xhf_active * {
    display: none;
}

.form_indicator_wrap .line.xhf_active:before {
    content: ' ';
    background-color: #0066ff;
    min-width: 1px;
    min-height: 10px;
    width: 70%;
    display: inline-block;
    margin-right: 0;
}

.form_indicator_wrap .line.xhf_active:after {
    display: none;
}

@keyframes xhf_progres{
    0%{
        width: 10%;
    }
    25%{
        width: 30%;
    }
    50%{
        width: 50%;
    }
    75%{
        width: 60%;
    }
    100%{
        width: 70%;
    }
}

.form_indicator_wrap .line.xhf_active:after {
    width: 35%;
    margin-right: 15px;
}

.form_indicator_wrap .line.xhf_activated:after {
    background-color: #0066ff;
}

.form-alert .alert {
display: none;
font-size: 16px;
}

.field_error {
border: 1px solid red !important;
}

.bs-stepper-circle, .bs-stepper-label {
display: block;
}

.xhf_trip_form_widget .toggle.btn {
    min-width: 60px;
    min-height: 35px;
}

/** Bubbles */
.xhf_trip_form_widget .form-image .bubbles {
    position: absolute;
    top: 150px;
    left: 30%;
    z-index: 9999;
    border-width: 5px;
    border-color: #cacaca;
    border-style: solid;
    background-color: #cacaca;
    border-radius: 50%;
    text-align: center;
    transition: all 200ms ease;
    color: #0c0c0c;
    padding: 10px;
    opacity: 0;
}

.xhf_trip_form_widget .form-image:hover .bubbles {
    opacity: 1;
}

.xhf_trip_form_widget .form-image .bubbles .circle {
    border-style: solid;
    position: absolute;
    width: 25px;
    padding: 10px;
    border-radius: 50%;
    left: 0;
    bottom: 10px;
    top: 50px;
}

.xhf_trip_form_widget .form-image .bubbles .circle2 {
    border-style: solid;
    position: absolute;
    width: 5px;
    padding: 5px;
    border-radius: 50%;
    left: -15px;
    top: 75px;
}

/** End Bubbles */

/** Bootstrap Select fix */
.bootstrap-select .dropdown-toggle .filter-option {
    float: right;
    text-align: right;
}

/** Bootstrap Select fix End */

.xhf_trip_form_widget .step_flight button.date_start_hour_field:hover,
.xhf_trip_form_widget .step_flight button.date_start_hour_field:focus,
.xhf_trip_form_widget .step_flight button.date_end_hour_field:hover,
.xhf_trip_form_widget .step_flight button.date_end_hour_field:focus {
    background: unset !important;
    outline: none !important;
    color: unset !important;
}

.xhf_trip_form_widget .step_flight .flight_passengers_field .step_flight_field_passengers button {
    min-width: 10px !important;
    border: 1px solid #0066FF;
    color: #fff;
    border-radius: 50%;
    background-color: #0066FF;
    font-size: 20px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 10px;
}

.xhf_trip_form_widget .step_flight .flight_passengers_field .step_flight_field_passengers input {
    font-size: 18px;
    margin-top: 8px;
}

.xhf_trip_form_widget .step_flight .flight_passengers_field .step_flight_field_passengers button:hover {
    background-color: unset !important;
    color: #333;
    border: 1px solid #6c757d;
}

.xhf_trip_form_widget .step_flight input.amount.step_flight_field_passengers {
    border: 0 !important;
    max-height: 30px !important;
}

.xhf_trip_form_widget .flight_passengers_field_label {
    flex-basis: 200px;
    margin-top: 10px;
}

.xhf_trip_form_widget .flight_passengers_field {
    flex-basis: 150px;
}

.xhf_trip_form_widget button:hover {
    background-color: unset;
    outline: 0;
    border: 0;
}

.xhf_trip_form_widget [type="radio"]:checked,
.xhf_trip_form_widget [type="radio"]:not(:checked) {
    height:0;width:0;overflow:hidden;
}

.xhf_trip_form_widget [type="radio"]:checked + label,
.xhf_trip_form_widget [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-right: 35px;
    cursor: pointer;
    line-height: 25px;
    display: inline-block;
    color: #666;
}

.xhf_trip_form_widget [type="radio"]:checked + label:before,
.xhf_trip_form_widget [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.xhf_trip_form_widget [type="radio"]:checked + label:after,
.xhf_trip_form_widget [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 15px;
    height: 15px;
    background: #0066FF;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.xhf_trip_form_widget [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.xhf_trip_form_widget [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.rotate-scale-up:not(.icon) {
    -webkit-animation: rotate-scale-up 2s linear both;
    animation: rotate-scale-up 2s linear both;
}

.rotate-scale-up.icon &gt; * {
    -webkit-animation: rotate-scale-up 2s linear both;
    animation: rotate-scale-up 2s linear both;
}

/**
 * ----------------------------------------
 * animation rotate-scale-up
 * ----------------------------------------
 */
@-webkit-keyframes rotate-scale-up {
    0% {
        -webkit-transform: scale(1) rotateZ(0);
        transform: scale(1) rotateZ(0);
    }
    50% {
        -webkit-transform: scale(2) rotateZ(180deg);
        transform: scale(2) rotateZ(180deg);
    }
    100% {
        -webkit-transform: scale(1) rotateZ(360deg);
        transform: scale(1) rotateZ(360deg);
    }
}
@keyframes rotate-scale-up {
    0% {
        -webkit-transform: scale(1) rotateZ(0);
        transform: scale(1) rotateZ(0);
    }
    50% {
        -webkit-transform: scale(2) rotateZ(180deg);
        transform: scale(2) rotateZ(180deg);
    }
    100% {
        -webkit-transform: scale(1) rotateZ(360deg);
        transform: scale(1) rotateZ(360deg);
    }
}

@media (min-width: 992px) {
    .xhf_trip_form_widget .with_flight.on, .xhf_trip_form_widget .with_hotel.on {
        flex-direction: row;
    }

    .form_indicator_wrap .line.xhf_active:before {
        animation: xhf_progres 4s linear;
    }

    .form_indicator_wrap .line.xhf_active * {
        display: inline-block;
    }

    .form_indicator_wrap .line:after {
        width: 95%;
    }

    .xhf_trip_results_list_widget .form_indicator_wrap .line.xhf_active:before {
        animation: unset;
        width: 90%;
    }

    .xhf_trip_results_list_widget .form_indicator_wrap .line.xhf_active &gt; * {
        display: none;
    }
}

@media (max-width: 767px) {
    .daterangepicker.dropdown-menu {
        position: fixed;
        left: 0 !important;
        top: 0 !important;
        width: 100%;
        bottom: 0;
        height: 100%;
        border-radius: 0;
        background-color: #fff;
        z-index: 1001;
    }

    .daterangepicker table {
        display: block;
    }

    .daterangepicker .table-condensed thead tr:last-child {
        padding: 0 6px 0 0;
    }

    .daterangepicker .table-condensed tbody {
        padding: 0;
    }

    .daterangepicker .calendar.left .prev.available {
        padding: 5px 15px 5px 5px;
    }

    .daterangepicker .calendar.left .next.available {
        display: table-cell;
        padding: 5px 5px 5px 15px;
    }

    .daterangepicker .calendar th, .daterangepicker .calendar td {
        min-width: 53px;
        font-size: 18px;
        padding: 5px 2px 5px 2px;
        line-height: 40px;
    }

    .daterangepicker .calendar td {
        min-width: 50px;
    }

    .daterangepicker .calendar td {
        width: 100%;
    }

    .daterangepicker .xhf_close {
        font-size: 20px;
        position: absolute;
        top: 0;
        left: 0;
        margin: unset;
        right: auto;
        border: 0;
        font-weight: 600;
        text-align: center;
        padding: 10px 25px;
    }

    /* Hide bubbles on mobile */
    .xhf_trip_form_widget .form-image .bubbles {
        display: none;
    }
}</pre></body></html>