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

.ul.rz-profile-menu {
    z-index: 2 !important;
}

input[disabled], input[readonly]{
    color: #000000 !important;
    opacity: 1 !important;
}
.rz-state-disabled {
    opacity: 1 !important;
}
.rz-state-disabled > label {
    color: #000000 !important;
    opacity: 1 !important;
}
.rz-navigation-menu {
    z-index: 2 !important;
}
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

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

.content {
    padding-top: 1.1rem;
}

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

.rz-datatable-loading-content {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.rz-datatable-loading-content:after {
    content: " ";
    display: block;
    width: 24px;
    height: 24px;
    margin: 3px;
    border-radius: 50%;
    border: 6px solid #e05115;
    border-color: #e05115 transparent #e05115 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rz-data-grid-data {
    min-height: 100px !important;
}
.rz-datatable-loading-content .rzi-circle-o-notch {
    animation: rotation .5s linear infinite;
    font-size: 2rem;
    display: none;
}

.rz-datatable-loading-content .rzi-circle-o-notch:before {
    content: 'refresh';
    display: none;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

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

[data-initials]:before {
    background: #099bdd;
    color: white;
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: bold;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0.5em;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
}