﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

:root {
    color-scheme: light only;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
}

.livechat {
    display: none;
}

.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;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

#app .loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.5;
    height: 100vh;
    max-width:100%;
}

.loading-content {
}

.loading-container .logo {
    position: relative;
    max-width:90%;
}

.loading-container .linear-progress {
    background: silver;
    height: 0.25rem;
    width: 50vw;
    max-width: 600px;
    border-radius: 10rem;
    overflow: hidden;
    position: relative;
}

    .loading-container .linear-progress::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(232,23,106);
        background: linear-gradient(270deg, rgba(232,23,106,1) 0%, rgba(41,142,230,1) 100%);
        scale: var(--blazor-load-percentage, 0%) 100%;
        transform-origin: left top;
        transition: scale ease-out 0.5s;
    }

.loading-container .loading-description {
    height: 20px;
}

@media(max-width:1023px) {


    .loading-container .linear-progress {
        width: 80vw !important;
        justify-self: center;
    }
}
