@charset "UTF-8";

/* =========================================================
   BASE
   GLOBALE GRUNDLAGEN FÜR RESERVATIONS-HEADER
========================================================= */

* {
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
}

:root {
    --kk-dark: rgba(26, 35, 43, 1);
    --kk-light: rgba(46, 61, 77, 1);
    --kk-gradient: linear-gradient(
        0deg,
        var(--kk-dark) 0%,
        var(--kk-dark) 10%,
        var(--kk-light) 90%,
        var(--kk-light) 100%
    );

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    margin: 0;
    min-height: 100%;
    background-color: var(--kk-dark);
}

body {
    margin: 0;
    width: 100%;
    min-height: 100dvh;
    background-color: var(--kk-dark);
    background: var(--kk-gradient);
    overscroll-behavior: none;
    font-family: 'special_eliteregular', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
    text-transform: uppercase;
    touch-action: pan-x pan-y;
    outline: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}

a {
    user-select: none;
    color: inherit;
    text-decoration: none;
    text-shadow: inherit;
    transition: all 0.4s linear;
}

a:hover,
a:focus,
a:active,
a:visited {
    color: inherit;
    text-decoration: none;
}

#scrollbereich {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 2;
}

#scrollbereich::-webkit-scrollbar {
    display: none;
}

.grecaptcha-badge {
    visibility: hidden;
    display: none;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* =========================================================
   BASE
   GLOBAL OVERLAYS
========================================================= */

#overbox,
#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--kk-gradient);
    overflow-x: hidden;
    opacity: 1 !important;
    z-index: 4;
    cursor: pointer;
    animation: fadein .6s;
}

/* =========================================================
   BASE
   MASKS / FOOTER
========================================================= */

.mask-gradient-top,
.mask-gradient-bottom {
    position: fixed;
    left: 0;
    right: 0;
    height: 10%;
    padding: 40px 0;
    z-index: 2;
    pointer-events: none;
}

.mask-gradient-top {
    top: 0;
    background: linear-gradient(to bottom, rgba(46, 61, 77, 1) 10%, rgba(46, 61, 77, 0.95) 15%, rgba(46, 61, 77, 0.8) 20%, rgba(46, 61, 77, 0.7) 30%, rgba(46, 61, 77, 0.6) 40%, rgba(46, 61, 77, 0.5) 50%, rgba(46, 61, 77, 0.4) 60%, rgba(46, 61, 77, 0.3) 70%, rgba(46, 61, 77, 0.2) 80%, rgba(46, 61, 77, 0.1) 90%, rgba(46, 61, 77, 0) 100%);
    mask-image: linear-gradient(to bottom, #1a232b, #2e3d4d);
}

.mask-gradient-bottom {
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 35, 43, 1) 30%, rgba(26, 35, 43, 0.95) 35%, rgba(26, 35, 43, 0.9) 40%, rgba(26, 35, 43, 0.8) 45%, rgba(26, 35, 43, 0.7) 60%, rgba(26, 35, 43, 0.6) 65%, rgba(26, 35, 43, 0.4) 70%, rgba(26, 35, 43, 0.3) 75%, rgba(26, 35, 43, 0.25) 80%, rgba(26, 35, 43, 0.2) 85%, rgba(26, 35, 43, 0.15) 90%, rgba(26, 35, 43, 0.1) 95%, rgba(26, 35, 43, 0) 100%);
    mask-image: linear-gradient(to top, #2e3d4d, #1a232b);
}

.content-footer span {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    width: 100%;
    overflow-x: hidden;
    z-index: 9;
    pointer-events: none;
    font-family: 'metropolisthin';
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: none;
    will-change: opacity, filter;
    transform: translateZ(0);
    animation: none;
}

/* =========================================================
   BASE
   NAV / SIDENAV
========================================================= */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.70);
    background: var(--kk-gradient);
    opacity: 1;
    box-shadow: 0 0 210px 0 rgba(0, 0, 0, 0.5);
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
    transition: 0.6s ease;
    padding-top: 30px;
    z-index: 7;
}

.sidenav::-webkit-scrollbar {
    display: none;
    width: 0;
    background-color: transparent;
}

.sidenav a {
    display: block;
    width: 200px;
    padding-left: 15px;
    text-decoration: none;
    transition: .6s;
}

.sidenav a:hover {
    color: rgba(168, 155, 255, 1) !important;
    transition: all .5s linear;
}

.sidenav img.h_line {
    display: block;
    height: 1px;
    margin-bottom: 15px;
    padding-left: 15px;
    opacity: .2;
}

img.hl {
    padding-left: 15px;
    opacity: .5;
}

.sidenav div.nav_box,
.sidenav div.nav_box_menu {
    margin-top: 30%;
}

.sidenav div.nav_box_impressum {
    margin-top: 50%;
}

.sidenav div.nav_box_allerg {
    margin-top: 10%;
}

.sidenav a span.home,
.sidenav a span.home_menu,
.sidenav a span.opt_menu,
.sidenav a span.privacy_policy_menu,
.sidenav a span.home_impressum,
.sidenav a span.home_allerg,
.sidenav a span.opt_allerg,
.sidenav a span.privacy_policy_allerg {
    display: block;
    height: 35px;
}

.sidenav a span.opt,
.sidenav a span.opt_impressum {
    display: block;
    height: 35px;
    line-height: 18px;
}

.sidenav a span.opt_menu,
.sidenav a span.opt_allerg {
    line-height: 18px;
}

