﻿/*** Base ***/
/*** Site Variables ***/
/*** Helper ***/
/*** Mixins ***/
@-moz-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-ms-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*** Helper ***/
* {
  font-family: "Overpass", sans-serif;
}

body {
  /* font-size: pxtoem(16,$base-font-size-px);*/
  font-size: 16px;
  background-color: #F9F8F7;
  overflow-y: unset !important;
  overflow-x: unset !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans", sans-serif;
}

h1 {
  font-size: 1.75em;
}
h1.pagehead {
  margin-top: 1em;
}

h2 {
  font-size: 1.375em;
  font-weight: 400;
  margin-bottom: 0;
}

h3 {
  font-weight: 400;
  font-size: 1.375em;
  color: #373737;
}
h3.large {
  color: #373737;
  font-size: 2em;
  font-weight: 400;
}
h3.pagesubhead {
  color: #243F8E;
  font-size: 1.375em;
}

h5 {
  font-size: 1.1em;
}

a {
  color: #243F8E;
  font-weight: 700;
}
a.visited {
  color: #243F8E;
}
a:hover {
  color: rgb(28.7797752809, 50.3646067416, 113.5202247191);
  text-decoration: underline;
}
a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

p {
  font-weight: 400;
}

img.img-full-width {
  width: 100%;
}

select, input[type=text], input[type=number], input[type=tel] {
  height: 43px;
  border-radius: 3px;
  font-size: 16px;
}

section {
  margin: 2rem 0;
}

.button.hollow {
  border: 1px solid #ddd;
  color: #3F3F41;
  background-color: #eee;
}
.button.hollow.dropdown:after {
  border-top-color: #243F8E;
}
.button.hollow:hover, .button.hollow :focus {
  border: 1px solid #ddd;
  color: #3F3F41;
  background-color: #ddd;
}
.button.hollow:focus {
  border: 1px solid #ddd;
  color: #3F3F41;
  background-color: #ddd;
}
.button.hollow.secondary {
  border: 1px solid #c7c7c7;
  color: #000;
}
.button.hollow.secondary:hover {
  border-color: #bfbfbf;
}

.button.secondary.white {
  background-color: #fff;
  border: 1px solid #ddd;
}
.button.secondary.white:hover {
  background-color: #ededed;
  color: #3f3f41;
}

.button.success {
  background-color: #367c16;
  color: #fff;
}
.button.success:hover, .button.success:focus {
  background-color: #578b3f;
  color: #fff;
}
.button.success:active {
  background-color: #367c16;
  color: #fff;
}

.button.whoa {
  background-color: #800D22;
  color: #fefefe;
}

.button.whoa:Hover {
  background-color: #560917;
}

.button.clear {
  background-color: #fff;
  color: #243F8E;
  border: 1px solid #243F8E;
  padding-right: 4em;
}

.button.clear:Hover, .button.clear:visited {
  background-color: #fff;
  color: #243F8E;
  border: 1px solid #243F8E;
  padding-right: 4em;
}

.button:hover, .button :focus {
  background-color: #1B2F6D;
}
.button.impersonation {
  color: #3f3f41 !important;
}

label {
  font-weight: bold;
}

/*** Vendors Overrides ***/
/*** Site Variables ***/
/*** Helper ***/
/*** Mixins ***/
@-moz-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-ms-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*FOUNDATION OVERRIDES*/
.grid-x.site-70-width {
  max-width: 98%;
  margin: 0 auto;
  /* Large and up */
}
@media screen and (min-width: 1443px) {
  .grid-x.site-70-width {
    max-width: 70%;
  }
}
.grid-x.site-80-width {
  max-width: 98%;
  margin: 0 auto;
  /* Large and up */
}
@media screen and (min-width: 1443px) {
  .grid-x.site-80-width {
    max-width: 80%;
  }
}
.grid-x.site-90-width {
  max-width: 90%;
  margin: 0 auto;
}
.grid-x.site-95-width {
  max-width: 100%;
  margin: 0 auto;
  /* Medium and up */
}
@media screen and (min-width: 40em) {
  .grid-x.site-95-width {
    max-width: 95%;
  }
}
.grid-x.site-full-width {
  min-width: 100%;
}
.grid-x.center {
  justify-content: center;
}

