/* ==========================================================
   KAMINKELLER NAVIGATION
   Zentraler Nav-Block – Schritt 1
   Quelle: bisherige funktionierende Nav-Regeln aus style.css
   ========================================================== */

/* Start SideNav */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.70);
    background: linear-gradient(to top, rgba(26, 35, 43, 1) 0%, rgba(26, 35, 43, 1) 10%, rgba(46, 61, 77, 1) 90%, rgba(46, 61, 77, 1) 100%);
    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;
}

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

.halb_line_impressum {
    display: block;
    margin-top: 0px;
    /* Entfernt eventuelle Standard-Margin */
    opacity: 0.2;
}

.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;
}

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

/*.sidenav .closebtn {
    color: rgba(165, 155, 255, 1) !important;
    position: absolute;
    top: 0;
    right: -160px !important;
    font-size: 36px;
}*/

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

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

.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,
        /*navPulse 1.8s ease-in-out 1.6s infinite;*/
}

.span-list:hover {
    background: url(../images/open_list_hover.png) no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    -webkit-transition: all .3s linear;
    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,
        /*navPulse 1.8s ease-in-out 1.6s infinite;*/
}

@keyframes fadeNav {
    to {
        opacity: 1;
        /* Endzustand der Animation (sichtbar) */
    }
}

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

/*@keyframes navPulse {
    0% {
        transform: scale(1);
        opacity: 0.45;
        filter: drop-shadow(0 0 0px rgba(100, 155, 255, 0.40));
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(100, 155, 255, 1));
    }
    100% {
        transform: scale(1);
        opacity: 0.45;
        filter: drop-shadow(0 0 0px rgba(100, 155, 255, 0.40));
    }
}*/

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

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

/* ==========================================================
   NEW CLIP / NEW NOTICE
   ========================================================== */

.new-clip,
.new-notice {
    position: absolute;
    right: 60px;
    top: 40%;

    width: 20px;
    height: 20px;
    margin-left: 0;
    padding: 0;

    font-family: 'metropolislight', sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.03em;
    text-align: center;
    color: rgba(255, 201, 110, 0.75);

    transform: translateY(-50%);

    opacity: 0;
    animation: softNoticeIn 1.2s ease forwards;
    animation-delay: 1s;
    animation-play-state: paused;
}

html.nav-open .new-clip,
html.nav-open .new-notice {
    animation-play-state: running;
}

.nav_box a {
    position: relative;
    display: block;
}


/* ==========================================================
   ANIMATED BORDER
   ========================================================== */

.new-clip::before,
.new-notice::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    padding: 1px;

    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 85deg,
        rgba(255, 201, 110, 0.04) 125deg,
        rgba(255, 201, 110, 0.25) 195deg,
        rgba(255, 201, 110, 0.55) 285deg,
        transparent 360deg
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
    animation: socialBorderRotate 2.2s linear infinite;
    animation-delay: 2s;
}

/* ==========================================================
   KEYFRAMES
   ========================================================== */

@keyframes softNoticeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================
   CURSOR
   ========================================================== */

/*.new-clip::after,
.new-notice::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0.9em;
    margin-left: 2px;

    background: rgba(255, 201, 110, 0.85);
    vertical-align: -1px;
}*/


/* ==========================================================
   CURSOR SPEED
   ========================================================== */

/*.new-clip::after {
    animation: typingCursor 0.75s step-end infinite;
}

.new-notice::after {
    animation: typingCursor 0.85s step-end infinite;
}*/


/* ==========================================================
   TYPING SPEED
   ========================================================== */

/*.new-clip {
    animation: typingClip 4.2s steps(18, end) infinite;
}

.new-notice {
    animation: typingClip 5.2s steps(18, end) infinite;
}*/


/* ==========================================================
   KEYFRAMES
   ========================================================== */

@keyframes typingClip {

    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    12% {
        opacity: .8;
    }

    38% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    68% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    88% {
        opacity: .8;
    }

    100% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
}

@keyframes typingCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

div.noscript_note {
    display: block;
    position: relative;
    margin: 10px auto;
    width: 100%;
    max-width: 660px;
    padding: 80px 50px;
    font-family: 'pol_kam_extra_light', sans-serif;
    text-align: center;
    text-transform: none;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 150, 150, 1.00);
}

/* Ende SideNav */
