﻿#planner-container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sf-wizard-destinations-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sf-wizard-destinations-bg {
    position: fixed;
    z-index: 0;
    inset: 0;
    width: 100%;
}

.sf-wizard-destinations-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: rgba(255,255,255,.7);
    padding-inline: clamp(15px,3vw,40px);
    padding-top: clamp(5px, 1vw, 12px);
}

.sf-wizard-destinations-wrapper.no-country {
    gap: clamp(12px, 3vw, 32px);
}

   /* .sf-wizard-destinations-wrapper.sf-wizard-transportation .sf-wizard-destinations-titles-wrapper {
        margin-block: auto;
    }*/

.sf-wizard-destinations-titles-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
}

    .sf-wizard-destinations-titles-wrapper h1 {
        font-size: clamp(22px,3vw,50px);
        color: var(--sf-soft-red);
    }

    .sf-wizard-destinations-titles-wrapper h5, .sf-destination-lookup h5 {
        font-size: clamp(18px,1.5vw,24px);
        color: var(--sf-dark-blue);
        text-align: center;
    }

.sf-destination-lookup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 30px;
    text-align:center;
    max-width: 100%;
}

.sf-search-wrapper,
.sf-search-wrapper .select2-container {
    position: relative;
    width: clamp(280px,100%,430px) !important;
}

.sf-search-wrapper .select2-container .select2-selection {
    border: 1px solid var(--sf-black);
    border-radius: 15px;
    padding: 5px 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.select2-results__option {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 10px !important;
}

.select2-results__option + .select2-results__option {
    margin-top: 10px;
}

.select2-container--default .select2-results__option--selected {
    background-color: #ECE7E7 !important;
}

.select2-container--default .select2-results__option--selected:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: transparent url('/images/site/sf-multi-selected.png') no-repeat;
    background-size: 20px;
    margin-inline-start: auto;
}

/*.select2-search:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: var(--sf-white) url(../../images/site/sf-search.png) no-repeat 10px;
    background-size: 30px;
}*/

.select2-search--inline:not(.hide-search-icon) {
    background: var(--sf-white) url(../../images/site/sf-search.png) no-repeat 10px;
    background-size: clamp(22px, 2vw, 28px);
    padding-inline-start: clamp(35px, 3.5vw, 50px);
}

html[dir="rtl"] .select2-search--inline {
    background-position-x: calc(100% - 10px);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ECE7E7 !important;
    color: var(--sf-dark-blue) !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
}

.select2-search--inline {
    flex: 1;
}
.select2-selection__rendered:not(:empty) + .select2-search--inline {
    flex: unset;
}

.select2-selection__rendered {
    max-width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: unset !important;
    color: unset !important;
}

.select2-search__field {
    color: var(--sf-black);
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-weight: 700;
    font-size: clamp(16px, 1vw, 18px);
}

.select2-container .select2-search--inline .select2-search__field {
    height: 24px;
    font-family: "Volkhov", serif;
}

.select2-container--open .select2-dropdown--below.disabled {
    display: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    order: 1;
    color: #333333;
    width: fit-content;
    border: none !important;
    background: #E9E9E9 !important;
    text-wrap: auto;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    max-width: 92%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    order: 2;
    border: none !important;
    position: initial !important;
    width: 22px;
    height: 22px;
    background: url(/images/site/sf-multi-deselect-btn.png);
    background-size: cover;
}

