*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 0;
}

p {
    margin: 0 0 1.25em 0;
}

p:last-child {
    margin-bottom: 0!important;
}

.booking-form {
    font-family: 'Helvetica Neue';
}

.booking-form-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.booking-form-col {
    flex: 1;
}

.booking-form-settings {
    margin-bottom: 50px;
    justify-content: space-between;
}

.booking-form-settings > .booking-form-col {
    flex-grow: 0;
}

.booking-form-heading {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 25px;
    white-space: nowrap;
}

.arrow-prev::before {
    content: '';
    display: block;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image:url(../img/arrow_left.svg);
    cursor: pointer;
    width: 18px;
    height: 21px;
}

.arrow-next::before {
    content: '';
    display: block;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image:url(../img/arrow_right.svg);
    cursor: pointer;
    width: 18px;
    height: 21px;
}

.arrow-prev.disabled::before,
.arrow-next.disabled::before {
    opacity: 0.25;
    cursor: default;
}

.booking-form-calendar-month {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 18px;
    user-select: none;
}

.booking-form-calendar-value {
    display: block;
    text-align: center;
    margin: 0 10px;
}

.booking-form-calendar-table {
    font-size: 16px;
    line-height: 18px;
    user-select: none;
}

.booking-form-calendar-table table {
    table-layout: fixed;
}

.booking-form-calendar-table th {
    font-weight: 400;
}

.booking-form-calendar-table td {
    padding: 5px;
}

.booking-form-calendar-table span {
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 16px;
    text-align: center;
    border-radius: 50%;
    display: block;
    cursor: default;
    border-width: 1px;
    border-color: transparent;
    border-style: solid;
}

.booking-form-calendar-table .disabled span {
    opacity: 0.25;
    color: white;
}

.booking-form-calendar-table .not-available span {
    color: white;
}

.booking-form-calendar-table .available span {
    color: black;
    cursor: pointer;
}

.booking-form-calendar-table .available.some-available span {
    color: grey;
}

.booking-form-calendar-table .available:hover span,
.booking-form-calendar-table .selected span {
    background: black;
    color: white;
}

.booking-form-tubes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-form-tube {
    border-width: 1px;
    border-style: solid;
    width: 26px;
    height: 26px;
    display: inline-block;
    line-height: 24px;
    font-size: 16px;
    text-align: center;
    border-radius: 50%;
}

.booking-form-tube.available {
    color: black;
    border-color: black;
    cursor: pointer;
}

.booking-form-tube.not-available {
    color: white;
    border-color: white;
}

.booking-form-tube.selected {
    color: white;
    border-color: black;
    background-color: black;
    cursor: pointer;
}

.booking-form-guests-input {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 18px;
    margin-top: -7px;
    user-select: none;
}

