:root {
    --cb: #D2A79A;
    --cw: #efefef;
    --cs: rgba(114, 44, 0, 1);
    --cf: #A14A14;
    --cm: rgba(114, 44, 0, 0.25);
    --cl: #A84E16;
    --wn: #fff;
    --ft: none;
    --tx: #000;
    --ls: 20;
}

* {
    font-family: Arial;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
}

#tuesday {
    width: 100%;
    height: 100%;
}

.spinner_banner {
    position: fixed;
    inset: 0;
    background-color: var(--cs);
    z-index: 50000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(0.3rem);

    .status {
        font-size: 2rem;
        color: var(--wn);
    }
}

.spinner {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 11.5px solid var(--wn);
    animation: spinner-bulqg1 1.1199999999999999s infinite linear alternate,
    spinner-oaa3wk 2.2399999999999998s infinite linear;
}

@keyframes spinner-bulqg1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
    }
}

@keyframes spinner-oaa3wk {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

.error_banner {
    position: fixed;
    inset: 0;
    background-color: var(--cs);
    z-index: 60000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--wn);

    img {
        width: 10rem;
        height: 10rem;
    }
}
.go_back_btn{
    width: 10rem;
    height: 2rem;
    padding: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: var(--cs);
    border-radius: 5px;
    background-color: var(--cb);
}
