@charset "UTF-8";

/* =========================================================
   RESERVATIONS PAGE
   CORE / LOADING / SUBMIT
========================================================= */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--kk-dark);
    background: var(--kk-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
    z-index: 9999;
}

body.loading #loading-screen {
    display: flex;
}

body:not(.loading) #loading-screen {
    display: none;
}

#loading-screen img {
    background: transparent;
    width: 40px;
    height: 40px;
}

input.form_fields::-webkit-outer-spin-button,
input.form_fields::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.submit-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.submit-container-top {
    margin-top: 10px;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 155, 255, 0.25);
    z-index: -1;
    border: none;
    border-radius: 5px;
    transition: width 1s linear;
}

.submit-btn-reservation {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 66px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background: rgba(100, 155, 255, 0.15);
    cursor: pointer;
    font-size: 18px;
    font-family: 'special_eliteregular';
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.8);
    animation: fadein 2s;
}

#buttonText {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

#countdown {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.session-countdown-note {
    display: none;
    font-size: 14px;
    color: rgba(200, 200, 200, 0.60);
    text-align: center;
}

.recaptcha-link {
    color: rgba(100, 155, 255, 1);
}


/* =========================================================
   RESERVATIONS PAGE
   LAYOUT
========================================================= */

.reservation-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.reservation-shell {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.reservation {
    width: 100%;
    max-width: 560px;
    padding: 60px 20px 200px;
    background-color: transparent;
    transition: all 0.6s linear;
    box-sizing: border-box;
}

.reservation form {
    width: 100%;
}

.reservation h1 {
    margin: 0 0 28px;
    text-align: center;
    line-height: 1.2;
}

.reservation .left,
.reservation .right {
    width: calc(50% - 2px);
    box-sizing: border-box;
    margin-bottom: 5px;
}

.reservation .left {
    float: left;
}

.reservation .right {
    float: right;
}

.reservation::after {
    content: "";
    display: block;
    clear: both;
}

.reservation .form_fields,
.reservation .form_fields_datum,
.reservation .form_fields_email,
.reservation .custom-select-trigger,
.reservation input#phone_number {
    min-height: 58px;
    box-sizing: border-box;
}

.reservation p.lock {
    margin-top: 24px !important;
    line-height: 1.35;
    text-align: center;
}


/* =========================================================
   RESERVATIONS PAGE
   HELPERS / HIDDEN / SPACERS
========================================================= */

.form-spacer-5 {
    height: 5px;
}

.form-spacer-0 {
    height: 0;
}

.honeypot-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.reservation-hidden {
    display: none !important;
}


/* =========================================================
   RESERVATIONS PAGE
   PEOPLE FIELD / STEP BUTTONS
========================================================= */

.custom-wrapper-main {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-wrapper-main::before {
    content: "Personenzahl";
    position: absolute;
    top: 44%;
    padding: 12px;
    transform: translateY(-42%);
    color: rgba(255, 255, 255, 0.70);
    z-index: -1 !important;
    pointer-events: none;
}

input#reservation_people.form_fields {
    height: 48px !important;
    border-right-color: rgba(150, 150, 150, 0.3) !important;
}

.people-stepup-btn,
.people-stepdown-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
}

.people-stepup-btn {
    right: 75px;
    width: calc(100% - 95px);
    height: 100%;
    text-align: right;
}

.people-stepdown-btn {
    right: 20px;
}

.people-stepup-btn i {
    color: seagreen;
}

.people-stepdown-btn i {
    color: dimgray;
}


/* =========================================================
   RESERVATIONS PAGE
   CUSTOM SELECT
========================================================= */

.custom-select,
.custom-select-cancel,
.custom-select-changed,
.custom-select-people {
    position: relative;
    cursor: pointer;
}

.custom-select select,
.custom-select-cancel select {
    display: none;
}

.custom-select-wrapper,
.custom-select-wrapper-time,
.custom-select-wrapper-changed,
.custom-select-wrapper-people {
    position: relative;
    width: 100%;
}

.custom-select-trigger,
.custom-select-trigger-time,
.custom-select-trigger-changed,
.custom-select-trigger-people {
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 12px 8px !important;
    background: transparent;
    border: 1px solid rgba(150, 150, 150, 0.3);
}

.custom-options,
.custom-options-time {
    display: none;
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    height: 180px;
    margin-top: 5px;
    border: 1px solid rgba(150, 150, 150, 0.3);
    overflow: hidden !important;
    z-index: 99;
    animation: fadein 1s;
    -webkit-animation: fadein 1s;
}

.custom-options-time {
    background: url(../images/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    background-size: cover;
}

.custom-options-content {
    height: 100%;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 40%);
    mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 40%);
}

.custom-options-content::-webkit-scrollbar {
    width: 0 !important;
    display: none !important;
    background: transparent !important;
}

.custom-options-content::-webkit-scrollbar-thumb {
    background: transparent !important;
}

.custom-option,
.custom-option-time {
    display: block;
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid rgba(150, 150, 150, 0.1);
}

.custom-option-empty {
    display: block;
    height: 20px;
    border: none;
    pointer-events: none;
}

.custom-option-open {
    display: block;
    height: auto;
    padding: 20px 12px 10px;
    border: none;
    pointer-events: none;
    font-family: 'pol_kam_extra_light', sans-serif;
    font-size: 16px;
    text-transform: none;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
}

.custom-option-open p {
    opacity: 0.80;
    margin: 0 0 5px 0;
}

.custom-option:hover,
.custom-option-time:hover {
    background-color: transparent;
    color: rgba(100, 155, 255, 1);
}