.select2-dropdown {
    top: 10px;
    border: none;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 10px;
    border-radius: 5px !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 15px !important; 
    border-bottom-right-radius: 15px !important;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-right: unset !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove > span {
    display: none;
}

.sf-search {
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid var(--sf-black);
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    height: 60px;
    padding-inline-start: 50px;
    background: var(--sf-white) url('../../images/site/sf-search.png') no-repeat 10px;
    background-size: 30px;
}

html[dir="rtl"] .sf-search {
    background-position-x: calc(100% - 10px);
}

.sf-search-results {
    display: none;
    position: absolute;
    top: 110%;
    inset-inline-start: 0;
    width: 100%;
    background-color: var(--sf-white);
    min-height: 50px;
    padding: 15px;
    border: 1px solid var(--sf-dark-blue);
    z-index: 5;
    border-radius: 15px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    transition: all ease .3s;
}

    .sf-search-results::-webkit-scrollbar {
        width: 8px;
        margin-inline: 10px;
    }

    .sf-search-results::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px;
        margin-block: 10px;
        background-clip: padding-box;
    }

    .sf-search-results::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.2);
        border-radius: 10px;
        width: 6px;
        margin-inline: 2px;
    }

        .sf-search-results::-webkit-scrollbar-thumb:hover {
            background: rgba(0,0,0,.5);
            cursor: pointer;
        }

.sf-search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-block: 5px;
    cursor: pointer;
    transition: all ease .3s;
}

    .sf-search-result-item:after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        background: transparent url('../../images/site/sf-search.png') no-repeat;
        background-size: 15px;
        opacity: .7;
    }

    .sf-search-result-item:hover {
        color: var(--sf-soft-red);
    }

.sf-destinations-listing {
    --grid-cell-size: clamp(150px,11vw,220px);
    display: grid;
    grid-template-columns: repeat(auto-fill,var(--grid-cell-size));
    grid-auto-rows: var(--grid-cell-size);
    gap: clamp(50px,3vw,30px);
    justify-content: center;
    width: 100%;
    margin-block: auto;
    padding-bottom: 60px;
}

.sf-destinations-page-wrapper .sf-destinations-listing {
    margin-block: unset;
}

.sf-wizard-detinations-swiper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.sf-destinations-swiper {
    width: 100%;
}

    .sf-destinations-swiper.swiper-rtl .swiper-button-prev:after, .sf-destinations-swiper.swiper-rtl .swiper-button-next:after, .sf-destinations-swiper .swiper-button-prev:after, .sf-destinations-swiper .swiper-button-next:after {
        content: '' !important;
        color: unset !important;
    }

.sf-destinations-swiper-button-next, .sf-destinations-swiper-button-prev {
    cursor: pointer;
}

.sf-destinations-swiper .swiper-wrapper {
    width: 80%;
}

.sf-destinations-swiper .swiper-slide {
    width: clamp(150px,11vw,220px);
}

.sf-destinations-swiper .swiper-slide img{
    display:flex;
    height: clamp(150px,11vw,220px);
}

.sf-destinations-page-wrapper {
    justify-content: start;
    padding-top: clamp(22px, 5vw, 48px);
}

.sf-destination {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 300ms ease;
}

.sf-destination.selected {
    border-color: var(--sf-gold);
}

.sf-destination-title {
    width: 100%;
    text-align: center;
    color: var(--sf-dark-blue);
    padding: 5px;
    font-size: clamp(18px,1.5vw,24px);
    overflow-wrap: break-word;
}

.sf-wizard-footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px,2vw,30px);
    width: 100%;
    height: fit-content;
    padding: clamp(10px,1vw,20px);
    background-color: rgba(255,255,255,.7);
}

.sf-wizard-pagination {
    margin-inline: 13%;
}

.sf-wizard-pagination-bullet {
    --bullet-size: clamp(7px,1vw,12px);
    position: relative;
    display: inline-block;
    width: var(--bullet-size);
    height: var(--bullet-size);
    border-radius: 50%;
    background-color: var(--sf-dark-blue);
    margin-inline: min(.7vw,8px);
}

    .sf-wizard-pagination-bullet.active:after {
        content: '';
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform: scale(1.3);
        border-radius: 50%;
        background-color: var(--sf-gold);
        animation: slide-in ease .3s;
    }

    .sf-wizard-pagination-bullet.prev:after {
        content: '';
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform: scale(1.3);
        border-radius: 50%;
        background-color: var(--sf-gold);
        animation: slide-in-reverse ease .3s;
    }

    .sf-wizard-pagination-bullet.active:first-child:after {
        animation: unset;
    }

