/* colors */
/* Breakpoints */
/*
null variables pass with no value and are excluded from output unless we assign them a value

.nav__item {
	@include padding($top: 2em, $bottom: 2em);
}
*/
/*
Generates spacing for property using $sizes map in _variables.css

.margin {
  @include generate-spacing(margin);
}
*/
/*
  @include absolute(top 0 left 1em);
  	position: absolute;
	top: 0;
	left: 1em;
  @include fixed(top 1em left "WAT? A STRING?!" right 10% bottom);
  	position: fixed;
	top: 1em;
	right: 10%;
*/
/*
  @include font-size(14px)
	font-size: 14px; //Will be overridden if browser supports rem
	font-size: 0.8rem;
*/
/*
  @include box-sizing(border-box);
  	-webkit-box-sizing:border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
*/
/*
  @include keyframes(slide-down) { 0% { opacity: 1; } 90% { opacity: 0; }}
*/
/*
  @include animation('slide-down 5s 3');
*/
/*
  @include opacity(.0.8);
*/
/*
  @include triangle within a pseudo element and add positioning properties
  $direction: up, down, left, right
*/
/*
  @include respondTo(iphone) { width: 100%; float: none; margin: 0; }
  	@media only screen and (max-width: 320px){
	  .sidebar{width: 100%; float: none; margin: 0;}
	}

*/

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

html, body, h1, h2, h3, h4, h5, h6, p, a, form, select option, label {
  font-family: 'Aktiv Grotesk', arial, sans-serif; }

/* Sets font size for Rem unit */
html {
  font-size: 14px; }
  @media only screen and (min-width: 768px) {
    html {
      font-size: 16px; } }

body {
  font-size: 1rem; }

h1 {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 400; }
  @media only screen and (min-width: 480px) {
    h1 {
      font-size: 38px;
      font-size: 2.375rem; } }

h2 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  color: #3c4b5e; }
  @media only screen and (min-width: 480px) {
    h2 {
      font-size: 28px;
      font-size: 1.75rem; } }

h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800; }
  @media only screen and (min-width: 480px) {
    h3 {
      font-size: 20px;
      font-size: 1.25rem; } }

h4 {
  font-size: 16px;
  font-size: 1rem;
  color: #3c4b5e; }
  @media only screen and (min-width: 480px) {
    h4 {
      font-size: 16px;
      font-size: 1rem; } }

h5 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase; }
  @media only screen and (min-width: 480px) {
    h5 {
      font-size: 14px;
      font-size: 0.875rem; } }

h6 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 800; }
  @media only screen and (min-width: 480px) {
    h6 {
      font-size: 12px;
      font-size: 0.75rem; } }

p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #000000; }

