/* /Components/Controls/BoxAnimationSlideUp.razor.rz.scp.css */
.container div[b-4pjsd3xk2q] {
    left: 0;
    position: absolute;
    top: 100dvh;
    width: 100dvw;
    z-index: 1000;
}

.container div:nth-child(1)[b-4pjsd3xk2q] {
    animation: slide-up-b-4pjsd3xk2q 1s linear;
    animation-delay: 1s;
    background-color: #08f;
}

.container div:nth-child(2)[b-4pjsd3xk2q] {
    animation: slide-up-b-4pjsd3xk2q 1s linear;
    animation-delay: 1.1s;
    background-color: #048;
}

.container div:nth-child(3)[b-4pjsd3xk2q] {
    animation: slide-up-b-4pjsd3xk2q 1s linear;
    animation-delay: 1.4s;
    background-color: #08f;
}

@keyframes slide-up-b-4pjsd3xk2q {
    0% {
        height: 0;
        top: 100dvh;
    }

    50% {
        height: 100dvh;
        top: 0;
    }

    100% {
        height: 0;
        top: 0;
    }
}
/* /Components/Controls/CompetitionStopwatch.razor.rz.scp.css */
.card[b-r7p2qacmch] {
    align-items: center;
    border: 1px solid #08f;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-header[b-r7p2qacmch] {
    background-color: #08f;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    padding: 0.5rem 1em;
    width: 100%;
}

.card-body[b-r7p2qacmch] {
    background-color: #08f8;
    display: flex;
    font-size: 36px;
    justify-content: center;
    padding: 0.5rem 1em;
    width: 100%;
}

@media (min-width: 641px) {
    .card-header[b-r7p2qacmch] {
        padding: 0.5rem 2em;
    }

    .card-body[b-r7p2qacmch] {
        font-size: 48px;
        padding: 0.5rem 2em;
    }
}
/* /Components/Controls/CountdownCard.razor.rz.scp.css */
.card[b-pfovs7gtrt] {
    align-items: center;
    border: 1px solid #08f;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-header[b-pfovs7gtrt] {
    background-color: #08f;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    padding: 0.5rem 1em;
    width: 100%;
}

.card-body[b-pfovs7gtrt] {
    background-color: #08f8;
    display: flex;
    font-size: 36px;
    justify-content: center;
    padding: 0.5rem 1em;
    width: 100%;
}

#big-countdown[b-pfovs7gtrt] {
    align-items: center;
    animation-fill-mode: both;
    background-color: #000a;
    color: #eee;
    display: flex;
    font-size: 128px;
    font-weight: bold;
    height: 100dvh;
    justify-content: center;
    left: 0;
    position: absolute;
    opacity: 0;
    top: 0;
    width: 100dvw;
    z-index: 100;
}

.fade-in-delayed[b-pfovs7gtrt] {
    animation: fade-in-delayed-b-pfovs7gtrt 1s ease-in-out;
    opacity: 1;
}

.anim-size[b-pfovs7gtrt] {
    animation: anim-size-b-pfovs7gtrt 0.5s forwards;
}

@keyframes anim-size-b-pfovs7gtrt {
    0% {
        font-size: 0;
    }

    80% {
        font-size: 136px;
    }

    100% {
        font-size: 128px;
    }
}

