/*
 * dashboard - style.css
 * Description:
 * Author:           Craig Hamilton
 * Created:          08 Nov. 2021
 * Source:           https://github.com/IntersectAustralia/dashboard
 * License:          Copyright (c) 2021 Intersect Australia - All Rights Reserved
 *                   Unauthorized copying of this file, via any medium is
 *                   strictly prohibited. Proprietary and confidential
 */


:root {
    --bs-body-font-family: Lato, Roboto, Helvetica Neue, Arial, sans-serif;
    --col-indigo: #0D1A75;
    --col-fuchsia: #BF0DFA;
    --col-energy: #F5BF33;
    --col-space: #00052E;
    --col-time: #9E0000;
    --col-data: #7E23FC;
    --col-help: #94EBFF;
    --col-learn: #4079CA;

}


* {
    margin: 0;
    padding: 0;
}

body {
    color: #000000;
}

body.modal-active {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.scale-90 {
    transform: scale(.9);
}

.scale-100 {
    transform: scale(1);
}


.bg-indigo {
    background-color: #0D1A75;
}

.fg-indigo {
    color: #0D1A75;
}

.bg-fuchsia {
    background-color: #BF0DFA;
}

.fg-fuchsia {
    color: #BF0DFA;
}

.bg-white {
    background-color: #FFFFFF;
}

.fg-white {
    color: #FFFFFF;
}

.bg-black {
    background-color: #000000;
}

.fg-black {
    color: #000000;
}

.bg-space {
    background-color: #00052E;
}

.fg-space {
    color: #00052E;
}

.bg-time {
    background-color: #9E0000;
}

.fg-time {
    color: #9E0000;
}

.bg-data {
    background-color: #7E23FC;
}

.fg-data {
    color: #7E23FC;
}

.bg-energy {
    background-color: #F5BF33;
}

.fg-energy {
    color: #F5BF33;
}

.bg-learn {
    background-color: #4079CA;
}

.fg-learn {
    color: #4079CA;
}

.bg-help {
    background-color: #94EBFF;
}

.fg-help {
    color: #94EBFF;
}

.bg-administration {
    background-color: #BF0DFA;
}

.fg-administration {
    color: #BF0DFA;
}

.navbar-custom {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    background-color: rgba(13, 26, 117, 0.9);
    z-index: 99;
}

.navbar-custom .img-logo {
    height: 2rem;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.navbar-custom .page-title {
    display: block;
    padding: 0.2rem 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--col-indigo);
    background-color: #FFFFFF;
    background-clip: padding-box;
    border-radius: 5px;
    /*font-variant: small-caps;*/
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}

.navbar-custom .navbar-nav .nav-item .navbar-profile {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    text-transform: none;
}

.navbar-custom .navbar-avatar {
    height: 2rem;
    border-radius: 5px;
}

/* need i and svg incase kit switches */
.navbar-custom .nav-item i, .navbar-custom .nav-item svg {
    margin-right: 1rem;
}


.fuchsia-arrows li:before {
    color: #BF0DFA;
    content: "\25B8";
    padding-right: 0.5em;
}

.fuchsia-arrows {
    text-indent: -1em;
    margin-left: 1em;
}

.badge {
    padding: 0.2rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-indent: 0px;
}

.lnav-icon {
    height: 1rem;
}

.grad-line {
    z-index: 1;
    width: 100%;
    height: 3px;
    background: -webkit-repeating-linear-gradient(left, #bf0dfa, #0d1a75 48%, #0d1a75 52%, #bf0dfa);
    background: repeating-linear-gradient(90deg, #bf0dfa 0, #0d1a75 48%, #0d1a75 52%, #bf0dfa);
    background-size: 200% auto;
    animation: gradientscroll 10s ease infinite;
}

div.main_body {
    width: 90%;
    margin: 4rem auto;
}

div.breadcrumbs {
    display: block;
}

div.breadcrumbs a {
    color: rgba(33, 37, 41, 0.75);
    text-decoration: none;
}

div.breadcrumbs a:hover {
    color: rgba(33, 37, 41, 0.75);
    text-decoration: underline;
}

div.breadcrumbs .active {
    font-weight: bold;
}

div.page-heading {
    font-size: 3rem;
    font-weight: bold;
    width: 60%;
    margin-left: 20rem;
    text-align: center;
}


.footer-logo {
    height: 1.7em;
    margin-bottom: 0.75rem;
    float: left;
    vertical-align: middle;
}

footer.main-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
}

footer .footer-body {
    padding: 0.75rem 1.5rem;
}

#popup_body {
    width: 100%;
    padding-top: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: scroll;
    height: inherit;
    background: #FFFFFF;
}

.btn-edit {
    background-color: #0D1A75;
    color: #FFFFFF;
}

.btn-edit:hover, .btn-edit:focus {
    background-color: #FFFFFF;
    color: #0d1a75;
    border: 1px solid #0d1a75;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn-edit i, .btn-edit svg {
    margin-right: 1rem;
}

.error {
    color: #ff0000;
}

@media screen and (max-width: 1440px) {
    div.page-heading {
        font-size: 3rem;
        font-weight: bold;
        width: 60%;
        margin-left: 15rem;
        text-align: center;
    }
}