p.lead {
  color: #3c4b5e;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 1em 0; }

a {
  color: #2b91ed; }

a:hover,
a:focus {
  text-decoration: none; }

a.link {
  text-transform: uppercase;
  font-weight: 600;
  color: #205984;
  cursor: pointer; }
  a.link .fa {
    color: #7995af; }
  a.link:hover, a.link:focus {
    color: #ffffff; }

/* ------------------- PlaceHolder Text ------------------ */
.form-control::-webkit-input-placeholder {
  color: #000000; }

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #000000; }

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000; }

.form-control:-ms-input-placeholder {
  color: #000000; }

.has-warning .form-control::-webkit-input-placeholder,
.has-error .form-control::-webkit-input-placeholder {
  color: #af0037; }

.has-warning .form-control:-moz-placeholder,
.has-error .form-control:-moz-placeholder {
  color: #af0037; }

.has-warning .form-control::-moz-placeholder,
.has-error .form-control::-moz-placeholder {
  color: #af0037; }

.has-warning .form-control:-ms-input-placeholder,
.has-error .form-control:-ms-input-placeholder {
  color: #af0037; }

.form-control[disabled]::-webkit-input-placeholder,
.form-control[readonly]::-webkit-input-placeholder,
fieldset[disabled] .form-control::-webkit-input-placeholder {
  color: #3c4b5e; }

.form-control[disabled]:-moz-placeholder,
.form-control[readonly]:-moz-placeholder,
fieldset[disabled] .form-control:-moz-placeholder {
  color: #3c4b5e; }

.form-control[disabled]::-moz-placeholder,
.form-control[readonly]::-moz-placeholder,
fieldset[disabled] .form-control::-moz-placeholder {
  color: #3c4b5e; }

.form-control[disabled]:-ms-input-placeholder,
.form-control[readonly]:-ms-input-placeholder,
fieldset[disabled] .form-control:-ms-input-placeholder {
  color: #3c4b5e; }


@media only screen and (max-width: 767px) {
  .menu {
    background: #ffffff;
    padding: 0;
    font-size: 20px;
    font-size: 1.25rem;
    float: left;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-600px);
        -ms-transform: translateX(-600px);
            transform: translateX(-600px);
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    display: block;
    width: 80%;
    height: 100%;
    z-index: 3; }
    .menu__list {
      list-style: none;
      padding: 0;
      margin: 0;
      position: relative;
      bottom: 0;
      top: 0;
      list-style-type: none;
      padding: 0; }
      .menu__list:after {
        content: "";
        width: 0;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease-in;
        position: fixed;
        top: 0px;
        bottom: 0;
        pointer-events: none; }
    .menu__item, .submenu__item {
      border-bottom: 1px solid #e4e4e4;
      padding-top: 13px;
      padding-bottom: 13px;
      text-align: left;
      position: relative;
      padding-left: 30px; }
      .menu__item--arrow {
        position: absolute;
        vertical-align: middle;
        color: #555;
        top: 0;
        padding-top: 14px;
        z-index: 0; }
        .menu__item--arrow.right {
          right: 25px; }
        .menu__item--arrow img {
          vertical-align: unset;
          transition: -webkit-transform 0.3s ease-in;
          transition: transform 0.3s ease-in;
          transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in; }
      .menu__item--has-submenu {
        background: #f4f6f8;
        box-shadow: inset -10px 0 10px -5px #e4e4e4;
        padding-top: 14px;
        padding-bottom: 0;
        padding-left: 0; }
      .menu__item--loggedin {
        background-color: #3c4b5e;
        border-bottom-color: #28323f; }
        .menu__item--loggedin .menu__link, .menu__item--loggedin .submenu__link {
          color: #ffffff; }
    .menu__item--logo {
      border-bottom: none; }
      .menu__item--logo img {
        margin: 0 auto; }
    .menu__link, .submenu__link {
      color: #3c4b5e;
      width: 100%;
      display: block; }
    .menu__header {
      margin: 0;
      padding-left: 20px;
      padding-bottom: 14px;
      display: block;
      font-size: 18px;
      font-size: 1.125rem;
      text-transform: uppercase; }
    .menu__icon-open {
      height: 45px;
      width: 65px;
      margin-top: 10px;
      padding: 9px;
      position: absolute;
      top: 0;
      left: -15px;
      z-index: 1;
      transition: -webkit-transform 0.3s ease-in;
      transition: transform 0.3s ease-in;
      transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in; }
      .menu__icon-open path {
        fill: #424242; }
    .menu-toggle {
      position: absolute;
      top: 0;
      left: 0;
      width: 65px;
      height: 65px;
      margin: 0;
      cursor: pointer;
      opacity: 0;
      z-index: 2; }
      .menu-toggle:checked {
        width: 100vw;
        height: 100vh;
        z-index: 2; }
      .menu-toggle:checked ~ .menu {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
        transition: -webkit-transform 0.3s ease-in;
        transition: transform 0.3s ease-in;
        transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
        box-shadow: inset -10px 0 10px -5px #e4e4e4;
        overflow-y: hidden; }
        .menu-toggle:checked ~ .menu:after {
          opacity: 1;
          width: 100vw;
          transition: opacity 0.3s ease-in; }
      .menu-toggle:checked ~ .page-content-wrap .page-content {
        -webkit-transform: translateX(80%);
            -ms-transform: translateX(80%);
                transform: translateX(80%); }
      .menu-toggle:checked ~ .page-content-wrap .page-content .menu__icon-open {
        left: 0; } }

@media only screen and (min-width: 768px) {
  .menu {
    background: #dce2ea;
    font-size: 14px;
    font-size: 0.875rem;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    margin-top: 0;
    transition: margin-top 0.3s ease-in-out; }
    .menu-toggle {
      display: none; }
    .menu__icon-open {
      display: none; }
    .menu__list {
      list-style-type: none;
      padding-left: 0;
      background: none; }
    .menu__item, .submenu__item {
      padding: .25em 0 .25em 2em; }
      .menu__item--arrow {
        display: none; }
      .menu__item--has-submenu {
        padding: 0; }
    .menu__item--logo {
      border-bottom: 1px solid #ffffff;
      padding-left: 0;
      padding-bottom: 1em;
      margin-top: .75em; }
      .menu__item--logo img {
        margin: 0 auto; }
      .menu__item--logo + .menu__item:not(.menu__item--loggedin), .menu__item--logo + .submenu__item:not(.menu__item--loggedin) {
        margin-top: 2em; }
    .menu__link, .submenu__link {
      color: #000000; }
    .menu__header {
      background: none;
      text-transform: uppercase;
      font-size: 11px;
      font-size: 0.6875rem;
      color: #000000;
      font-weight: 600;
      margin: 2em 0 .25em;
      padding: 0;
      padding-left: calc(2em + 6px); }
    .menu__item--active {
      border-left: 4px solid #000000;
      font-weight: 600;
      padding-left: calc(2em - 4px); }
    .menu__item--loggedin-wrap {
      background-color: #3c4b5e;
      padding-top: 2em;
      padding-bottom: 2em;
      margin-bottom: 2em; }
    .menu__item--loggedin {
      background-color: #3c4b5e; }
      .menu__item--loggedin .menu__link, .menu__item--loggedin .submenu__link {
        color: #d9e1e8; }
      .menu__item--loggedin.menu__item--active {
        border-left-color: #ffffff; }
        .menu__item--loggedin.menu__item--active .menu__link, .menu__item--loggedin.menu__item--active .submenu__link {
          color: #ffffff;
          font-weight: 600; } }

@media only screen and (min-width: 768px) {
  .notification-present .menu {
    margin-top: 43px; } }

.submenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: auto;
  max-height: 0;
  transition: max-height 0.3s ease-in;
  overflow: hidden; }
  .submenu__toggle {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    margin: 0;
    width: 100%;
    height: 47px; }
    .submenu__toggle:checked ~ .submenu {
      height: auto;
      max-height: 500px; }
    .submenu__toggle:checked ~ .menu__item--arrow img {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
  .submenu__item {
    border-bottom: none;
    border-top: 1px solid #e4e4e4;
    background-color: #ffffff;
    box-shadow: inset -10px 0 10px -5px #e4e4e4; }
  @media only screen and (min-width: 768px) {
    .submenu {
      max-height: none;
      overflow: visible; }
      .submenu__toggle {
        display: none; }
      .submenu__item {
        border-top: none;
        background-color: transparent;
        box-shadow: none; } }

.client-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e4e4e4; }
  .client-header__wrapper {
    width: auto;
    margin: 0 auto;
    text-align: center; }
  .client-header__logo {
    float: none;
    margin-right: 1em; }
  .client-header__name {
    font-size: 20px;
    font-size: 1.25rem;
    display: inline-block;
    padding: 0;
    margin: 0; }
  @media only screen and (min-width: 768px) {
    .client-header__wrapper {
      width: 100%;
      text-align: left;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      height: 90px; }
    .client-header__client-info {
      float: left;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .client-header__logo {
      float: left;
      margin-left: 1em;
      margin-right: .25em; }
    .client-header__name {
      font-size: 20px;
      font-size: 1.25rem; } }
  @media only screen and (min-width: 992px) {
    .client-header__logo {
      margin-left: 1em;
      margin-right: 1em;
      padding-top: 0; }
    .client-header__name {
      font-size: 26px;
      font-size: 1.625rem; }
    .client-header__login {
      float: right;
      display: block;
      text-transform: uppercase;
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 0 4em 0;
      border-left: 1px solid #e4e4e4;
      border-right: 5px solid #e4e4e4;
      height: 100%;
      white-space: nowrap;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap; } }

.confirmations li,
.confirmations a {
  font-size: 20px;
  font-size: 1.25rem; }

.confirmations a {
  color: #3d7eb4;
  text-decoration: underline; }

.progress-steps {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  list-style-type: none; }
  @media only screen and (max-width: 767px) {
    .progress-steps {
      text-align: center;
      padding-top: 2em; }
      .progress-steps__item {
        display: none; }
      .progress-steps__item--current {
        display: inline-block; }
        .progress-steps__item--current:before {
          content: 'Step ';
          color: #000000;
          display: inline; }
      .progress-steps__item--last {
        display: inline-block; }
        .progress-steps__item--last:before {
          content: 'of ';
          color: #c6c6c6;
          font-style: italic; }
        .progress-steps__item--last.progress-steps__item--current:before {
          content: "Step 7 of ";
          color: #000000; } }
  @media only screen and (min-width: 768px) {
    .progress-steps {
      background-color: #dce2ea; }
      .progress-steps__item {
        width: 12.2857142857%;
		/*was width: 14.2857142857%;
		Changed to allow 8 steps instead of 7
		*/
        float: left;
        text-align: center;
        height: 50px;
        line-height: 50px;
        vertical-align: middle;
        color: #ffffff;
        border-right: 1px solid #ffffff; }
        .progress-steps__item:last-child {
          border-right: none; }
      .progress-steps__item--complete {
        background-color: #3d7eb4;
        border-right-color: #c6c6c6;
        color: #ffffff; }
      .progress-steps__item--current {
        background-color: #3d7eb4;
        color: #ffffff;
        position: relative;
        border-right: none;
        font-weight: bold; }
        .progress-steps__item--current:after {
          content: '';
          width: 0;
          height: 0;
          border-top: 50px solid #3d7eb4;
          border-right: 25px solid transparent;
          position: absolute;
          right: -25px;
          top: 0;
          bottom: 0; } }

fieldset {
  border: none;
  margin: 0;
  padding: 0; }

legend {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: .5em; }

.fieldset-row__header {
  padding-left: 5px;
  padding-right: 5px;
  width: 100%; }

.fieldset-row--two-columns > div:nth-child(4) {
  clear: left; }

.fieldset-row--gutter-sm {
  margin-left: -5px;
  margin-right: -5px; }
  .fieldset-row--gutter-sm [class*='col-'] {
    padding-right: 5px;
    padding-left: 5px; }

.input-group {
  display: block;
  border: none;
  position: relative;
  padding: 0;
  margin: 0;
  margin-bottom: 1em; }
  .input-group__label {
    display: block;
    position: absolute;
    font-size: 12px;
    font-size: 0.75rem;
    top: .7em;
    left: 1.5em;
    color: #707172;
    opacity: 0;
    filter: alpha(opacity=0);
    zoom: 1;
    transition: 0.2s; }
    .input-group__label--before {
      position: relative;
      font-size: 20px;
      font-size: 1.25rem;
      top: 0;
      left: 0;
      opacity: 1;
      font-weight: 400; }
  .input-group__field {
    display: block;
    width: 100%;
    height: 70px;
    padding: 15px 15px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #c6c6c6;
    border-radius: 0;
    /* The input has to go before the label for this to work */
    /*&:valid + .input-group__label {
			@include opacity(1);
		}*/ }
    .input-group__field:disabled {
      pointer-events: none;
      opacity: .5; }
    .input-group__field:focus {
      border-width: 2px;
      outline: none;
      color: #3d7eb4; }
    .input-group__field:focus + .input-group__label {
      opacity: 1;
      filter: alpha(opacity=100);
      zoom: 1; }
  .input-group--tabled {
    margin-bottom: 0; }
    .input-group--tabled .input-group__field {
      height: 40px;
      padding: 5px;
      margin-top: 4px;
      margin-bottom: 4px; }
    .input-group--tabled.input-group--select .input-group__arrow {
      top: 20px; }
  .input-group--radio {
    display: inline-block;
    /* TODO improve this focus style */ }
    .input-group--radio .input-group__field {
      opacity: 0;
      position: absolute;
      display: inline-block;
      vertical-align: middle;
      margin: 5px;
      cursor: pointer;
      width: auto;
      height: auto; }
    .input-group--radio .input-group__label {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin: 5px 2em 5px 5px;
      cursor: pointer;
      font-size: initial;
      top: auto;
      left: auto;
      opacity: 1;
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 200; }
    .input-group--radio .input-group__field + .input-group__label:before {
      content: '';
      background: #f4f6f8;
      border: 2px solid #707172;
      display: inline-block;
      vertical-align: middle;
      width: 20px;
      height: 20px;
      padding: 2px;
      margin-right: 10px;
      text-align: center;
      border-radius: 50%;
      opacity: 1; }
    .input-group--radio .input-group__field:checked + .input-group__label {
      color: #3d7eb4; }
    .input-group--radio .input-group__field:checked + .input-group__label:before {
      background: #3d7eb4;
      border-color: #3d7eb4;
      box-shadow: inset 0px 0px 0px 4px #f4f6f8; }
    .input-group--radio .input-group__field:focus + .input-group__label {
      text-decoration: underline; }
  .input-group--checkbox {
    display: inline-block; }
    .input-group--checkbox .input-group__field {
      opacity: 0;
      position: absolute;
      display: inline-block;
      vertical-align: middle;
      margin: 5px;
      cursor: pointer;
      width: auto;
      height: auto; }
    .input-group--checkbox .input-group__label {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin: 5px;
      margin-left: 40px;
      font-size: initial;
      top: auto;
      left: auto;
      cursor: pointer;
      opacity: 1;
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 400; }
    .input-group--checkbox .input-group__field + .input-group__label:before {
      content: '';
      background: #f4f6f8;
      border: 2px solid #707172;
      display: block;
      vertical-align: middle;
      position: absolute;
      left: -30px;
      top: 5px;
      width: 20px;
      height: 20px;
      padding: 2px;
      margin-right: 10px;
      text-align: center;
      border-radius: 3px; }
    .input-group--checkbox .input-group__field:checked + .input-group__label:before {
      content: "\f00c";
      font-family: 'FontAwesome';
      background: #f4f6f8;
      border-color: #3d7eb4;
      color: #3d7eb4;
      line-height: 10px;
      vertical-align: middle;
      text-shadow: 1px 1px 0 #f4f6f8, -1px -1px 0 #f4f6f8, 1px -1px 0 #f4f6f8, -1px 1px 0 #f4f6f8, 1px 1px 0 #f4f6f8; }
    .input-group--checkbox .input-group__field:checked + .input-group__label {
      color: #3d7eb4; }
    .input-group--checkbox .input-group__field:focus + .input-group__label {
      text-decoration: underline; }
  .input-group--select .input-group__field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #c6c6c6;
    padding-right: 30px; }
    .input-group--select .input-group__field option:disabled {
      color: #c6c6c6; }
    .input-group--select .input-group__field option {
      color: #000000; }
    .input-group--select .input-group__field:focus {
      color: #000000; }
  .input-group--select .input-group__field::ms-expand {
    display: none; }
  .input-group--select .input-group__arrow {
    position: absolute;
    top: 30px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-width: 8px 7px 0 7px;
    border-style: solid;
    border-color: #000000 transparent transparent transparent; }

.select-group {
  margin-bottom: 1em; }
  @media only screen and (min-width: 480px) {
    .select-group .input-group__field {
      padding-right: 25px; } }
  .select-group .input-group {
    margin-bottom: 0; }
    @media only screen and (min-width: 480px) {
      .select-group .input-group {
        width: 33.333333%;
        float: left; } }
  .select-group .input-group:first-child .input-group__field,
  .select-group .input-group:nth-child(2) .input-group__field {
    border-right: none; }
  .select-group .input-group__arrow {
    right: 10px; }
  .select-group--checkbox {
    margin-left: 40px; }

.radio-group--error {
  border: 2px solid #af0037; }

.label__subheading {
  font-size: 16px;
  font-size: 1rem;
  color: #707172; }

.form-info__heading {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 600; }

.form-info__paragraph {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 1.5em; }

/*
HTML Markup

Text Inputs
<div class="input-group">
    <input name="example" id="example" placeholder="Email Address" type="text" class="input-group__field" required>
    <label for="example" class="input-group__label">Email Address</label>
</div>

Radio Inputs
<fieldset>
	<div class="input-group input-group--radio">
		<input name="example-radio" id="radio-1"  type="radio" class="input-group__field" required>
		<label for="radio-1" class="input-group__label">First Choice</label>
	</div>
	<div class="input-group input-group--radio">
		<input name="example-radio" id="radio-2"  type="radio" class="input-group__field" required>
		<label for="radio-2" class="input-group__label">Second Choice</label>
	</div>
	<div class="input-group input-group--radio">
		<input name="example-radio" id="radio-3"  type="radio" class="input-group__field" required>
		<label for="radio-3" class="input-group__label">Third Choice</label>
	</div>
</fieldset>

Checkboxes
<div class="input-group input-group--checkbox">
	<input name="example-checkbox" id="checkbox-1"  type="checkbox" class="input-group__field" required>
	<label for="checkbox-1" class="input-group__label">First Choice</label>
</div>

Select Inputs
<div class="input-group input-group--select">
	<select id="example-select" class="input-group__field" required>
		<option value="" disabled selected>Select your option</option>
		<option value="one">First Option</option>
		<option value="two">Second Options</option>
		<option value="three">Third Option</option>
	</select>
	<label for="example-select" class="input-group__label">Label</label>
	<div class="input-group__arrow"></div>
</div>
*/
/* Form Validation */
.input-group--error {
  color: #af0037; }
  .input-group--error .input-group__label {
    opacity: 1;
    filter: alpha(opacity=100);
    zoom: 1; }
  .input-group--error .input-group__field {
    border-color: #af0037;
    border-width: 2px;
    border-right-width: 2px; }

.input-group--valid .input-group__field {
  color: #000000; }

.input-group--valid .input-group__label {
  opacity: 1;
  filter: alpha(opacity=100);
  zoom: 1; }

.select-group--error {
  border: 2px solid #af0037;
  margin-bottom: 0; }

.select-group--checkbox + .form-error {
  margin-left: 40px; }

.form-error {
  color: #af0037;
  margin-bottom: .5em;
  text-align: left; }

/* Append Fields Button */
.add-form-fields {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  color: #2b91ed;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem; }

/* Benefits-table */
.benefits-table {
  width: 100%; }
  .benefits-table__top-heading {
    color: #c6c6c6;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 0.5em; }
  .benefits-table__body {
    background: #fff;
    border: 1px solid #e4e4e4;
    width: 58%; }
  .benefits-table__row-head {
    padding: 1.5em 2em;
    border-right: 1px solid #e4e4e4;
    width: 22%; }
    .benefits-table__row-head > *:last-child {
      margin-bottom: 0; }
  .benefits-table__row-heading {
    margin-top: 0; }
    .benefits-table__row-heading--no-margin {
      margin: 0; }
  .benefits-table__total {
    border-left: 1px solid #e4e4e4;
    width: 20%; }
  .benefits-table__row {
    border-bottom: 3px solid #c6c6c6; }
  @media only screen and (max-width: 767px) {
    .benefits-table thead {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0; }
    .benefits-table td, .benefits-table th {
      display: block;
      width: 100%; }
    .benefits-table .benefits-table__row-head {
      padding: 1em; }
    .benefits-table .benefits-table__row-heading {
      display: none; }
    .benefits-table .benefits-table__body {
      border-top: none; }
    .benefits-table .benefits-table__total {
      text-align: right;
      padding: 1em;
      border-top: 1px solid #e4e4e4; }
      .benefits-table .benefits-table__total:before {
        content: 'Your Cost:';
        text-transform: uppercase;
        float: left;
        color: #707172;
        font-weight: bold; } }
  .benefits-table__content {
    padding: 0 1em; }
    .benefits-table__content p {
      color: #3d7eb4;
      margin-bottom: 0; }
    .benefits-table__content a {
      color: #2b91ed;
      text-transform: uppercase;
      font-size: 11px;
      font-size: 0.6875rem;
      font-weight: bold; }
  @media only screen and (min-width: 768px) {
    .benefits-table--form .benefits-table__total {
      width: 13%; } }
  @media only screen and (min-width: 992px) {
    .benefits-table--form .benefits-table__total {
      width: 10%; } }
  .benefits-table--form div[class^="col"] {
    padding: 0; }

.benefits-table-foot {
  width: 100%;
  background: #fff;
  border: 1px solid #e4e4e4; }
  .benefits-table-foot td, .benefits-table-foot th {
    padding: 1em; }

.elections-table {
  width: 100%;
  text-align: left; }
  .elections-table__row {
    border-bottom: 1px solid #e4e4e4; }
    .elections-table__row th, .elections-table__row td {
      padding: 0.5em 1em;
      width: 50%;
      box-sizing: border-box; }
    .elections-table__row:last-child {
      border-bottom: none; }
  .elections-table__head {
    font-weight: normal; }
  .elections-table__warn {
    color: #af0037; }
  .elections-table--form .elections-table__row:not(:first-child) {
    border-bottom: none; }
  @media only screen and (max-width: 767px) {
    .elections-table--form .elections-table__row th, .elections-table--form .elections-table__row td {
      width: 100%;
      display: block; } }
  @media only screen and (min-width: 768px) {
    .elections-table--form .elections-table__row th, .elections-table--form .elections-table__row td {
      display: block;
      width: 100%; } }
  @media only screen and (min-width: 992px) {
    .elections-table--form .elections-table__row th, .elections-table--form .elections-table__row td {
      display: table-cell;
      width: 33.333333%; } }
  .elections-table--form .elections-table__row--no-border {
    border-bottom: none; }
    .elections-table--form .elections-table__row--no-border:first-child {
      border-bottom: none; }

.benefit-option {
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem; }
  .benefit-option__name {
    font-size: 18px;
    font-size: 1.125rem; }
  .benefit-option__kicker {
    color: #6d819a;
    font-weight: normal; }

body {
  background-color: #ffffff;
  overflow-x: hidden; }
  @media only screen and (min-width: 768px) {
    body {
      background-color: #dce2ea; } }

hr {
  margin: 2.5em 0;
  border-top-color: #c6c6c6; }

.list-flushLeft {
  padding-left: 0;
  list-style-position: inside; }

/* text helpers */
.text--centered {
  text-align: center; }

.text--left {
  text-align: left; }

/* spacing helpers */
.margin-top-xs {
  margin-top: 0.5em; }

.margin-top-sm {
  margin-top: 1em; }

.margin-top-md {
  margin-top: 1.5em; }

.margin-top-lg {
  margin-top: 2em; }

.margin-top-xl {
  margin-top: 3em; }

.margin-top-xxl {
  margin-top: 4em; }

.margin-right-xs {
  margin-right: 0.5em; }

.margin-right-sm {
  margin-right: 1em; }

.margin-right-md {
  margin-right: 1.5em; }

.margin-right-lg {
  margin-right: 2em; }

.margin-right-xl {
  margin-right: 3em; }

.margin-right-xxl {
  margin-right: 4em; }

.margin-bottom-xs {
  margin-bottom: 0.5em; }

.margin-bottom-sm {
  margin-bottom: 1em; }

.margin-bottom-md {
  margin-bottom: 1.5em; }

.margin-bottom-lg {
  margin-bottom: 2em; }

.margin-bottom-xl {
  margin-bottom: 3em; }

.margin-bottom-xxl {
  margin-bottom: 4em; }

.margin-left-xs {
  margin-left: 0.5em; }

.margin-left-sm {
  margin-left: 1em; }

.margin-left-md {
  margin-left: 1.5em; }

.margin-left-lg {
  margin-left: 2em; }

.margin-left-xl {
  margin-left: 3em; }

.margin-left-xxl {
  margin-left: 4em; }

.margin--checkbox {
  margin-left: 40px; }

.padding-top-xs {
  padding-top: 0.5em; }

.padding-top-sm {
  padding-top: 1em; }

.padding-top-md {
  padding-top: 1.5em; }

.padding-top-lg {
  padding-top: 2em; }

.padding-top-xl {
  padding-top: 3em; }

.padding-top-xxl {
  padding-top: 4em; }

.padding-right-xs {
  padding-right: 0.5em; }

.padding-right-sm {
  padding-right: 1em; }

.padding-right-md {
  padding-right: 1.5em; }

.padding-right-lg {
  padding-right: 2em; }

.padding-right-xl {
  padding-right: 3em; }

.padding-right-xxl {
  padding-right: 4em; }

.padding-bottom-xs {
  padding-bottom: 0.5em; }

.padding-bottom-sm {
  padding-bottom: 1em; }

.padding-bottom-md {
  padding-bottom: 1.5em; }

.padding-bottom-lg {
  padding-bottom: 2em; }

.padding-bottom-xl {
  padding-bottom: 3em; }

.padding-bottom-xxl {
  padding-bottom: 4em; }

.padding-left-xs {
  padding-left: 0.5em; }

.padding-left-sm {
  padding-left: 1em; }

.padding-left-md {
  padding-left: 1.5em; }

.padding-left-lg {
  padding-left: 2em; }

.padding-left-xl {
  padding-left: 3em; }

.padding-left-xxl {
  padding-left: 4em; }

@media only screen and (max-width: 479px) {
  .clear--xs {
    clear: left; } }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .clear--sm {
    clear: left; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clear--md {
    clear: left; } }

@media only screen and (min-width: 992px) {
  .clear--lg {
    clear: left; } }

/*Headings */
.heading--subheading {
  font-weight: bold; }

.heading--form {
  font-size: 30px;
  font-size: 1.875rem;
  color: #3c4b5e; }

.heading--fieldset {
  font-size: 20px;
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 1em; }

.subheading--thin {
  font-weight: 200; }

.subheading--same-size {
  font-size: 1em; }

.padding-content {
  padding-top: 2em;
  padding-bottom: 2em; }
  .padding-content--flush-bottom {
    padding-bottom: 0; }

@-webkit-keyframes flipdown {
  0% {
    opacity: 0;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg); }
  5% {
    opacity: 1; }
  80% {
    -webkit-transform: rotateX(8deg);
            transform: rotateX(8deg); }
  83% {
    -webkit-transform: rotateX(6deg);
            transform: rotateX(6deg); }
  92% {
    -webkit-transform: rotateX(-3deg);
            transform: rotateX(-3deg); }
  100% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg); } }

@keyframes flipdown {
  0% {
    opacity: 0;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg); }
  5% {
    opacity: 1; }
  80% {
    -webkit-transform: rotateX(8deg);
            transform: rotateX(8deg); }
  83% {
    -webkit-transform: rotateX(6deg);
            transform: rotateX(6deg); }
  92% {
    -webkit-transform: rotateX(-3deg);
            transform: rotateX(-3deg); }
  100% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg); } }

@media only screen and (max-width: 767px) {
  .accordion__wrapper {
    position: relative;
    -webkit-animation: flipdown 0.5s ease both;
            animation: flipdown 0.5s ease both;
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    transition: all 0.25s ease-in-out;
    overflow-y: hidden; }
  .accordion__heading {
    margin: 0;
    display: block;
    width: 100%;
    cursor: pointer;
    height: 100px;
    padding-left: 1em;
    padding-right: 3.5em;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .accordion__heading:before, .accordion__heading:after {
      content: "";
      position: absolute;
      right: 30px;
      top: 40px;
      transition: all 0.25s ease-in-out;
      background-color: #000000;
      width: 4px;
      height: 16px; }
    .accordion__heading:before {
      -webkit-transform: translate(5px, 0) rotate(45deg);
          -ms-transform: translate(5px, 0) rotate(45deg);
              transform: translate(5px, 0) rotate(45deg); }
    .accordion__heading:after {
      -webkit-transform: translate(-5px, 0) rotate(-45deg);
          -ms-transform: translate(-5px, 0) rotate(-45deg);
              transform: translate(-5px, 0) rotate(-45deg); }
  .accordion__content {
    margin-top: 0;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    zoom: 1;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
    overflow: hidden;
    transition: all 0.25s ease-in-out; }
  .accordion__expand {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    filter: alpha(opacity=0);
    zoom: 1; }
    .accordion__expand:checked ~ .accordion__content {
      overflow: hidden;
      max-height: 5000px;
      opacity: 1;
      filter: alpha(opacity=100);
      zoom: 1;
      -webkit-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
              transform: translate(0, 0);
      z-index: 2; }
    .accordion__expand:checked ~ .accordion__heading:before {
      -webkit-transform: translate(-5px, 0) rotate(45deg);
          -ms-transform: translate(-5px, 0) rotate(45deg);
              transform: translate(-5px, 0) rotate(45deg); }
    .accordion__expand:checked ~ .accordion__heading:after {
      -webkit-transform: translate(5px, 0) rotate(-45deg);
          -ms-transform: translate(5px, 0) rotate(-45deg);
              transform: translate(5px, 0) rotate(-45deg); } }

@media only screen and (min-width: 768px) {
  .accordion__expand {
    display: none; } }

@media only screen and (min-width: 768px) and (min-width: 768px) {
  .accordion__heading--hidden-md {
    display: none; } }

.panel {
  background-color: #ffffff;
  border-radius: 0;
  position: relative; }
  .panel__heading {
    margin: 0; }
  .panel__form {
    padding: 1em; }
  .panel__link {
    text-align: left;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    width: 100%; }
  .panel__btn {
    max-width: none;
    width: 100%;
    margin-top: 1em; }
  @media only screen and (min-width: 768px) {
    .panel {
      border: 1px solid #e4e4e4;
      min-height: 465px; }
      .panel__heading {
        font-weight: 200;
        font-size: 24px;
        font-size: 1.5rem;
        text-transform: uppercase;
        color: #000000;
        padding-bottom: 0.5em; }
      .panel__form {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        padding: 4em;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap; }
      .panel__btn {
        margin-top: auto; } }

.container-fluid {
  position: relative; }

.page-content {
  background-color: #f4f6f8;
  z-index: 0;
  position: relative;
  margin-top: 0;
  transition: margin-top 0.3s ease-in-out, -webkit-transform 0.3s ease-in;
  transition: margin-top 0.3s ease-in-out, transform 0.3s ease-in;
  transition: margin-top 0.3s ease-in-out, transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  min-height: 100vh; }
  @media only screen and (min-width: 768px) {
    .page-content {
      position: static; } }

@media only screen and (min-width: 768px) {
  .notification-present .page-content {
    margin-top: 43px;
    /* this needs to go away when the notification is gone*/
    min-height: calc(100vh - 43px);
    /* this should probably just be 100vh when the notification is gone */ } }

.page-content-wrap {
  background-color: #f4f6f8; }
  @media only screen and (max-width: 767px) {
    .page-content-wrap {
      overflow-x: hidden; } }
  @media only screen and (min-width: 768px) {
    .page-content-wrap {
      position: static; } }

@media print {
  header, nav, footer, input, .menu__icon-open, .progress-steps, .notification, .btn-group, .accordion__heading {
    display: none; }
  img {
    max-width: 500px; }
  @page {
    margin: 0.5cm; }
  body {
   /* font: 12pt Georgia, "Times New Roman", Times, serif;*/
    line-height: 1.3; }
  h1 {
    font-size: 24pt; }
  h2 {
    font-size: 14pt;
    margin-top: 25px; }
  aside h2 {
    font-size: 18pt; }
  blockquote, ul {
    list-style: none; }
	/*
  body:before {
    display: block;
    content: "Please find your benefits election summary below. Provided by Garnett Powers.";
    margin-bottom: 10px;
    border: 1px solid #c6c6c6;
    padding: 3px 5px;
    font-style: italic; }*/
	 }

.notification {
  position: relative; }
  .notification p {
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: .5em 0;
    padding-right: 45px; }
  .notification--alert p {
    background-color: #af0037; }
  .notification__dismiss {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 1em;
    cursor: pointer;
    color: #ffffff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    font-size: 18px;
    font-size: 1.125rem; }
  @media only screen and (min-width: 768px) {
    .notification {
      position: absolute;
      left: 0;
      top: 0;
      right: 0; } }

.contact {
  background-color: #1f2935;
  text-align: center;
  padding-bottom: 4em; }
  .contact__logo {
    display: block;
    margin: 0 auto;
    margin-top: -31px; }
  .contact__header {
    font-size: 30px;
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 2em; }
  .contact__icon {
    margin: 0 auto; }
  .contact__method {
    font-size: 18px;
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 200;
    margin-top: 1.5em; }
  .contact__caption {
    font-size: 14px;
    font-size: 0.875rem;
    color: #ffffff; }
    .contact__caption--link {
      text-decoration: underline; }
  .contact--light {
    background-color: transparent; }
    .contact--light .contact__method {
      font-size: 14px;
      font-size: 0.875rem;
      color: #333;
      font-weight: bold; }
    .contact--light .contact__caption {
      color: #333; }
    .contact--light .contact__icon-wrap {
      margin: 0 auto;
      background: #fff;
      width: 105px;
      height: 105px;
      border-radius: 50%;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .contact--light .contact__icon-wrap img {
        max-width: 60px; }

.scroll-to-top {
  position: absolute;
  right: 30px;
  bottom: 30px;
  cursor: pointer; }

.quick-links {
  background-color: #3c4b5e;
  display: block;
  border-bottom: 1px solid #ffffff; }
  .quick-links--four .quick-links__flex-row:nth-child(2) .quick-links__item:nth-child(odd) {
    border-right: 1px solid #f4f6f8; }
  .quick-links--four .quick-links__flex-row:nth-child(2) .quick-links__item:nth-child(even),
  .quick-links--four .quick-links__flex-row:nth-child(1) .quick-links__item:nth-child(even) {
    border-right: none; }
  .quick-links__links {
    border-bottom: 1px solid #e4e4e4; }
  .quick-links__list {
    margin-left: -15px;
    margin-right: -15px;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .quick-links__flex-row:nth-child(2) .quick-links__item:nth-child(odd) {
      border-right: none; }
    .quick-links__flex-row:nth-child(2) .quick-links__item:nth-child(even) {
      border-right: 1px solid #e4e4e4; } }
  .quick-links__item {
    min-height: 215px;
    border-top: 1px solid #e4e4e4;
    position: relative; }
    .quick-links__item:nth-child(odd) {
      border-right: 1px solid #e4e4e4; }
  .quick-links__link {
    color: #ffffff;
    text-align: center;
    width: 100%;
    display: block;
    padding: 1em 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
    .quick-links__link:hover {
      color: #ffffff; }
  .quick-links__icon {
    display: block;
    margin: 1.25em auto; }
  .quick-links__caption {
    display: block;
    clear: left;
    max-width: none;
    margin: 0 auto; }
  .quick-links-callout {
    background-color: #1f2935;
    color: #ffffff;
    text-align: center;
    padding-top: 1.25em;
    min-height: 430px;
    border-left: 1px solid #e4e4e4; }
  .quick-links-callout__header {
    font-size: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2em;
    color: #ffffff; }
  .quick-links-callout-info {
    margin-top: 2em; }
  .quick-links-callout-info__header {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400; }
  .quick-links-callout-info__content {
    font-size: 14px;
    font-size: 0.875rem;
    color: #ffffff; }
  @media only screen and (min-width: 480px) {
    .quick-links__caption {
      max-width: 75%; } }
  @media only screen and (min-width: 768px) {
    .quick-links__flex-row .quick-links__item:nth-child(3) {
      border-right: none; }
    .quick-links__flex-row:nth-child(2) .quick-links__item {
      border-bottom: none;
      border-right: 1px solid #f4f6f8; }
    .quick-links__flex-row:nth-child(2) .quick-links__item:nth-child(3) {
      border-right: none; }
    .quick-links__links {
      border-bottom: none; }
    .quick-links__item {
      border-top: none;
      border-right: 1px solid #e4e4e4;
      border-bottom: 1px solid #e4e4e4;
      position: relative; }
    .quick-links__link {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .quick-links__link:hover {
        background-color: #50647d;
        color: #ffffff; } }
  @media only screen and (min-width: 992px) {
    .quick-links {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
      -webkit-align-items: stretch;
          -ms-flex-align: stretch;
              align-items: stretch; }
      .quick-links__links {
        position: relative; }
      .quick-links__list {
        float: left;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        height: 100%;
        position: absolute;
        margin: 0;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0; }
      .quick-links__flex-row {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        width: 100%;
        height: 50%; }
      .quick-links__item {
        float: left;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }

.calendar {
  background: url("/img/imgDist/date-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: .5em .25em .75em; }
  .calendar__year {
    color: #02539c;
    font-weight: 600;
    font-size: 11px;
    font-size: 0.6875rem; }
  .calendar__date {
    color: #000000;
    font-weight: 600;
    display: block;
    font-size: 18px;
    font-size: 1.125rem; }
  .calendar__caption {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-top: 1em; }

.welcome {
  background: #035a91;
  padding: 2em 0 2.5em;
  position: relative;
  margin-bottom: 3em; }
  .welcome:before {
    content: ' ';
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    border-top: 25px solid #035a91;
    border-left: 17.69118px solid transparent;
    border-right: 17.69118px solid transparent;
    bottom: -25px;
    left: 10%; }
  .welcome__header {
    color: #ffffff; }
  .welcome__tagline {
    color: #ffffff; }

.content {
  padding-bottom: 4em;
  position: relative; }
  .content hr {
    border-top-width: 3px;
    margin: 2.5em 0; }
  .content h2 {
    font-size: 36px;
    font-size: 2.25rem; }
  .content h3 {
    font-size: 16px;
    font-size: 1rem;
    text-transform: uppercase; }
  .content p + h3,
  .content ul + h3 {
    margin-top: 3em; }

/* 
BEM PREFERRED STYLE

.block {
	&--modifier {
	
	}
	general: styles;
	mobile: styles;
	@include respondTo(sm) {
		// large mobile styles
		&__element {
	
		}
	}
	@include respondTo(md) {
		// tablet styles
		&__element {
	
		}
	}
	@include respondTo(lg) {
		// desktop styles
		&__element {
	
		}
	}
	@include respondTo(xl) {
		// large desktop styles
		&__element {
	
		}
	}
}

*/

/*# sourceMappingURL=maps/site.css.map */
