.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);
    -webkit-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;
}



.cl-app-root {
    height: 100vh;
    width: 100vw;
}

    .cl-app-root .wrap {
        display: flex;
    }

.loading-bar.selected {
    opacity: 1;
    visibility: visible;
}
.loading-container {
    margin: auto;
    padding: 20px;
    display: flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
}

.loading-bar .three-bounce {
    text-align: center;
    font-size: 1.625rem;
    position: relative;
    width: 5rem;
    pointer-events: none;
}

    .loading-bar .three-bounce > div {
        display: inline-block;
        width: 1rem;
        height: 1rem;
        border-radius: 100%;
        background-color: rgba(0,0,0,0.65);
        pointer-events: none;
        -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
        animation: bouncedelay 1.4s infinite ease-in-out;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .loading-bar .three-bounce .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
        background: #774efe;
    }

    .loading-bar .three-bounce .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
        background: #774efe;
    }

    .loading-bar .three-bounce .bounce3 {
        background: #774efe;
    }

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
