
/* *
* font styles css

 */
body {
  color: #333;
}
a {
  color: #00aeef;
}
a:hover {
  color: #89dfff;
}
a.outcome {
  color: #555;
}
/*fontawesome styling*/
.fa{
  font-size: 18px;
  color: #00aeef;
}
/* ****************************
 Font Colors
****************************** */
.dkblue {
  color: #012d6b;
}
.cyan {
  color: #00aeef;
}
.black {
  color: #000000;
}
.grey {
  color: #666;
}
.dkgreen {
  color: #9dc9ba;
}
.text-danger{
  color:#e49497;
}
/*
  ========================================
  Buttons
  ========================================
*/
.btn {
  border-radius: 5px;
  padding: 10px 30px;
  display: inline-block;
  margin: 0;
}
.btn-sm,
.btn-group-sm > .btn {
  border-radius: 5px;
  padding: 10px 10px;
  display: inline-block;
  margin: 0;
}
.btn-thin-sm {
  border-radius: 5px;
  padding: 3px 10px;
  display: inline-block;
  margin: 0;
}
.btn-ltblue {
  border: 1px solid #dfe2e5;
  background-color: #f0f8ff;
  color: #012d6b;
}
.btn-silver {
  border: 1px solid #dfe2e5;
  background-color: #f4f4f4;
  color: #012d6b;
}
.btn-cyan {
  border: 1px solid #dfe2e5;
  background-color: #00aeef;
  color: #f0f8ff;
}
.btn-blue {
    border: 1px solid #dfe2e5;
    background-color: #f0f8ff;
    color: #012d6b;
}
.btn-red {
  border: 1px solid #dfe2e5;
  background-color: #e49497;
  color: #f0f8ff;
}
.btn-green {
  border: 1px solid #dfe2e5;
  background-color: #9dc9ba;
  color: #f0f8ff;
}


/*
  ========================================
   Headings
  ========================================
  */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans serif;
  font-weight: 400;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.subhed {
  color: #012d6b;
  text-transform: uppercase;
}
.sub-subhed {
  color: #00aeef;
  text-transform: uppercase;
}
.instructions {
  font-style: italic;
  color: #999;
}
.error {
  color: red;
}
/*#message {
  font-size: 13px;
  color: #666;
}*/
.card-header{
  font-size:1.2rem;
  color: #00aeef;
}
.card-header-small{
  font-size:1rem;
  color:#666;
  padding: .25rem .55rem;
}

label{
  font-weight: 600;
}
label.no-bold{
  font-weight: normal;
}
/* *
* Basic layout css

 */
html {
  position: relative;
  /*IMPORTANT FOR THE ABSOLUTE FOOTER */
  min-height: 100%;
}
body {
  height: 100%;
  /* IMPORTANT: Margin bottom by footer height */
  margin-bottom: 100px;
}
/*
   ======================================
Layout
   ======================================
*/
.container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 4em;
}
.container:before,
.container:after {
  display: table;
  content: " ";
}
.container:after {
  clear: both;
}
.header {
  padding-left: 0;
  list-style: none;
}
.header {
  margin-bottom: 20px;
}
.header:before,
.header:after {
  display: table;
  content: " ";
}
.header:after {
  clear: both;
}
.jjlogo{
  background: url(../img/jjlogo.png) no-repeat left;
  display: block;
  width:156px;
  height: 118px;
}
.container:after {
  clear: both;
}
footer {
  position: absolute;
  /*IMPORTANT FOR THE RELATIVE BODY*/
  width: 100%;
  left: 0;
  bottom: 0;
  height: 100px;
  /* IMPORTANT:  SAME AS BODY'S MARGIN  */
  background-color: #012d6b;
}
footer .container {
  padding: 30px;
  min-height: 100px;
  height: auto;
}
footer small {
  float: right;
}

/* *************************
Forms
**************************** */


/**********************> div.form-check div.custom-control >
Printing
*********************** */
@media print {
  a[href]:after {
    content: none;
  }
}
/*
  ========================================
  Table styling
  ========================================
*/
/*th {
  background-color: #f4f4f4; 
  /*background-color: #f0f8ff;
}*/
.table-striped > tbody > tr:nth-child(even) > td {
  background-color: #f9f9f9;
}
.table-striped > tbody > tr:nth-child(odd) > td {
  background-color: #fff;
}
.table{
  font-size:.9em;
}
/* ===================================
accordian styling
======================================= */
[aria-expanded="true"] .fa-chevron-right:before { 
  content:'\f078';/* chevron - bottom*/
}

/* =================================
transitions
======================================= */
.fade-enter{
        opacity: 0;
    }
    .fade-enter-active{
        transition: opacity 1s;
    }
    .fade-leave{
        /* opacity: 1; */
    }
    .fade-leave-active{
        transition: opacity 1s;
        opacity: 0;
    }