html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #1e1e2f;
    color: #fff;
    width: 100%;
    height: 100%;
}

#app{
    display: flex;
    width: 100%;
    height: 100%;
}

.splash{
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
}

.splash-loading {
    align-self: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    width: 100%;
    height: 120px;
    line-height: 20px;
    padding: 24px;
}

.splash-text{
    line-height: 30px;
    font-size: 20px;
    font-weight: 500;
    text-size-adjust: 100%;
}

.splash-spinner {
    display: flex;
    align-self: center;
    justify-content: space-between;
    width: 56px;
}

.splash-spinner > div {
    animation-delay: -0.32s;
    width: 12px;
    height: 12px;
    background-color: #24aae1;
    border-radius: 100%;
    display: inline-block;
    animation: bounce-delay 1s infinite ease-in-out both;
}

.splash-spinner .bounce1 {
    animation-delay: -0.32s;
}

.splash-spinner .bounce2 {
    animation-delay: -0.16s;
}


app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
}

    .main .top-row > a, .main .top-row .btn-link {
        white-space: nowrap;
    }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row .nav-link {
    color: #fff;
    font-size: 22px;
}

/* .valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
} */

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: black;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    color: black;
}
#blazor-error-ui .reload {
    color: blue; 
    color: blue; 
}

@media (max-width: 767.98px) {
    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

audio::-webkit-media-controls-mute-button { display: none !important; } 
audio::-webkit-media-controls-volume-slider { display: none !important; }

@keyframes bounce-delay {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}