/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 8, 2020, 6:08:45 PM
    Author     : erikm
*/

:root {
    --LGBlue: #1025A4;
    --LGBlueMuted: #1025A460;
    --Primary: #007BFF;
    --Haze: #CCCCCC70;
    --Warne: #FFF3CD;
    --WarneTxt: #85644D;
    --Info: #CCE5FF;
    --InfoTxt: #0072C1;
    --Shaded: #00000080;
}

.text-lgblue {
    color: var(--LGBlue) !important;
}

.text-lgblue-muted {
    color: var(--LGBlueMuted) !important;
}

.text-haze {
    color: var(--Haze) !important;
}

.text-italic {
    font-style: italic !important;
}

.hr-lghaze {
    border: 1px solid var(--Haze);
}

.bg-color-warn {
    background-color: var(--Warne) !important;
}

.bg-color-info {
    background-color: var(--Info) !important;
}

.info-text {
    color: var(--InfoTxt) !important;
}

.warne-text {
    color: var(--WarneTxt) !important;
}

.bg-white {
    background-color: white !important;
}

.bg-lgblue {
    background-color: var(--LGBlue) !important;
}

.btn-lgb {
    color: white;
    background-color: var(--LGBlue) !important;
    transition: all .25s ease-in-out;
}
.btn-lgb:hover {
    background-color: white !important;
    border: 1px solid var(--LGBlue) !important;
    color: var(--LGBlue) !important;
}

.btn-lgb-plain {
    color: white;
    background-color: var(--LGBlue) !important;
    transition: all .25s ease-in-out;
}
.btn-lgb-plain:hover {
    color: white;
    background-color: var(--Primary)!important;
}

#navverLogo {
    border: none;
    background-color: transparent !important;
}

.sb-sidenav-dark {
    background-color: var(--LGBlue) !important;
}

.navbar-collapse.collapse.in {
  display: block !important;
}

#jobCenterTable td {
    vertical-align: middle;
}

.dt-body-center {
    text-align: center;
}

.actionIcons {
    /*text-align: center;*/
    vertical-align: middle;
}

.loading-screen {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    
    background-color: var(--LGBlue);
    
    display: none;
}

.loading-gif {
    width: 30%;
    margin: 0 auto;
    padding: 0;
    
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -15%;
    z-index: 901;
    
    display: flex;
    justify-content: center;
    align-items: center;
}