@keyframes slide-in {
    from {
        inset-inline-start: -20px;
    }

    to {
        inset-inline-start: 0;
    }
}

@keyframes slide-in-reverse {
    from {
        inset-inline-start: 20px;
    }

    to {
        inset-inline-start: 0;
    }
}
/*Step 2*/
    .sf-desired-trip-board {
    min-width: 55%;
    max-width: 1000px;
    background-color: var(--sf-white);
    box-shadow: 0px 5px 23.1px 0px rgba(0, 0, 0, 0.1);
    border-radius: clamp(12px,1.2vw,20px);
    margin: 12px;
}

    .sf-desired-trip-board h2 {
        margin-top: 12px !important;
    }

.sf-desired-trip-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    box-shadow: 0px 5px 23.1px 0px rgba(0, 0, 0, 0.1);
    border-radius: clamp(12px,1.2vw,20px);
    padding: clamp(8px, 1vw, 15px);
}

    .sf-desired-trip-section .sf-checkmark {
        position: absolute;
        bottom: 10px;
        inset-inline-end: 10px;
        width: max(2vw,30px);
        opacity: 0;
        transform: scale(.5);
        transition: all ease .3s;
    }

    .sf-desired-trip-section:has(.selected) .sf-checkmark {
        opacity: 1;
        transform: scale(1);
    }

    .sf-desired-trip-section h2, .sf-wizard-destinations-titles-wrapper h2 {
        width: 100%;
        text-align: center;
        color: var(--sf-dark-black);
        font-size: clamp(22px,2vw,36px);
        margin-top: 26px;
    }

.sf-desired-trip-section h2, .sf-wizard-destinations-titles-wrapper h2.no-margin {
    margin-top: 0;
}

.sf-desired-trip-style-row {
    display: flex;
    justify-content: center;
}

.sf-desired-trip-style-choice img {
    width: clamp(60px,6vw,110px);
}

.sf-desired-trip-style-choice {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: clamp(6px,1.2vw,20px);
    font-size: clamp(16px,1.5vw,24px);
    text-align: center;
    cursor: pointer;
    opacity: .5;
    transition: all ease .3s;
}

.sf-desired-trip-style-row.relaxed .sf-desired-trip-style-choice:first-child {
    display: none;
    min-width:150px;
    animation: slide-out .3s ease;
}

    .sf-desired-trip-style-row.relaxed .sf-desired-trip-style-choice:nth-child(2):before{
        display:none;
    }

    @keyframes slide-out {
        0% {
        display: flex;
        flex-grow: 1;
        opacity: 1;
    }

    100% {
        display: none;
        flex-grow: 0;
        opacity: 0;
    }
}

    .sf-desired-trip-style-choice.selected {
        opacity: 1;
    }

    .sf-desired-trip-style-choice:not(:first-child):before {
        content: '';
        display: block;
        position: absolute;
        inset-inline-start: 0;
        width: 1px;
        height: 40%;
        background-color: var(--sf-dark-blue);
    }

    .sf-desired-trip-style-choice > p {
        max-width: 95%;
        font-size: clamp(16px, 1.7vw, 24px);
    }

/*.sf-wizard-cards-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px,280px));
    gap:clamp(10px,1.2vw,20px);
    width:100%;
}*/

.sf-wizard-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px clamp(20px,1.6vw,30px);
    width: 100%;
    margin-top:40px;
    padding-inline:30px;
}

.sf-wizard-card {
    flex: 1;
    padding-top: 40px;
    font-size: clamp(18px,1.5vw,24px);
    text-align: center;
    min-width: clamp(220px,15vw,240px);
    max-width: clamp(200px,17vw,300px);
    cursor: pointer;
}

    .sf-wizard-card img {
        position: absolute;
        top: -60%;
        left: 50%;
        transform: translate(-50%);
        width: clamp(180px,15vw,260px);
    }

