@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: rgb(244, 245, 245);
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.top-right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

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

table tr th, .table-light td, .nav-tabs .nav-link.active {
    background-color: rgb(244, 245, 245);
    border-bottom-color: #dee2e6;
}
.table-light tbody + tbody, .table-light td, .table-light th, .table-light thead th {
    border-color: #ddd;
}


table tr:hover {
    cursor: pointer;
}

table tr td {
    transition: 0.2s;
}

table tbody tr:hover > td {
    background: #E8E8E8;
}
.spinner-border.retard {
    background-image: url(retard.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    width: 200px;
    border: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-container {
    width: 200px;
    height: 200px;
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.loading-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 20px solid transparent;
    border-top-color: #11c591;
    position: absolute;
    top: 0;
    left: 0;
    animation: spin 2s linear infinite;
}

.loading-icon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
}