#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;
    }

.valid.modified:not([type=checkbox]) {
    border-radius: 5px;
    border: 1px solid #00ac69;
}

.invalid {
    border-radius: 5px;
    border: 1px solid #e81500;
}

.validation-message {
    color: #e81500;
    font-size: small;
}

/*.form-control.invalid {
    border-color: #dc3545;
}*/

.required-field {
    font-size: x-small;
    color: gray;
}

.etiqueta {
    display: block;
}

.etiqueta-resaltada {
    color: #1f2d41;
    font-weight: 500;
    border-left: 2px solid #0061f2;
    padding-left: 10px;
}

/* Charts */

.responsive-small-pie-chart-container {
    vertical-align: middle;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: inline-block;
}


.responsive-bar-chart-container {
    vertical-align: middle;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: inline-block;
}

.smtable {
    font-size: 0.9rem;
}

/* After modification */

.display-label {
    margin-bottom: 5px;
}

.display-content {
    color: #1f2d41;
    font-weight: 500;
    border-left: 2px solid #0061f2;
    padding-left: 10px;
}

.table-row-header {
    color: #0061f2;
}

/* Loading Screen */

#loadingCircles {
    position: relative;
    width: 60px;
    margin: auto;
    top: 10px;
}
#loadingCircles .loadingCircle {
    height: 4px;
    position: relative;
    width: 4px;
    background: #90CAF9;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.125);
}
#loadingCircles #loadingCircle1 {
    position: absolute;
    left: 50px;
    top: 0px;
    animation: moveInCircle 2s infinite ease-in-out;
}
#loadingCircles #loadingCircle2 {
    position: absolute;
    left: 0px;
    top: -50px;
    animation: moveInCircle 2s infinite ease-in-out;
    animation-delay: -1s;
}
#loadingCircles #loadingCircle3 {
    position: absolute;
    left: 50px;
    top: -50px;
    animation: moveInCircle 2s infinite ease-in-out;
    animation-delay: -0.5s;
}
#loadingCircles #loadingCircle4 {
    position: absolute;
    left: 0px;
    top: 0px;
    animation: moveInCircle 2s infinite ease-in-out;
    animation-delay: -1.5s;
}

@keyframes moveInCircle {
    0% {
        left: 50px;
        top: 0px;
    }
    25% {
        left: 0px;
        top: 0px;
    }
    50% {
        top: -50px;
        transform: scale(3);
        left: 0px;
    }
    75% {
        top: -50px;
        left: 50px;
    }
    100% {
        top: 0px;
        transform: scale(1);
        left: 50px;
    }
}

/* Results Table */
.results-table:hover {
    background-color: white !important;
    cursor: pointer;
}

.table-responsive .dropdown,
.table-responsive .btn-group,
.table-responsive .btn-group-vertical {
    position: static;
}