.sf-wizard-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: clamp(160px,11vw,200px);
    padding: 15px 10px;
    background-color: var(--sf-white);
    border-radius: clamp(10px,1.5vw,20px);
    box-shadow: 0px 1.98px 1.98px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}

.sf-wizard-card.selected .sf-wizard-card-wrapper {
    background: var(--sf-gold);
}

.sf-wizard-card-wrapper h4 {
    margin-top: auto;
    /* height: 60px; */
    transition: color 0.3s ease-in-out;
    text-transform: uppercase;
    white-space: normal;
    word-break: break-word;
    margin-bottom: 12px;
}

.sf-wizard-card.selected .sf-wizard-card-wrapper h4 {
    color: var(--sf-white);
}

/*Price Range Slider*/

.price-range-slider {
    width: clamp(260px,100%,1200px);
    padding: 10px 20px;
    background-color: var(--sf-white);
    padding: 50px 40px 80px;
    border-radius: 20px;
    margin-block:auto;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);
}

    .price-range-slider .range-value {
        margin: 0;
    }

        .price-range-slider .range-value input {
            width: 100%;
            background: none;
            color: #000;
            font-size: 16px;
            font-weight: initial;
            box-shadow: none;
            border: none;
            margin: 20px 0 20px 0;
        }

    .price-range-slider .range-bar {
        border: none;
        background: #000;
        height: 3px;
        width: 94%;
        margin-inline: 8px;
        position: relative;
    }

        .price-range-slider .range-bar .ui-slider-range {
            background: var(--sf-gold);
            transform: scaleY(3);
        }

html[dir="rtl"] .price-range-slider .range-bar .ui-slider-range {
    left: unset;
    right: 0;
}

.rs-0p {
    width: 0 !important;
}
.rs-50p {
    width: 50% !important;
}
.rs-100p {
    width: 100% !important;
}

.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #fff;
    border: 10px var(--sf-dark-blue) solid;
    height: 15px;
    width: 15px;
    top: -17px;
    cursor: pointer;
}

        .vs-hidden {
            visibility: hidden;
        }

.sf-slider-point {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    border: none;
    border-radius: 25px;
    background: var(--sf-dark-blue);
    height: 35px;
    width: 35px;
    position: absolute;
    top: -17px;
    cursor: pointer;
}

.sf-slider-point.start {
    inset-inline-start: 0;
}

.sf-slider-point.mid {
    left: 50%;
    transform: translate(-50%, 0);
}

.sf-slider-point.end {
    inset-inline-end: 0;
}

.sf-slider-point-inner {
    background: white;
    width: 15px;
    height: 15px;
    border-radius: 25px;
}

.sf-slider-label {
    position: absolute;
    top: 24px;
    color: #181E4B;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    font-family: Volkhov;
}

    .sf-slider-label.low {
        inset-inline-start: -6px;
    }

    .sf-slider-label.mid {
        left: 50%;
        transform: translate(-50%, 0);
    }

.sf-slider-label.high {
    inset-inline-end: -14px;
}

html[dir="ltr"] .price-range-slider .range-bar .ui-slider-handle:last-of-type,
html[dir="rtl"] .price-range-slider .range-bar .ui-slider-handle:last-of-type {
    position: relative;
    z-index: 1;
    height: 15px;
    width: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

html[dir="ltr"] .price-range-slider .range-bar .ui-slider-handle:last-of-type:after,
html[dir="rtl"] .price-range-slider .range-bar .ui-slider-handle:last-of-type:after {
    content: '';
    display: block;
    position: absolute;
    top: -8px;
    inset-inline-start: -35px;
    z-index: 1;
    width: 100px;
    height: 50px;
    background: transparent url('../../images/site/sf-range-slider-plane.png') no-repeat center;
    background-size: 60px;
}

html[dir="rtl"] .price-range-slider .range-bar .ui-slider-handle:last-of-type:after {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    inset-inline-start: -55px;
}

/*.price-range-slider .range-bar .ui-slider-handle + span {
    background: #06b9c0;
}*/

    .price-range-slider .ui-slider-handle {
        position: relative;
        display: inline-block;
    }

        .price-range-slider .ui-slider-handle .min-label, .price-range-slider .ui-slider-handle .max-label {
            position: absolute;
            top: 200%;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(120px,10vw,160px);
            font-size: clamp(14px,1.3vw,24px);
            color: var(--sf-dark-blue);
            font-weight: 700;
            font-family: "Volkhov", serif;
            text-align: center;
        }

        .price-range-slider .ui-slider-handle .min-label {
            top: 280%;
        }
/********************/
.sf-wizard-preferences-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 1.4vw, 20px);
    width: 100%;
}

