@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('table-styles.css');
@import url('loading-indicator.css');
@import url('site-responsive.css');

:root {
    --fhcolor: #c4161d;
    --head_height: 8%;
}

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

.navbar-z0 {
    z-index: 0 !important;
}

.page-item.active .page-link {
    border-color: var(--fhcolor);
    background-color: var(--fhcolor);
}

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

.main-color {
    background-image: none;
    background-color: var(--fhcolor) !important;
    color: white;
}

/* floating action button */
.btn-fa {
    z-index: 1000;
    background-color: var(--fhcolor);
    border-radius: 50px;
    color: #FFF;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    text-align: center;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    top: initial; /* reset top otherwise icon would overwrite top value */
}

@media (min-width: 992px) {
    .btn-fa {
        width: 80px;
        height: 80px;
    }
}

.btn-fa:hover {
    color: rgb(233 233 233);
    background-color: #940f14;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

.forms-button div {
    margin-bottom: 0.5em;
}

.oi-none {
    font-family: unset;
}

.dialog-lg {
    width: 800px;
}

.missingPDF.btn-danger:hover {
    background-color: transparent;
    color: var(--danger);
}

.alerted-title {
    color: var(--fhcolor);
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.2;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-help {
    cursor: help;
}

.cursor-default {
    cursor: default;
}
