#app-error {
    width: 40vh;
    min-width: 300px;
    height: 20vh;
    min-height: 100px;
    border: 1px solid #e2e1e5;
    border-radius: 16px;
    padding: 8px;
    background-color: #f7f7fe;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.2;
    top: 50vh;
    left: 50vw;
    position: fixed;
    transform: translate(-50%, -50%);
}

#reload-page {
    cursor: pointer; 
    color: #494c9f; 
    user-select: none;
}

.app-loading-dots {
    width: 100px;
    margin-right: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.app-loading-dots_first {
    width: 20px;
    height: 20px;
    background: #e4e4fb;
    border-radius: 50%;
    margin-right: 2px;
    animation: app-loading-dot-first .8s infinite ease-in-out;
}
.app-loading-dots_second {
    width: 22px;
    height: 22px;
    background: #606288;
    border-radius: 50%;
    margin-right: 2px;
    animation: app-loading-dot-first .8s infinite ease-in-out;
    animation-delay: .1s;
}
.app-loading-dots_third {
    width: 24px;
    height: 24px;
    background: #494C9F;
    border-radius: 50%;
    margin-right: 2px;
    animation: app-loading-dot-first .8s infinite ease-in-out;
    animation-delay: .2s;
}

@keyframes app-loading-dot-first {
    0% {
        transform: scale(1);
        background: #494C9F;
    }
    50% {
        transform: scale(1.2);
        background: #606288;
    }
    100% {
        transform: scale(1);
        background: #494C9F;
    }
}

@keyframes app-loading-dot-second {
    0% {
        transform: scale(1);
        background: #e4e4fb;
    }
    50% {
        transform: scale(1.2);
        background: #494C9F;
    }
    100% {
        transform: scale(1);
        background: #e4e4fb;
    }
}

@keyframes app-loading-dot-third {
    0% {
        transform: scale(1);
        background: #606288;
    }
    50% {
        transform: scale(1.2);
        background: #e4e4fb;
    }
    100% {
        transform: scale(1);
        background: #606288;
    }
}