.custom-option.selected,
.custom-option-time.selected,
.custom-option-changed.selected,
.custom-option-people.selected {
    background-color: transparent;
    color: rgba(40, 150, 40, 1);
}

.custom-select.open .custom-options,
.custom-select-time.open .custom-options-time,
.custom-select-changed.open .custom-options-changed,
.custom-select-people.open .custom-options-people {
    display: block;
}


/* =========================================================
   RESERVATIONS PAGE
   CUSTOM SELECT LABELS / PREFIXES
========================================================= */

.custom-select-trigger::before,
.custom-select-trigger-time::before,
.custom-select-trigger-changed::before,
.custom-select-trigger-people::before {
    display: inline-block;
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 1);
}

.custom-select-trigger::before {
    content: "Uhrzeit" !important;
}

.custom-select-trigger-time::before,
.custom-select-trigger-changed::before {
    content: "neue Uhrzeit" !important;
}

.custom-select-trigger-people::before {
    content: "Personenzahl ändern" !important;
}

.custom-select-trigger::after,
.custom-select-trigger-time::after,
.custom-select-trigger-changed::after,
.custom-select-trigger-people::after {
    content: "";
    display: inline-block;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
}

.custom-option::before,
.custom-option-time::before,
.custom-option-changed::before,
.custom-option-people::before {
    display: inline-block;
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
}

.custom-option::before {
    content: "Uhrzeit" !important;
}

.custom-option-time::before,
.custom-option-changed::before {
    content: "neue Uhrzeit" !important;
}

.custom-option-people::before {
    content: "Personenzahl ändern" !important;
}

.custom-option::after,
.custom-option-time::after,
.custom-option-changed::after,
.custom-option-people::after {
    content: "";
    display: inline-block;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
}


/* =========================================================
   RESERVATIONS PAGE
   RESERVATION TIME / OPENING LIST
========================================================= */

.reservation-time-suffix {
    opacity: .25;
    padding-left: 10px;
}

.reservation-opening-list {
    margin: 0;
    padding: 0;
}

.reservation-opening-list li {
    margin: 5px 0;
    list-style: none;
    opacity: 0.60;
}


/* =========================================================
   RESERVATIONS PAGE
   LEGACY SELECT HELPERS
========================================================= */

.select-selected,
.select-selected-cancel {
    background-color: transparent;
}

.select-selected:after,
.select-selected-cancel:after {
    position: absolute;
    top: 18px;
    right: 14px;
    width: 0;
    height: 0;
    content: "";
    border: 6px solid transparent;
    border-color: #C8C8C8CC transparent transparent transparent;
    opacity: 0;
}

.select-selected.select-arrow-active:after,
.select-selected-cancel.select-arrow-cancel-active:after {
    top: 12px;
    border-color: transparent transparent #c83232 transparent;
    opacity: 0;
}

.select-items div,
.select-selected,
.select-items-cancel div,
.select-selected-cancel {
    padding: 12px;
    border: 1px solid #fff;
    border-color: transparent transparent rgba(150, 150, 150, 0.3) transparent;
    cursor: pointer;
    user-select: none;
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
}

.select-items div,
.select-items-cancel div {
    background-color: rgba(100, 155, 255, 0.08);
    animation: fadein 1.5s;
    -webkit-animation: fadein 1.5s;
}

.select-items,
.select-items-cancel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 5px;
    background: url(../images/bg.jpg) no-repeat center center fixed;
    background-color: transparent;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    overflow: scroll;
    z-index: 99;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    animation: fadein .5s;
    -webkit-animation: fadein .5s;
}

.select-items {
    height: 400%;
}

.select-items-cancel {
    height: 200%;
}

.select-hide,
.select-hide-cancel {
    display: none;
}


/* =========================================================
   RESERVATIONS PAGE
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {
    .reservation-page {
        align-items: center;
        padding-top: 50px;
    }

    .reservation-shell {
        padding: 0 12px;
    }

    .reservation {
        max-width: 100%;
        padding: 48px 12px 200px;
    }

    .reservation h1 {
        margin-bottom: 18px;
    }

    .reservation .form_fields,
    .reservation .form_fields_datum,
    .reservation .form_fields_email,
    .reservation .custom-select-trigger,
    .reservation input#phone_number {
        min-height: 54px;
    }

    .custom-select-trigger,
    .custom-select-trigger-time,
    .custom-select-trigger-changed,
    .custom-select-trigger-people {
        padding: 16px 12px 10px !important;
    }

    .reservation .left,
    .reservation .right {
        width: calc(50% - 3px);
        margin-bottom: 5px;
    }

    .reservation .submit-btn-reservation {
        min-height: 60px;
    }

    .reservation p.lock {
        margin-top: 20px !important;
        margin-bottom: 90px;
        text-align: center;
        font-size: 15px;
        line-height: 1.3;
    }
}


/* =========================================================
   RESERVATIONS PAGE
   PLACEHOLDER FIX
========================================================= */

#first_name::placeholder,
#last_name::placeholder,
#phone_number::placeholder,
#email::placeholder {
    font-family: 'special_eliteregular', sans-serif !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.70) !important;
    opacity: 1 !important;
}

#first_name::-webkit-input-placeholder,
#last_name::-webkit-input-placeholder,
#phone_number::-webkit-input-placeholder,
#email::-webkit-input-placeholder {
    font-family: 'special_eliteregular', sans-serif !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.70) !important;
}

#first_name::-moz-placeholder,
#last_name::-moz-placeholder,
#phone_number::-moz-placeholder,
#email::-moz-placeholder {
    font-family: 'special_eliteregular', sans-serif !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.70) !important;
    opacity: 1 !important;
}