/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-z5i557wmsd],
.components-reconnect-repeated-attempt-visible[b-z5i557wmsd],
.components-reconnect-failed-visible[b-z5i557wmsd],
.components-pause-visible[b-z5i557wmsd],
.components-resume-failed-visible[b-z5i557wmsd],
.components-rejoining-animation[b-z5i557wmsd] {
    display: none;
}

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


#components-reconnect-modal[b-z5i557wmsd] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 1.5rem;
    border: 1px solid #dce5e0;
    border-top: 4px solid #167553;
    border-radius: 0.875rem;
    box-shadow: 0 24px 80px rgba(9, 29, 40, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-z5i557wmsd 0.5s both;
    &[open]

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

}

#components-reconnect-modal[b-z5i557wmsd]::backdrop {
    background-color: rgba(9, 28, 39, 0.64);
    animation: components-reconnect-modal-fadeInOpacity-b-z5i557wmsd 0.5s ease-in-out;
    opacity: 1;
}

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

#components-reconnect-modal p[b-z5i557wmsd] {
    margin: 0;
    color: #66736c;
    text-align: center;
}

#components-reconnect-modal button[b-z5i557wmsd] {
    min-height: 40px;
    border: 1px solid var(--action);
    background-color: var(--action);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 750;
}

    #components-reconnect-modal button:hover[b-z5i557wmsd] {
        border-color: var(--action-hover);
        background-color: var(--action-hover);
    }

    #components-reconnect-modal button:active[b-z5i557wmsd] {
        border-color: var(--action-pressed);
        background-color: var(--action-pressed);
    }

    #components-reconnect-modal button:focus-visible[b-z5i557wmsd] {
        outline: 3px solid var(--action-focus);
        outline-offset: 2px;
    }

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

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

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

@keyframes components-rejoining-animation-b-z5i557wmsd {
    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;
    }
}