.sf-wizard-preference {
    cursor: pointer;
    background-color: var(--sf-white);
    padding: 10px;
    border-radius: 20px;
    font-size: clamp(16px,1.5vw,24px);
    font-weight: 700;
    color: var(--sf-dark-blue);
    text-align: center;
    transition: all ease .3s;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease-in-out;
}

    .sf-wizard-preference.selected {
        color: var(--sf-white);
        background: var(--sf-gold);
    }

    .sf-wizard-preference:hover {
        background-color: var(--sf-gold);
        color: var(--sf-white);
    }

.sf-date-pickers-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: clamp(260px,70%,1200px);
}

.sf-modal .sf-date-pickers-container {
    width: initial;
}

.sf-hotel-stars-container {
    display: flex;
    gap: clamp(18px, 1.5vw, 32px);
    margin-bottom: 12px;
}

.sf-hotel-stars-container > svg {
    cursor: pointer;
    --star-width: clamp(36px, 4vw, 62px);
    width: var(--star-width);
    height: var(--star-width);
    transition: transform 250ms cubic-bezier(0.7, -0.59, 0.34, 1.7);
}

.sf-hotel-stars-container > svg.animated {
    transform: scale(0.2) rotate(-50deg);
}

.sf-hotel-stars-container > svg path {
    transition: fill 0.5s ease;
}

.sf-hotel-stars-container > svg.hovered path {
    fill: #BEBEBE;
}

.sf-hotel-stars-container > svg.selected path {
    fill: #FED51B;
    stroke: #181E4B;
}

.sf-hotel-stars-container > svg.unselected path {
    fill: #DF695180;
    stroke: transparent;
}

@media screen and (min-width: 1720px) {
    .sf-date-pickers-container {
        margin-top: 38px;
    }
}

    .sf-date-pickers-container input {
        -webkit-appearance: none;
        outline: none;
        border: none;
        width: clamp(260px,30vw,400px);
        padding: 20px;
        border-radius: 20px;
        background-color: var(--sf-white);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    }

div#ui-datepicker-div {
    width: clamp(260px,30vw,400px) !important;
    margin-top: 15px;
    border-radius: 20px;
    z-index: 6 !important;
}

.sf-date-pickers-container input::placeholder {
    color: var(--sf-dark-blue);
    font-weight: 700;
}

.sf-date-picker-wrapper {
    position: relative;
}

.sf-date-picker-modal-wrapper {
    margin-block: 12px;
}

.sf-date-picker-toggle-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 10px;
    width: 30px;
}

    .sf-date-picker-toggle-btn img {
        width: 100%;
    }

#ui-datepicker-div .ui-widget-header, #ui-datepicker-div .ui-state-default, #ui-datepicker-div .ui-widget-content .ui-state-default {
    background-color: var(--sf-white);
    border: none;
    border-radius: 10px;
    text-align: center;
    padding: 8px;
    font-weight: 600;
}

#ui-datepicker-div a.ui-state-default.ui-state-highlight {
    background-color: #2F80ED;
    color: var(--sf-white);
}

#ui-datepicker-div a.ui-state-default.ui-state-active {
    background-color: var(--sf-gold);
    color: var(--sf-white);
}

