@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Material_Icons.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Arial Nova';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/Arial_Nova.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Arial Nova Condensed';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/Arial_Nova_condensed.woff2) format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Arial Nova Light';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/Arial_Nova_light.woff2) format('woff2');
    font-display: swap;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: "Arial Nova Light", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arial Nova Condensed", sans-serif !important;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

.nav-tabs .nav-link {
    color: rgb(108, 143, 0) !important;
}

.nav-tabs .nav-link:active {
    color: rgb(51, 68, 0) !important;
}

.btn {
    color: rgb(108, 143, 0) !important;
    background-color: white !important;
    border: 1px solid rgb(108, 143, 0) !important;
}

a.btn:hover {
    color: rgb(51, 68, 0) !important;
    border: 1px solid rgb(51, 68, 0) !important;
}

a.btn:active {
    color: white !important;
    background-color: rgb(108, 143, 0) !important;
}

h2::before {
    display: block !important;
    content: " " !important;
    margin-top: -160px !important;
    height: 160px !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

h2.align-middle::before {
    display: block !important;
    content: " " !important;
    margin-top: -453px !important;
    height: 453px !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.table {
    font-size: 1.2rem !important;
    background-color: rgb(190, 225, 130) !important;
}

#name {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

@media print {
    .table {
        font-size: inherit !important;
        break-inside: avoid !important;
        break-before: region !important;
        break-after: region !important;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: initial !important;
    }
    h2,
    .h2 {
        font-size: 1.5rem !important;
    }
    .table {
        page-break-inside: auto;
    }
    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }
    thead {
        display: table-header-group;
    }
    tfoot {
        display: table-footer-group;
    }
    header,
    .toast,
    .offcanvas,
    #desktop {
        display: none;
        visibility: hidden;
    }
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

.loader {
    width: 200px;
    height: 200px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    position: absolute;
    left: calc(50% - 100px);
    top: calc(50% - 100px);
    animation-duration: 5000ms;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body :not(.loader):not(svg):not(circle):not(ellipse):not(line) {
    opacity: 0;
}

body .loader {
    display: block;
}

body.loaded :not(.loader):not(svg):not(circle):not(ellipse):not(line) {
    opacity: 1;
}

body.loaded .loader {
    display: none;
}