﻿#app {
    height: 100vh;
}

#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;
}

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

.logo {
    margin: 0 auto;
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 45%;
    width: 250px;
    padding-right: 3px;
    padding-top: 5px;
}

.logo-font {
    fill: #fff;
}

#page-loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    background-color: #00624A;
    transition: opacity 0.5s;
}

.three-balls {
    margin: 0 auto;
    width: 150px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
}

.three-balls .ball {
    position: relative;
    width: 30px;
    height: 30px;
    padding-left: 2px;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: bouncedelay 3.0s infinite cubic-bezier(.62, .28, .23, .99) both;
    animation: bouncedelay 3.0s infinite cubic-bezier(.62, .28, .23, .99) both;
}

.three-balls .ball1 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s;
    background-color: #ffd43e;
}

.three-balls .ball2 {
    -webkit-animation-delay: -.08s;
    animation-delay: -.08s;
    background-color: #bcbbbb;
    margin-left: 19px;
}

.three-balls .ball3 {
    background-color: #fff;
    margin-left: 19px;
}

@keyframes bouncedelay {
    0% {
        bottom: 0;
    }
    16.66% {
        bottom: 40px;
    }
    33.33% {
        bottom: 0px;
    }
    50% {
        bottom: 40px;
    }
    66.66% {
        bottom: 0px;
    }
    83.33% {
        bottom: 40px;
    }
    100% {
        bottom: 0;
    }
}

@-webkit-keyframes bouncedelay {
    0% {
        bottom: 0;
    }
    16.66% {
        bottom: 40px;
    }
    33.33% {
        bottom: 0px;
    }
    50% {
        bottom: 40px;
    }
    66.66% {
        bottom: 0px;
    }
    83.33% {
        bottom: 40px;
    }
    100% {
        bottom: 0;
    }
}

pre[class*="language-"] {
    border-radius: .5rem !important;
    border: 0 !important;
    margin: 0 !important;
}

pre[class*="language-"].gray-background {
    background-color: var(--bs-gray-100) !important;
}

h3 {
    padding-top: 20px;
}

h2 {
    padding-top: 30px;
}

h1 {
    padding-top: 40px;
}

code {
    color: #a88b27;
}