.wellnest-booking-container {
    --fontFamily: 'Satoshi-Variable', sans-serif;
    display: flex;
    font-family: var(--fontFamily);
    flex-wrap: wrap;
    gap: 24px;
}
.wellnest-booking-container .columns {
    flex: 1 1 calc(50% - 12px);
}
.wellnest-booking-container .columns:not(.right-column) {
    background-color: #fff;
    padding: 32px;
}
.wbf-title {
    color: #385480;
    font: 700 28px "Playfair Display", serif;
    letter-spacing: -.5px;
    line-height: 56px;
    margin: 0;
    text-align: center;
}
.wellnest-booking-form {
    margin-top: 24px;
    position: relative;
}
/* .wellnest-booking-form.doing-ajax .wbf-field:not(.wbf-field-submit) {
    opacity: .5;
    pointer-events: none;
} */
.wellnest-booking-form fieldset {
    border: none;
    margin: 0;
    padding: 0;
}
.wbf-fields-container {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.wbf-fields-container:not(:first-of-type) {
    margin-top: 32px;
    padding-top: 32px;
    position: relative;
}
.wbf-fields-container:not(:first-of-type):before {
    background-color: #E0D4C8;
    content: '';
    height: 1px;
    left: -32px;
    position: absolute;
    top: 0;
    width: calc(100% + 64px);
}
.wbf-field {
    display: flex;
    justify-content: stretch;
}
.wbf-field-bedtype {
    background-color: #F5F1ED;
    border-radius: 256px;
    gap: 12px;
    padding: 12px;
}
.wbf-field-coupon {
    align-items: center;
    background-color: #F5F1ED;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
}
.wbf-field-label {
    width: 100%;
}
.wbf-field-bedtype-label {
    align-items: center;
    background-color: #F5F1ED;
    border-radius: 256px;
    color: #313D4F;
    cursor: pointer;
    display: flex;
    font: 700 18px var(--fontFamily);
    justify-content: center;
    letter-spacing: -.2px;
    line-height: 28px;
    padding: 12px 24px;
    text-align: center;
    transition: all .3s ease-out;
}
.wbf-field-bedtype-label:has(input[type="radio"]:checked) {
    background-color: #385480;
    color: #fff;
}
.wbf-field-bedtype-label:has(input[type="radio"]:checked):hover {
    background-color: #385480A3;
}
.wbf-field-bedtype-label:not(:has(input[type="radio"]:checked) ):hover {
    background-color: #fff;
}
.wbf-field-enableaudio-label {
    align-items: center;
    color: #385480A3;
    column-gap: 16px;
    display: flex;
    font: 500 14px var(--fontFamily);
    letter-spacing: .1px;
    line-height: 20px;
    position: relative;
}
.wbf-field-enableaudio-label:before {
    border: 1px solid #E0D4C8;
    content: '';
    height: 32px;
    padding: 3px 4px 4px;
    width: 32px;
}
.wbf-field-enableaudio:has(input[type="checkbox"]:checked) .wbf-field-enableaudio-label:before {
    content: url(../img/checkmark-icon.svg);
}
.wbf-field-coupon-texts {
    display: flex;
    flex: 1;
    flex-direction: column;
    row-gap: 4px;
}
.wbf-field-coupon-texts .wbf-field-coupon-text-large {
    color: #313D4F;
    font: 500 22px var(--fontFamily);
    letter-spacing: -.2px;
    line-height: 28px;
}
.wbf-field-coupon-texts .wbf-field-coupon-text-small {
    color: #313D4FA3;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .1px;
    line-height: 20px;
}
.wbf-field-coupon-label {
    margin-left: auto;
    width: auto;
}
.wbf-field-coupon-label svg {
    cursor: pointer;
    margin: 0 8px;
}
.wbf-field-coupon-label rect {
    transition: .3s ease-out;
}
.wbf-field-coupon-label:has(input[type="checkbox"]:checked) rect:first-child {
    fill: #537A6B;
}
.wbf-field-coupon-label:has(input[type="checkbox"]:checked) rect:last-child {
    translate: 24px 0;
}
.wbf-field-coupon .wbf-coupon-form {
    align-items: center;
    display: none;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    width: 100%;
}
.wbf-field-coupon .wbf-coupon-form .wbf-field:not(.wbf-field-submit) {
    flex: 1;
}
.wbf-field-coupon:has(input[type="checkbox"]:checked) .wbf-coupon-form {
    animation: fadeIn 0.3s ease-out forwards;
    display: flex;
}
.wbf-field input[type="number"], 
.wbf-field select,
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"] {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #CCB7A5;
    color: #313D4FA3;
    font: 300 16px var(--fontFamily);
    height: 68px;
    line-height: 24px;
    outline: none;
    padding: 12px 16px;
    transition: border-color .3s ease-out;
}
.wbf-field input[type="number"] {
    -moz-appearance: textfield;
}
.wbf-field input[type="number"]::-webkit-inner-spin-button,
.wbf-field input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.wbf-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.wbf-field:not(.wbf-field-submit, .wbf-field-coupon):has(svg) {
    background-color: #fff;
    border-radius: 12px;
    position: relative;
}
.wbf-field:not(.wbf-field-submit, .wbf-field-coupon):has(svg) .wbf-field-label {
    color: #313D4FA3;
    font: 300 16px var(--fontFamily);
    line-height: 24px;
    left: 48px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    transition: .3s ease-out;
    width: auto;
}
.wbf-field:not(.wbf-field-submit, .wbf-field-coupon):has(svg) .wbf-input {
    background-color: transparent;
    padding-left: 48px;
    position: relative;
}
.wbf-field:not(.wbf-field-submit, .wbf-field-coupon) svg {
    height: 24px;
    left: 16px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 24px;
    z-index: 0;
}
.wbf-field:has(.wbf-input:valid:not(:placeholder-shown)) .wbf-field-label,
.wbf-field:has(.wbf-input:not(select):invalid:not(:placeholder-shown)) .wbf-field-label,
.wbf-field:has(.wbf-input:focus) .wbf-field-label,
.wbf-field:has(.wbf-input:read-only:not(:placeholder-shown)) .wbf-field-label {
    font-size: 12px;
    line-height: 16px;
    top: 12px;
    translate: 0;
}
.wbf-field:has(.wbf-input:valid:not(:placeholder-shown)) .wbf-input,
.wbf-field:has(.wbf-input:not(select):invalid:not(:placeholder-shown)) .wbf-input,
.wbf-field:has(.wbf-input:focus) .wbf-input,
.wbf-field:has(.wbf-input:read-only:not(:placeholder-shown)) .wbf-input {
    padding-top: 32px;
}
:is(.wbf-field input[type="number"], 
.wbf-field select,
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"]):valid:not(:placeholder-shown) {
    color: #313D4F;
    font-weight: 500;
}
:is(.wbf-field input[type="number"], 
.wbf-field select,
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"]):read-only:not(:placeholder-shown) {
    color: #313D4F;
    font-weight: 500;
}
.wbf-field .pick-a-date:valid {
    text-transform: uppercase;
}
:is(.wbf-field input[type="number"], 
.wbf-field select, 
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"])::-webkit-input-placeholder {
    color: #313D4FA3;
}
:is(.wbf-field input[type="number"], 
.wbf-field select, 
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"]):-moz-placeholder {
    color: #313D4FA3;
    opacity: 1;
}
:is(.wbf-field input[type="number"], 
.wbf-field select, 
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"])::-moz-placeholder {
    color: #313D4FA3;
    opacity: 1;
}
:is(.wbf-field input[type="number"], 
.wbf-field select, 
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"]):-ms-input-placeholder {
    color: #313D4FA3 !important;
}
:is(.wbf-field input[type="number"], 
.wbf-field select, 
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"]):focus {
    border-color: #C7D6CC;
}
:is(.wbf-field input[type="number"], 
.wbf-field select,
.wbf-field input[type="text"],
.wbf-field input[type="tel"],
.wbf-field input[type="email"]):-webkit-autofill {
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #313D4F !important;
}
.wbf-field-bedtype input[type="radio"],
.wbf-field-enableaudio input[type="checkbox"],
.wbf-field-coupon input[type="checkbox"] {
    display: none;
}
.wbf-dropdown {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 8px 24px 0px #4881A31F;
    display: none;
    list-style: none;
    margin: 0;
    max-height: 275px;
    overflow-y: auto;
    padding: 8px;
    position: absolute;
    scrollbar-color: #A87E67 #fff;
    top: 100%;
    width: 100%;
    z-index: 1;
}
.wbf-dropdown.show-dropdown {
    animation: fadeIn 0.3s ease-out forwards;
    display: block;
}
.wbf-dropdown.hide-dropdown {
    animation: fadeOut 0.3s ease-out forwards;
}
.wbf-dropdown-item {
    color: #313D4F;
    font: 500 16px var(--fontFamily);
    line-height: 24px;
    padding: 12px 36px 12px 16px;
    position: relative;
    transition: .3s ease-out;
}
.wbf-dropdown-item:not(:last-child) {
    border-bottom: 1px dashed #CCB7A5;
}
.wbf-dropdown-item:not(.active):not(.disabled):hover {
    background-color: #F0EAE4;
    cursor: pointer;
}
.wbf-dropdown-item.disabled {
    display: none;
    opacity: .5;
}
.wbf-dropdown-item:after {
    content: url(../img/checkmark-light-icon.svg);
    opacity: 0;
    position: absolute;
    right: -4px;
    top: 50%;
    translate: 0 -50%;
    transition: .3s ease-out;
}
.wbf-dropdown-item.active:after {
    opacity: 1;
}
.wbf-dropdown::-webkit-scrollbar-track {
    background: #fff;
}
.wbf-dropdown::-webkit-scrollbar-thumb {
    background-color: #A87E67;
}
.wbf-button {
    align-items: center;
    border: 1px solid;
    border-radius: 0;
    column-gap: 16px;
    display: flex;
    font: 500 16px var(--fontFamily);
    letter-spacing: .1px;
    line-height: 20px;
    margin-left: auto;
    padding: 12px 65px;
    transition: background-color .3s ease-out, border-color .3s ease-out, color .3s ease-out;
}
.wbf-button:not(:disabled) {
    background-color: #537A6B;
    border-color: #537A6B;
    color: #fff;
}
.wbf-button:not(:disabled):hover {
    background-color: #537A6BA3;
    border-color: #537A6BA3;
    color: #fff;
}
.wbf-button:disabled {
    background-color: #F0EAE4;
    border-color: #F0EAE4;
    color: #CCB7A5A3;
}
.wbf-button path {
    fill: currentColor;
}
.wbf-button.loading {
    position: relative;
    text-indent: -9999px;
}
.wbf-button.loading:after {
    animation: rotation 1s linear infinite;
    border: 2px solid #CCB7A5A3;
    border-bottom-color: transparent;
    border-radius: 50%;
    content: '';
    height: 20px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 20px;
}
.wbf-button.loading svg {
    display: none;
}
.wbf-field-coupon .wbf-button {
    padding: 19px 36px;
}
.wbf-field-coupon .wbf-button:not(:disabled) {
    background-color: #fff;
    color: #537A6B;
}
.wbf-coupon-message {
    color: #385480;
    flex: 100%;
    font: 700 16px var(--fontFamily);
    line-height: 20px;
    text-align: center;
}
.wbf-datepicker {
    --fontFamily: 'Satoshi-Variable', sans-serif;
    box-shadow: 0px 8px 24px 0px #4881A31F;
    padding: 0;
    min-width: 312px;
    max-width: 100%;
}
.wbf-datepicker.ui-corner-all {
    border-radius: 12px;
}
.wbf-datepicker .ui-corner-bottom, 
.wbf-datepicker .ui-corner-right, 
.wbf-datepicker .ui-corner-br, 
.wbf-datepicker .ui-corner-all {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
.wbf-datepicker .ui-datepicker-header {
    background: #F0EAE4;
    border: none;
    border-bottom: 1px solid #E0D4C8;
    padding: 12px 16px;
}
.wbf-datepicker .ui-datepicker-header .ui-corner-all {
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.wbf-datepicker .ui-datepicker-header .ui-corner-all.ui-state-hover {
    background: none;
    border: none;
    cursor: pointer;
    top: 2px;
}
.wbf-datepicker .ui-datepicker-header .ui-datepicker-prev {
    left: 8px;
}
.wbf-datepicker .ui-datepicker-header .ui-datepicker-next {
    right: 8px;
}
.wbf-datepicker .ui-datepicker-header .ui-icon {
    background-position: 0;
    height: 24px;
    margin: 0;
    position: static;
    width: 24px;
}
.wbf-datepicker .ui-datepicker-header .ui-icon-circle-triangle-w {
    background-image: url(../img/jquery-ui/chevron-left-icon.svg);
}
.wbf-datepicker .ui-datepicker-header .ui-icon-circle-triangle-e {
    background-image: url(../img/jquery-ui/chevron-right-icon.svg);
}
.wbf-datepicker.ui-widget-content {
    border: none;
}
.wbf-datepicker .ui-datepicker-header .ui-datepicker-title {
    color: #313D4F;
    font: 700 16px var(--fontFamily);
    text-transform: uppercase;
}
.wbf-datepicker .ui-datepicker-calendar {
    border: 16px solid #fff;
    margin: 0;
}
.wbf-datepicker th, 
.wbf-datepicker td {
    padding: 0;
}
.wbf-datepicker th {
    border-bottom: 4px solid transparent;
    color: #313D4FA3;
    font: 300 12px var(--fontFamily);
    letter-spacing: .2px;
    line-height: 16px;
    text-transform: uppercase;
}
.wbf-datepicker td {
    background-color: transparent !important;
}
.wbf-datepicker td * {
    background: none !important;
    border: none !important;
    font: 300 16px var(--fontFamily);
    line-height: 20px;
    padding: 10px 0 !important;
    text-align: center !important;
    width: 40px;
}
.wbf-datepicker td.ui-state-disabled * {
    color: #CCB7A5A3;
}
.wbf-datepicker td:not(.ui-state-disabled) * {
    color: #537A6B;
    font-weight: 700;
}
.wbf-datepicker .ui-state-default {
    border-radius: 48px;
}
.wbf-datepicker .ui-state-default:not(.ui-state-active):hover {
    background: #F0EAE4 !important;
    color: #313D4F;
    font-weight: 400;
}
.wbf-datepicker .ui-state-default.ui-state-active {
    background: #385480 !important;
    box-shadow: 6px 6px 12px 0px #0000003E;
    color: #fff;
    font-weight: 400;
}