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


* {
    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: "• ";
    padding-right: 0.5em;
}

.fuchsia-arrows li{
    text-indent: -1em;
    margin-left: 1em;
    list-style-type: none !important;
}

.fuchsia-arrows li a {
    color: #0d1a75;
    text-decoration: none;
    font-weight: bold;
}

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

.badge-top {
    margin-top: -15px;
}

.lnav-icon {
    height: 1rem;
}

.btn-primary {
    color: white;
    background: #0d1a75;
}

.btn-primary:hover {
    color: #0d1a75;
    background: white;
}

.btn-secondary {
    color: white;
    background: #6c757d;
}

.btn-secondary:hover {
    color: #6c757d;
    background: white;
}

.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: 100%;
    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;
}

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

.error {
    color: #ff0000 !important;
}

.btn-login {
    margin: 1.5rem 1rem;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.btn-login img {
    height: 3rem;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d1a75;
}

.form-background {
    background: #f4f4f4;
    padding: 1em;
    width: 100%;
    border-radius: 10px;
}

.info-icon {
    position: relative;
    display: inline-block;
}

.info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 125%;
    background-color: #FFFFFF;
    color: #0d1a75;
    border: 1px solid #0d1a75;
    padding: 0.5em;
    border-radius: 5px;
    white-space: pre-wrap;
    font-size: inherit;
    font-family: inherit;
    text-transform: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10;
    text-wrap: normal;
    width:10em;

}

.info-icon:hover::after {
    opacity: 1;
    pointer-events: auto;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-right: .5em;
}
.breadcrumb-item {
    color: rgba(33, 37, 41, 0.75);
    text-decoration: none;
}
.paginate_button{
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: .5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current{
    color: #333 !important;
    border: 1px solid #979797;
    background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%);
}
.dataTables_wrapper .dataTables_paginate .paginate_button{
    color: #333333 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled{
    color: #666 !important;
}
