
html {
    overflow-x: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 5vw;
    max-width: 100vw;
    min-height: calc(100vh - 20vw);
    background-color: #86362f;
    overflow: hidden;
}
body * {
    font-family: 'Poppins', sans-serif;
}
a {
    color: #86362f;
    text-decoration: none;
}
.meow {
    font-family: "Meow Script", cursive;
    font-weight: 400;
    font-style: normal;
}
.center {
    text-align: center;
}
h1.meow {
    color: white;
    text-align: center;
    margin-top: 0;
}
.container {
    opacity: 0;
    width: 80vw;
    max-width: 400px;
    --swiper-scrollbar-bottom: -20px;
    --swiper-pagination-bullet-inactive-opacity: .8;
    --swiper-pagination-bullet-border-radius: 2px;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-height: 20px;
    transition: all .5s ease-in-out;
}
    .container.container--show {
        opacity: 1;
    }

.swiper-slide {
    border-radius: 25px;
}
.card {
    min-height: 500px;
    padding: 20px;
    background-color: antiquewhite;
}
    .card.photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* border-radius: 20px; */
    }
.two-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    .small-card {
        min-height: 230px;
        border-radius: 25px;
    }
.swiper-scrollbar {
    top: 100px;
}
.box {
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #ffffff;
}
    /* first in .box no margin-top, last no margin-bottom */
    .box > *:first-child {
        margin-top: 0;
    }
    .box > *:last-child {
        margin-bottom: 0;
    }
.flex-buttons {
    display: flex;
    gap: 10px;
}
    .flex-buttons .btn {
        display: flex;
        flex-direction: column;
    }
    .btn {
        display: inline-block;
        padding: 10px 20px;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        border: 0;
        background-color: #86362f;
        color: white;
        text-decoration: none;
        transition: all .3s ease-in-out;
        box-sizing: border-box;
    }
        .btn:hover {
            background-color: #a63a3a;
        }
        button.btn {
            font-size: 2rem;
        }

    input {
        display: block;
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        border-radius: 10px;
        border: 1px solid #86362f;
        box-sizing: border-box;
        text-align: center;
        letter-spacing: .5rem;
        font-size: 2rem;
    }

    .error {
        color: white;
        text-transform: uppercase;
        font-size: .8rem;
        width: 100%;
        text-align: center;
    }

    /* sepia tint map */
    .locationmap {
        filter: sepia(50%);
        overflow: hidden;
        border-radius: 10px;
    }

    figure {
        overflow: hidden;
        border-radius: 13px;
        margin: 0;
        font-size: 0;
    }
        figure img {
            animation: scaling 14s infinite;
        }

    @keyframes scaling {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }

.password--error {
    animation: wiggle 1s;
}
    @keyframes wiggle {
        0% {
            transform: rotate(0deg);
        }
        25% {
            transform: rotate(5deg);
        }
        50% {
            transform: rotate(-5deg);
        }
        75% {
            transform: rotate(5deg);
        }
        100% {
            transform: rotate(0deg);
        }
    }

    dotlottie-player {
        filter: grayscale(0.45) hue-rotate(38deg);
    }