@keyframes fade-in-delayed-b-pfovs7gtrt {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (min-width: 641px) {
    .card-header[b-pfovs7gtrt] {
        padding: 0.5rem 2em;
    }

    .card-body[b-pfovs7gtrt] {
        font-size: 48px;
        padding: 0.5rem 2em;
    }
}
/* /Components/Controls/GameOverlay.razor.rz.scp.css */
.card[b-1esxidz2hs] {
    align-items: center;
    border: 1px solid #80f;
    border-radius: 0.5rem;
    color: #eee;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    overflow: hidden;
}

.card-header[b-1esxidz2hs] {
    background-color: #80f;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    padding: 0.5rem 1em;
    width: 100%;
}

.card-body[b-1esxidz2hs] {
    background-color: #80f8;
    display: block;
    font-size: 16px;
    justify-content: center;
    padding: 0.5rem 1em;
    width: 100%;
}

.card-body p[b-1esxidz2hs] {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overlay[b-1esxidz2hs] {
    align-items: center;
    animation-fill-mode: both;
    background-color: #000a;
    color: #eee;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    height: 100dvh;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100dvw;
    z-index: 100;
}

.overlay img[b-1esxidz2hs] {
    animation: anim-img-b-1esxidz2hs 0.5s forwards;
}

.overlay div[b-1esxidz2hs] {
    font-size: 32px;
    font-weight: bold;
}

@keyframes anim-img-b-1esxidz2hs {
    0% {
        width: 0%;
    }

    80% {
        width: 25%;
    }

    100% {
        width: 20%;
    }
}

@media (min-width: 641px) {
    .card[b-1esxidz2hs] {
        max-width: 650px;
    }

    .card-header[b-1esxidz2hs] {
        padding: 0.5rem 2em;
    }

    .card-body[b-1esxidz2hs] {
        padding: 0.5rem 2em;
    }
}
/* /Components/Controls/LeaderboardCard.razor.rz.scp.css */
.card[b-cqo4l8fnga] {
    align-items: center;
    border: 1px solid #f80;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-header[b-cqo4l8fnga] {
    background-color: #f80;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    padding: 0.5rem 1em;
    width: 100%;
}

.card-body[b-cqo4l8fnga] {
    background-color: #f80b;
    display: flex;
    font-size: 20px;
    justify-content: center;
    padding: 1rem 1em;
    width: 100%;
}

table[b-cqo4l8fnga] {
    border-collapse: collapse;
}

table[b-cqo4l8fnga], th[b-cqo4l8fnga], td[b-cqo4l8fnga] {
    border: 1px solid #000;
}

th[b-cqo4l8fnga], td[b-cqo4l8fnga] {
    padding: 1rem 1rem;
}

tr td[b-cqo4l8fnga] {
    font-weight: bold;
}

tr td.right[b-cqo4l8fnga] {
    text-align: right;
}

tbody tr[b-cqo4l8fnga] {
    animation: fade-in-b-cqo4l8fnga 1s ease-in-out;
    animation-fill-mode: both;
    opacity: 1;
}

@keyframes fade-in-b-cqo4l8fnga {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (min-width: 641px) {
    .card-header[b-cqo4l8fnga] {
        font-size: 20px;
        padding: 0.5rem 2em;
    }

    .card-body[b-cqo4l8fnga] {
        font-size: 24px;
        padding: 1rem 2em;
    }

    table[b-cqo4l8fnga], th[b-cqo4l8fnga], td[b-cqo4l8fnga] {
        border: 2px solid #000;
    }

    th[b-cqo4l8fnga], td[b-cqo4l8fnga] {
        padding: 1rem 2rem;
    }
}
/* /Components/Controls/LiveBox.razor.rz.scp.css */
.box[b-r5ufye7m4h] {
    align-items: center;
    background-color: #f008;
    border: 1px solid #f00;
    border-radius: 0.5rem;
    color: #eee;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: bold;
    gap: 1rem;
    overflow: hidden;
    padding: 1rem 2em;
}

.live-animation[b-r5ufye7m4h] {
    position: relative;
    width: 80px;
    height: 80px;
}

.live-animation div[b-r5ufye7m4h] {
    position: absolute;
    border: 3px solid #f00;
    opacity: 1;
    border-radius: 50%;
    animation: live-animation-b-r5ufye7m4h 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.live-animation div:nth-child(2)[b-r5ufye7m4h] {
    animation-delay: -0.75s;
}

@keyframes live-animation-b-r5ufye7m4h {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Controls/NextPlayerIs.razor.rz.scp.css */
.card[b-hse83me5hq] {
    align-items: center;
    border: 1px solid #f80;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-header[b-hse83me5hq] {
    background-color: #f80;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    padding: 0.5rem 2em;
    width: 100%;
}

.card-body[b-hse83me5hq] {
    background-color: #f808;
    display: flex;
    font-size: 36px;
    justify-content: center;
    padding: 0.5rem 2em;
    width: 100%;
}

.overlay[b-hse83me5hq] {
    align-items: center;
    animation-fill-mode: both;
    background-color: #000a;
    color: #eee;
    display: flex;
    flex-direction: column;
    font-size: 64px;
    font-weight: bold;
    height: 100dvh;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100dvw;
    z-index: 100;
}

.overlay div[b-hse83me5hq] {
    position: absolute;
}

#drop-name[b-hse83me5hq] {
    animation-fill-mode: both;
    font-size: 32px;
    font-weight: normal;
    position: relative;
}

.anim-size[b-hse83me5hq] {
    animation: anim-size-b-hse83me5hq 0.5s forwards;
}

.drop-down[b-hse83me5hq] {
    animation: drop-name-b-hse83me5hq 1s ease-in;
}

@keyframes anim-size-b-hse83me5hq {
    0% {
        font-size: 64px;
    }

    50% {
        opacity: 72px;
    }

    100% {
        font-size: 64px;
    }
}

@keyframes drop-name-b-hse83me5hq {
    0% {
        opacity: 1;
        top: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 350px;
    }
}

@media (min-width: 641px) {
    .card-header[b-hse83me5hq] {
        padding: 0.5rem 2em;
    }

    .card-body[b-hse83me5hq] {
        font-size: 48px;
        padding: 0.5rem 2em;
    }
}
/* /Components/Controls/OfflineBox.razor.rz.scp.css */
.box[b-mmrahaitmq] {
    background-color: #4448;
    border: 1px solid #888;
    border-radius: 0.5rem;
    color: #eee;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
    padding: 1rem 2em;
}
/* /Components/Controls/PlacementOverlay.razor.rz.scp.css */
.overlay[b-ytmms1tei0] {
    align-items: center;
    animation-fill-mode: both;
    background-color: #000a;
    color: #eee;
    display: flex;
    height: 100dvh;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100dvw;
    z-index: 100;
}

.overlay div#logo[b-ytmms1tei0] {
    width: 20%;
}

.overlay div#placements[b-ytmms1tei0] {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
}

div.placement[b-ytmms1tei0] {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div.placement div.number[b-ytmms1tei0] {
    font-size: 64px;
    font-weight: bold;
    text-decoration: underline;
}

div.placement div.name[b-ytmms1tei0] {
    font-size: 48px;
}

div.placement div.stopwatch[b-ytmms1tei0] {
    font-size: 48px;
}
/* /Components/Controls/RoundEndOverlay.razor.rz.scp.css */
.overlay[b-omxedam3up] {
    align-items: center;
    animation: anim-size-b-omxedam3up 0.5s forwards;
    animation-fill-mode: both;
    background-color: #000a;
    color: #eee;
    display: flex;
    font-size: 64px;
    font-weight: bold;
    height: 100dvh;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100dvw;
    z-index: 100;
}

@keyframes anim-size-b-omxedam3up {
    0% {
        font-size: 0;
    }

    80% {
        font-size: 72px;
    }

    100% {
        font-size: 64px;
    }
}

@media (min-width: 641px) {
    .overlay[b-omxedam3up] {
        font-size: 128px;
    }

    @keyframes anim-size-b-omxedam3up {
        0% {
            font-size: 0;
        }

        80% {
            font-size: 136px;
        }

        100% {
            font-size: 128px;
        }
    }
}
/* /Components/Controls/WarningCard.razor.rz.scp.css */
.card[b-rc3r1l28jh] {
    border: 1px solid #ffc107;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-header[b-rc3r1l28jh] {
    background-color: #ffc107;
    font-size: 16px;
    font-weight: bold;
    padding: 0.5rem 1em;
}

.card-body[b-rc3r1l28jh] {
    background-color: #ffc10788;
    font-size: 16px;
    padding: 0.5rem 1em;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-8rlwoy6ubx],
.components-reconnect-repeated-attempt-visible[b-8rlwoy6ubx],
.components-reconnect-failed-visible[b-8rlwoy6ubx],
.components-pause-visible[b-8rlwoy6ubx],
.components-resume-failed-visible[b-8rlwoy6ubx],
.components-rejoining-animation[b-8rlwoy6ubx] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-retrying[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-failed[b-8rlwoy6ubx],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-8rlwoy6ubx] {
    display: block;
}


#components-reconnect-modal[b-8rlwoy6ubx] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-8rlwoy6ubx 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-8rlwoy6ubx 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-8rlwoy6ubx 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-8rlwoy6ubx]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-8rlwoy6ubx 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-8rlwoy6ubx {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-8rlwoy6ubx {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-8rlwoy6ubx {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-8rlwoy6ubx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-8rlwoy6ubx] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-8rlwoy6ubx] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-8rlwoy6ubx] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-8rlwoy6ubx] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-8rlwoy6ubx] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-8rlwoy6ubx] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-8rlwoy6ubx 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-8rlwoy6ubx] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-8rlwoy6ubx {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