.button {
  background-color: #243F8E;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}

.has-tip {
  border-bottom: none;
  z-index: 100;
}

.tooltip {
  border-radius: 3px;
  max-width: 20rem;
  background-color: #0a0a0a;
  z-index: 100;
}

.reveal {
  border-radius: 3px;
  border: none;
}
.reveal.motion {
  top: 100px;
  -moz-animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
  animation: fadeIn 0.4s;
  /*@include animation('slide-down .5s ease');*/
}
.reveal-footer {
  padding-top: 3rem;
}
.reveal-title {
  font-weight: bold;
  padding: 2rem 0 0 0;
}
.reveal-small {
  font-size: 0.875rem;
}
.reveal-content {
  margin-top: 1rem;
  padding: 1rem;
}

.reveal-overlay {
  background-color: rgba(10, 10, 10, 0.75);
}

.button-group.button {
  margin-right: 5px;
}

.text-center-onsmall {
  /* Small only */
}
@media screen and (max-width: 39.9375em) {
  .text-center-onsmall {
    text-align: center;
  }
}

input:checked ~ .switch-paddle {
  background: #367c16;
}

.button-group .button {
  margin: 8px 8px 0 8px;
}

.label {
  padding: 1rem;
  border-radius: 3px;
}

#LoadingModal.reveal {
  background: none;
}

.button-group .button {
  font-size: 0.75rem;
}

.media-object img {
  max-width: 100%;
}

.badge.success {
  background: #367c16;
  color: #fff;
}

.badge {
  width: 23px;
  position: relative;
  left: -16px;
  height: 23px;
  border: 2px solid #fff;
  padding: 0;
  border-radius: 100%;
  font-size: 0.6rem;
  text-align: center;
}

.ui-datepicker {
  background-color: #fff;
  border: 1px solid #66AFE9;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
  display: none;
  margin-top: 4px;
  padding: 10px;
  width: 240px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px !important;
}

.ui-datepicker a,
.ui-datepicker a:hover {
  text-decoration: none;
}

