/*
Created by Jacobs Technology
*/
/* 
    Created on : May 12, 2021, 10:35:22 AM
    Author     : BrandJW
*/

/********************** General HTML CSS ***************************/
:root {
    --light-blue: #aeceea;
    --blue: #19559a;
    --dark-blue: blue;

    --light-purple: #dac2e5;
    --purple: #6c3d94;
    --dark-purple: purple;

    --light-green: #afd4af;
    --green: #2d5d33;
    --dark-green: green;

    --light-red: #f8b9ba;
    --red: #b21015;
    --dark-red: red;

    --light-yellow: #fdbf68;
    --yellow: #814d02;
    --dark-yellow: yellow;

    --dark-text: #343a40;    
}

@font-face {
    font-family: 'primeicons';
    font-display: auto;
    src: url("/jobboard/javax.faces.resource/primeicons/primeicons.eot.xhtml");
    src: url("/jobboard/javax.faces.resource/primeicons/primeicons.eot.xhtml?#iefix") format("embedded-opentype"), 
        url("/jobboard/javax.faces.resource/primeicons/primeicons.ttf.xhtml") format("truetype"), 
        url("/jobboard/javax.faces.resource/primeicons/primeicons.woff.xhtml") format("woff"), 
        url("/jobboard/javax.faces.resource/primeicons/primeicons.svg.xhtml?#primeicons") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* use traditional box sizing on this page */
html {
    box-sizing: border-box; 
}

*, *:before, *:after {
    box-sizing: inherit;
}

:focus-visible {
    outline: none;
}

/* Override body settings from PF and jquery */
html {
    font-size: 16px;
}

body {
    color: #343a40;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

form {
    display: block;
    margin-top: 0em;
    margin-block-end: 0em;
}

h1, h2, h3, h4 {
    color: inherit;
    font-family: inherit;
    font-style: normal;
    padding: 0;    
    margin: .4rem;
    background: none;
}

h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

h2 {
    font-size: 1.35rem;
    font-weight: bold;
}

h3 {
    font-size: 1.17rem;
    font-weight: bold;
}

h4 {
    font-size: 1.33rem;
    font-weight: bold;
}

p {
    margin: .3rem;
}

a.assistance:link {
    font-family: inherit;
    font-size: inherit;
    font-weight: normal;
    padding-top: 0;
}

/********************** helper classes ***************************/
.fill {
    height: 100%;
    width: 100%;
}

.w-100 {
    width: 100%
}

.w-95pc {
    width: 95%;
}

.h-100pc {
    height: 100%;
}

.center {
    /*margin: 0 auto;*/
    margin-left: auto;
    margin-right: auto;
}

.m_5 {
    margin: .5rem;
}

.mt-1_5 {
    margin-top: 1.5rem;
}

.ml-5pc {
    margin-left: 5%;
}

.pt-1_5 {
    padding-top: 1.5rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pl-5pc {
    padding-left: 5%;
}

.pl-2 {
    padding-left: 2rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.ptb-2 {
    padding: 2rem 0 2rem 0;
}

.m-1 {
    margin: 1rem;
}

.clear {
    all:unset;
}

/********************** flex-box classes ***************************/
.flx {
    display: inline-flex;
    flex-wrap: wrap;
}

.flx-col {
    display: flex;
    flex-flow: column nowrap;  
}

.flx-row {
    display: flex;
    flex-flow: row wrap; 
}

/* flex styles */
.f1 {
    flex: 1 1 0px;
}

.ccc {    
    align-content: center;
    justify-content: center;
    align-items: center;
}

.cec {    
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.scs {
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;    
}

.ccs {
    align-content: center;
    justify-content: center;
    align-items: flex-start;    
}

.bec  {    
    align-content: space-between;
    justify-content: space-evenly;
    align-items: center;
}

.tas {
    align-content: stretch;
    justify-content: space-around;
    align-items: flex-start;  
}

.tbc {
    align-content: stretch;
    justify-content: space-between;
    align-items: center;  
}

.tac {
    align-content: stretch;
    justify-content: space-around;
    align-items: center;  
}

.tet {
    align-content: stretch;
    justify-content: space-evenly;
    align-items: stretch;
}

.tst {
    align-content: stretch;
    justify-content: flex-start;
    align-items: stretch;  
}

.tat {
    align-content: stretch;
    justify-content: space-around;
    align-items: stretch;  
}

.flex-col-fs {
    display: flex;
    flex-direction: column;
    align-content: center;    
    justify-content: center;
    align-items: flex-start;
}

.flex-row-fs {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: space-between;    
}


/********************** custom classes ***************************/
.inner {
    width:100%;
    position: absolute;
    top: 0; 
    left: 0;
    overflow: hidden;
}

.shade-blue {
    background-color: rgba(174, 206, 234,0.3);
}

.shade-green {
    background-color: rgba(175, 212, 175,0.3);
}

.input-error-ic {
    display: inline-flex;
    align-content: stretch;
    justify-content: space-between;
    align-items: center;
}

.error-icon.error-icon {
    color: #FF0000;
    font-size: 1.25rem;
    padding-left: .25rem;
}