:root {
    --clr-primary: #0790D1;
    --clr-red: #cc1a06;}

html, body {
    font-family: 'Mulish', sans-serif;
    margin: 0px;
    background: #EFEEEB;
    height: 100vh;
}

.validation-message {
    color: var(--clr-red);
    margin-top: 3px;
}

#blazor-error-ui {
    background: var(--clr-red);
    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;
    }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .5;
    z-index: 10003;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-15%, -15%);
    width: 240px;
    animation-name: beesandbombs;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.82, 0.01, 0.15, 1.01);
    z-index: 999999;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: var(--clr-primary);
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }


    .w-150px{
        width: 150px;
    }

    .w-100px{
        width: 100px;
    }


.red {
    color: var(--clr-red);
}

.chars-left {
    font-size: .8rem;
}

.il {
    padding-right: .35rem;
}