.st-booking-form {
    margin: 0 auto;
    /* padding-bottom: 45px; */
    margin-bottom: var(--main-section-margin-bottom);
    max-width: 750px;
}

h2.st-booking-form__title {
    line-height: 1;
    margin-bottom: clamp(5px, 0.5vw, 10px);
    font-family: var(--main-heading-font-family);
    padding: 0;
    font-size: var(--main-heading-font-size);
}

    .st-booking-form__container {
    position: relative;
}

.st-booking-form__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: var(--main-text-font-family);
}

.st-booking-form__input-wrapper {
    display: flex;
    gap: 30px;
}

.st-booking-form__input-wrapper--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.st-booking-form__input-wrapper[hidden] {
    display: none;
}

.st-booking-form__input-container--date {
    position: relative;
}

.st-booking-form__input-container {
    flex: 1;
}

.st-booking-form__label {
    font-weight: 500;
}

.st-booking-form__small {
    line-height: 1.25;
    display: block;
    margin-bottom: 5px;
    opacity: 0.75;
}

select.st-booking-form__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: .75em;
    padding-right: calc(10px* 2 + .75em);
}

input.st-booking-form__input, .st-booking-form__input {
    background: white;
    border: none !important;
    text-decoration: none;
    outline: none;
    max-width: 100%;
    width: 100%;
    color: #333;
    vertical-align: middle;
    font-size: 15px;
    line-height: normal;
    display: block;
    border-radius: 5px;
    padding: 10px 12px;
    box-sizing: border-box;
    height: 40px;
}

.st-booking-form__input--hidden {
    position:absolute !important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0 0 0 0)!important;
    white-space:nowrap!important;
    border:0!important;
    top: calc(100% + 5px);
    pointer-events: none;
}

.st-booking-form__divider {
    height: 1px;
    margin: 10px 0;
}

.st-booking-form__date-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    cursor: pointer;
    line-height: 1.25;
    min-height: 40px;
    height: unset;
    padding-top: 7px;
    padding-bottom: 7px;
    align-items: center;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.8);
}

.st-booking-form__date-chip {
    background: #f1f5f9;
    color: black;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.st-booking-form__date-chip-label {
    padding: 3px 5px 3px 7px;
}

.st-booking-form__date-remove {
    all: unset;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 3px 5px 3px 5px;
}

.st-booking-form__date-remove:hover {
    background: #d4e0eb;
    color: black;
}

.pac-container {
    border-top: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: solid 1px #ccc;
    border-radius: 10px;
}

.pac-item {
    padding: 0 15px;
    border-top: unset;
}

.pac-item:hover {
    background: #dae7f9;
}

.pac-icon-marker {
    display: none;
}

.pac-logo::after {
    display: none;
}

.st-booking-form__input-area {
    resize: none;
    height: 275px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.st-booking-form__input-area::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}

.st-booking-form__input-area::-webkit-scrollbar-thumb {
    background-color: #C8CBCE;
    border-radius: 10px;
}

.st-booking-form__input-area::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    background-color: transparent;
    border-radius: 10px;
}

.st-booking-form__count {
    width: 100%;
    display: block;
    background: white;
    text-align: end;
    padding: 8px 12px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

input.st-booking-form__submit {
    font-family: var(--main-heading-font-family);
    font-weight: 600;
    background: var(--main-button-color);
    transition: all 0.15s ease-in-out;
    border-radius: 10px;
    border: 2px var(--main-button-color) solid;
    font-size: clamp(22px, 2.1vw, 30px);
    padding-top: clamp(11px, clamp(2%, calc(2% + (1920px - 100%) * (1.5 / 896)), 3%), 18px);
    padding-bottom: clamp(6px, 1.5%, 12px);
    min-width: 200px;
    max-width: 500px;
    margin: auto;
    width: 80%;
}

input.st-booking-form__submit:hover, input.st-booking-form__submit:focus, input.st-booking-form__submit:focus-visible {
    background: rgb(21 57 26);
    border-color: rgb(21 57 26);
}

.st-booking-form__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 75px;
    filter: invert(1);
    opacity: 0.5;
    display: none;
}

.st-booking-form__sent {
    position: absolute;
    width: 100%;
    align-items: center;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease-in-out;
    left: 0;
}

.st-booking-form__sent-img {
    width: 14vw;
}

h3.st-booking-form__sent-title {
    font-weight: 600;
    font-family: bookmania, sans-serif;
    margin: 0;
    margin-top: 30px;
    font-size: var(--main-heading-font-size);
}

p.st-booking-form__sent-text {
    margin-bottom: 0;
    font-family: franklin-gothic-urw, sans-serif;
    color: black;
    line-height: 1.1;
    font-size: var(main-text-font-size);
}

@media (max-width: 1023px) {
    h2.st-booking-form__title {
        font-size: var(--main-heading-font-size-tablet);
    }
}

@media (max-width: 767px) {
    h2.st-booking-form__title {
        font-size: var(--main-heading-font-size-mobile);
    }

    .st-booking-form__input-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .st-booking-form__input-wrapper--grid {
        display: inherit;
    }
}