.programm-liste {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
    .programm {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 10px;
        border-radius: 10px;
        background-color: #ffffff;
        opacity: 0;
        transition: all .5s ease-in-out;
    }
        .programm img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        .programm-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .programm h4 {
            margin: 0;
        }
        .programm p {
            margin: 0;
            font-size: .9rem;
        }

        /* increasing delay b nth.. */
        .programm:nth-child(1) {
            transition-delay: 0s;
        }
        .programm:nth-child(2) {
            transition-delay: .1s;
        }
        .programm:nth-child(3) {
            transition-delay: .2s;
        }
        .programm:nth-child(4) {
            transition-delay: .3s;
        }
        .programm:nth-child(5) {
            transition-delay: .4s;
        }
        .programm:nth-child(6) {
            transition-delay: .5s;
        }
        .programm:nth-child(7) {
            transition-delay: .6s;
        }
        .programm:nth-child(8) {
            transition-delay: .7s;
        }
        .programm:nth-child(9) {
            transition-delay: .8s;
        }
        .programm:nth-child(10) {
            transition-delay: .9s;
        }

.card.card-init .programm {
    opacity: 1;
}


.countdown {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 5px; */

}
    .countdown__number {
        font-size: 1.5rem;
        font-family: 'Meow Script', cursive;
    }
    .countdown__label {
        font-size: .7rem;
    }


/* quiz */

.quiz-slider {
    overflow: hidden;
}
/* label <input radio> text /label -> use before/after to style better checked radio */
label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    user-select: none;
}
    label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    label .checkmark {
        position: absolute;
        top: 1px;
        left: 0;
        height: 25px;
        width: 25px;
        /* background-color: ; */
        border: 2px solid #86362f;
        border-radius: 10px;
    }
        label .checkmark i {
            opacity: 0;
            visibility: hidden;
            scale: 0.6;
        }
    label:hover input ~ .checkmark {
        background-color: #ccc;
    }
    label input:checked ~ .checkmark {
        background-color: #86362f;
    }
        label input:checked ~ .checkmark i {
            opacity: 1;
            visibility: visible;
            scale: 1;
        }
    /* label .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    label input:checked ~ .checkmark:after {
        display: block;
    }
    label .checkmark:after {
        top: 4px;
        left: 4px;
        width: 17px;
        height: 17px;
        border-radius: 5px;
        background: white;
    } */

    .quiz-item {
        padding: 5px;
    }
    .quiz-option {
        border: 2px solid transparent;
        border-radius: 10px;
        padding: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
        .quiz-option label {
            margin:0;
        }
        .quiz-option.quiz-correct {
            border-color: #467f11;
        }
        .quiz-option.quiz-wrong {
            border-color: #a63a3a;
        }
        .quiz-option.quiz-show-correct {
            border-color: #467f11;
            border-style: dashed;
        }

    /* quiz-correct animation to hop happily up and down twice */
    .quiz-correct {
        animation: hop 1s;
    }
    /* quiz-wrong animation to wiggle left and right */
    .quiz-wrong {
        animation: wiggle 1s;
    }
    
    @keyframes hop {
        0% {
            transform: translateY(0);
        }
        25% {
            transform: translateY(-10px);
        }
        50% {
            transform: translateY(0);
        }
        75% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0);
        }
    }

    .slide-indicator {
        position: absolute;
        bottom: 20px;
        left: 30px;
        width: calc(100% - 60px);
        height: 2px;
        background: #fff;
    }
    /* add animation to slide-indicator - filling from left to right in red in 1.5s */
    .slide-indicator-indicator {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #a63a3a;
        animation: fill 2s;
    }
    @keyframes fill {
        0% {
            width: 0;
        }
        100% {
            width: 100%;
        }
    }

    .menu-trigger, .menu-close {
        color: white;
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        opacity: .5;
    }
        .menu-close {
            /* color: #86362f; */
        }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        overflow: scroll;
        width: 100%;
        max-height: 100vh;
        box-sizing: border-box;
        height: 100%;
        background: #a63a3ad9;
        transform: translateX(100%);
        transition: transform .5s;
        z-index: 100;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10vh 2rem;
        justify-content: space-evenly;
        align-items: center;
        gap: 5px;
        backdrop-filter: blur(5px);
    }
        .menu.show {
            transform: translateX(0);
        }
            .menu.show a:not(.menu-close) {
                opacity: 1;
                translate: 0 0;
            }
        .menu a:not(.menu-close) {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            padding: 15px;
            color: #86362f;
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            background: antiquewhite;
            border-radius: 15px;
            aspect-ratio: 2 / 3;
            width: 80px;
            opacity: 0;
            transition: all .3s ease;
            translate: 0 10px;
        }
        .menu a:hover {
            background: #86362f;
            color: white;
        }
        .menu a.new::after {
            content: "🆕";
            margin-left: 5px;
        }
            /* do transition delay for each menu item to 12 items */
            .menu a:nth-child(1) {
                transition-delay: 0s;
            }
            .menu a:nth-child(2) {
                transition-delay: .1s;
            }
            .menu a:nth-child(3) {
                transition-delay: .2s;
            }
            .menu a:nth-child(4) {
                transition-delay: .3s;
            }
            .menu a:nth-child(5) {
                transition-delay: .4s;
            }
            .menu a:nth-child(6) {
                transition-delay: .5s;
            }
            .menu a:nth-child(7) {
                transition-delay: .6s;
            }
            .menu a:nth-child(8) {
                transition-delay: .7s;
            }
            .menu a:nth-child(9) {
                transition-delay: .8s;
            }
            .menu a:nth-child(10) {
                transition-delay: .9s;
            }
            .menu a:nth-child(11) {
                transition-delay: 1s;
            }
            .menu a:nth-child(12) {
                transition-delay: 1.1s;
            }
            .menu a:nth-child(13) {
                transition-delay: 1.2s;
            }
