<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***
COLOR PALETTE

#3874A5 - Lightest
#F5F5F5 - Light

#777777 - Default

#?????? - Dark
#333333 - Darkest
***/

/* PRIMARY Button Overrides */


/*** Below was taken from the AFFHT Style Guide ***/


.btn-primary {
  color: #fff;
  background-color: #094B83; /* Default */
  border-color: #032D50; /* Darkest */
}
.btn-primary:hover,
.btn-primary:focus,                 
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open &gt; .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #063D6B; /* Dark */
  border-color: #032D50; /* Darkest */
  box-shadow: 0px 0px 10px 0px rgba(9,75,131,1) !important; /* Default */
}
.btn-primary:active,
.btn-primary.active,
.open &gt; .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open &gt; .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open &gt; .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open &gt; .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #032D50; /* Darkest */
  border-color: #032D50; /* Darkest */
  box-shadow: 0px 0px 10px 0px rgba(9,75,131,1); /* Default */
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #094B83; /* Default */
  border-color: #032D50; /* Darkest */
}

/* PRIMARY Background Override */
.bg-primary {
  color: #fff;
  background-color: #094B83;
}

/* FORM Control Override (all) */
.form-control:focus {
    /* Lightest */
    border-color: #3874A5;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(56, 116, 165, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(56, 116, 165, .6);
}</pre></body></html>