@media (min-width: 1600px) { :root {
	--black: #1E1E1E;
	--white: #FFF;
	--dark-brown: #4A3F3A;
	--btn-primary-hover: #5E504A;
	--logo-color: #D1A985;
	--back: #F7F6F5;
	--white-dot: #FEFEFE;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:root {
	--column-width: 1240px;
	--offset: calc(50% - (var(--column-width) / 2));
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

body {
    font-family: 'Open Sans', sans-serif;
}

/* You can use Outfit for specific elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
	margin: 0;
}

h1,
.h1 {
	color: var(--black);
	font-family: 'Outfit', sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 42px; /* 140% */
	text-transform: uppercase;
}

h2,
.h2 {
	color: var(--black, #1E1E1E);
	font-family: Outfit;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.btn-primary {
	display: flex;
	padding: 14px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 12px;
	background: var(--dark-brown);
	color: var(--white);
	font-family: 'Outfit';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px;
	border: none;
	outline: none;
	cursor: pointer;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	color: var(--white) !important;
	background: var(--btn-primary-hover) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.btn-secondary {
	display: flex;
	padding: 14px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	background: var(--white, #FFF);
	color: var(--dark-brown, #4A3F3A);
	font-family: 'Outfit';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px; /* 138.462% */
	border: 2px solid var(--dark-brown);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	color: #5D504A !important;
	border: 2px solid #5D504A !important;
	background: #e6e6e6 !important;
}

ul {
	padding-left: 20px;
	margin: 0;
}

p {
	margin-bottom: 6px;
}

p, li {
	color: var(--black, #1E1E1E);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
}

input {
	color: var(--black);
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px; /* 153.846% */
	border: none;
	background: transparent;
	width: 100%;
}

input:focus {
    background-color: transparent;
    border: none;
    outline: none; /* To remove the default browser focus outline */
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
	background: transparent;
	padding: 0;
	margin: 35px 0;
}

.breadcrumb a {
	color: var(--black);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 153.846% */
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
	color: #828282;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 123.077% */
}

.breadcrumb svg {
    margin: 0 5px;
    vertical-align: middle;
}

.desktop {
	display: block;
}

.mobile {
	display: none !important;
}

.mb {
	margin-bottom: 110px !important;
}

.booking-form-input::-webkit-outer-spin-button,
.booking-form-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-form-input[type="number"] {
    -moz-appearance: textfield;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked + .slider {
	background-color: #4A3F3A;
}

.switch input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

/* Rounded sliders */
.switch .slider.round {
	border-radius: 34px;
}

.switch .slider.round:before {
	border-radius: 50%;
}
 
    .autocomplete-list {
        top: 100%;
        width: 300px;
        right: 0;
        position: absolute;
        z-index: 100;
        background: white;
        margin-top: 4px;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
    }

    .autocomplete-list-inner {
        max-height: 170px;
        overflow-y: auto;
        height: 100%;
    }

    .autocomplete-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px 12px 12px;
        cursor: pointer;
        background: var(--white, #FFF);
        border-bottom: 1px solid #F0F0F0;
    }

    .autocomplete-list-item:last-child {
        border-bottom: none;
    }

    .autocomplete-list-item-flight {
        display: flex;
        padding: 4px 10px 5px 10px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 4px;
        background: var(--dark-brown, #4A3F3A);
        color: #FFF;
        font-family: "Open Sans";
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 17px;
    }

    .autocomplete-list-item-column {
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: end;
    }

    .autocomplete-list-item-column-origin {
        color: var(--black, #1E1E1E);
        font-family: "Open Sans";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px; /* 123.077% */
    }

    .autocomplete-list-item-column-time {
        color: #828282;
        font-family: "Open Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 14px; /* 116.667% */
    }


    .booking-confirmation-checkbox .check {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        position: relative;
    }

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

    .booking-confirmation-checkbox .checkmark {
        height: 20px;
        width: 20px;
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 4px;
        position: relative;
        display: inline-block;
        transition: all 0.3s ease;
    }

    /* When the checkbox is checked */
    .booking-confirmation-checkbox input:checked ~ .checkmark {
        border: 1px solid var(--dark-brown);
        background-color: var(--dark-brown);
    }

    /* White checkmark */
    .booking-confirmation-checkbox input:checked ~ .checkmark::after {
        content: '';
        position: absolute;
        left: 3px;
        top: 0px;
        width: 6px;
        height: 11px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .booking-step-block-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .form-input-wrapper {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .input-error {
        display: none;
        justify-content: center;
        font-size: 11px;
        color: red;
    }

    .availability {
        display: flex;
        border: 1px solid red;
        padding: 20px;
        justify-content: center;
        border-radius: 14px;
        font-size: 20px;
        color: red;
        font-weight: bold;
    }

    .booking-card:before,
    .booking-card:after {
        content: '';
        width: 32px;
        height: 32px;
        background: #fafafa;
        position: absolute;
        bottom: 53px;
        border-radius: 50%;
    }

    .booking-card:before {
        left: -16px;
    }

    .booking-card:after {
        right: -16px;
    }


    .hidden-date {
        opacity: 0;
        visibility: hidden;
        width: 0;
        position: absolute;
        left: 0;
    }

    .steps-block {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 20px 0;
        border-top: 1px solid #E6E6E6;
        border-bottom: 1px solid #E6E6E6;
    }

    .step-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        color: #828282;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px; /* 145.455% */
    }

    .step-container.active {
        color: var(--black, #1E1E1E);
    }

    .step-number {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #828282;
        text-align: center;
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px; /* 150% */
        background: #F7F6F5;
        border-radius: 50%;
    }

    .step-container.active .step-number {
        background: #4A3F3A;
        color: var(--white, #FFF);
        filter: drop-shadow(0px 0px 36px rgba(209, 169, 133, 0.40));
    }

    .steps-separator {
        width: 80px;
        height: 1px;
        background: #DBDBDB;
    }

    .booking {
        display: flex;
        gap: 90px;
        margin-top: 30px;
    }

    .booking-form-wrapper {
        display: flex;
        flex-direction: column;
        gap: 35px;
        flex: 1;
    }

    .booking-form-dates-panel {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        border-radius: 12px;
        background: #F9F4F0;
        padding: 20px 24px;
    }

    .booking-form-dates-panel-title {
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-form-dates-panel-inputs {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .booking-step-block {
        border-radius: 12px;
        background: var(--back, #F7F6F5);
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 35px;
    }

    .booking-step-block-item {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .booking-step-block-item-title {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-step-block-item-img {
        padding: 8px;
        background: #EBE9E8;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

    .booking-step-block-item-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .booking-card {
        width: 410px;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        background: #FFF;
        filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.06));
        height: fit-content;
        position: relative;
    }

    .booking-card-title {
        display: flex;
        width: 100%;
        padding: 16px 28px;
        border-radius: 12px 8px 0px 0px;
        background: #D1A985;
        color: var(--white, #FFF);
        font-family: Outfit, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 26px 28px;
    }

    .booking-card-content-block {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 24px;
        border-bottom: 1px dashed #DBDBDB;
    }

    .booking-card-content-block-title {
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-content-block-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .booking-card-content-block-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-card-content-block-list-item-key {
        display: flex;
        align-items: center;
        gap: 3px;
        color: #828282;
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px; /* 133.333% */
    }

    .booking-card-content-block-list-item-value {
        color: var(--black, #1E1E1E);
        text-align: right;
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px; /* 133.333% */
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .booking-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-footer div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .booking-step-block-footer {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-step-back {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        color: var(--black, #1E1E1E);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 18px; /* 138.462% */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .input-group {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
        align-self: stretch;
        border-radius: 6px;
        background: var(--white);
        min-width: 200px;
        height: 70px;
    }

    .booking-form-label {
        color: #828282;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 12px; /* 100% */
        margin: 0;
    }

    .arrival-date-time {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .arrival-date-time-separator {
        width: 1px;
        height: 17px;
        background: #C3C3C3;
    }

    .input-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        position: relative;
    }

    .select-arrow {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #EBEBEB;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .booking-form-date-input {
        position: relative;
        width: 110px;
        height: 15px;
    }

    .booking-form-date-input:before {
        position: absolute;
        top: -2px;
        left: 3px;
        content: attr(data-date);
        display: inline-block;
        color: black;
        width: 130px;
        background: white;
    }

    .booking-form-date-input::-webkit-datetime-edit, .booking-form-date-input::-webkit-inner-spin-button, .booking-form-date-input::-webkit-clear-button {
        display: none;
    }

    .custom-select {
        position: relative;
        width: 100%;
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .selected-option {
        color: var(--black);
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 15px; /* 115.385% */
    }

    .select-arrow {
        cursor: pointer;
    }

    .custom-options {
        display: none;
        position: absolute;
        width: 100px;
        background-color: white;
        border: 1px solid #ddd;
        max-height: 200px;
        overflow-y: auto;
        z-index: 10;
        border-radius: 5px;
        top: 40px;
    }

    .custom-option {
        padding: 10px;
        font-size: 16px;
        border-bottom: 1px solid #ddd;
    }

    .custom-option:hover {
        background-color: #f0f0f0;
    }

    .custom-option:last-child {
        border-bottom: none;
    }

    .booking-form-input {
        display: flex;
        padding: 17px 16px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 12px;
        background: var(--white, #FFF);
        color: var(--black, #1E1E1E);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px; /* 123.077% */
    }

    .booking-form-input:focus {
        background: var(--white, #FFF);
    }

    .people-qty-input {
        display: flex;
        padding: 10px;
        align-items: center;
        gap: 12px;
        align-self: stretch;
        border-radius: 10px;
        background: var(--white, #FFF);
    }

    .people-qty-num-btn {
        cursor: pointer;
    }

    .people-qty-num-btn {
        width: 28px;
        height: 28px;
    }

    .people-qty-input .booking-form-input {
        padding: 0;
        width: 40px;
        text-align: center;
    }

    .booking-baggage-input-wrapper {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
        align-self: stretch;
        border-radius: 6px;
        background: var(--white, #FFF);
    }

    .booking-baggage-input {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .final-step {
        padding: 80px;
        background: #F7F6F5;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .final-step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 600px;
    }

    .final-step-img {
        width: 170px;
        height: 170px;
        object-fit: contain;
    }

    .final-step-title {
        margin-top: 60px;
        color: var(--black, #1E1E1E);
        text-align: center;
        font-family: Outfit;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px; /* 155.556% */
        text-transform: uppercase;
    }

    .final-step-subtitle {
        margin-top: 16px;
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--black, #1E1E1E);
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px; /* 114.286% */
    }


    .charger-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .charger-item-block {
        display: flex;
        align-items: center;
        padding: 17px 16px;
        border-radius: 12px;
        background: var(--white, #FFF);
        gap: 15px;
    }

    .charger-item.active .charger-item-block {
        background: #F0F9F3;
        border: 1px solid var(--success-color, #60CA92);
    }

    .charger-item-block-content {
        flex: 1;
        margin-left: 15px;
        display: flex;
        align-items: center;
    }

    .charger-item-text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .charger-item-title {
        color: var(--black, #1E1E1E);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px; /* 123.077% */
    }

    .charger-item-subtitle {
        color: var(--black, #1E1E1E);
        text-align: right;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px; /* 106.667% */
    }

    .charger-item-block-radio {
        width: 20px;
        height: 20px;
        accent-color: #24AE6C;
        -webkit-appearance: none;
        appearance: none;
        background-color: #fff;
        border: 1px solid #A3A3A3; /* Set border to white */
        border-radius: 50%;
        cursor: pointer;
        display: inline-block;
        position: relative;
    }

    .charger-item-block-radio.active {
        border: 1px solid #24AE6C;
    }

    .charger-item-block-radio.active::before {
        content: '';
        width: 10px;
        height: 10px;
        background-color: #24AE6C;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

 
    .logo {
        width: 76px;
        height: 50px;
        object-fit: contain;
    }

    .header-container {
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
    }

	header {
		padding: 14px 0;
	}

	.main-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
        padding: 5px 0;
	}

	.header-right {
		display: flex;
		gap: 90px;
		align-items: center;
	}

	.header-menu {
		display: flex;
		align-items: center;
		gap: 60px;
		list-style: none;
		margin: 0;
	}

	.header-menu li a {
		color: var(--black);
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 114.286% */
	}

	.header-phone-img {
		width: 36px;
		height: 36px;
		object-fit: contain;
	}

	.phone-container {
		display: flex;
		align-items: center;
		gap: 23px;
		color: #1E1E1E !important;
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 114.286% */
		text-decoration: none;
	}

 
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*visibility: hidden;*/
  display: none;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



 

    .success-modal-title {
        text-align: center;
        color: green;
    }

    .success-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 30px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
    .success-modal-close-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 20px;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-success {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 

    .error-modal-title {
        text-align: center;
        color: red;
    }

    .error-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 30px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
    .error-modal-close-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 20px;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-error {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 
    .footer-logo {
        width: 76px;
        height: 50px;
        object-fit: contain;
    }

    footer {
		padding: 60px 0 40px 0;
		background: #F8F9FB;
		margin-top: 110px;
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		gap: 60px;
	}

	.footer-left {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.footer-rights-reserved {
		color: #828282 !important;
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 145.455% */
		width: 150px;
	}

	.footer-right {
		display: flex;
		flex-direction: column;
		gap: 40px;
		width: 100%;
	}

	.footer-icon-row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}

	.footer-icon-row-item {
		display: flex;
		padding: 10px 20px 10px 10px;
		align-items: center;
		gap: 14px;
		border-radius: 12px;
		border: 1px solid #E6E6E6;
		background: var(--white);
		color: var(--dark-brown);
		font-size: 13px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 123.077% */
		width: auto;
		text-decoration: none;
	}

	.footer-icon-row-item:hover {
		color: var(--dark-brown);
	}

	.footer-row {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}

	.footer-menu {
		display: flex;
		justify-content: space-between;
		gap: 120px;
	}

	.footer-menu-column {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.footer-menu-column-item {
		color: var(--black)  !important;
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 114.286% */
		text-decoration: none;
	}

	.footer-menu-column-item:hover {
		text-decoration: underline;
	}

	.footer-btns {
		display: flex;
		gap: 20px;
		align-items: flex-start;
	}

	.footer-primary-btn {
		text-decoration: none;
		height: fit-content;
		border: 2px solid transparent;
	}

	.footer-primary-btn:hover {
		border: 2px solid transparent !important;
		text-decoration: none;
	}

	.footer-secondary-btn {
		text-decoration: none;
		height: fit-content;
	}

	.footer-secondary-btn:hover {
		text-decoration: none;
	}

 }@media (max-width: 1600px) and (min-width: 1000px) { :root {
	--black: #1E1E1E;
	--white: #FFF;
	--dark-brown: #4A3F3A;
	--btn-primary-hover: #5E504A;
	--logo-color: #D1A985;
	--back: #F7F6F5;
	--white-dot: #FEFEFE;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:root {
	--column-width: 86.1111vw;
	--offset: calc(50% - (var(--column-width) / 2));
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

body {
    font-family: 'Open Sans', sans-serif;
}

/* You can use Outfit for specific elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
	margin: 0;
}

h1,
.h1 {
	color: var(--black);
	font-family: 'Outfit', sans-serif;
	font-size: 2.0833vw;
	font-style: normal;
	font-weight: 700;
	line-height: 2.9167vw; /* 140% */
	text-transform: uppercase;
}

h2,
.h2 {
	color: var(--black, #1E1E1E);
	font-family: Outfit;
	font-size: 1.25vw;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.btn-primary {
	display: flex;
	padding: 0.9722vw 1.6667vw;
	justify-content: center;
	align-items: center;
	gap: 0.6944vw;
	align-self: stretch;
	border-radius: 0.8333vw;
	background: var(--dark-brown);
	color: var(--white);
	font-family: 'Outfit';
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 700;
	line-height: 1.25vw;
	border: none;
	outline: none;
	cursor: pointer;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	color: var(--white) !important;
	background: var(--btn-primary-hover) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.btn-secondary {
	display: flex;
	padding: 0.9722vw 1.6667vw;
	justify-content: center;
	align-items: center;
	gap: 0.6944vw;
	border-radius: 0.8333vw;
	background: var(--white, #FFF);
	color: var(--dark-brown, #4A3F3A);
	font-family: 'Outfit';
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 700;
	line-height: 1.25vw; /* 138.462% */
	border: 2px solid var(--dark-brown);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	color: #5D504A !important;
	border: 2px solid #5D504A !important;
	background: #e6e6e6 !important;
}

ul {
	padding-left: 1.3889vw;
	margin: 0;
}

p {
	margin-bottom: 0.4167vw;
}

p, li {
	color: var(--black, #1E1E1E);
	font-size: 1.0417vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5972vw;
}

input {
	color: var(--black);
	font-family: "Open Sans", sans-serif;
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 600;
	line-height: 1.3889vw; /* 153.846% */
	border: none;
	background: transparent;
	width: 100%;
}

input:focus {
    background-color: transparent;
    border: none;
    outline: none; /* To remove the default browser focus outline */
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5556vw;
	background: transparent;
	padding: 0;
	margin: 2.4306vw 0;
}

.breadcrumb a {
	color: var(--black);
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3889vw; /* 153.846% */
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
	color: #828282;
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1111vw; /* 123.077% */
}

.breadcrumb svg {
    margin: 0 0.3472vw;
    vertical-align: middle;
}

.desktop {
	display: block;
}

.mobile {
	display: none !important;
}

.mb {
	margin-bottom: 7.6389vw !important;
}

.booking-form-input::-webkit-outer-spin-button,
.booking-form-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-form-input[type="number"] {
    -moz-appearance: textfield;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 3.0556vw;
	height: 1.6667vw;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch .slider:before {
	position: absolute;
	content: "";
	height: 1.3889vw;
	width: 1.3889vw;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked + .slider {
	background-color: #4A3F3A;
}

.switch input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

/* Rounded sliders */
.switch .slider.round {
	border-radius: 2.3611vw;
}

.switch .slider.round:before {
	border-radius: 50%;
}
 
    .autocomplete-list {
        top: 100%;
        width: 20.8333vw;
        right: 0;
        position: absolute;
        z-index: 100;
        background: white;
        margin-top: 0.2778vw;
        border-radius: 0.4167vw;
        overflow: hidden;
        box-shadow: 0 0.2778vw 1.6667vw 0 rgba(0, 0, 0, 0.10);
    }

    .autocomplete-list-inner {
        max-height: 11.8056vw;
        overflow-y: auto;
        height: 100%;
    }

    .autocomplete-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.8333vw 1.1111vw 0.8333vw 0.8333vw;
        cursor: pointer;
        background: var(--white, #FFF);
        border-bottom: 1px solid #F0F0F0;
    }

    .autocomplete-list-item:last-child {
        border-bottom: none;
    }

    .autocomplete-list-item-flight {
        display: flex;
        padding: 0.2778vw 0.6944vw 0.3472vw 0.6944vw;
        justify-content: center;
        align-items: center;
        gap: 0.6944vw;
        border-radius: 0.2778vw;
        background: var(--dark-brown, #4A3F3A);
        color: #FFF;
        font-family: "Open Sans";
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1806vw;
    }

    .autocomplete-list-item-column {
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: end;
    }

    .autocomplete-list-item-column-origin {
        color: var(--black, #1E1E1E);
        font-family: "Open Sans";
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.1111vw; /* 123.077% */
    }

    .autocomplete-list-item-column-time {
        color: #828282;
        font-family: "Open Sans";
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 700;
        line-height: 0.9722vw; /* 116.667% */
    }


    .booking-confirmation-checkbox .check {
        display: flex;
        align-items: center;
        gap: 0.5556vw;
        cursor: pointer;
        position: relative;
    }

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

    .booking-confirmation-checkbox .checkmark {
        height: 1.3889vw;
        width: 1.3889vw;
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 0.2778vw;
        position: relative;
        display: inline-block;
        transition: all 0.3s ease;
    }

    /* When the checkbox is checked */
    .booking-confirmation-checkbox input:checked ~ .checkmark {
        border: 1px solid var(--dark-brown);
        background-color: var(--dark-brown);
    }

    /* White checkmark */
    .booking-confirmation-checkbox input:checked ~ .checkmark::after {
        content: '';
        position: absolute;
        left: 3px;
        top: 0vw;
        width: 0.4167vw;
        height: 0.7639vw;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .booking-step-block-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .form-input-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.2778vw;
        width: 100%;
    }

    .input-error {
        display: none;
        justify-content: center;
        font-size: 0.7639vw;
        color: red;
    }

    .availability {
        display: flex;
        border: 1px solid red;
        padding: 1.3889vw;
        justify-content: center;
        border-radius: 0.9722vw;
        font-size: 1.3889vw;
        color: red;
        font-weight: bold;
    }

    .booking-card:before,
    .booking-card:after {
        content: '';
        width: 2.2222vw;
        height: 2.2222vw;
        background: #fafafa;
        position: absolute;
        bottom: 3.6806vw;
        border-radius: 50%;
    }

    .booking-card:before {
        left: -1.1111vw;
    }

    .booking-card:after {
        right: -1.1111vw;
    }


    .hidden-date {
        opacity: 0;
        visibility: hidden;
        width: 0;
        position: absolute;
        left: 0;
    }

    .steps-block {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.1111vw;
        padding: 1.3889vw 0;
        border-top: 1px solid #E6E6E6;
        border-bottom: 1px solid #E6E6E6;
    }

    .step-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.9722vw;
        color: #828282;
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1111vw; /* 145.455% */
    }

    .step-container.active {
        color: var(--black, #1E1E1E);
    }

    .step-number {
        width: 2.2222vw;
        height: 2.2222vw;
        flex-shrink: 0;
        padding: 0.5556vw;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #828282;
        text-align: center;
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.25vw; /* 150% */
        background: #F7F6F5;
        border-radius: 50%;
    }

    .step-container.active .step-number {
        background: #4A3F3A;
        color: var(--white, #FFF);
        filter: drop-shadow(0px 0vw 2.5vw rgba(209, 169, 133, 0.40));
    }

    .steps-separator {
        width: 5.5556vw;
        height: 1px;
        background: #DBDBDB;
    }

    .booking {
        display: flex;
        gap: 6.25vw;
        margin-top: 2.0833vw;
    }

    .booking-form-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2.4306vw;
        flex: 1;
    }

    .booking-form-dates-panel {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.1111vw;
        border-radius: 0.8333vw;
        background: #F9F4F0;
        padding: 1.3889vw 1.6667vw;
    }

    .booking-form-dates-panel-title {
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-form-dates-panel-inputs {
        display: flex;
        align-items: flex-start;
        gap: 1.3889vw;
    }

    .booking-step-block {
        border-radius: 0.8333vw;
        background: var(--back, #F7F6F5);
        display: flex;
        flex-direction: column;
        padding: 1.6667vw;
        gap: 2.4306vw;
    }

    .booking-step-block-item {
        display: flex;
        flex-direction: column;
        gap: 1.25vw;
    }

    .booking-step-block-item-title {
        display: flex;
        align-items: center;
        gap: 0.9722vw;
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 1.0417vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-step-block-item-img {
        padding: 0.5556vw;
        background: #EBE9E8;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

    .booking-step-block-item-content {
        display: flex;
        align-items: center;
        gap: 1.3889vw;
    }

    .booking-card {
        width: 28.4722vw;
        display: flex;
        flex-direction: column;
        border-radius: 0.8333vw;
        background: #FFF;
        filter: drop-shadow(0px 0vw 1.6667vw rgba(0, 0, 0, 0.06));
        height: fit-content;
        position: relative;
    }

    .booking-card-title {
        display: flex;
        width: 100%;
        padding: 1.1111vw 1.9444vw;
        border-radius: 0.8333vw 0.5556vw 0vw 0vw;
        background: #D1A985;
        color: var(--white, #FFF);
        font-family: Outfit, sans-serif;
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-content {
        display: flex;
        flex-direction: column;
        gap: 1.6667vw;
        padding: 1.8056vw 1.9444vw;
    }

    .booking-card-content-block {
        display: flex;
        flex-direction: column;
        gap: 0.8333vw;
        padding-bottom: 1.6667vw;
        border-bottom: 1px dashed #DBDBDB;
    }

    .booking-card-content-block-title {
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-content-block-list {
        display: flex;
        flex-direction: column;
        gap: 0.5556vw;
    }

    .booking-card-content-block-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-card-content-block-list-item-key {
        display: flex;
        align-items: center;
        gap: 3px;
        color: #828282;
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1111vw; /* 133.333% */
    }

    .booking-card-content-block-list-item-value {
        color: var(--black, #1E1E1E);
        text-align: right;
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1111vw; /* 133.333% */
        display: flex;
        align-items: center;
        gap: 0.3472vw;
    }

    .booking-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-footer div {
        display: flex;
        align-items: center;
        gap: 0.5556vw;
    }

    .booking-step-block-footer {
        margin-top: 0.6944vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-step-back {
        display: flex;
        align-items: center;
        gap: 0.5556vw;
        cursor: pointer;
        color: var(--black, #1E1E1E);
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.25vw; /* 138.462% */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .input-group {
        display: flex;
        padding: 0.8333vw;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.0417vw;
        align-self: stretch;
        border-radius: 0.4167vw;
        background: var(--white);
        min-width: 13.8889vw;
        height: 4.8611vw;
    }

    .booking-form-label {
        color: #828282;
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 600;
        line-height: 0.8333vw; /* 100% */
        margin: 0;
    }

    .arrival-date-time {
        display: flex;
        align-items: center;
        gap: 0.6944vw;
    }

    .arrival-date-time-separator {
        width: 1px;
        height: 1.1806vw;
        background: #C3C3C3;
    }

    .input-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5556vw;
        width: 100%;
        position: relative;
    }

    .select-arrow {
        width: 1.3889vw;
        height: 1.3889vw;
        border-radius: 50%;
        background: #EBEBEB;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .booking-form-date-input {
        position: relative;
        width: 7.6389vw;
        height: 1.0417vw;
    }

    .booking-form-date-input:before {
        position: absolute;
        top: -2px;
        left: 3px;
        content: attr(data-date);
        display: inline-block;
        color: black;
        width: 9.0278vw;
        background: white;
    }

    .booking-form-date-input::-webkit-datetime-edit, .booking-form-date-input::-webkit-inner-spin-button, .booking-form-date-input::-webkit-clear-button {
        display: none;
    }

    .custom-select {
        position: relative;
        width: 100%;
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5556vw;
    }

    .selected-option {
        color: var(--black);
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.0417vw; /* 115.385% */
    }

    .select-arrow {
        cursor: pointer;
    }

    .custom-options {
        display: none;
        position: absolute;
        width: 6.9444vw;
        background-color: white;
        border: 1px solid #ddd;
        max-height: 13.8889vw;
        overflow-y: auto;
        z-index: 10;
        border-radius: 0.3472vw;
        top: 2.7778vw;
    }

    .custom-option {
        padding: 0.6944vw;
        font-size: 1.1111vw;
        border-bottom: 1px solid #ddd;
    }

    .custom-option:hover {
        background-color: #f0f0f0;
    }

    .custom-option:last-child {
        border-bottom: none;
    }

    .booking-form-input {
        display: flex;
        padding: 1.1806vw 1.1111vw;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 0.8333vw;
        background: var(--white, #FFF);
        color: var(--black, #1E1E1E);
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1111vw; /* 123.077% */
    }

    .booking-form-input:focus {
        background: var(--white, #FFF);
    }

    .people-qty-input {
        display: flex;
        padding: 0.6944vw;
        align-items: center;
        gap: 0.8333vw;
        align-self: stretch;
        border-radius: 0.6944vw;
        background: var(--white, #FFF);
    }

    .people-qty-num-btn {
        cursor: pointer;
    }

    .people-qty-num-btn {
        width: 1.9444vw;
        height: 1.9444vw;
    }

    .people-qty-input .booking-form-input {
        padding: 0;
        width: 2.7778vw;
        text-align: center;
    }

    .booking-baggage-input-wrapper {
        display: flex;
        padding: 0.8333vw;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.0417vw;
        align-self: stretch;
        border-radius: 0.4167vw;
        background: var(--white, #FFF);
    }

    .booking-baggage-input {
        display: flex;
        align-items: center;
        gap: 0.6944vw;
    }

    .final-step {
        padding: 5.5556vw;
        background: #F7F6F5;
        border-radius: 0.8333vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .final-step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 41.6667vw;
    }

    .final-step-img {
        width: 11.8056vw;
        height: 11.8056vw;
        object-fit: contain;
    }

    .final-step-title {
        margin-top: 4.1667vw;
        color: var(--black, #1E1E1E);
        text-align: center;
        font-family: Outfit;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.9444vw; /* 155.556% */
        text-transform: uppercase;
    }

    .final-step-subtitle {
        margin-top: 1.1111vw;
        display: flex;
        align-items: center;
        gap: 0.3472vw;
        color: var(--black, #1E1E1E);
        text-align: center;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1111vw; /* 114.286% */
    }


    .charger-item {
        display: flex;
        flex-direction: column;
        gap: 0.8333vw;
        width: 100%;
    }

    .charger-item-block {
        display: flex;
        align-items: center;
        padding: 1.1806vw 1.1111vw;
        border-radius: 0.8333vw;
        background: var(--white, #FFF);
        gap: 1.0417vw;
    }

    .charger-item.active .charger-item-block {
        background: #F0F9F3;
        border: 1px solid var(--success-color, #60CA92);
    }

    .charger-item-block-content {
        flex: 1;
        margin-left: 1.0417vw;
        display: flex;
        align-items: center;
    }

    .charger-item-text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .charger-item-title {
        color: var(--black, #1E1E1E);
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.1111vw; /* 123.077% */
    }

    .charger-item-subtitle {
        color: var(--black, #1E1E1E);
        text-align: right;
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.1111vw; /* 106.667% */
    }

    .charger-item-block-radio {
        width: 1.3889vw;
        height: 1.3889vw;
        accent-color: #24AE6C;
        -webkit-appearance: none;
        appearance: none;
        background-color: #fff;
        border: 1px solid #A3A3A3; /* Set border to white */
        border-radius: 50%;
        cursor: pointer;
        display: inline-block;
        position: relative;
    }

    .charger-item-block-radio.active {
        border: 1px solid #24AE6C;
    }

    .charger-item-block-radio.active::before {
        content: '';
        width: 0.6944vw;
        height: 0.6944vw;
        background-color: #24AE6C;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

 
    .logo {
        width: 5.2778vw;
        height: 3.4722vw;
        object-fit: contain;
    }

    .header-container {
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
    }

	header {
		padding: 0.9722vw 0;
	}

	.main-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
        padding: 0.3472vw 0;
	}

	.header-right {
		display: flex;
		gap: 6.25vw;
		align-items: center;
	}

	.header-menu {
		display: flex;
		align-items: center;
		gap: 4.1667vw;
		list-style: none;
		margin: 0;
	}

	.header-menu li a {
		color: var(--black);
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 114.286% */
	}

	.header-phone-img {
		width: 2.5vw;
		height: 2.5vw;
		object-fit: contain;
	}

	.phone-container {
		display: flex;
		align-items: center;
		gap: 1.5972vw;
		color: #1E1E1E !important;
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 114.286% */
		text-decoration: none;
	}

 
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*visibility: hidden;*/
  display: none;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 0.6944vw;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



 

    .success-modal-title {
        text-align: center;
        color: green;
    }

    .success-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 41.6667vw;
        padding: 2.0833vw;
        background: #fff;
        border-radius: 0.2778vw;
        box-shadow: 0 3px 0.6944vw rgba(0,0,0,0.3);
    }
    .success-modal-close-btn {
        position: absolute;
        right: 0.6944vw;
        top: 0.6944vw;
        font-size: 1.3889vw;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-success {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 

    .error-modal-title {
        text-align: center;
        color: red;
    }

    .error-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 41.6667vw;
        padding: 2.0833vw;
        background: #fff;
        border-radius: 0.2778vw;
        box-shadow: 0 3px 0.6944vw rgba(0,0,0,0.3);
    }
    .error-modal-close-btn {
        position: absolute;
        right: 0.6944vw;
        top: 0.6944vw;
        font-size: 1.3889vw;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-error {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 
    .footer-logo {
        width: 5.2778vw;
        height: 3.4722vw;
        object-fit: contain;
    }

    footer {
		padding: 4.1667vw 0 2.7778vw 0;
		background: #F8F9FB;
		margin-top: 7.6389vw;
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		gap: 4.1667vw;
	}

	.footer-left {
		display: flex;
		flex-direction: column;
		gap: 1.3889vw;
	}

	.footer-rights-reserved {
		color: #828282 !important;
		font-size: 0.8333vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 145.455% */
		width: 10.4167vw;
	}

	.footer-right {
		display: flex;
		flex-direction: column;
		gap: 2.7778vw;
		width: 100%;
	}

	.footer-icon-row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.1111vw;
	}

	.footer-icon-row-item {
		display: flex;
		padding: 0.6944vw 1.3889vw 0.6944vw 0.6944vw;
		align-items: center;
		gap: 0.9722vw;
		border-radius: 0.8333vw;
		border: 1px solid #E6E6E6;
		background: var(--white);
		color: var(--dark-brown);
		font-size: 0.9028vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 123.077% */
		width: auto;
		text-decoration: none;
	}

	.footer-icon-row-item:hover {
		color: var(--dark-brown);
	}

	.footer-row {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}

	.footer-menu {
		display: flex;
		justify-content: space-between;
		gap: 8.3333vw;
	}

	.footer-menu-column {
		display: flex;
		flex-direction: column;
		gap: 1.3889vw;
	}

	.footer-menu-column-item {
		color: var(--black)  !important;
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 114.286% */
		text-decoration: none;
	}

	.footer-menu-column-item:hover {
		text-decoration: underline;
	}

	.footer-btns {
		display: flex;
		gap: 1.3889vw;
		align-items: flex-start;
	}

	.footer-primary-btn {
		text-decoration: none;
		height: fit-content;
		border: 2px solid transparent;
	}

	.footer-primary-btn:hover {
		border: 2px solid transparent !important;
		text-decoration: none;
	}

	.footer-secondary-btn {
		text-decoration: none;
		height: fit-content;
	}

	.footer-secondary-btn:hover {
		text-decoration: none;
	}

 }@media (min-width: calc(494px)) and (max-width: calc(1000px)) {
            body {
                --coef-w: calc(var(--width) / -910 + 1.3771);
                --offset: calc(4.6875vw * ((320 - 320 * var(--coef-w) + 30 * var(--coef-w)) / 30));
                --column-width: calc( (1px * var(--width)) - (2 * var(--offset)) );
            }
        }

        @media (max-width: calc(494px)) {
            body {
                --coef-w: 1;
                --column-width: 90.625vw;
                --offset: calc(50% - (var(--column-width) / 2));
            }
        }
        @media (max-width: 1000px) { :root {
	--column-width: calc(90.625vw * var(--coef-w));
	--offset: calc(4.6875vw * var(--coef-w));

    --black: #1E1E1E;
	--white: #FFF;
	--dark-brown: #4A3F3A;
	--btn-primary-hover: #5E504A;
	--logo-color: #D1A985;
	--back: #F7F6F5;
	--white-dot: #FEFEFE;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body, input, textarea, select {
    font-family: 'Open Sans', sans-serif;
	-webkit-text-size-adjust: none;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
	margin: 0;
}

.mb {
    margin-bottom: calc(18.75vw * var(--coef-w)) !important;
}

h1,
.h1 {
    font-size: calc(6.25vw * var(--coef-w));
    line-height: calc(7.8125vw * var(--coef-w));
    color: var(--black);
    font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
}


.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

.h1 {
	color: var(--black);
	font-family: 'Outfit', sans-serif;
	font-size: calc(9.375vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(13.125vw * var(--coef-w)); /* 140% */
	text-transform: uppercase;
}

h2,
.h2 {
	color: var(--black, #1E1E1E);
	font-family: Outfit;
	font-size: calc(5.625vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.btn-primary {
	display: flex;
	padding: calc(4.375vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
	justify-content: center;
	align-items: center;
	gap: calc(3.125vw * var(--coef-w));
	align-self: stretch;
	border-radius: calc(3.75vw * var(--coef-w));
	background: var(--dark-brown);
	color: var(--white);
	font-family: 'Outfit';
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(5.625vw * var(--coef-w));
	border: none;
	outline: none;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	color: var(--white) !important;
	background: var(--btn-primary-hover) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.btn-secondary {
	display: flex;
	padding: calc(4.375vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
	justify-content: center;
	align-items: center;
	gap: calc(3.125vw * var(--coef-w));
	border-radius: calc(3.75vw * var(--coef-w));
	background: var(--white, #FFF);
	color: var(--dark-brown, #4A3F3A);
	font-family: 'Outfit';
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(5.625vw * var(--coef-w)); /* 138.462% */
	border: 2px solid var(--dark-brown);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	color: #5D504A !important;
	border: 2px solid #5D504A !important;
	background: #e6e6e6 !important;
}

ul {
	padding-left: calc(6.25vw * var(--coef-w));
	margin: 0;
}

p {
	margin-bottom: calc(1.875vw * var(--coef-w));
}

p, li {
	color: var(--black, #1E1E1E);
	font-size: calc(4.375vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(7.1875vw * var(--coef-w));
}

input {
	color: var(--black);
	font-family: "Open Sans", sans-serif;
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(6.25vw * var(--coef-w)); /* 153.846% */
	border: none;
	background: transparent;
	width: 100%;
}

input:focus {
    background-color: transparent;
    border: none;
    outline: none; /* To remove the default browser focus outline */
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: calc(2.5vw * var(--coef-w));
	background: transparent;
	padding: 0;
	margin: calc(10.9375vw * var(--coef-w)) 0;
}

.breadcrumb a {
	color: var(--black);
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(6.25vw * var(--coef-w)); /* 153.846% */
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
	color: #828282;
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(5vw * var(--coef-w)); /* 123.077% */
}

.breadcrumb svg {
    margin: 0 calc(1.5625vw * var(--coef-w));
    vertical-align: middle;
}

.desktop {
	display: none !important;
}

.mobile {
	display: block;
}

.mb {
	margin-bottom: calc(18.75vw * var(--coef-w)) !important;
}

.booking-form-input::-webkit-outer-spin-button,
.booking-form-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-form-input[type="number"] {
    -moz-appearance: textfield;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: calc(13.75vw * var(--coef-w));
	height: calc(7.5vw * var(--coef-w));
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch .slider:before {
	position: absolute;
	content: "";
	height: calc(6.25vw * var(--coef-w));
	width: calc(6.25vw * var(--coef-w));
	left: 2px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked + .slider {
	background-color: #4A3F3A;
}

.switch input:checked + .slider:before {
	-webkit-transform: translateX(28px);
	-ms-transform: translateX(28px);
	transform: translateX(28px);
}

/* Rounded sliders */
.switch .slider.round {
	border-radius: calc(10.625vw * var(--coef-w));
}

.switch .slider.round:before {
	border-radius: 50%;
}
 
    .autocomplete-list {
        top: 100%;
        width: 100%;
        right: 0;
        position: absolute;
        z-index: 100;
        background: white;
        margin-top: calc(1.25vw * var(--coef-w));
        border-radius: calc(1.875vw * var(--coef-w));
        overflow: hidden;
        box-shadow: 0 calc(1.25vw * var(--coef-w)) calc(7.5vw * var(--coef-w)) 0 rgba(0, 0, 0, 0.10);
    }

    .autocomplete-list-inner {
        max-height: calc(53.125vw * var(--coef-w));
        overflow-y: auto;
        height: 100%;
    }

    .autocomplete-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(2.1875vw * var(--coef-w)) calc(2.8125vw * var(--coef-w));
        cursor: pointer;
        background: var(--white, #FFF);
        border-bottom: 1px solid #F0F0F0;
    }

    .autocomplete-list-item:last-child {
        border-bottom: none;
    }

    .autocomplete-list-item-flight {
        display: flex;
        padding: calc(1.25vw * var(--coef-w)) calc(2.1875vw * var(--coef-w)) calc(1.5625vw * var(--coef-w)) calc(2.1875vw * var(--coef-w));
        justify-content: center;
        align-items: center;
        gap: calc(1.875vw * var(--coef-w));
        border-radius: calc(1.25vw * var(--coef-w));
        background: var(--dark-brown, #4A3F3A);
        color: #FFF;
        font-family: "Open Sans";
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.375vw * var(--coef-w));
    }

    .autocomplete-list-item-column {
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: end;
    }

    .autocomplete-list-item-column-origin {
        color: var(--black, #1E1E1E);
        font-family: "Open Sans";
        font-size: calc(3.4375vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(4.375vw * var(--coef-w)); /* 123.077% */
    }

    .autocomplete-list-item-column-time {
        color: #828282;
        font-family: "Open Sans";
        font-size: calc(2.8125vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(3.75vw * var(--coef-w)); /* 116.667% */
    }


    .booking-confirmation-checkbox .check {
        display: flex;
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
        cursor: pointer;
        position: relative;
    }

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

    .booking-confirmation-checkbox .checkmark {
        height: calc(6.25vw * var(--coef-w));
        width: calc(6.25vw * var(--coef-w));
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: calc(1.25vw * var(--coef-w));
        position: relative;
        display: inline-block;
        transition: all 0.3s ease;
    }

    /* When the checkbox is checked */
    .booking-confirmation-checkbox input:checked ~ .checkmark {
        border: 1px solid var(--dark-brown);
        background-color: var(--dark-brown);
    }

    /* White checkmark */
    .booking-confirmation-checkbox input:checked ~ .checkmark::after {
        content: '';
        position: absolute;
        left: calc(1.875vw * var(--coef-w));
        top: calc(0vw * var(--coef-w));
        width: calc(1.875vw * var(--coef-w));
        height: calc(3.4375vw * var(--coef-w));
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .booking-confirmation-checkbox .label-text {
        flex: 1;
    }

    .booking-step-block-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .form-input-wrapper {
        display: flex;
        flex-direction: column;
        gap: calc(1.25vw * var(--coef-w));
        width: 100% !important;
    }

    .input-error {
        display: none;
        justify-content: center;
        font-size: calc(3.4375vw * var(--coef-w));
        color: red;
    }

    .hidden-date {
        opacity: 0;
        visibility: hidden;
        width: 0;
        position: absolute;
        left: 0;
    }

    .availability {
        display: flex;
        border: 1px solid red;
        padding: calc(4.375vw * var(--coef-w));
        justify-content: center;
        border-radius: calc(4.375vw * var(--coef-w));
        font-size: calc(4.375vw * var(--coef-w));
        color: red;
        font-weight: bold;
    }

    .booking-card:before,
    .booking-card:after {
        content: '';
        width: calc(8.125vw * var(--coef-w));
        height: calc(8.125vw * var(--coef-w));
        background: #fafafa;
        position: absolute;
        bottom: calc(10.3125vw * var(--coef-w));
        border-radius: 50%;
    }

    .booking-card:before {
        left: calc(-4.0625vw * var(--coef-w));
    }

    .booking-card:after {
        right: calc(-4.0625vw * var(--coef-w));
    }

    .steps-block {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(3.125vw * var(--coef-w));
        padding: calc(3.125vw * var(--coef-w)) 0;
        border-top: 1px solid #E6E6E6;
        border-bottom: 1px solid #E6E6E6;
        flex-wrap: wrap;
    }

    .step-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(3.125vw * var(--coef-w));
        color: #828282;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5vw * var(--coef-w)); /* 145.455% */
    }

    .step-container.active {
        color: var(--black, #1E1E1E);
    }

    .step-number {
        width: calc(7.5vw * var(--coef-w));
        height: calc(7.5vw * var(--coef-w));
        flex-shrink: 0;
        padding: calc(1.5625vw * var(--coef-w));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #828282;
        text-align: center;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(4.6875vw * var(--coef-w)); /* 150% */
        background: #F7F6F5;
        border-radius: 50%;
    }

    .step-container.active .step-number {
        background: #4A3F3A;
        color: var(--white, #FFF);
        filter: drop-shadow(0px calc(0vw * var(--coef-w)) calc(11.25vw * var(--coef-w)) rgba(209, 169, 133, 0.40));
    }

    .steps-separator {
        width: calc(6.25vw * var(--coef-w));
        height: 1px;
        background: #DBDBDB;
    }

    .booking {
        display: flex;
        flex-direction: column-reverse;
        gap: calc(9.375vw * var(--coef-w));
        margin-top: calc(9.375vw * var(--coef-w));
    }

    .booking-form-wrapper {
        display: flex;
        flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
        flex: 1;
    }

    .booking-form-dates-panel {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: calc(5vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w));
        background: #F9F4F0;
        padding: calc(4.6875vw * var(--coef-w));
    }

    .booking-form-dates-panel-title {
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-form-dates-panel-inputs {
        display: flex;
        flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
    }

    .booking-step-block {
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--back, #F7F6F5);
        display: flex;
        flex-direction: column;
        padding: calc(4.6875vw * var(--coef-w));
        gap: calc(4.6875vw * var(--coef-w));
    }

    .booking-step-block-item {
        display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
    }

    .booking-step-block-item-title {
        display: flex;
        align-items: center;
        gap: calc(3.75vw * var(--coef-w));
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-step-block-item-img {
        padding: calc(2.5vw * var(--coef-w));
        background: #EBE9E8;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

    .booking-step-block-item-content {
        display: flex;
        flex-direction: column;
        gap: calc(4.6875vw * var(--coef-w));
    }

    .booking-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: calc(3.75vw * var(--coef-w));
        background: #FFF;
        filter: drop-shadow(0px calc(0vw * var(--coef-w)) calc(7.5vw * var(--coef-w)) rgba(0, 0, 0, 0.06));
        height: fit-content;
    }

    .booking-card-title {
        display: flex;
        width: 100%;
        padding: calc(4.6875vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w)) calc(2.5vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w));
        background: #D1A985;
        color: var(--white, #FFF);
        font-family: Outfit, sans-serif;
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-content {
        display: flex;
        flex-direction: column;
        gap: calc(4.6875vw * var(--coef-w));
        padding: calc(4.6875vw * var(--coef-w));
    }

    .booking-card-content-block {
        display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
        padding-bottom: calc(4.6875vw * var(--coef-w));
        border-bottom: 1px dashed #DBDBDB;
    }

    .booking-card-content-block-title {
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-content-block-list {
        display: flex;
        flex-direction: column;
        gap: calc(2.5vw * var(--coef-w));
    }

    .booking-card-content-block-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-card-content-block-list-item-key {
        display: flex;
        align-items: center;
        gap: 3px;
        color: #828282;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.6875vw * var(--coef-w)); /* 133.333% */
    }

    .booking-card-content-block-list-item-value {
        color: var(--black, #1E1E1E);
        text-align: right;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.6875vw * var(--coef-w)); /* 133.333% */
        display: flex;
        align-items: center;
        gap: calc(1.5625vw * var(--coef-w));
    }

    .booking-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--black, #1E1E1E);
        font-family: Outfit, sans-serif;
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .booking-card-footer div {
        display: flex;
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
    }

    .booking-step-block-footer {
        margin-top: calc(3.125vw * var(--coef-w));
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-step-back {
        display: flex;
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
        cursor: pointer;
        color: var(--black, #1E1E1E);
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.6875vw * var(--coef-w)); /* 138.462% */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .input-group {
        display: flex;
        padding: calc(2.5vw * var(--coef-w));
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: calc(3.75vw * var(--coef-w));
        align-self: stretch;
        border-radius: calc(1.875vw * var(--coef-w));
        background: var(--white);
        width: 100%;
    }

    .booking-form-label {
        color: #828282;
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(3.4375vw * var(--coef-w)); /* 100% */
        margin: 0;
    }

    .arrival-date-time {
        display: flex;
        align-items: center;
        gap: calc(3.125vw * var(--coef-w));
    }

    .arrival-date-time-separator {
        width: 1px;
        height: calc(5.3125vw * var(--coef-w));
        background: #C3C3C3;
    }

    .input-wrapper {
        display: flex;
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
        width: 100%;
        position: relative;
    }

    .select-arrow {
        width: calc(6.25vw * var(--coef-w));
        height: calc(6.25vw * var(--coef-w));
        border-radius: 50%;
        background: #EBEBEB;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .booking-form-date-input {
        position: relative;
        width: calc(34.375vw * var(--coef-w));
        height: calc(4.6875vw * var(--coef-w));
    }

    .booking-form-date-input:before {
        position: absolute;
        top: -2px;
        left: 3px;
        content: attr(data-date);
        display: inline-block;
        color: black;
        width: calc(31.25vw * var(--coef-w));
        background: white;
    }

    .booking-form-date-input::-webkit-datetime-edit, .booking-form-date-input::-webkit-inner-spin-button, .booking-form-date-input::-webkit-clear-button {
        display: none;
    }

    .custom-select {
        position: relative;
        width: 100%;
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
    }

    .selected-option {
        color: var(--black);
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.6875vw * var(--coef-w)); /* 115.385% */
    }

    .select-arrow {
        cursor: pointer;
    }

    .custom-options {
        display: none;
        position: absolute;
        width: calc(31.25vw * var(--coef-w));
        background-color: white;
        border: 1px solid #ddd;
        max-height: calc(62.5vw * var(--coef-w));
        overflow-y: auto;
        z-index: 10;
        border-radius: calc(1.5625vw * var(--coef-w));
        top: calc(12.5vw * var(--coef-w));
    }

    .custom-option {
        padding: calc(3.125vw * var(--coef-w));
        font-size: calc(5vw * var(--coef-w));
        border-bottom: 1px solid #ddd;
    }

    .custom-option:hover {
        background-color: #f0f0f0;
    }

    .custom-option:last-child {
        border-bottom: none;
    }

    .booking-form-input {
        display: flex;
        padding: calc(3.75vw * var(--coef-w));
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--white, #FFF);
        color: var(--black, #1E1E1E);
        font-size: calc(3.75vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5vw * var(--coef-w)); /* 123.077% */
    }

    .booking-form-input:focus {
        background: var(--white, #FFF);
    }

    .people-qty-input {
        display: flex;
        padding: calc(2.5vw * var(--coef-w));
        align-items: center;
        gap: calc(2.5vw * var(--coef-w));
        align-self: stretch;
        border-radius: calc(3.125vw * var(--coef-w));
        background: var(--white, #FFF);
    }

    .people-qty-num-btn {
        cursor: pointer;
    }

    .people-qty-num-btn {
        width: calc(8.75vw * var(--coef-w));
        height: calc(8.75vw * var(--coef-w));
    }

    .people-qty-input .booking-form-input {
        padding: 0;
        width: calc(12.5vw * var(--coef-w));
        text-align: center;
    }

    .booking-baggage-input-wrapper {
        display: flex;
        padding: calc(2.5vw * var(--coef-w));
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: calc(3.75vw * var(--coef-w));
        align-self: stretch;
        border-radius: calc(1.875vw * var(--coef-w));
        background: var(--white, #FFF);
    }

    .booking-baggage-input {
        display: flex;
        align-items: center;
        gap: calc(3.125vw * var(--coef-w));
    }

    .final-step {
        padding: calc(12.5vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
        background: #F7F6F5;
        border-radius: calc(3.75vw * var(--coef-w));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .final-step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .final-step-img {
        width: calc(53.125vw * var(--coef-w));
        height: calc(53.125vw * var(--coef-w));
        object-fit: contain;
    }

    .final-step-title {
        margin-top: calc(9.375vw * var(--coef-w));
        color: var(--black, #1E1E1E);
        text-align: center;
        font-family: Outfit;
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(6.25vw * var(--coef-w)); /* 155.556% */
        text-transform: uppercase;
    }

    .final-step-subtitle {
        margin-top: calc(3.75vw * var(--coef-w));
        display: flex;
        align-items: center;
        gap: calc(1.5625vw * var(--coef-w));
        color: var(--black, #1E1E1E);
        text-align: center;
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5vw * var(--coef-w)); /* 114.286% */
    }


    .charger-item {
        display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
        width: 100%;
    }

    .charger-item-block {
        display: flex;
        align-items: center;
        padding: calc(5.3125vw * var(--coef-w)) calc(5vw * var(--coef-w));
        border-radius: calc(3.75vw * var(--coef-w));
        background: var(--white, #FFF);
        gap: calc(4.6875vw * var(--coef-w));
    }

    .charger-item.active .charger-item-block {
        background: #F0F9F3;
        border: 1px solid var(--success-color, #60CA92);
    }

    .charger-item-block-content {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .charger-item-text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .charger-item-title {
        color: var(--black, #1E1E1E);
        font-size: calc(4.0625vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5vw * var(--coef-w)); /* 123.077% */
    }

    .charger-item-subtitle {
        color: var(--black, #1E1E1E);
        text-align: right;
        font-size: calc(4.6875vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(5vw * var(--coef-w)); /* 106.667% */
    }

    .charger-item-block-radio {
        width: calc(6.25vw * var(--coef-w));
        height: calc(6.25vw * var(--coef-w));
        accent-color: #24AE6C;
        -webkit-appearance: none;
        appearance: none;
        background-color: #fff;
        border: 1px solid #A3A3A3; /* Set border to white */
        border-radius: 50%;
        cursor: pointer;
        display: inline-block;
        position: relative;
    }

    .charger-item-block-radio.active {
        border: 1px solid #24AE6C;
    }

    .charger-item-block-radio.active::before {
        content: '';
        width: calc(3.125vw * var(--coef-w));
        height: calc(3.125vw * var(--coef-w));
        background-color: #24AE6C;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

 
    .logo {
        width: calc(23.75vw * var(--coef-w));
        height: calc(15.625vw * var(--coef-w));
        object-fit: contain;
    }

    .header-container {
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
    }

    .burger-menu {
		display: none;
		width   : calc(6.25vw * var(--coef-w));
		height  : calc(4.375vw * var(--coef-w));
		cursor  : pointer;
		position: relative;
	}

	.burger-menu span {
		background-color: black;
		height          : 2px;
		position        : absolute;
		width           : 100%;
		left            : 0;
		transition      : all 0.3s ease;
		border-radius   : calc(3.125vw * var(--coef-w));
	}

	.burger-menu span:first-child {
		top: 0;
	}

	.burger-menu span:nth-child(2) {
		top: calc(1.875vw * var(--coef-w));
	}

	.burger-menu span:last-child {
		top: calc(3.75vw * var(--coef-w));
	}

	.burger-menu.active span:first-child,
	.burger-menu.active span:last-child {
		top             : calc(1.875vw * var(--coef-w));
	}

	.burger-menu.active span:nth-child(2) {
		opacity: 0;
	}

	.burger-menu.active span:first-child {
		transform: rotate(45deg);
	}

	.burger-menu.active span:last-child {
		transform: rotate(-45deg);
	}

    .mobile-menu {
        display: block;
        position: absolute;
        top: calc(17.1875vw * var(--coef-w));
        right: 0;
        background-color: #fff;
        width: 100%;
        height: fit-content;
        padding: calc(6.25vw * var(--coef-w)) 0;
        text-align: left;
        transition: opacity 0.6s ease, visibility 0.6s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 100;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .header-menu {
		display: flex;
        flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
        align-items: flex-start;
		list-style: none;
		margin: 0;
        margin-bottom: calc(7.8125vw * var(--coef-w));
        padding: 0;
    }

	.header-menu li a {
		color: var(--black);
		font-size: calc(4.375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 114.286% */
	}

	.header-phone-img {
		width: calc(11.25vw * var(--coef-w));
		height: calc(11.25vw * var(--coef-w));
		object-fit: contain;
	}

	.phone-container {
		display: flex;
		align-items: center;
		gap: calc(7.1875vw * var(--coef-w));
		color: #1E1E1E !important;
		font-size: calc(4.375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 114.286% */
		text-decoration: none;
	}

    .burger-menu {
        display: block;
    }

    .header-right {
        flex-direction: column;
    }

	.main-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
        padding: calc(1.5625vw * var(--coef-w)) 0;
		/*position: relative;*/
	}

 
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*visibility: hidden;*/
  display: none;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: calc(3.125vw * var(--coef-w));
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


 
   .success-modal-title {
        text-align: center;
        color: green;
    }

    .success-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(93.75vw * var(--coef-w));
        padding: calc(9.375vw * var(--coef-w));
        background: #fff;
        border-radius: calc(1.25vw * var(--coef-w));
        box-shadow: 0 3px calc(3.125vw * var(--coef-w)) rgba(0,0,0,0.3);
    }
    .success-modal-close-btn {
        position: absolute;
        right: calc(3.125vw * var(--coef-w));
        top: calc(3.125vw * var(--coef-w));
        font-size: calc(6.25vw * var(--coef-w));
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-success {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }

 
   .error-modal-title {
        text-align: center;
        color: red;
    }

    .error-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(93.75vw * var(--coef-w));
        padding: calc(9.375vw * var(--coef-w));
        background: #fff;
        border-radius: calc(1.25vw * var(--coef-w));
        box-shadow: 0 3px calc(3.125vw * var(--coef-w)) rgba(0,0,0,0.3);
    }
    .error-modal-close-btn {
        position: absolute;
        right: calc(3.125vw * var(--coef-w));
        top: calc(3.125vw * var(--coef-w));
        font-size: calc(6.25vw * var(--coef-w));
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-error {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }

 
    .footer-logo {
        width: calc(23.75vw * var(--coef-w));
        height: calc(15.625vw * var(--coef-w));
        object-fit: contain;
    }

    footer {
		padding: calc(18.75vw * var(--coef-w)) 0 calc(12.5vw * var(--coef-w)) 0;
		background: #F8F9FB;
		margin-top: calc(34.375vw * var(--coef-w));
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
	}

	.footer-left {
		display: flex;
		flex-direction: column;
		gap: calc(6.25vw * var(--coef-w));
	}

	.footer-rights-reserved {
		color: #828282 !important;
		font-size: calc(3.4375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 145.455% */
		width: calc(46.875vw * var(--coef-w));
	}

	.footer-right {
		display: flex;
		flex-direction: column;
		gap: calc(12.5vw * var(--coef-w));
		width: 100%;
	}

	.footer-icon-row {
		width: 100%;
		display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
	}

	.footer-icon-row-item {
		display: flex;
		padding: calc(3.125vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) calc(3.125vw * var(--coef-w)) calc(3.125vw * var(--coef-w));
		align-items: center;
		gap: calc(4.375vw * var(--coef-w));
		border-radius: calc(3.75vw * var(--coef-w));
		border: 1px solid #E6E6E6;
		background: var(--white);
		color: var(--dark-brown);
		font-size: calc(4.0625vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 123.077% */
		width: auto;
		text-decoration: none;
	}

	.footer-icon-row-item:hover {
		color: var(--dark-brown);
	}

	.footer-row {
		display: flex;
		width: 100%;
		justify-content: space-between;
        flex-direction: column;
        gap: calc(9.375vw * var(--coef-w));
	}

	.footer-menu {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
	}

	.footer-menu-column {
		display: flex;
		flex-direction: column;
		gap: calc(6.25vw * var(--coef-w));
	}

	.footer-menu-column-item {
		color: var(--black)  !important;
		font-size: calc(4.375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 114.286% */
		text-decoration: none;
	}

	.footer-menu-column-item:hover {
		text-decoration: underline;
	}

	.footer-btns {
		display: flex;
		gap: calc(6.25vw * var(--coef-w));
		align-items: flex-start;
	}

	.footer-primary-btn {
		text-decoration: none;
		height: fit-content;
		border: 2px solid transparent;
	}

	.footer-primary-btn:hover {
		border: 2px solid transparent !important;
		text-decoration: none;
	}

	.footer-secondary-btn {
		text-decoration: none;
		height: fit-content;
	}

	.footer-secondary-btn:hover {
		text-decoration: none;
	}

 }