.sidenav a span.opt_top {
    font-size: 12px;
    opacity: .6;
}

.sidenav a span.privacy_policy {
    font-size: 12px;
    line-height: 24px;
    opacity: .6;
}

.sidenav a span.privacy_policy_menu,
.sidenav a span.privacy_policy_allerg {
    font-size: 12px;
    line-height: 18px;
    opacity: .6;
}

#mainav {
    position: absolute;
    transition: margin-left 1.5s;
    padding: 30px 20px;
    z-index: 5 !important;
}

.span-list {
    position: fixed;
    background: url(../images/open_list_hover.png) no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: 0;
    margin: 30px 20px;
    width: 22px;
    height: 18px;
    cursor: pointer;
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 1));
    animation: fadeNav .5s ease-in .5s forwards;
}

.span-list:hover {
    background: url(../images/open_list_hover.png) no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    transition: all .3s linear;
    animation-play-state: paused;
}

.close-list-nav {
    display: block;
    position: relative;
    background: url(../images/close_list_hover.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 180px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 1));
    animation: fadeNav .5s ease-in .5s forwards;
}

.close-list-nav:hover {
    background: url(../images/close_list_hover.png) no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    transition: all .3s linear;
    animation-play-state: paused;
}

@keyframes fadeNav {
    to {
        opacity: 1;
    }
}

#active,
.active {
    color: rgba(100, 155, 255, 1) !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
    transition: all .5s linear;
}

@media screen and (max-height: 600px) {
    .sidenav {
        padding: 30px 0 15px;
    }
}

/* =========================================================
   BASE
   GLOBAL FORM BASICS
========================================================= */

input[required] {
    width: 100% !important;
    background-color: transparent;
}

input:focus {
    outline: none;
    background-color: transparent;
}

.left {
    float: left;
    width: 49.5%;
    margin-bottom: 5px;
}

.right {
    float: right;
    width: 49.5%;
    margin-bottom: 5px;
}

input#reservation_people.form_fields {
    padding-left: 145px;
    border-right-color: transparent;
}

input#first_name.form_fields,
input#last_name.form_fields,
input#phone_number.form_fields,
input#email.form_fields_email {
    text-transform: none;
    font-family: 'pol_kam_extra_light';
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
    font-weight: normal;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.70);
}

input#phone_number.form_fields {
    padding-left: 15px;
}

.form_fields,
.form_fields_datum,
.form_fields_email,
.form_button_submit,
.form_button_submit_storno {
    display: block;
    background: none;
    margin: 0 auto;
    min-width: 100%;
    padding: 12px;
    cursor: pointer;
    border: 1px solid rgba(150, 150, 150, 0.30);
    font-size: 16px;
    font-family: 'special_eliteregular';
    font-weight: normal;
    color: rgba(255, 255, 255, 0.70);
    text-transform: uppercase;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.4s linear;
}

.form_fields,
.form_fields_datum,
.form_fields_email {
    text-align: left;
}

.form_button_submit,
.form_button_submit_storno {
    text-align: center;
    border-radius: 5px;
}

.form_fields {
    border-radius: 0 !important;
}

.form_fields_datum {
    border-radius: 5px 5px 0 0 !important;
    padding: 15px 12px 11px !important;
}

/*#firma.form_fields_datum {
    border-radius: 0 !important;
}*/

.form_fields_email {
    border-radius: 0 0 5px 5px !important;
}

.reservation h1 {
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

p.lock:before {
    content: "\00a0 \00a0 \00a0 \00a0 \00a0";
    position: relative;
    top: 3px;
    background: url(/images/lock-ico.png) no-repeat;
    background-size: 8px 10px;
    opacity: 1;
}

p.intro,
p.lock,
p.success {
    display: block;
    margin: 0 auto;
    border: none;
    font-family: 'pol_kam_extra_light';
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    line-height: 16px;
    text-transform: none;
    font-weight: normal;
    text-align: center;
    cursor: default;
}

p.lock {
    font-size: 12px !important;
    color: rgba(45, 151, 69, 1) !important;
}

a.intro {
    color: rgba(100, 155, 255, 1) !important;
}

/* =========================================================
   BASE
   AUTOFILL FIX
========================================================= */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.70) !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    transition: background-color 999999s ease-in-out 0s;
}

input:-webkit-autofill::first-line {
    font-family: 'pol_kam_extra_light', sans-serif !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.70) !important;
}

.iti input:-webkit-autofill,
.iti input:-webkit-autofill:hover,
.iti input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    background-color: transparent !important;
}

/* =========================================================
   BASE
   ITI AUTOFILL HARD FIX
========================================================= */

.iti,
.iti__selected-country,
.iti__country-container {
    background: transparent !important;
}

.iti input,
.iti input:-webkit-autofill,
.iti input:-webkit-autofill:hover,
.iti input:-webkit-autofill:focus,
input#phone_number,
input#phone_number:-webkit-autofill,
input#phone_number:-webkit-autofill:hover,
input#phone_number:-webkit-autofill:focus {
    background-color: transparent !important;
    background-image: none !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(46, 61, 77, 0) inset !important;
    box-shadow: 0 0 0 1000px rgba(46, 61, 77, 0) inset !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.70) !important;
    caret-color: rgba(255, 255, 255, 0.70) !important;
    background-clip: padding-box !important;
}

.iti--allow-dropdown input,
.iti--separate-dial-code input {
    background: transparent !important;
}