.sf-wizard-footer .sf-primary-btn {
    transition: color ease .3s, background ease .3s;
}

@media screen and (max-width:820px) {
    .sf-desired-trip-section .sf-checkmark {
        bottom: unset;
        width: max(1.7vw, 25px);
        margin-top: 10px;
    }

    .sf-wizard-destinations-wrapper:has(.sf-destinations-swiper) {
        padding-inline-end: 0;
    }

    .sf-destinations-swiper-button-next, 
    .sf-destinations-swiper-button-prev{
        display:none;
    }

    .sf-wizard-footer {
        position: fixed;
        z-index: 3;
        bottom: 0;
        inset-inline: 0;
        background-color: var(--sf-white);
        box-shadow: 0px -5px 8.2px -1px rgba(0, 0, 0, 0.1);
        min-height: 64px;
    }

        .sf-wizard-footer .sf-primary-btn {
            background-color: transparent;
            color: var(--sf-dark-blue);
            padding: 0;
            font-weight: 700;
            font-size: clamp(15px, 1.4vw, 22px);
        }

    .sf-wizard-destinations-wrapper {
        padding-bottom: 80px;
        padding-inline: 6px;
    }

    .sf-wizard-card {
        min-width: 130px;
        max-width: 220px;
    }

    .sf-date-pickers-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        width: clamp(260px,100%,1200px);
    }

    .sf-desired-trip-style-choice:not(:first-child):before {
        height: 70%;
    }

    .sf-wizard-footer .sf-primary-btn {
        box-shadow: unset;
        position: absolute;
    }

        .sf-wizard-footer .sf-primary-btn:disabled {
            background: transparent;
            opacity: 0.5;
        }

    .sf-wizard-footer .sf-primary-btn.previous {
        inset-inline-start: 10px;
    }

    .sf-wizard-footer .sf-primary-btn.next,
    .sf-wizard-footer .sf-primary-btn.submit {
        inset-inline-end: 10px;
    }

    .sf-wizard-destinations-traveler-bg {
        left: -800px;
        width: calc(100% + 800px);
    }
}

@media screen and (max-width:480px) {
    .sf-wizard-pagination {
        display: flex;
    }

    .sf-desired-trip-board {
        margin: 0;
    }

    .sf-wizard-preferences-wrapper {
        /*justify-content: flex-start;*/
    }

    .price-range-slider {
        border-radius: 16px;
        padding-top: 26px;
        padding-bottom: 45px;
        padding-inline-end: 0;
        padding-inline-start: 24px;
    }

    .sf-slider-label.low {
        inset-inline-start: -4px;
    }
    .sf-slider-label.high {
        inset-inline-end: -4px;
    }

    .sf-slider-label {
        font-size: 14px;
    }

    .sf-slider-point {
        width: 26px;
        height: 26px;
        top: -12px;
    }

    html[dir="ltr"] .price-range-slider .range-bar .ui-slider-handle:last-of-type:after,
    html[dir="rtl"] .price-range-slider .range-bar .ui-slider-handle:last-of-type:after {
        width: 70px;
        height: 30px;
        top: -5px;
        inset-inline-start: -25px;
        background-size: 45px;
    }

    html[dir="rtl"] .price-range-slider .range-bar .ui-slider-handle:last-of-type:after {
        inset-inline-start: -45px;
    }

    .sf-slider-point-inner {
        width: 12px;
        height: 12px;
    }


    .price-range-slider .range-bar {
        width: 85%;
    }

            .price-range-slider .range-bar .ui-slider-handle {
                height: 8px;
                width: 8px;
                top: -10px;
                border-width: 8px;
            }
            /*html[dir="ltr"] .price-range-slider .range-bar .ui-slider-handle:last-of-type:after,
    html[dir="rtl"] .price-range-slider .range-bar .ui-slider-handle:first-of-type:after {
        top: -23px;
        background-size: 40px;
    }*/

            .price-range-slider .range-bar .ui-slider-range {
                transform: scaleY(2);
            }
    }