.ui-datepicker a:hover,
.ui-datepicker td:hover a {
  color: #2A6496;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.ui-datepicker .ui-datepicker-header {
  margin-bottom: 4px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title {
  font-weight: 700;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  cursor: default;
  font-family: "Glyphicons Halflings";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  height: 20px;
  line-height: 1;
  margin-top: 2px;
  width: 20px;
  color: #999;
}

.ui-datepicker .ui-datepicker-prev {
  float: left;
  text-align: left;
}

.ui-datepicker .ui-datepicker-next {
  float: right;
  text-align: right;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "\e079";
}

.ui-datepicker .ui-datepicker-next:before {
  content: "\e080";
}

.ui-datepicker .ui-icon {
  display: none;
}

.ui-datepicker .ui-datepicker-calendar {
  table-layout: fixed;
  width: 100%;
}

.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td {
  text-align: center;
  padding: 4px 0;
  color: #000 !important;
}

.ui-datepicker .ui-datepicker-calendar td {
  border-radius: 4px;
  -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  -moz-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  -o-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.ui-datepicker .ui-datepicker-calendar td:hover:not(.ui-datepicker-current-day) {
  background-color: #eee;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-calendar td a {
  text-decoration: none;
  color: #000;
}

.ui-datepicker .ui-datepicker-current-day {
  background-color: #285e8e;
  /* background-color: #4289cc; */
}

.ui-datepicker td.ui-datepicker-current-day a {
  color: #fff;
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
  background-color: #fff;
  cursor: default;
}

.ui-datepicker-month {
  border: 0px;
  color: #000;
}

.ui-datepicker-year {
  border: 0px;
  color: #000;
}

/*** Layout ***/
/*** Site Variables ***/
/*** Helper ***/
/*** Helper ***/
/*** Mixins ***/
@-moz-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-ms-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.l-header {
  background-color: #fff;
  box-shadow: 0 1px 15px 0 #3f3f41;
  border-bottom: 5px solid #800d22;
  -webkit-box-shadow: 0px 2px 15px 0px #3f3f41;
  -moz-box-shadow: 0px 2px 15px 0px #3f3f41;
  box-shadow: 0px 2px 15px 0px #3f3f41;
}
.l-header-logo {
  padding: 1rem;
}
.l-header-logo img {
  width: 210px;
  /* Medium and up */
}
@media screen and (min-width: 40em) {
  .l-header-logo img {
    width: 335px;
  }
}
.l-header-logo.admin img {
  width: 210px;
}
.l-header-menu {
  padding: 0 1.5rem;
}

.l-mainContent {
  margin-top: 3rem;
}

.l-signin-content-wrapper {
  background-color: #fff;
  padding: 2rem;
  border-radius: 3px;
}
.l-signin-content-wrapper h1 {
  font-family: "Overpass", sans-serif;
  font-size: 1.75rem;
}

/*** Module ***/
/*** Site Variables ***/
/*** Helper ***/
/*** Helper ***/
/*** Mixins ***/
@-moz-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-ms-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.impersonate {
  padding: 0.5rem;
  text-align: center;
  background-color: #243F8E;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  z-index: 199 !important;
  width: 100%;
  position: relative;
}

.pod {
  background-color: #fff;
  padding: 1rem;
  min-height: 350px;
  min-width: 225px;
  position: relative;
  margin: 1rem;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.pod-title {
  color: #243F8E;
  font-size: 1.5rem;
  font-weight: 700;
}
.pod.active {
  border: 2px solid #367c16;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
}

#snackbar {
  visibility: hidden;
  min-width: 150px;
  margin-left: -125px;
  background-color: #367c16;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 30px;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadeinSnackBar 0.5s, fadeoutSnackBar 0.5s 2.5s;
  animation: fadeinSnackBar 0.5s, fadeoutSnackBar 0.5s 2.5s;
}
#snackbar.dark {
  background-color: #282828;
}

.chooseBox {
  display: flex;
  margin: 1.5rem;
  justify-content: center;
  align-items: center;
}
.chooseBox-wrapper {
  width: 280px;
  display: flex;
  min-height: 50px;
}
.chooseBox-wrapperwide {
  width: 100%;
  display: flex;
  min-height: 50px;
}
.chooseBox-item {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  flex: 1 1 0px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(214, 215, 218);
  border-image: initial;
  text-align: center;
  padding: 1rem;
}
.chooseBox-item.fat {
  min-width: 200px;
}
.chooseBox-item.active {
  background-color: #243F8E;
  color: #fff;
}
.chooseBox-item.active > .chooseBox-item-small {
  color: #fff;
}
.chooseBox-item.white {
  background-color: #fff;
}
.chooseBox-item-big {
  font-size: 18px;
  margin-bottom: 0px;
  margin: 0;
}
.chooseBox-item-small {
  font-size: 13px;
  line-height: 15px;
  color: #909090;
  margin: 0;
}
.chooseBox-item-icon {
  padding: 1rem;
}
.chooseBox-item:not(:last-child) {
  border-right: 0px;
}
.chooseBox-item:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.chooseBox-item:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}
.ribbon:before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #5C8E35;
}
.ribbon:after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #5C8E35;
}
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right:before, .ribbon-top-right :after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 21px;
}
.ribbon-top-right::after {
  bottom: 19px;
  right: 0;
}
.ribbon-top-right span {
  left: -20px;
  top: 35px;
  transform: rotate(45deg);
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 4px 0;
  background-color: #367c16;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}

.profImage {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.profImage.small {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.profImage.small > img {
  margin-top: -2px;
}
.profImage.medium {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 5px solid #fff;
  /* Medium and up */
}
@media screen and (min-width: 40em) {
  .profImage.medium {
    width: 60px;
    height: 60px;
  }
}
.profImage.large {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 5px solid #fff;
  position: relative;
  z-index: 1;
  /* Medium and up */
  /* Large and up */
}
@media screen and (min-width: 39em) {
  .profImage.large {
    width: 75px;
    height: 75px;
  }
}
@media screen and (min-width: 64em) {
  .profImage.large {
    width: 120px;
    height: 120px;
  }
}
.profImage.large > img {
  top: -5px;
  position: relative;
}

/* top right*/
/*#region Media Queries */
/*These media queries area just used for references, use/copy these queries and place them into the embedded sass.

/* Small only */
/* Medium and up */
/* Medium only */
/* Large and up */
/* Large only */
/*#endregion */
/*** State ***/
/*** Site Variables ***/
/*** Helper ***/
/*** Mixins ***/
@-moz-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    top: 120px;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadeinSnackBar {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes fadeoutSnackBar {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-ms-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.hidden {
  display: none;
}

.transparent {
  background-color: transparent;
}

.form-label {
  font-weight: bold;
}

.fa-user-lock {
  --fa-primary-color: #243F8E;
  --fa-secondary-color: #243F8E;
  --fa-secondary-opacity: 1;
}

.nomarg {
  margin: 0;
}

.success {
  color: #367c16;
}

.light {
  color: #333;
}

.bgsuccess {
  background-color: #367c16;
}

.highlight {
  background-color: #fffbce;
  padding: 0.25rem;
  font-weight: 600;
}

.blue {
  color: #243F8E;
}

.tspace {
  margin-top: 3rem;
}

.block {
  display: block;
}

.minh {
  min-height: 137px;
}

.vseperate {
  border-left: 0.1rem solid #e1dfdd;
  margin: 0.5rem 6.4rem;
}

section.sectionSignIn {
  margin-top: 4rem;
}

.field-validation-error {
  color: #ff6565;
  width: 100%;
  /*border-top: 2px solid #ff6565;*/
  position: relative;
  font-size: 0.875em;
  top: -18px;
}

.field-validation-valid {
  display: none;
}

.fa-space-right {
  padding-right: 0.5rem;
}

.modalMinArea {
  max-height: 300px;
  overflow-y: scroll;
}

.statwrapper {
  padding: 1rem;
  border-radius: 3px;
}

.has-tip.nohover {
  cursor: pointer;
}

.modalFooter {
  margin-top: 3rem;
}

.modalSpace {
  margin: 3rem 0;
}

.colorGroupRed {
  color: #e71d36;
}

.colorGroupOrange {
  color: #f36236;
}

.colorGroupPurple {
  color: #2f284f;
}

.colorGroupYellow {
  color: #e7d54c;
}

.labelColorRed {
  background-color: #e71d36;
  color: #fefefe;
}

.labelColorOrange {
  background-color: #f36236;
  color: #fefefe;
}

.labelColorPurple {
  background-color: #2f284f;
  color: #fefefe;
}

.labelColorYellow {
  background-color: #e7d54c;
  color: #fefefe;
}

.whoa {
  color: #800D22;
}

.section {
  margin: 4rem 0;
}

.modalMinHeight {
  min-height: 500px;
}

table.smaller {
  font-size: 12px;
}

.hidden {
  display: none;
}

.btnMsg {
  padding: 1rem;
}

.inlineicon {
  margin-top: 12px;
}

.rText {
  margin-top: -1rem;
  margin-left: 6rem;
}
.rText-noBadge {
  margin-top: 0.5rem;
}

.inline {
  display: inline-block;
}
.inline.space {
  margin: 0 0.5rem;
}

.banner {
  border-bottom: none;
  padding: 0.75rem;
  position: relative;
  margin-top: -1em;
  margin-bottom: 2em;
  width: 100%;
  background-color: rgba(247, 231, 167, 0.6901960784);
  font-size: 1.375em;
  border: 1px solid #905454;
}
