html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h3 {
    font-size: 1.2rem;
}

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

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

.content {
    padding-top: 1.1rem;
}

.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 th.sortable {
    cursor: pointer;
}

table.table-admin tr:not(.edit) td:not(:first-of-type):not(:last-of-type) {
    padding-left: 1.5rem;
}

table.table-admin tr.edit td:first-of-type {
    padding-left: 0.2rem;
}

table.table-admin tr:not(.edit) td:first-of-type {
    padding-left: 0.95rem;
}

.register-form-block {
    margin-top: 2rem;
}

.input-file-upload {
    cursor: pointer;
    color: transparent;
    font-size: 1rem;
    left: 500px;
 }

@media (min-width: 800px) {
    .modal-dialog-capture {
        max-width: 800px !important;
    }

    .modal-content-capture {
        width: 800px !important;
    }
}

.modal-dialog {
    z-index: 1050 !important;
}

.dropzone input {
    width: 100%;
    height: 100%;
}

@supports (transform: translateY(-50%)) {
    .userAgent-error {
        display: none;
    }
}

.fas.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}


.daterangepicker {
    width: 300px !important;
}