/* You can add global styles to this file, and also import other style files */
body {
    font-family: "Work Sans", sans-serif;
    background-color: #f5f5f5;
}

.dz-message {
    color: gray;
}

.welcome-header {
    background: rgb(21, 60, 109);
    background: linear-gradient( 90deg, rgba(21, 60, 109, 1) 0%, rgba(31, 86, 142, 1) 35%, rgba(42, 119, 183, 1) 100% );
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: white;
}

    .welcome-header h6 {
        font-weight: 700;
    }

    .welcome-header span {
        font-weight: 200;
    }

.card-title {
    text-transform: uppercase;
    font-weight: 800;
}

.navbar-wac {
    background-color: #f5f5f5;
}

.navbar img {
    max-height: 100%;
    height: auto;
}

.navbar-brand > img {
    height: 54px;
}

.nav-item > a {
    color: #0d478e;
}

.nav-item {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 14.608px;
    font-size: 0.913rem;
    text-transform: uppercase;
    letter-spacing: 0.072em;
    margin: 0 0.75em;
}

a.nav-link {
    border-bottom: 2px solid transparent;
    padding: 0;
}

    a.nav-link.active {
        border-bottom-color: #0d478e;
    }

@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.site-footer {
    flex: 0 1 auto;
    font-size: 0.813rem;
    text-align: left;
    margin: 0;
    padding-top: 8px;
    padding-bottom: 8px;
}

.form-group > label {
    text-transform: uppercase;
    font-weight: 600;
}

.btn-outline-wac-primary {
    border: solid 2px;
    background: transparent;
    border-color: #f76430;
    color: #f76430;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    padding: 0.5rem 2rem;
    line-height: 1.5;
}

    .btn-outline-wac-primary:hover {
        background: #f76430;
        color: white;
    }

.wac-table th {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

th[appSortable] {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

    th[appSortable] span.lnr-arrow-up {
        display: none;
        position: absolute;
        margin-top: 4px;
        margin-left: 2px;
    }

    th[appSortable] span.lnr-arrow-down {
        display: none;
        position: absolute;
        margin-top: 4px;
        margin-left: 2px;
    }

    th[appSortable].desc span.lnr-arrow-up {
        display: none;
    }

    th[appSortable].asc span.lnr-arrow-down {
        display: none;
    }

    th[appSortable].desc span.lnr-arrow-down {
        display: inline;
    }

    th[appSortable].asc span.lnr-arrow-up {
        display: inline;
    }