.booking-form-guests-input-value {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.booking-form-legend {
    padding: 25px 0px;
}

.booking-form-legend-calendar {
    font-size: 16px;
    line-height: 18px;
}

.booking-form-legend-calendar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-form-legend-available {
    color: black;
    display: block;
}

.booking-form-legend-not-available {
    color: white;
    display: block;
}

.booking-form-actions {
    padding: 25px 0px;
    border-top: 1px solid black;
}

.booking-form-actions button {
    background: transparent;
    border: 0;
    color: black;
    padding: 0;
    font-size: 16px;
    line-height: 18px;
    cursor: pointer;
    display: block;
}

.booking-form-actions button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-form-action-clear {
    display: flex;
    justify-content: flex-start;
}

.booking-form-action-apply {
    display: flex;
    justify-content: flex-end;
}

body.booking-form-popup-open {
    overflow: hidden!important;
}

.booking-form-popup-overlay {
    background: rgba(0,0,0,0.2);
    position: fixed;
    z-index: 99998;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-form-popup-open .booking-form-popup-overlay {
    display: flex;
}

.booking-form-popup {
    background: #FFFCF2;
    padding: 20px;
    max-width: 650px;
    font-size: 16px;
    line-height: 18px;
    font-family: "Helvetica Neue";
    position: relative;
    display: block;
    flex-shrink: 0;
    flex-basis: 0%;
    flex-grow: 1;
}

.booking-form-popup.working:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 100;
    cursor: wait;
}

.booking-form-popup-close {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: url(../img/close.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.booking-form-popup-header {
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
    padding-left: 60px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.booking-form-popup-header > div {
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.booking-form-popup-header > div.booking-form-popup-label {
    flex-grow: 0;
}

.booking-form-popup-header > div.booking-form-popup-guests {
    flex-grow: 0;
}

.booking-form-popup-tubes-container {
    display: inline-block;
    top: -3px;
    position: relative;
    height: 14px;
}

.booking-form-popup-tubes-container > span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: black;
    text-align: center;
    line-height: 26px;
    font-size: 16px;
    color: white;
    margin: 0px 3px;
    vertical-align: middle;
    display: inline-block;
}

.booking-form-popup-content {
    margin-bottom: 40px;
}

.booking-form-popup-content-title {
    margin-bottom: 40px;
}

.booking-form-popup-content fieldset {
    border: 0;
    padding: 0;
    margin-bottom: 20px;
}

.booking-form-popup-content fieldset .error-message {
    color: red;
    margin-top: 10px;
    font-style: italic;
}

.booking-form-popup-content fieldset:not(.error) .error-message {
    display: none;
}

.booking-form-popup-content label {
    display: block;
    margin-bottom: 5px;
}


.booking-form-popup-content input[type="text"],
.booking-form-popup-content input[type="email"],
.booking-form-popup-content input[type="tel"] {
    display: block;
    border: 0;
    border-bottom: 1px solid #000000;
    background: transparent;
    padding: 8px 0px;
    width: 100%;
    outline: 0;
}

.booking-form-popup-footer {
    display: flex;
    justify-content: space-between;
}

.booking-form-popup-footer button {
    border: 0;
    background: transparent;
    font-size: 16px;
    line-height: 18px;
    font-family: "Helvetica Neue";
    padding: 3px 5px;
    cursor: pointer;
}

.booking-form-popup-footer-cancel button:before {
    content: '';
    display: inline-block;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image:url(../img/arrow_left.svg);
    cursor: pointer;
    width: 18px;
    height: 21px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -2px;
}

.booking-form-popup-footer-book button:after {
    content: '';
    display: inline-block;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image:url(../img/arrow_right.svg);
    cursor: pointer;
    width: 18px;
    height: 21px;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: -2px;
}

.booking-form-popup-guest-template {
    display: none;
}

.has-parkhotel-icon .elementor-widget-container::before {
    content: '';
    width: 42px;
    height: 42px;
    position: absolute;
    display: block;
    background: url('../img/parkhotel.svg') no-repeat center center;
    background-size: contain;
    left: -57px;
    top: 2px;
}

.booking-thankyou-popup-overlay {
    background: rgba(0,0,0,0.2);
    position: fixed;
    z-index: 99998;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
}

.booking-thankyou-popup {
    background: #FFFCF2;
    padding: 40px;
    max-width: 650px;
    font-size: 16px;
    line-height: 18px;
    font-family: "Helvetica Neue";
    position: relative;
    display: block;
    flex-shrink: 0;
    flex-basis: 0%;
    flex-grow: 1;
    text-align: center;
}

.grecaptcha-badge {
    visibility: hidden!important;
}

@media (max-width:1024px){
    .has-parkhotel-icon .elementor-widget-container::before {
        left: 0;
        top: 0;
        position: relative;
    }
}

@media (max-width:768px){
    .booking-form-popup-header {
        padding-left: 0;
        padding-top: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 30px;
    }

    .booking-form-popup-header > div {
        text-align: left;
    }

    .booking-form-settings {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
}