@charset "UTF-8";
/*!
Theme Name: JBLC
Theme URI: http://bravenewmedia.net/
Author: Brave New Media
Author URI: http://bravenewmedia.net/
Description: This theme, is custom built theme just for you.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: JBLC
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@import url("https://use.typekit.net/hug4miy.css");
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover, a:focus, a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/*.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}*/
.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}

.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal, .reveal.tiny, .reveal.small, .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "proxima-nova", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #454545;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}

[data-whatinput='mouse'] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}

.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}

.row.expanded {
  max-width: none;
}

.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}

.row:not(.expanded) .row {
  max-width: none;
}

.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.row.is-collapse-child,
.row.collapse > .column > .row,
.row.collapse > .columns > .row {
  margin-right: 0;
  margin-left: 0;
}

.column, .columns {
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0;
}

@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.column.row.row, .row.row.columns {
  float: none;
  display: block;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  -ms-flex: 0 0 8.33333%;
      flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.small-offset-1 {
  margin-left: 8.33333%;
}

.small-3 {
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
  max-width: 25%;
}

.small-offset-2 {
  margin-left: 16.66667%;
}

.small-4 {
  -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  -ms-flex: 0 0 41.66667%;
      flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.small-offset-4 {
  margin-left: 33.33333%;
}

.small-6 {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
}

.small-offset-5 {
  margin-left: 41.66667%;
}

.small-7 {
  -ms-flex: 0 0 58.33333%;
      flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  -ms-flex: 0 0 66.66667%;
      flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.small-offset-7 {
  margin-left: 58.33333%;
}

.small-9 {
  -ms-flex: 0 0 75%;
      flex: 0 0 75%;
  max-width: 75%;
}

.small-offset-8 {
  margin-left: 66.66667%;
}

.small-10 {
  -ms-flex: 0 0 83.33333%;
      flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  -ms-flex: 0 0 91.66667%;
      flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.small-offset-10 {
  margin-left: 83.33333%;
}

.small-12 {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}

.small-offset-11 {
  margin-left: 91.66667%;
}

.small-up-1 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-1 > .column, .small-up-1 > .columns {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-2 > .column, .small-up-2 > .columns {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-3 > .column, .small-up-3 > .columns {
  -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.small-up-4 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-4 > .column, .small-up-4 > .columns {
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-5 > .column, .small-up-5 > .columns {
  -ms-flex: 0 0 20%;
      flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-6 > .column, .small-up-6 > .columns {
  -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.small-up-7 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-7 > .column, .small-up-7 > .columns {
  -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
  max-width: 14.28571%;
}

.small-up-8 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.small-up-8 > .column, .small-up-8 > .columns {
  -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .medium-offset-1 {
    margin-left: 8.33333%;
  }
  .medium-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-offset-2 {
    margin-left: 16.66667%;
  }
  .medium-4 {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .medium-offset-4 {
    margin-left: 33.33333%;
  }
  .medium-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-offset-5 {
    margin-left: 41.66667%;
  }
  .medium-7 {
    -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .medium-offset-7 {
    margin-left: 58.33333%;
  }
  .medium-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .medium-offset-8 {
    margin-left: 66.66667%;
  }
  .medium-10 {
    -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .medium-offset-10 {
    margin-left: 83.33333%;
  }
  .medium-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.66667%;
  }
  .medium-up-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-up-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-up-3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .medium-up-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-up-5 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    max-width: 20%;
  }
  .medium-up-6 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .medium-up-7 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    -ms-flex: 0 0 14.28571%;
        flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .medium-up-8 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
}

.row.medium-unstack > .column, .row.medium-unstack > .columns {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
}

@media print, screen and (min-width: 40em) {
  .row.medium-unstack > .column, .row.medium-unstack > .columns {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

@media print, screen and (min-width: 64em) {
  .large-1 {
    -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .large-offset-1 {
    margin-left: 8.33333%;
  }
  .large-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .large-offset-2 {
    margin-left: 16.66667%;
  }
  .large-4 {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .large-offset-4 {
    margin-left: 33.33333%;
  }
  .large-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .large-offset-5 {
    margin-left: 41.66667%;
  }
  .large-7 {
    -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .large-offset-7 {
    margin-left: 58.33333%;
  }
  .large-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .large-offset-8 {
    margin-left: 66.66667%;
  }
  .large-10 {
    -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .large-offset-10 {
    margin-left: 83.33333%;
  }
  .large-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.66667%;
  }
  .large-up-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .large-up-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .large-up-3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .large-up-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .large-up-5 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    max-width: 20%;
  }
  .large-up-6 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .large-up-7 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    -ms-flex: 0 0 14.28571%;
        flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .large-up-8 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media print, screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
}

.row.large-unstack > .column, .row.large-unstack > .columns {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
}

@media print, screen and (min-width: 64em) {
  .row.large-unstack > .column, .row.large-unstack > .columns {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 64em) {
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.shrink {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  max-width: 100%;
}

.column-block {
  margin-bottom: 1.25rem;
}

.column-block > :last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}

h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #cacaca;
}

h1, .h1 {
  font-size: 2rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 1.25rem;
  }
  h3, .h3 {
    font-size: 1.125rem;
  }
  h4, .h4 {
    font-size: 1rem;
  }
  h5, .h5 {
    font-size: 0.875rem;
  }
  h6, .h6 {
    font-size: 0.75rem;
  }
}

a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:focus {
  color: #1468a0;
}

a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}

dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}

blockquote, blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a;
}

cite:before {
  content: "— ";
}

abbr, abbr[title] {
  border-bottom: 1px dotted #454545;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #454545;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #454545;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}

p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}

.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}

[data-whatinput='mouse'] .button {
  outline: 0;
}

.button:hover, .button:focus {
  background-color: #14679e;
  color: #fefefe;
}

.button.tiny {
  font-size: 0.6rem;
}

.button.small {
  font-size: 0.75rem;
}

.button.large {
  font-size: 1.25rem;
}

.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.button.primary {
  background-color: #1779ba;
  color: #fefefe;
}

.button.primary:hover, .button.primary:focus {
  background-color: #126195;
  color: #fefefe;
}

.button.secondary {
  background-color: #767676;
  color: #fefefe;
}

.button.secondary:hover, .button.secondary:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}

.button.success {
  background-color: #3adb76;
  color: #454545;
}

.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #454545;
}

.button.warning {
  background-color: #ffae00;
  color: #454545;
}

.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #454545;
}

.button.alert {
  background-color: #cc4b37;
  color: #fefefe;
}

.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}

.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}

.button.disabled.primary, .button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
  background-color: #1779ba;
  color: #fefefe;
}

.button.disabled.secondary, .button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #767676;
  color: #fefefe;
}

.button.disabled.success, .button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #3adb76;
  color: #454545;
}

.button.disabled.warning, .button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #ffae00;
  color: #454545;
}

.button.disabled.alert, .button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #cc4b37;
  color: #fefefe;
}

.button.hollow {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}

.button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}

.button.hollow:hover, .button.hollow:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}

.button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.hollow.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}

.button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.hollow.secondary {
  border: 1px solid #767676;
  color: #767676;
}

.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}

.button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}

.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}

.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}

.button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}

.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}

.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}

.button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}

.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}

.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}

.button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}

.button.clear {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.clear, .button.clear:hover, .button.clear:focus {
  background-color: transparent;
}

.button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  background-color: transparent;
}

.button.clear:hover, .button.clear:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}

.button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border-color: transparent;
}

.button.clear.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.clear.primary:hover, .button.clear.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}

.button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border-color: transparent;
}

.button.clear.secondary {
  border: 1px solid #767676;
  color: #767676;
}

.button.clear.secondary:hover, .button.clear.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}

.button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}

.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border-color: transparent;
}

.button.clear.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}

.button.clear.success:hover, .button.clear.success:focus {
  border-color: #157539;
  color: #157539;
}

.button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}

.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border-color: transparent;
}

.button.clear.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}

.button.clear.warning:hover, .button.clear.warning:focus {
  border-color: #805700;
  color: #805700;
}

.button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}

.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border-color: transparent;
}

.button.clear.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}

.button.clear.alert:hover, .button.clear.alert:focus {
  border-color: #67251a;
  color: #67251a;
}

.button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}

.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border-color: transparent;
}

.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}

.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #1779ba;
}

.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}

.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}

.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}

.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}

.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}

.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(69, 69, 69, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #454545;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}

textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type='submit'],
[type='button'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

input[type='search'] {
  box-sizing: border-box;
}

:-ms-input-placeholder {
  color: #6f6f6f;
}

::placeholder {
  color: #6f6f6f;
}

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem;
}

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}

[type='checkbox'] + label[for],
[type='radio'] + label[for] {
  cursor: pointer;
}

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem;
}

[type='file'] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #454545;
}

label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #454545;
}

.input-group {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #454545;
  text-align: center;
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-align: center;
      align-items: center;
}

.input-group-label:first-child {
  border-right: 0;
}

.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}

.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #454545;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}

select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

select::-ms-expand {
  display: none;
}

select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea;
}

.is-invalid-input:not(:focus):-ms-input-placeholder {
  color: #cc4b37;
}

.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}

.form-error.is-visible {
  display: block;
}

.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}

.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}

:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}

.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}

.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: '+';
}

.is-active > .accordion-title::before {
  content: '\2013';
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #454545;
}

:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.accordion-menu li {
  width: 100%;
}

.accordion-menu a {
  padding: 0.7rem 1rem;
}

.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}

.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}

.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}

.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}

.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}

.accordion-menu .is-accordion-submenu-parent[aria-expanded='true'] > a::after {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
  -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded='true']::after {
  -ms-transform: scaleY(-1);
      transform: scaleY(-1);
  -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe;
}

.badge.primary {
  background: #1779ba;
  color: #fefefe;
}

.badge.secondary {
  background: #767676;
  color: #fefefe;
}

.badge.success {
  background: #3adb76;
  color: #454545;
}

.badge.warning {
  background: #ffae00;
  color: #454545;
}

.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}

.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.breadcrumbs::after {
  clear: both;
}

.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #454545;
  cursor: default;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}

.breadcrumbs a {
  color: #1779ba;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.button-group::before, .button-group::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.button-group::after {
  clear: both;
}

.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.button-group .button:last-child {
  margin-right: 0;
}

.button-group.tiny .button {
  font-size: 0.6rem;
}

.button-group.small .button {
  font-size: 0.75rem;
}

.button-group.large .button {
  font-size: 1.25rem;
}

.button-group.expanded .button {
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
}

.button-group.primary .button {
  background-color: #1779ba;
  color: #fefefe;
}

.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #126195;
  color: #fefefe;
}

.button-group.secondary .button {
  background-color: #767676;
  color: #fefefe;
}

.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}

.button-group.success .button {
  background-color: #3adb76;
  color: #454545;
}

.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #454545;
}

.button-group.warning .button {
  background-color: #ffae00;
  color: #454545;
}

.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #454545;
}

.button-group.alert .button {
  background-color: #cc4b37;
  color: #fefefe;
}

.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #fefefe;
}

.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
}

.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}

.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
}

@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    margin-bottom: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

@media screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(69, 69, 69, 0.25);
  border-radius: 0;
  background-color: white;
  color: #454545;
}

.callout > :first-child {
  margin-top: 0;
}

.callout > :last-child {
  margin-bottom: 0;
}

.callout.primary {
  background-color: #d7ecfa;
  color: #454545;
}

.callout.secondary {
  background-color: #eaeaea;
  color: #454545;
}

.callout.success {
  background-color: #e1faea;
  color: #454545;
}

.callout.warning {
  background-color: #fff3d9;
  color: #454545;
}

.callout.alert {
  background-color: #f7e4e1;
  color: #454545;
}

.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #454545;
}

.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6;
}

.card-divider > :last-child {
  margin-bottom: 0;
}

.card-section {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  padding: 1rem;
}

.card-section > :last-child {
  margin-bottom: 0;
}

.card-image {
  min-height: 1px;
}

.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer;
}

[data-whatinput='mouse'] .close-button {
  outline: 0;
}

.close-button:hover, .close-button:focus {
  color: #454545;
}

.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

[data-whatinput='mouse'] .menu li {
  outline: 0;
}

.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}

.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}

.menu input {
  display: inline-block;
}

.menu, .menu.horizontal {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
}

.menu.vertical {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-direction: column;
      flex-direction: column;
}

.menu.expanded li {
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
}

.menu.simple {
  -ms-flex-align: center;
      align-items: center;
}

.menu.simple li + li {
  margin-left: 1rem;
}

.menu.simple a {
  padding: 0;
}

@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .menu.medium-vertical {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .menu.medium-expanded li {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
  .menu.medium-simple li {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .menu.large-vertical {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .menu.large-expanded li {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
  .menu.large-simple li {
    -ms-flex: 1 1 0px;
        flex: 1 1 0px;
  }
}

.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}

.menu.icons a {
  display: -ms-flexbox;
  display: flex;
}

.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: -ms-flexbox;
  display: flex;
}

.menu.icon-left li a {
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
}

.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}

.menu.icon-right li a {
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
}

.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}

.menu.icon-top li a {
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}

.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}

.menu.icon-bottom li a {
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}

.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}

.menu .is-active > a {
  background: #1779ba;
  color: #fefefe;
}

.menu .active > a {
  background: #1779ba;
  color: #fefefe;
}

.menu.align-left {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.menu.align-right li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.menu.align-right li .submenu li {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.menu.align-right.vertical li {
  display: block;
  text-align: right;
}

.menu.align-right.vertical li .submenu li {
  text-align: right;
}

.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}

.menu.align-center li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.menu.align-center li .submenu li {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  -ms-flex-pack: center;
      justify-content: center;
}

.menu-centered > .menu li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.menu-centered > .menu li .submenu li {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}

.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  content: '';
}

.menu-icon:hover::after {
  background: #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}

.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #454545;
  box-shadow: 0 7px 0 #454545, 0 14px 0 #454545;
  content: '';
}

.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}

.is-drilldown li {
  display: block;
}

.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}

.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}

.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
}

.drilldown .is-drilldown-submenu.is-closing {
  -ms-transform: translateX(100%);
      transform: translateX(100%);
}

.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}

.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}

.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}

.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}

.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}

.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}

.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem;
}

.dropdown-pane.is-opening {
  display: block;
}

.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0;
}

.dropdown.menu > li > a {
  background: #fefefe;
  padding: 0.7rem 1rem;
}

.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #1779ba;
}

.no-js .dropdown.menu ul {
  display: none;
}

.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.dropdown.menu.vertical > li > a::after {
  right: 14px;
}

.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}

.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}

@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}

@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}

.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}

.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}

.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}

.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}

.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}

.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}

.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}

.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}

.is-dropdown-submenu > li {
  width: 100%;
}

.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #fefefe;
}

.label.primary {
  background: #1779ba;
  color: #fefefe;
}

.label.secondary {
  background: #767676;
  color: #fefefe;
}

.label.success {
  background: #3adb76;
  color: #454545;
}

.label.warning {
  background: #ffae00;
  color: #454545;
}

.label.alert {
  background: #cc4b37;
  color: #fefefe;
}

.media-object {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.media-object img {
  max-width: none;
}

@media screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.media-object-section {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
}

.media-object-section:first-child {
  padding-right: 1rem;
}

.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}

.media-object-section > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}

.media-object-section.main-section {
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}

.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}

.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #e6e6e6;
}

[data-whatinput='mouse'] .off-canvas {
  outline: 0;
}

.off-canvas.is-transition-push {
  z-index: 12;
}

.off-canvas.is-closed {
  visibility: hidden;
}

.off-canvas.is-transition-overlap {
  z-index: 13;
}

.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(69, 69, 69, 0.7);
}

.off-canvas.is-open {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #e6e6e6;
}

[data-whatinput='mouse'] .off-canvas-absolute {
  outline: 0;
}

.off-canvas-absolute.is-transition-push {
  z-index: 12;
}

.off-canvas-absolute.is-closed {
  visibility: hidden;
}

.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}

.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(69, 69, 69, 0.7);
}

.off-canvas-absolute.is-open {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  -ms-transform: translateX(-250px);
      transform: translateX(-250px);
}

.off-canvas-content .off-canvas.position-left {
  -ms-transform: translateX(-250px);
      transform: translateX(-250px);
}

.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  -ms-transform: translateX(250px);
      transform: translateX(250px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(69, 69, 69, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  -ms-transform: translateX(250px);
      transform: translateX(250px);
}

.off-canvas-content .off-canvas.position-right {
  -ms-transform: translateX(250px);
      transform: translateX(250px);
}

.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  -ms-transform: translateX(-250px);
      transform: translateX(-250px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(69, 69, 69, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  -ms-transform: translateY(-250px);
      transform: translateY(-250px);
}

.off-canvas-content .off-canvas.position-top {
  -ms-transform: translateY(-250px);
      transform: translateY(-250px);
}

.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  -ms-transform: translateY(250px);
      transform: translateY(250px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(69, 69, 69, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  -ms-transform: translateY(250px);
      transform: translateY(250px);
}

.off-canvas-content .off-canvas.position-bottom {
  -ms-transform: translateY(250px);
      transform: translateY(250px);
}

.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  -ms-transform: translateY(-250px);
      transform: translateY(-250px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(69, 69, 69, 0.25);
}

.off-canvas-content {
  -ms-transform: none;
      transform: none;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.off-canvas-content.has-transition-push {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

.off-canvas-content .off-canvas.is-open {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}

@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    -ms-transform: none;
        transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    -ms-transform: none;
        transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}

@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    -ms-transform: none;
        transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}

@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    -ms-transform: none;
        transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}

.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
  position: absolute;
}

.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(69, 69, 69, 0.5);
  color: #fefefe;
}

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe;
}

[data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
  outline: 0;
}

.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
  background-color: rgba(69, 69, 69, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

[data-whatinput='mouse'] .orbit-bullets {
  outline: 0;
}

.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #cacaca;
}

.orbit-bullets button:hover {
  background-color: #8a8a8a;
}

.orbit-bullets button.is-active {
  background-color: #8a8a8a;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}

.pagination::before, .pagination::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.pagination::after {
  clear: both;
}

.pagination li {
  margin-right: 0.0625rem;
  border-radius: 0;
  font-size: 0.875rem;
  display: none;
}

.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}

@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}

.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
  color: #454545;
}

.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}

.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #1779ba;
  color: #fefefe;
  cursor: default;
}

.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cacaca;
  cursor: not-allowed;
}

.pagination .disabled:hover {
  background: transparent;
}

.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: '\2026';
  color: #454545;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab';
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb';
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca;
}

.progress.primary .progress-meter {
  background-color: #1779ba;
}

.progress.secondary .progress-meter {
  background-color: #767676;
}

.progress.success .progress-meter {
  background-color: #3adb76;
}

.progress.warning .progress-meter {
  background-color: #ffae00;
}

.progress.alert .progress-meter {
  background-color: #cc4b37;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1779ba;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: none;
      touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out;
}

.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1779ba;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

[data-whatinput='mouse'] .slider-handle {
  outline: 0;
}

.slider-handle:hover {
  background-color: #14679e;
}

.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  -ms-transform: scale(1, -1);
      transform: scale(1, -1);
}

.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}

.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}

.sticky.is-stuck.is-at-top {
  top: 0;
}

.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}

.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}

html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}

html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(69, 69, 69, 0.45);
  overflow-y: auto;
}

.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}

[data-whatinput='mouse'] .reveal {
  outline: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}

.reveal .column, .reveal .columns {
  min-width: 0;
}

.reveal > :last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}

.reveal.collapse {
  padding: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}

.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}

@media screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}

.reveal.without-overlay {
  position: fixed;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #cacaca;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}

input + .switch-paddle {
  margin: 0;
}

.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #fefefe;
  transition: all 0.25s ease-out;
  content: '';
}

input:checked ~ .switch-paddle {
  background: #1779ba;
}

input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}

[data-whatinput='mouse'] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}

input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}

input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}

.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}

.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}

.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}

.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}

.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}

.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}

.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}

.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}

table thead,
table tbody,
table tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}

table caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
}

table thead {
  background: #f8f8f8;
  color: #454545;
}

table tfoot {
  background: #f1f1f1;
  color: #454545;
}

table thead tr,
table tfoot tr {
  background: transparent;
}

table thead th,
table thead td,
table tfoot th,
table tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

table tbody th,
table tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

table tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f1f1f1;
}

table.unstriped tbody {
  background-color: #fefefe;
}

table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}

@media screen and (max-width: 63.99875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f3f3f3;
}

table.hover tfoot tr:hover {
  background-color: #ececec;
}

table.hover tbody tr:hover {
  background-color: #f9f9f9;
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec;
}

.table-scroll {
  overflow-x: auto;
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}

.tabs::before, .tabs::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}

.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #1779ba;
}

.tabs.primary > li > a {
  color: #fefefe;
}

.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1673b1;
}

.tabs-title {
  float: left;
}

.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}

[data-whatinput='mouse'] .tabs-title > a {
  outline: 0;
}

.tabs-title > a:hover {
  background: #fefefe;
  color: #1468a0;
}

.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
  background: #e6e6e6;
  color: #1779ba;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #454545;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}

.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #fefefe;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(69, 69, 69, 0.2);
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}

a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}

a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #454545;
  color: #fefefe;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}

.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left,
.title-bar-right {
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
}

.title-bar-right {
  text-align: right;
}

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #2259a5;
  font-size: 80%;
  color: #fefefe;
}

.tooltip::before {
  position: absolute;
}

.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #2259a5;
  bottom: 100%;
}

.tooltip.bottom.align-center::before {
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}

.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #2259a5 transparent transparent;
  top: 100%;
  bottom: auto;
}

.tooltip.top.align-center::before {
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}

.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #2259a5;
  left: 100%;
}

.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #2259a5 transparent transparent;
  right: 100%;
  left: auto;
}

.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}

.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}

.tooltip.align-left::before {
  left: 10%;
  right: auto;
}

.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.top-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}

.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}

.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}

.top-bar input.button {
  width: auto;
}

.top-bar .top-bar-left,
.top-bar .top-bar-right {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}

@media print, screen and (min-width: 40em) {
  .top-bar {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}

.top-bar-title {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}

.top-bar-left,
.top-bar-right {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}

@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.clearfix::after {
  clear: both;
}

.align-left {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.align-right {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.align-center {
  -ms-flex-pack: center;
      justify-content: center;
}

.align-justify {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.align-spaced {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  -ms-flex-pack: center;
      justify-content: center;
}

.align-top {
  -ms-flex-align: start;
      align-items: flex-start;
}

.align-self-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.align-bottom {
  -ms-flex-align: end;
      align-items: flex-end;
}

.align-self-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align-middle {
  -ms-flex-align: center;
      align-items: center;
}

.align-self-middle {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.align-stretch {
  -ms-flex-align: stretch;
      align-items: stretch;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.align-center-middle {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.small-order-1 {
  -ms-flex-order: 1;
      order: 1;
}

.small-order-2 {
  -ms-flex-order: 2;
      order: 2;
}

.small-order-3 {
  -ms-flex-order: 3;
      order: 3;
}

.small-order-4 {
  -ms-flex-order: 4;
      order: 4;
}

.small-order-5 {
  -ms-flex-order: 5;
      order: 5;
}

.small-order-6 {
  -ms-flex-order: 6;
      order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .medium-order-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .medium-order-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .medium-order-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .medium-order-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .medium-order-6 {
    -ms-flex-order: 6;
        order: 6;
  }
}

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .large-order-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .large-order-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .large-order-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .large-order-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .large-order-6 {
    -ms-flex-order: 6;
        order: 6;
  }
}

.flex-container {
  display: -ms-flexbox;
  display: flex;
}

.flex-child-auto {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

.flex-child-grow {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}

.flex-child-shrink {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
}

.flex-dir-row {
  -ms-flex-direction: row;
      flex-direction: row;
}

.flex-dir-row-reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

.flex-dir-column {
  -ms-flex-direction: column;
      flex-direction: column;
}

.flex-dir-column-reverse {
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: -ms-flexbox;
    display: flex;
  }
  .medium-flex-child-auto {
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: -ms-flexbox;
    display: flex;
  }
  .large-flex-child-auto {
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }
  .large-flex-child-grow {
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
  }
  .large-flex-dir-row {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

.text-hide {
  font: 0/0 a !important;
  color: transparent !important;
  text-shadow: none !important;
  background-color: transparent !important;
  border: 0 !important;
}

.text-truncate {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  white-space: nowrap !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  word-wrap: break-word !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-overline {
  text-decoration: overline !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-line-through {
  text-decoration: line-through !important;
}

.font-wide {
  letter-spacing: 0.25rem;
}

.font-normal {
  font-weight: normal;
}

.font-bold {
  font-weight: bold;
}

.font-italic {
  font-style: italic !important;
}

ul.list-disc {
  list-style-type: disc !important;
}

ul.list-circle {
  list-style-type: circle !important;
}

ul.list-square {
  list-style-type: square !important;
}

ol.list-decimal {
  list-style-type: decimal !important;
}

ol.list-lower-alpha {
  list-style-type: lower-alpha !important;
}

ol.list-lower-latin {
  list-style-type: lower-latin !important;
}

ol.list-lower-roman {
  list-style-type: lower-roman !important;
}

ol.list-upper-alpha {
  list-style-type: upper-alpha !important;
}

ol.list-upper-latin {
  list-style-type: upper-latin !important;
}

ol.list-upper-roman {
  list-style-type: upper-roman !important;
}

.rounded {
  border-radius: 5000px !important;
}

.rounded:after {
  border-radius: 50%;
}

.radius {
  border-radius: 0.1875rem;
}

.bordered {
  border: 0.0625rem solid #cacaca;
}

.shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.arrow-down {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #454545 transparent transparent;
}

.arrow-up {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #454545;
}

.arrow-right {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #454545;
}

.arrow-left {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #454545 transparent transparent;
}

.separator-center {
  text-align: center !important;
}

.separator-center::before, .separator-center::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.separator-center::after {
  clear: both;
}

.separator-center::after {
  position: relative !important;
  width: 3rem;
  border-bottom: 0.125rem solid #1779ba;
  margin: 1rem auto 0;
}

.separator-left {
  text-align: left !important;
}

.separator-left::before, .separator-left::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.separator-left::after {
  clear: both;
}

.separator-left::after {
  position: relative !important;
  width: 3rem;
  border-bottom: 0.125rem solid #1779ba;
  margin: 1rem auto 0;
  margin-left: 0 !important;
}

.separator-right {
  text-align: right !important;
}

.separator-right::before, .separator-right::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-order: 1;
      order: 1;
}

.separator-right::after {
  clear: both;
}

.separator-right::after {
  position: relative !important;
  width: 3rem;
  border-bottom: 0.125rem solid #1779ba;
  margin: 1rem auto 0;
  margin-right: 0 !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.display-inline {
  display: inline !important;
}

.display-inline-block {
  display: inline-block !important;
}

.display-block {
  display: block !important;
}

.display-table {
  display: table !important;
}

.display-table-cell {
  display: table-cell !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-fixed-top {
  position: fixed !important;
  top: 0rem !important;
  right: 0rem !important;
  left: 0rem !important;
  z-index: 975;
}

.position-fixed-bottom {
  position: fixed !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  z-index: 975;
}

.border-box {
  box-sizing: border-box !important;
}

.border-none {
  border: none !important;
}

.width-25 {
  width: 25% !important;
}

.width-50 {
  width: 50% !important;
}

.width-75 {
  width: 75% !important;
}

.width-100 {
  width: 100% !important;
}

.height-25 {
  height: 25% !important;
}

.height-50 {
  height: 50% !important;
}

.height-75 {
  height: 75% !important;
}

.height-100 {
  height: 100% !important;
}

.max-width-100 {
  max-width: 100% !important;
}

.max-height-100 {
  max-height: 100% !important;
}

.margin-0 {
  margin: 0rem;
}

.margin-top-0 {
  margin-top: 0rem !important;
}

.margin-right-0 {
  margin-right: 0rem !important;
}

.margin-bottom-0 {
  margin-bottom: 0rem !important;
}

.margin-left-0 {
  margin-left: 0rem !important;
}

.margin-horizontal-0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.margin-vertical-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-0 {
  padding: 0rem;
}

.padding-top-0 {
  padding-top: 0rem !important;
}

.padding-right-0 {
  padding-right: 0rem !important;
}

.padding-bottom-0 {
  padding-bottom: 0rem !important;
}

.padding-left-0 {
  padding-left: 0rem !important;
}

.padding-horizontal-0 {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

.padding-vertical-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-1 {
  margin: 1rem;
}

.margin-top-1 {
  margin-top: 1rem !important;
}

.margin-right-1 {
  margin-right: 1rem !important;
}

.margin-bottom-1 {
  margin-bottom: 1rem !important;
}

.margin-left-1 {
  margin-left: 1rem !important;
}

.margin-horizontal-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.margin-vertical-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.padding-1 {
  padding: 1rem;
}

.padding-top-1 {
  padding-top: 1rem !important;
}

.padding-right-1 {
  padding-right: 1rem !important;
}

.padding-bottom-1 {
  padding-bottom: 1rem !important;
}

.padding-left-1 {
  padding-left: 1rem !important;
}

.padding-horizontal-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.padding-vertical-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.margin-2 {
  margin: 2rem;
}

.margin-top-2 {
  margin-top: 2rem !important;
}

.margin-right-2 {
  margin-right: 2rem !important;
}

.margin-bottom-2 {
  margin-bottom: 2rem !important;
}

.margin-left-2 {
  margin-left: 2rem !important;
}

.margin-horizontal-2 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.margin-vertical-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.padding-2 {
  padding: 2rem;
}

.padding-top-2 {
  padding-top: 2rem !important;
}

.padding-right-2 {
  padding-right: 2rem !important;
}

.padding-bottom-2 {
  padding-bottom: 2rem !important;
}

.padding-left-2 {
  padding-left: 2rem !important;
}

.padding-horizontal-2 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.padding-vertical-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.margin-3 {
  margin: 3rem;
}

.margin-top-3 {
  margin-top: 3rem !important;
}

.margin-right-3 {
  margin-right: 3rem !important;
}

.margin-bottom-3 {
  margin-bottom: 3rem !important;
}

.margin-left-3 {
  margin-left: 3rem !important;
}

.margin-horizontal-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.margin-vertical-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.padding-3 {
  padding: 3rem;
}

.padding-top-3 {
  padding-top: 3rem !important;
}

.padding-right-3 {
  padding-right: 3rem !important;
}

.padding-bottom-3 {
  padding-bottom: 3rem !important;
}

.padding-left-3 {
  padding-left: 3rem !important;
}

.padding-horizontal-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.padding-vertical-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  -ms-transform: translateX(0);
      transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateY(100%);
      transform: translateY(100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateX(100%);
      transform: translateX(100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  -ms-transform: translateX(0);
      transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateY(0);
      transform: translateY(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  -ms-transform: translateY(100%);
      transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateX(0);
      transform: translateX(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  -ms-transform: translateX(100%);
      transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateY(0);
      transform: translateY(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: translateX(0);
      transform: translateX(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  -ms-transform-origin: top;
      transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  -ms-transform-origin: right;
      transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  -ms-transform-origin: bottom;
      transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  -ms-transform-origin: left;
      transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  -ms-transform-origin: center;
      transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  -ms-transform-origin: center;
      transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  -ms-transform-origin: top;
      transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  -ms-transform-origin: right;
      transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  -ms-transform-origin: bottom;
      transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  -ms-transform-origin: left;
      transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  -ms-transform-origin: center;
      transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  -ms-transform-origin: center;
      transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  -ms-transform: scale(1);
      transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: scale(1.5);
      transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  -ms-transform: scale(1);
      transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: scale(1);
      transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  -ms-transform: scale(1.5);
      transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: scale(1);
      transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: rotate(-0.75turn);
      transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  -ms-transform: rotate(0);
      transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: rotate(0);
      transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  -ms-transform: rotate(0.75turn);
      transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: rotate(0.75turn);
      transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  -ms-transform: rotate(0);
      transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  -ms-transform: rotate(0);
      transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  -ms-transform: rotate(-0.75turn);
      transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

@media print {
  a[href]:after {
    content: " (" attr(href) ")";
  }
  a[title]:after {
    content: "(" attr(title) ")";
  }
}

@media print {
  img[alt]:after {
    content: " (" attr(alt) ")";
  }
  img[title]:after {
    content: "(" attr(title) ")";
  }
}

@media print {
  hr {
    display: none;
  }
}

html {
  margin: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

html body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}

html body.logged-in {
  padding: 32px 0 0 0;
}

q, blockquote {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote {
  position: relative;
}

blockquote:before, blockquote:after {
  position: absolute;
  font-size: 3.75rem;
  line-height: 1;
}

blockquote:before {
  content: "\201C";
  left: -1rem;
  top: -1.125rem;
}

@media screen and (max-width: 39.99875em) {
  blockquote:before {
    left: -0.5rem;
  }
}

blockquote:after {
  content: "\201D";
  right: -1rem;
  bottom: -2.125rem;
}

@media screen and (max-width: 39.99875em) {
  blockquote:after {
    right: -0.5rem;
  }
}

audio, video {
  display: block;
  width: 100%;
}

audio::-internal-media-controls-download-button, video::-internal-media-controls-download-button {
  display: none;
}

audio::-webkit-media-controls-enclosure, video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}

a {
  cursor: pointer;
}

.jblc-edit-link {
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
}

.jblc-edit-link a {
  background: #003087;
  border-radius: 20px;
  color: #ffffff;
  display: inline-block;
  padding: 0.5rem 1.875rem;
}

.jblc-link-button {
  background-color: #2259a5;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 200px;
  padding: 0.5rem 1rem;
  margin: 1.875rem 0 0;
}

.single-locations .jblc-link-button {
  max-width: 240px;
  color: #ffffff !important;
}

.jblc-link-button i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-link-button.blue {
  background-color: #2259a5;
}

.jblc-link-button.lightgray {
  background-color: #dbdddd;
}

.jblc-link-button.darkgray {
  background-color: #454545;
}

.jblc-link-button.white {
  background-color: #ffffff;
  color: #2259a5;
  max-width: 300px;
  margin: 0 auto;
}

.jblc-link-button.white:hover, .jblc-link-button.white:active, .jblc-link-button.white:visited, .jblc-link-button.white:focus {
  background-color: #003087;
}

.jblc-link-button:hover, .jblc-link-button:active, .jblc-link-button:visited, .jblc-link-button:focus {
  color: #ffffff;
}

.text-center .jblc-link-button {
  margin: 0 auto;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

#portfolio-load-more {
  background-color: #2259a5;
  border: none;
  color: #ffffff;
}

#portfolio-load-more:hover, #portfolio-load-more:active, #portfolio-load-more:focus {
  background-color: #003087;
}

#portfolio-load-more.disabled, #portfolio-load-more[disabled=disabled] {
  background-color: #9B2335;
}

#portfolio-load-more.disabled:hover, #portfolio-load-more.disabled:active, #portfolio-load-more.disabled:focus, #portfolio-load-more[disabled=disabled]:hover, #portfolio-load-more[disabled=disabled]:active, #portfolio-load-more[disabled=disabled]:focus {
  background-color: #7e1c2b;
}

.ajax-spinner {
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: rgba(0, 48, 135, 0.5);
}

.ajax-spinner i {
  color: #ffffff;
  font-size: 3rem;
  display: block;
}

/*.columns{
  + .columns{
    margin: 1.875rem 0 0;
  }
}*/
#back-to-top {
  background-color: #2259a5;
  color: #ffffff;
  position: fixed;
  top: 82.5%;
  right: 1.875rem;
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

#back-to-top:hover, #back-to-top:focus, #back-to-top:active {
  background-color: #003087;
}

.close-button {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: row !important;
      flex-direction: row !important;
  -ms-flex-align: center !important;
      align-items: center !important;
  -ms-flex-pack: center !important;
      justify-content: center !important;
  padding: 0 !important;
  background-color: #2259a5 !important;
  border: none !important;
  width: 40px !important;
  border-radius: 20px !important;
  color: #ffffff !important;
  transition: all 0.3s ease-in-out;
}

.close-button:hover, .close-button:focus, .close-button:active {
  background-color: #003087;
}

.close-button:focus, .close-button:active {
  z-index: 100;
}

.legacy-newsletter img {
  width: 100%;
}

input,
textarea,
select,
option,
optgroup,
button,
legend,
fieldset {
  box-sizing: border-box;
  outline: none;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  color: #454545;
  vertical-align: top;
  display: block;
}

datalist {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
}

label {
  display: block;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
input[list],
input[type="file"],
select,
textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px;
  background-color: white;
  border-radius: 2px;
  border: 2px solid #b2b2b2;
}

.borderless-filled-bg input[type="text"],
.borderless-filled-bg input[type="email"],
.borderless-filled-bg input[type="password"],
.borderless-filled-bg input[type="search"],
.borderless-filled-bg input[type="color"],
.borderless-filled-bg input[type="date"],
.borderless-filled-bg input[type="datetime-local"],
.borderless-filled-bg input[type="month"],
.borderless-filled-bg input[type="number"],
.borderless-filled-bg input[type="tel"],
.borderless-filled-bg input[type="time"],
.borderless-filled-bg input[type="url"],
.borderless-filled-bg input[type="week"],
.borderless-filled-bg input[list],
.borderless-filled-bg input[type="file"],
.borderless-filled-bg select,
.borderless-filled-bg textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px;
  background-color: #dedede;
  border-radius: 2px;
  border: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
input[list] {
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  overflow: auto;
  resize: none;
}

input[type="range"] {
  height: 40px;
  width: 100%;
  max-width: 400px;
}

input[type="file"] {
  min-height: 40px;
}

input[type="search"] {
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  vertical-align: middle;
}

.checkbox-input-container, .radio-input-container {
  display: block;
  text-align: center;
}

select {
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select[multiple] {
  height: auto;
  min-height: 40px;
}

select[multiple] option {
  margin: 0;
  padding: 8px;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
  font-weight: inherit;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
button[type="button"],
button[type="submit"],
button[type="reset"],
input[type="image"] {
  height: 40px;
  width: 100%;
  max-width: 200px;
  background-color: #d8d8d8;
  padding: 8px;
  cursor: pointer;
  color: #454545;
  font-weight: 700;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 2px;
  border: 2px solid #b2b2b2;
}

input[type="image"] {
  text-align: center;
  padding: 8px;
}

input[disabled],
textarea[disabled],
select[disabled],
option[disabled],
button[disabled] {
  cursor: not-allowed;
}

input:focus,
textarea:focus,
select:focus,
option:focus,
button:focus {
  background-color: #d8d8d8;
  border-color: #b2b2b2;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: #b2b2b2 solid 2px;
}

button:hover, button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
button[type="button"]:hover,
button[type="button"]:focus,
button[type="submit"]:hover,
button[type="submit"]:focus,
button[type="reset"]:hover,
button[type="reset"]:focus {
  background-color: #b2b2b2;
  color: #454545;
}

.jblc-submit {
  border: none;
  background-color: #2259a5;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 200px;
  padding: 0.5rem 1rem;
  margin: 0;
}

.jblc-submit i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-submit:hover {
  border: none;
}

.gform_wrapper {
  margin: 1rem 0 0 !important;
}

.borderless-filled-bg .gform_wrapper {
  display: none;
}

.gform_wrapper .top_label .gfield_label {
  font-weight: 400;
  text-transform: uppercase;
  color: #454545;
}

.gform_wrapper .gform_footer {
  margin: 0 !important;
  text-align: left;
}

.gform_wrapper form.form-columns div.gform_body {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gform_wrapper form.form-columns div.gform_body .column, .gform_wrapper form.form-columns div.gform_body .columns {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media print, screen and (min-width: 40em) {
  .gform_wrapper form.form-columns div.gform_body .column, .gform_wrapper form.form-columns div.gform_body .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

@media print, screen and (min-width: 40em) {
  .gform_wrapper form.form-columns div.gform_body .column:nth-child(2), .gform_wrapper form.form-columns div.gform_body .columns:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
}

@media print, screen and (min-width: 40em) {
  .gform_wrapper form.form-columns div.gform_body .column:nth-child(3), .gform_wrapper form.form-columns div.gform_body .columns:nth-child(3) {
    padding-left: 0;
  }
}

@media print, screen and (min-width: 40em) {
  .gform_wrapper form.form-columns div.gform_body .column:nth-child(4), .gform_wrapper form.form-columns div.gform_body .columns:nth-child(4) {
    padding-right: 0;
  }
}

.gform_wrapper ul.gform_fields {
  list-style: none;
  margin: 0;
  padding: 0;
  /*li.gfield.columns-2 {
      ul.gfield_checkbox,
      ul.gfield_radio {
        @include breakpoint(medium) {
          column-count: 2;
          column-gap: 20px;
        }
      }
    }*/
  /*li.gfield.columns-3 {
      ul.gfield_checkbox,
      ul.gfield_radio {
        @include breakpoint(large) {
          column-count: 3;
          column-gap: 20px;
        }
      }
    }*/
}

@media print, screen and (min-width: 40em) {
  .gform_wrapper ul.gform_fields li.gfield.half {
    clear: none;
    float: left;
    margin: 0 0 0 4% !important;
    width: 48%;
  }
}

@media print, screen and (min-width: 40em) {
  .gform_wrapper ul.gform_fields li.gfield.quarter {
    clear: none;
    float: left;
    margin: 0 0 0 2% !important;
    width: 22.5%;
  }
}

.gform_wrapper ul.gform_fields li.gfield.first {
  margin-left: 0 !important;
  clear: both;
}

.gform_wrapper ul.gform_fields li.gfield.gfield_html {
  padding: 0 !important;
}

.gform_wrapper ul.gform_fields li.gfield.gfield_error input {
  border-color: #9B2335;
}

.gform_wrapper ul.gform_fields li.gfield.gfield_error .validation_message {
  font-weight: 700;
  margin-top: 10px;
}

.gform_wrapper ul.gform_fields li.gfield.gfield_error .gfield_checkbox label:before,
.gform_wrapper ul.gform_fields li.gfield.gfield_error .gfield_radio label:before {
  border-color: #9B2335;
}

.gform_wrapper ul.gform_fields li.gfield.hide-label label.gfield_label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gform_wrapper ul.gform_fields input {
  margin-bottom: 0;
}

.gform_wrapper ul.gform_fields textarea.medium {
  height: 150px;
}

.gform_wrapper ul.gform_fields textarea.small {
  height: 90px;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox,
.gform_wrapper ul.gform_fields ul.gfield_radio {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox input,
.gform_wrapper ul.gform_fields ul.gfield_radio input {
  margin: 0;
  opacity: 0;
  position: absolute;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox label,
.gform_wrapper ul.gform_fields ul.gfield_radio label {
  left: 0;
  margin: 4px 0 0;
  min-height: 28px;
  padding-left: 35px;
  position: relative;
  word-break: break-word;
  color: #454545;
  text-transform: uppercase;
  font-size: 1rem;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox label:after,
.gform_wrapper ul.gform_fields ul.gfield_radio label:after {
  background-color: #2259a5;
  content: none;
  display: inline-block;
  height: 16px;
  left: 4px;
  position: absolute;
  top: 0px;
  width: 16px;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox label:before,
.gform_wrapper ul.gform_fields ul.gfield_radio label:before {
  border: 2px solid #e4e4e4;
  content: "";
  display: inline-block;
  height: 24px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 24px;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox input:checked + label::after,
.gform_wrapper ul.gform_fields ul.gfield_radio input:checked + label::after {
  content: "";
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox input:focus + label::before,
.gform_wrapper ul.gform_fields ul.gfield_radio input:focus + label::before {
  box-shadow: 0 0 5px #cacaca;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox.gfield_radio label:after,
.gform_wrapper ul.gform_fields ul.gfield_radio.gfield_radio label:after {
  border-radius: 12px;
}

.gform_wrapper ul.gform_fields ul.gfield_checkbox.gfield_radio label:before,
.gform_wrapper ul.gform_fields ul.gfield_radio.gfield_radio label:before {
  border-radius: 20px;
}

.gform_wrapper ul.gform_fields li.gfield.paragraph-label ul.gfield_checkbox label,
.gform_wrapper ul.gform_fields li.gfield.paragraph-label ul.gfield_radio label {
  color: #454545;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: .02em;
  line-height: 16px;
  margin: 0;
  text-transform: none;
}

.gform_wrapper ul.gform_fields li.gfield.paragraph-label ul.gfield_checkbox label:after,
.gform_wrapper ul.gform_fields li.gfield.paragraph-label ul.gfield_radio label:after {
  top: 4px;
}

.gform_wrapper ul.gform_fields li.gfield.paragraph-label ul.gfield_checkbox label:before,
.gform_wrapper ul.gform_fields li.gfield.paragraph-label ul.gfield_radio label:before {
  top: 0;
}

.gform_wrapper ul li.gfield {
  margin-top: 0 !important;
}

.gform_wrapper .validation_error {
  background-color: #e4e4e4;
  border-bottom: 2px solid #9B2335;
  font-weight: 700;
  padding: 15px;
}

.gform_wrapper .validation_list {
  margin-top: 1.25rem;
}

.gform_wrapper .single-column {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .gform_wrapper .single-column ul {
    columns: 3;
  }
}

.gform_wrapper input:not([type=submit]), .gform_wrapper textarea {
  width: 100% !important;
  max-width: 100% !important;
}

.gform_wrapper .dual-columns {
  width: 100%;
  columns: 2;
}

.borderless-filled-bg .gfield_label {
  font-weight: 600 !important;
  text-transform: none !important;
}

.borderless-filled-bg input[type=submit] {
  background: #2259a5;
  color: #ffffff;
  width: 100% !important;
  max-width: 220px;
  border: none;
}

.top-bar {
  position: relative;
  padding: 0.9375rem 0 0;
}

@media print, screen and (min-width: 40em) {
  .top-bar {
    padding: 0.9375rem 0;
  }
}

.top-bar .menu a {
  font-size: 1rem;
  color: #003087;
  font-weight: 500;
}

.top-bar, .top-bar ul {
  background: transparent;
}

@media print, screen and (min-width: 40em) {
  .top-bar {
    padding: 0 0.625rem;
  }
}

.top-bar .top-bar-left {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.top-bar .top-bar-left img {
  max-width: 295px;
}

@media print, screen and (min-width: 40em) {
  .top-bar .top-bar-left {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
  }
}

@media screen and (max-width: 39.99875em) {
  .top-bar .top-bar-left {
    padding: 0 0.625rem 0.9375rem;
    border-bottom: 1px solid #003087;
  }
}

.top-bar .top-bar-left .toggle-icon {
  border-radius: 0;
  border: none;
  color: #003087;
  background-color: transparent;
  font-size: 1.875rem;
}

.top-bar .top-bar-left .toggle-icon i {
  position: relative;
  top: -4px;
}

@media print, screen and (min-width: 64em) {
  .top-bar .top-bar-right {
    -ms-flex: 0 0 70%;
        flex: 0 0 70%;
  }
  .top-bar .top-bar-right .menu {
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 0 0 0 3.75rem;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .top-bar .top-bar-right {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
  }
  .top-bar .top-bar-right .menu {
    padding: 0 0 0 1.875rem;
  }
}

@media screen and (max-width: 39.99875em) {
  .top-bar .top-bar-right {
    border-bottom: 1px solid #003087;
  }
}

.top-bar-left h1 {
  margin: 0;
}

.jblc-global-header {
  padding: 0.925rem 0 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-global-header {
    padding: 0.925rem 0;
  }
}

.jblc-global-header .main-navigation a {
  font-weight: 600;
  color: #454545;
}

.jblc-global-header .main-navigation a:hover {
  color: #2259a5;
}

.jblc-global-header .main-navigation a:hover span {
  border-bottom: 1px solid #234292;
}

.jblc-global-header .main-navigation a span {
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.jblc-global-header .main-navigation li.current_page_item a {
  color: #2259a5;
}

.jblc-global-header .main-navigation li.current_page_item a span {
  border-bottom: 1px solid #2259a5;
}

.jblc-global-header .main-navigation li:nth-last-child(2) a {
  color: #454545;
  background-color: #7aa0be;
}

.jblc-global-header .main-navigation li:nth-last-child(2) a:hover {
  background-color: #2259a5;
  color: #ffffff;
}

.jblc-global-header .main-navigation li:nth-last-child(2).current_page_item a {
  background-color: #2259a5;
  color: #ffffff;
}

.jblc-global-header .main-navigation li:nth-last-child(2).current_page_item a span {
  border-bottom: 1px solid #2259a5;
}

.jblc-global-header .jblc-search button {
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #454545;
}

@media screen and (max-width: 39.99875em) {
  .jblc-global-header .jblc-search button {
    max-width: 100%;
    text-align: left;
  }
}

.jblc-primary-navigation > .row > .columns {
  padding: 0;
}

.jblc-global-search-form {
  background-color: #003087;
  display: none;
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 100%;
  box-shadow: 0 0 5px rgba(69, 69, 69, 0.75);
}

@media screen and (max-width: 39.99875em) {
  .jblc-global-search-form {
    bottom: -10px;
    -ms-flex-order: 3;
        order: 3;
  }
}

@media print, screen and (min-width: 64em) {
  .jblc-global-search-form {
    bottom: 8px;
    width: 70%;
  }
}

.jblc-global-search-form.search-bar-active {
  display: -ms-flexbox;
  display: flex;
}

.jblc-global-search-form .close-search {
  background-color: #454545;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: normal;
  padding: 0 10px;
  position: static;
}

.jblc-global-search-form .close-search:hover, .jblc-global-search-form .close-search:focus {
  background-color: #ffffff;
  color: #454545;
}

.jblc-global-search-form form {
  display: -ms-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}

.jblc-global-search-form form button {
  padding: 0 10px;
}

.jblc-global-search-form form input {
  margin: 0;
  max-width: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.jblc-global-search-form form label {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  margin: 0;
}

.jblc-global-search-form .search-submit {
  background: #2259a5;
  color: #ffffff;
}

.jblc-global-search-form .search-submit:hover, .jblc-global-search-form .search-submit:focus {
  background: #ffffff;
  color: #2259a5;
}

.jblc-global-search-form .search-submit,
.jblc-global-search-form .close-search {
  border: none;
  border-radius: 0;
  width: auto;
}

.is-dropdown-submenu {
  background: #ffffff !important;
  border: none;
  list-style-type: none;
  margin: 0;
}

.is-dropdown-submenu-parent a::after {
  border-color: #454545 transparent transparent !important;
}

.is-dropdown-submenu-parent a:hover::after {
  border-color: #2259a5 transparent transparent !important;
}

.dropdown.menu > li.is-active > a {
  color: #2259a5 !important;
}

.dropdown.menu > li.is-active > a:after {
  border-color: #2259a5 transparent transparent !important;
}

/*.is-dropdown-submenu{
  top: 96% !important;
  background: $bluelighter2 !important;
  border: none;
  list-style-type: none;
  margin: 0;
  &:hover{
    background: $otherblue !important;
    a{
      color: $white !important;
      &:after{
        color: $white !important;
        border-color: $white !important;
      }
    }
  }
}

.is-dropdown-submenu-parent{
  a{
    &::after{
      border-color: $darkestgray transparent transparent !important;
    }
    &:hover{
      &::after{
        border-color: $otherblue transparent transparent !important;
      }
    }
  }
  &.is-active, &:hover{
    a{
      &:after{
        color: $white;
        border-color: $white;
      }
    }
    .is-dropdown-submenu{

    }
  }
}
.dropdown.menu{
  > li{
    &.is-active{
      > a{
        background: $otherblue !important;
        color: $white !important;
        &:after{
          border-color: $white transparent transparent !important;
        }
      }
    }
  }
}*/
.jblc-super-navigation {
  background: #e4e4e4;
}

.jblc-super-navigation a {
  color: #454545;
  background: transparent !important;
}

.jblc-global-footer {
  background: #e4e4e4 url("/wp-content/themes/jblc2019/includes/images/johnsonbrothers-footer.jpg") top right/cover no-repeat;
  color: #6f6f6f;
  border-top: 1.75rem solid #dbdddd;
  border-bottom: 1.75rem solid #003087;
  padding: 0.9375rem 0;
}

@media screen and (max-width: 39.99875em) {
  .jblc-global-footer {
    background-size: 175%;
  }
}

.jblc-global-footer h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.jblc-global-footer p {
  font-size: 1rem;
  margin: 0;
  line-height: 1;
}

.jblc-global-footer ul {
  list-style-type: none;
  margin: 0;
}

.jblc-global-footer ul a {
  color: inherit;
}

.jblc-global-footer ul.jblc-footer-menu {
  line-height: 1;
}

.jblc-global-footer ul.jblc-footer-menu li {
  margin: 0 0 1.25rem 0;
}

.jblc-global-footer ul.jblc-footer-menu li:last-child {
  margin: 0;
}

.jblc-global-footer ul.jblc-footer-menu a {
  font-weight: 600;
}

+ .jblc-global-footer ul.jblc-footer-menu.jblc-contact-links {
  margin: 1.25rem 0;
}

.jblc-global-footer ul.jblc-contact-links {
  line-height: 1;
}

.jblc-global-footer ul.jblc-contact-links li {
  margin: 0 0 0.625rem 0;
}

.jblc-global-footer ul.jblc-contact-links a {
  font-weight: 600;
}

.jblc-global-footer .jblc-footer-main {
  padding: 5rem 0 3.75rem;
}

@media screen and (max-width: 39.99875em) {
  .jblc-global-footer .jblc-footer-main {
    padding: 0.9375rem 0 0;
  }
  .jblc-global-footer .jblc-footer-main .jblc-footer-logo {
    margin: 0 0 1.875rem 0;
  }
  .jblc-global-footer .jblc-footer-main .jblc-footer-column:nth-child(even) {
    margin: 1.25rem 0;
  }
}

.jblc-global-footer .jblc-footer-legal {
  padding: 0.9375rem 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-global-footer .jblc-footer-legal {
    padding: 3.75rem 0 1.875rem 0;
  }
}

.jblc-global-footer .jblc-footer-legal .columns {
  -ms-flex-order: 2;
      order: 2;
}

.jblc-global-footer .jblc-footer-legal .columns:last-child {
  -ms-flex-order: 1;
      order: 1;
}

@media screen and (max-width: 39.99875em) {
  .jblc-global-footer .jblc-footer-legal .columns {
    -ms-flex-order: 1;
        order: 1;
  }
  .jblc-global-footer .jblc-footer-legal .columns:last-child {
    -ms-flex-order: 2;
        order: 2;
  }
}

.jblc-global-footer .jblc-footer-social {
  font-size: 0;
  line-height: 1;
}

.jblc-global-footer .jblc-footer-social li {
  display: inline-block;
}

.jblc-global-footer .jblc-footer-social li:nth-child(even) {
  margin: 0 0.9375rem;
}

.jblc-global-footer .jblc-footer-social li a {
  background-color: #7aa0be;
  color: #dbdddd;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  width: 30px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 100%;
  font-size: 1rem;
}

.jblc-global-footer .jblc-footer-social li a:hover, .jblc-global-footer .jblc-footer-social li a:focus {
  background-color: #454545;
}

.jblc-global-footer .jblc-legal-links {
  font-size: 0;
  margin: 0 0 0.9375rem;
}

.jblc-global-footer .jblc-legal-links li {
  font-size: 1rem;
  line-height: 1;
}

.jblc-global-footer .jblc-legal-links li:last-child {
  margin: 1.25rem 0 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-global-footer .jblc-legal-links {
    text-align: right;
    margin: 0;
  }
  .jblc-global-footer .jblc-legal-links li {
    display: inline-block;
    margin: 0;
  }
  .jblc-global-footer .jblc-legal-links li:last-child {
    margin: 0 0 0 1.875rem;
    padding: 0 0 0 1.875rem;
    border-left: 1px solid #6f6f6f;
  }
}

.jblc-global-footer .jblc-company-information {
  line-height: 1;
  display: block;
  margin: 1.25rem 0;
  font-weight: 600;
}

.jblc-global-footer .jblc-company-information span {
  line-height: 1;
  display: inline-block;
}

.jblc-global-footer .jblc-company-information [itemprop="name"] {
  display: block;
  margin: 0 0 0.25rem 0;
}

.jblc-global-footer .jblc-company-information [itemprop="streetAddress"] {
  display: block;
  margin: 0 0 0.25rem 0;
}

.jblc-global-footer.jblc-parent .jblc-footer-main {
  padding: 1.85rem 0;
}

.jblc-global-footer.jblc-parent .jblc-footer-legal {
  padding: 0 0 1.875rem 0;
}

::-webkit-input-placeholder {
  color: #6f6f6f !important;
  font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  font-family: 'proxima-nova', sans-serif;
}

:-moz-placeholder {
  color: #6f6f6f !important;
  font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  font-family: 'proxima-nova', sans-serif;
}

::-moz-placholder {
  color: #6f6f6f !important;
  font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  font-family: 'proxima-nova', sans-serif;
}

::-ms-input-placeholder {
  color: #6f6f6f !important;
  font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  font-family: 'proxima-nova', sans-serif;
}

::input-placeholder {
  color: #6f6f6f !important;
  font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  font-family: 'proxima-nova', sans-serif;
}

::-moz-selection {
  color: #ffffff;
  background: #000000;
}

::selection {
  color: #ffffff;
  background: #000000;
}

.jblc-featured-news {
  padding: 5.625rem 0 1.875rem;
}

.jblc-featured-news img {
  width: 100%;
}

.jblc-featured-news h2, .jblc-featured-news p {
  color: #454545;
}

.jblc-featured-news time {
  color: #afafaf;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.jblc-featured-news h2 {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.2;
  margin: 0.25rem 0 0.5rem;
}

.jblc-featured-news p {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
}

.jblc-featured-news a {
  color: #2259a5;
  font-size: 0.925rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.jblc-blog-posts-container {
  padding: 1.875rem 0 0;
}

.jblc-news-post {
  margin: 0 0 3.75rem 0;
  padding-bottom: 0.9375rem;
}

.jblc-news-post img {
  margin: 0 0 1.875rem;
}

.jblc-news-post time {
  color: #afafaf;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.jblc-news-post h3, .jblc-news-post p {
  color: #454545;
}

.jblc-news-post h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.25rem 0 0.5rem;
}

.jblc-news-post p {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.jblc-news-post a {
  color: #2259a5;
  font-weight: 600;
  text-transform: uppercase;
}

.jblc-load-more {
  padding: 0 0 1.875rem;
}

.jblc-back-to-news {
  background-color: #f8f8f8;
  border-top: 2px solid #e4e4e4;
  padding: 2.25rem 0;
}

.jblc-back-to-news a {
  color: #b2b2b2;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  line-height: 1;
}

.jblc-back-to-news a i {
  color: inherit;
  font-size: 0.625rem;
  margin: 0 0.25rem 0 0;
}

.jblc-post-content {
  padding: 3.75rem 0;
}

.jblc-post-content h1, .jblc-post-content h2, .jblc-post-content h3, .jblc-post-content h4, .jblc-post-content h5, .jblc-post-content h6, .jblc-post-content ul, .jblc-post-content ol, .jblc-post-content p {
  color: #454545;
}

.jblc-post-content a:not(.jblc-link-button) {
  color: #2259a5;
}

.jblc-post-content h1 {
  font-size: 2.125rem;
}

@media print, screen and (min-width: 40em) {
  .jblc-post-content h1 {
    max-width: 80%;
  }
}

@media print, screen and (min-width: 64em) {
  .jblc-post-content h1 {
    max-width: 70%;
  }
}

.jblc-post-content .jblc-single-post-header time {
  color: #afafaf;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.jblc-post-content .jblc-single-post-header img {
  display: block;
  width: 100%;
  margin: 0.9375rem 0 1.875rem;
}

.jblc-internal-post-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media screen and (max-width: 39.99875em) {
  .jblc-internal-post-navigation {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .jblc-internal-post-navigation a {
    margin: 0.9375rem 0 1.875rem;
  }
  .jblc-internal-post-navigation a:last-child {
    margin: 0;
  }
}

.jblc-news-post-inner {
  height: 100%;
}

.jblc-news-post-inner-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}

.jblc-newsletter-return {
  background-color: #f8f8f8;
  color: #969696;
  padding: 1.875rem 0;
}

.jblc-newsletter-return a {
  color: inherit;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1;
}

@media print, screen and (min-width: 40em) {
  .jblc-newsletter-return a {
    text-indent: 3rem;
  }
}

.jblc-newsletter-section {
  margin-bottom: 1.875rem;
}

.jblc-newsletter-content-area {
  padding: 1.875rem 0 3.75rem;
}

.jblc-newsletter-content-area > * {
  color: #454545;
}

.jblc-newsletter-content-area img {
  margin: 0 0 0.9375rem 0;
}

.jblc-newsletter-content-area time {
  color: #969696;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.jblc-newsletter-content-area h1, .jblc-newsletter-content-area h2, .jblc-newsletter-content-area h3, .jblc-newsletter-content-area h4, .jblc-newsletter-content-area h5, .jblc-newsletter-content-area h6 {
  line-height: 1.2;
}

.jblc-newsletter-content-area h1 {
  font-size: 1.75rem;
}

.jblc-newsletter-content-area h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.jblc-newsletter-content-area h2 + h3 {
  margin-top: -0.5rem;
}

.jblc-newsletter-content-area h3 {
  font-size: 1rem;
  font-weight: 300;
}

.jblc-newsletter-content-area p, .jblc-newsletter-content-area ul {
  line-height: 1.4;
  font-size: 0.875rem;
}

.jblc-newsletter-content-area.pink-lists ul {
  color: #da4370;
}

.jblc-newsletter-content-area.pink-lists ul li {
  color: inherit;
}

.jblc-newsletter-content-area.pink-lists ul li a {
  color: inherit;
}

.jblc-newsletter-content-area.blue-lists ul {
  color: #2259a5;
}

.jblc-newsletter-content-area.blue-lists ul li {
  color: inherit;
}

.jblc-newsletter-content-area.blue-lists ul li a {
  color: inherit;
}

.jblc-newsletter-download {
  margin: 1.875rem 0 0;
}

.jblc-newsletter-download a {
  background-color: #2259a5;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 200px;
  padding: 0.5rem 1rem;
}

.jblc-newsletter-download a i {
  color: inherit;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/wp-content/themes/jblc2019/includes/images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 500;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.jblc-404-page-content {
  padding: 3.75rem 0 5rem;
}

.jblc-404-page-content h2, .jblc-404-page-content h3 {
  font-weight: 600;
}

.jblc-404-page-content h2 {
  font-size: 1.625rem;
  margin: 0 0 1rem;
}

.jblc-404-page-content h3 {
  font-size: 1rem;
}

.jblc-404-page-content h3 a {
  color: #2259a5;
  cursor: pointer;
}

.jblc-404-page-content h3 a:hover, .jblc-404-page-content h3 a:focus, .jblc-404-page-content h3 a:active {
  color: #454545;
}

.jblc-404-page-links {
  padding: 0.9375rem 0 1.875rem;
  columns: 2;
  column-gap: 1.875rem;
}

.jblc-404-page-links .jblc-404-page-linkcolumn {
  break-inside: avoid;
}

.jblc-404-page-links .jblc-404-page-linkcolumn * {
  break-inside: avoid;
}

.jblc-search-results {
  padding: 3.75rem 0 5rem;
}

.jblc-search-results h2, .jblc-search-results h3 {
  font-weight: 600;
  line-height: 1.2;
}

.jblc-search-results h2 {
  margin: 0 0 1.875rem;
}

.jblc-search-results h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.jblc-search-results p {
  margin: 0 0 0.5rem;
}

.jblc-search-results a {
  color: #2259a5;
  font-weight: 600;
}

.jblc-secondary-search {
  background: #f8f8f8;
  padding: 1.875rem 1.875rem 2.8125rem;
}

.jblc-secondary-search button {
  border: none;
  color: #ffffff;
  font-weight: 400;
  padding: 0.5rem 1rem;
}

.jblc-secondary-search button:hover, .jblc-secondary-search button:focus, .jblc-secondary-search button:active {
  background-color: #19427b;
  color: #ffffff;
}

.jblc-secondary-search input:focus, .jblc-secondary-search input:active {
  box-shadow: none;
  border-width: 2px;
}

.error404 .jblc-secondary-search {
  margin: 1.875rem 0;
}

@media print, screen and (min-width: 40em) {
  .error404 .jblc-secondary-search {
    margin: 0;
  }
}

.jblc-search-result {
  margin: 0 0 1.875rem 0;
}

.jblc-search-result:last-child {
  margin: 0;
}

.jblc-products-list {
  padding: 3.75rem 0 5rem;
}

.jblc-product-list-intro {
  margin: 0 0 1.875rem 0;
}

.tabs, .tabs-content {
  border: none;
}

.tabs-panel {
  padding: 0;
}

.accordion {
  border-top: 1px solid #e4e4e4;
  margin: 0;
}

.accordion-title {
  border-top: none;
  border-bottom: 1px solid #e4e4e4;
  color: #454545;
  font-size: 1.25rem;
  font-weight: 600;
}

.accordion-title:before {
  border-radius: 20px;
  font-size: 1.875rem;
  font-weight: 600;
  width: 36px;
  height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  top: 35%;
}

.accordion-title:hover, .accordion-title:focus, .accordion-title:active {
  background-color: #d4e4f0;
}

.accordion-title:hover:before, .accordion-title:focus:before, .accordion-title:active:before {
  background-color: #ffffff;
}

.tabs-title > a {
  color: #2259a5;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem 0.875rem;
  text-transform: uppercase;
}

.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
  color: #ffffff;
  background-color: #2259a5;
}

.accordion-item.is-active .accordion-title, .accordion-item.is-active .accordion-content {
  background-color: #f6fafc;
}

.accordion-item.is-active .accordion-title {
  border-bottom: none;
  border-left: 2px solid #2259a5;
}

.accordion-item.is-active .accordion-title:before {
  background-color: #2259a5;
  color: #ffffff;
  content: '+';
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.accordion-item.is-active .accordion-content {
  border-left: none;
  border-left: 2px solid #2259a5;
  border-bottom: 1px solid #e4e4e4;
}

.accordion-item .accordion-title {
  padding: 1.25rem 1.5rem;
}

.accordion-content {
  border-top: none;
  padding: 0.5rem 1.5rem 1.25rem;
}

.jblc-category-product-list {
  list-style-type: none;
  margin: 0;
  columns: 3;
  column-gap: 1rem;
}

.jblc-category-product-list a {
  color: #2259a5;
  font-size: 1rem;
  font-weight: 600;
}

.jblc-prouct-lits-converter {
  background-color: #f8f8f8;
  padding: 1.875rem 1.25rem;
  margin: 2.8125rem 0 0 0;
}

.jblc-products-container {
  padding: 3.75rem 0;
}

.jblc-product-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
  text-align: center;
  margin: 0 0 1.875rem;
}

.jblc-product-block span {
  display: block;
}

.jblc-product-block h3 {
  margin: 0.5rem auto 0;
  font-size: 0.875rem;
  font-weight: 600;
}

@media print, screen and (min-width: 40em) {
  .jblc-product-block h3 {
    max-width: 75%;
  }
}

#ps button {
  width: auto;
  background-color: #2259a5;
  border: none;
  color: #ffffff;
  padding: 0rem 1.125rem;
}

#ps button:hover {
  background-color: #003087;
}

#ps button + button {
  margin: 0 0 0 1.125rem;
}

.jblc-product-reveal h3 {
  font-size: 1.0625rem;
}

.jblc-product-reveal p {
  font-size: 0.925rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.jblc-form-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.jblc-form-buttons button + button {
  margin: 0 0 0 1rem;
}

.jblc-inline-branch-map svg #path67 {
  stroke: #85a3cd;
}

.jblc-inline-branch-map svg path {
  fill: #85a3cd;
}

.jblc-inline-branch-map svg path#NV, .jblc-inline-branch-map svg path#ND, .jblc-inline-branch-map svg path#SD, .jblc-inline-branch-map svg path#NE, .jblc-inline-branch-map svg path#MN, .jblc-inline-branch-map svg path#IA, .jblc-inline-branch-map svg path#WI, .jblc-inline-branch-map svg path#IN, .jblc-inline-branch-map svg path#WV, .jblc-inline-branch-map svg path#NC, .jblc-inline-branch-map svg path#FL, .jblc-inline-branch-map svg path#RI, .jblc-inline-branch-map svg path#NY, .jblc-inline-branch-map svg path#HI {
  cursor: pointer;
  fill: #2259a5;
}

.jblc-inline-branch-map svg path#IL, .jblc-inline-branch-map svg path#MA, .jblc-inline-branch-map svg path#CT, .jblc-inline-branch-map svg path#NM, .jblc-inline-branch-map svg path#WA, .jblc-inline-branch-map svg path#CA, .jblc-inline-branch-map svg path#AZ, .jblc-inline-branch-map svg path#KY, .jblc-inline-branch-map svg path#NJ {
  cursor: pointer;
  fill: #2259a5;
}

.jblc-inline-branch-map svg #DC {
  fill: #ffffff;
}

.jblc-inline-branch-map svg #DC circle {
  stroke: #2259a5;
  fill: #85a3cd;
}

.jblc-branch-map svg #path67 {
  stroke: #85a3cd;
}

.jblc-branch-map svg path {
  fill: #ffffff;
}

.jblc-branch-map svg path#MT, .jblc-branch-map svg path#KS, .jblc-branch-map svg path#OK, .jblc-branch-map svg path#AR, .jblc-branch-map svg path#LA, .jblc-branch-map svg path#VT, .jblc-branch-map svg path#NH, .jblc-branch-map svg path#WV, .jblc-branch-map svg path#PA, .jblc-branch-map svg path#MD, .jblc-branch-map svg path#DE, .jblc-branch-map svg path#AK {
  cursor: pointer;
}

.jblc-branch-map svg path#NV, .jblc-branch-map svg path#ND, .jblc-branch-map svg path#SD, .jblc-branch-map svg path#NE, .jblc-branch-map svg path#MN, .jblc-branch-map svg path#IA, .jblc-branch-map svg path#WI, .jblc-branch-map svg path#IN, .jblc-branch-map svg path#WV, .jblc-branch-map svg path#NC, .jblc-branch-map svg path#FL, .jblc-branch-map svg path#RI, .jblc-branch-map svg path#NY, .jblc-branch-map svg path#HI {
  cursor: pointer;
  fill: #85a3cd;
}

.jblc-branch-map svg path#IL, .jblc-branch-map svg path#MA, .jblc-branch-map svg path#CT, .jblc-branch-map svg path#NM, .jblc-branch-map svg path#WA, .jblc-branch-map svg path#CA, .jblc-branch-map svg path#AZ, .jblc-branch-map svg path#KY, .jblc-branch-map svg path#NJ {
  cursor: pointer;
  fill: #85a3cd;
}

.jblc-branch-map svg path.bright-hover:hover {
  fill: #1591fa !important;
}

.jblc-branch-map svg path.dark-hover:hover {
  fill: #003087 !important;
}

.jblc-branch-map svg #DC {
  fill: #ffffff;
}

.jblc-branch-map svg #DC circle {
  stroke: #2259a5;
  fill: #85a3cd;
}

.map-info-box {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: #ffffff;
  border: 2px solid #2259a5;
  border-radius: 7px;
  padding: 0.9375rem;
}

.map-info-box a {
  display: block !important;
  max-width: 100% !important;
  text-align: center;
}

.map-info-box a + a {
  margin: 1rem 0 0 0;
}

.jblc-single-location-top-info .flex-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin: 0 0 1.5rem;
}

.jblc-single-location-top-info h2 {
  margin: 0 !important;
}

.jblc-single-location-top-info img {
  max-width: 75px;
  border-radius: 100%;
  border: 2px solid #2259a5;
  margin: 0 1rem 0 0;
}

.jblc-top-banner.simple-banner {
  height: 100%;
  border-top: 5px solid #2259a5;
}

@media screen and (max-width: 39.99875em) {
  .jblc-top-banner.simple-banner {
    background-image: none !important;
    padding: 1.25rem 0 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .jblc-top-banner.simple-banner {
    background-image: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .jblc-top-banner.simple-banner {
    background-position: right 5px top 0 !important;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner.simple-banner {
    min-height: 225px;
  }
  .jblc-top-banner.simple-banner div {
    height: inherit;
    min-height: inherit;
  }
}

.jblc-top-banner.simple-banner h1, .jblc-top-banner.simple-banner h2, .jblc-top-banner.simple-banner p {
  color: #ffffff;
}

.jblc-top-banner.simple-banner p {
  margin: 0;
}

@media screen and (max-width: 39.99875em) {
  .jblc-top-banner.simple-banner p {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner.simple-banner p {
    max-width: 55%;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner.simple-banner .jblc-top-banner-vertical-aligner {
    padding: 0 3rem;
  }
}

.jblc-top-banner.simple-banner h1 strong {
  color: inherit;
  font-size: 0.875rem;
  font-family: 'proxima-nova', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

.jblc-top-banner.complex-banner {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 39.99875em) {
  .jblc-top-banner.complex-banner {
    background: transparent !important;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner.complex-banner {
    min-height: 660px;
  }
  .jblc-top-banner.complex-banner > .row {
    height: inherit;
    min-height: inherit;
  }
  .jblc-top-banner.complex-banner > .row > .columns {
    height: inherit;
    min-height: inherit;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner.complex-banner.short {
    min-height: 470px;
  }
}

.jblc-top-banner.complex-banner.side-image > .row > .columns {
  height: auto;
  min-height: auto;
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner.complex-banner.unique-overlays .jblc-top-banner-vertical-aligner p {
    max-width: 60%;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner.complex-banner.unique-overlays.wide-copy .jblc-top-banner-vertical-aligner p {
    max-width: 85%;
  }
}

.jblc-top-banner.complex-banner.include-overlay:before {
  content: ' ';
  height: 100%;
  width: 100%;
  position: absolute;
  background: url("/wp-content/themes/jblc2019/includes/images/hero-overlay.png") center center/cover no-repeat;
  opacity: 0.65;
}

@media screen and (max-width: 39.99875em) {
  .jblc-top-banner.complex-banner.include-overlay:before {
    display: none;
  }
}

.jblc-top-banner.complex-banner.include-overlay.double-dark:before {
  background: url("/wp-content/themes/jblc2019/includes/images/hero-overlay.png") center center/cover no-repeat, url("/wp-content/themes/jblc2019/includes/images/hero-overlay.png") center center/cover no-repeat;
  opacity: 0.8;
}

.jblc-top-banner.complex-banner .position-relative {
  position: relative;
  z-index: 200;
}

.jblc-top-banner.complex-banner h1, .jblc-top-banner.complex-banner h2, .jblc-top-banner.complex-banner p {
  color: #ffffff;
}

@media screen and (max-width: 39.99875em) {
  .jblc-top-banner.complex-banner h1, .jblc-top-banner.complex-banner h2, .jblc-top-banner.complex-banner p {
    color: #2259a5;
  }
}

.jblc-top-banner.complex-banner h1 strong {
  color: #1591fa;
}

.jblc-top-banner.complex-banner h1 em {
  color: #1591fa;
  font-family: 'proxima-nova', sans-serif;
  text-transform: uppercase;
  font-style: normal;
}

.jblc-top-banner .jblc-top-banner-vertical-aligner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  z-index: 200;
  height: inherit;
  min-height: inherit;
}

@media screen and (max-width: 39.99875em) {
  .jblc-top-banner .jblc-top-banner-vertical-aligner {
    padding: 1.875rem 0 0.9375rem;
  }
}

.jblc-top-banner h1 {
  line-height: 1;
  font-family: 'trajan-pro-3', serif;
  font-size: 2.25rem;
}

.jblc-top-banner h1 strong {
  font-size: 0.875rem;
  font-family: 'proxima-nova', sans-serif;
  text-transform: uppercase;
}

.jblc-top-banner p, .jblc-top-banner h2 {
  font-size: 1rem;
  max-width: 100%;
}

@media print, screen and (min-width: 40em) {
  .jblc-top-banner p, .jblc-top-banner h2 {
    max-width: 60%;
  }
}

@media print, screen and (min-width: 64em) {
  .jblc-top-banner p, .jblc-top-banner h2 {
    max-width: 60%;
  }
}

.jblc-top-banner .jblc-top-banner-cta-box {
  background: #ffffff;
  padding: 1.875rem;
}

.jblc-top-banner .jblc-top-banner-cta-box h2, .jblc-top-banner .jblc-top-banner-cta-box h3, .jblc-top-banner .jblc-top-banner-cta-box p {
  color: #454545;
}

.jblc-top-banner .jblc-top-banner-cta-box p {
  max-width: 100%;
}

.jblc-top-banner .jblc-top-banner-cta-box h2, .jblc-top-banner .jblc-top-banner-cta-box h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 600;
}

.jblc-top-banner .jblc-top-banner-cta-box a {
  background-color: #2259a5;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 200px;
  padding: 0.5rem 1rem;
}

.jblc-top-banner .jblc-top-banner-cta-box a i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-top-banner .jblc-top-banner-cta-box a:hover {
  background-color: #19427b;
}

.jblc-top-banner .inline-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.jblc-top-banner .inline-buttons a {
  display: inline-block;
  font-weight: 600;
  padding: 0.5rem 1.875rem;
}

.jblc-top-banner .inline-buttons a + a {
  margin: 0 0 0 1.875rem;
}

.jblc-top-banner .inline-buttons.maroon a {
  background-color: #581d1d;
  color: #ffffff;
}

.jblc-cta-bar {
  padding: 3.3125rem 0;
  background-color: #2259a5;
}

.jblc-cta-bar .jblc-cta-bar-aligner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media print, screen and (min-width: 40em) {
  .jblc-cta-bar .jblc-cta-bar-aligner {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}

.jblc-cta-bar h2, .jblc-cta-bar h3, .jblc-cta-bar p, .jblc-cta-bar ul, .jblc-cta-bar a {
  color: #ffffff;
}

.jblc-cta-bar h2 {
  font-size: 1.875rem;
  font-family: 'trajan-pro-3', serif;
}

.jblc-cta-bar h3 {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}

.jblc-cta-bar p {
  margin: 0;
}

.jblc-cta-bar ul {
  list-style-type: none;
  margin: 0;
}

.jblc-cta-bar .jblc-cta-bar-content {
  width: 100%;
}

.jblc-cta-bar .jblc-cta-bar-content > div {
  margin: 0 0 1rem 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-cta-bar .jblc-cta-bar-content > div {
    margin: 0;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-cta-bar .jblc-cta-bar-content {
    max-width: 60%;
  }
}

.jblc-cta-bar .jblc-cta-bar-content.dual > div * {
  break-inside: avoid;
}

@media print, screen and (min-width: 40em) {
  .jblc-cta-bar .jblc-cta-bar-content.dual {
    columns: 2;
    column-gap: 4rem;
  }
}

.jblc-alternate-cta-bar.lightgray {
  background-color: #f8f8f8;
}

.jblc-alternate-cta-bar + .jblc-dual-column {
  padding: 1.875rem 0 1.875rem;
  margin: 1.875rem 0 0;
}

.jblc-alternate-cta-bar + .jblc-alternate-dual-column .jblc-alternate-dual-column-copy-container {
  padding: 1.875rem 0 1.875rem;
}

@media print, screen and (min-width: 40em) {
  .jblc-alternate-cta-bar {
    margin-bottom: calc(-2.8125rem *2);
  }
  .jblc-alternate-cta-bar + .jblc-dual-column {
    padding: 5.625rem 0 2.8125rem;
    margin: 5.625rem 0 0;
  }
  .jblc-alternate-cta-bar + .jblc-alternate-dual-column .jblc-alternate-dual-column-copy-container {
    padding: 5.625rem 0 3.75rem;
    margin: 3.75rem 0 0;
  }
}

.jblc-alternate-cta-bar .jblc-alternate-cta-bar-content {
  background-color: #234292;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  z-index: 500;
  height: 100%;
  padding: 1.875rem 0.9375rem;
  -ms-flex-direction: column;
      flex-direction: column;
  top: 0;
}

@media screen and (max-width: 39.99875em) {
  .jblc-alternate-cta-bar .jblc-alternate-cta-bar-content .columns {
    padding-bottom: 0.925rem;
    margin-bottom: 0.925rem;
  }
  .jblc-alternate-cta-bar .jblc-alternate-cta-bar-content .columns:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-alternate-cta-bar .jblc-alternate-cta-bar-content {
    -ms-flex-direction: row;
        flex-direction: row;
    margin-bottom: calc(-2.8125rem *2);
    top: calc(-2.8125rem *2);
    padding: 2.8125rem 1.875rem;
  }
}

.jblc-alternate-cta-bar .jblc-alternate-dual-column-content {
  padding: 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-alternate-cta-bar .jblc-alternate-dual-column-content {
    display: -ms-flexbox;
    display: flex;
    padding: 0 0.9375rem;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}

.jblc-alternate-cta-bar .jblc-alternate-dual-column-content .jblc-alternate-main-column-content {
  padding: 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-alternate-cta-bar .jblc-alternate-dual-column-content .jblc-alternate-main-column-content {
    max-width: 66%;
    -ms-flex-preferred-size: 66%;
        flex-basis: 66%;
    padding: 0 1.875rem 0 0;
  }
}

.jblc-alternate-cta-bar .jblc-alternate-dual-column-content .jblc-alternate-side-links {
  width: 100%;
  max-width: 280px;
  -ms-flex-preferred-size: 280px;
      flex-basis: 280px;
}

.jblc-alternate-cta-bar .jblc-alternate-dual-column-content .jblc-alternate-side-links a {
  background-color: #12223e;
  padding: 0.9375rem 1.125rem 0.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.jblc-alternate-cta-bar .jblc-alternate-dual-column-content .jblc-alternate-side-links a + a {
  margin: 1.25rem 0 0 0;
}

.jblc-alternate-cta-bar .columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.jblc-alternate-cta-bar img {
  margin: 0 1rem 0 0;
}

.jblc-alternate-cta-bar h2, .jblc-alternate-cta-bar a, .jblc-alternate-cta-bar p {
  color: #ffffff;
}

.jblc-alternate-cta-bar h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.jblc-alternate-cta-bar a {
  font-size: 1rem;
  text-transform: uppercase;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
}

.jblc-alternate-cta-bar a i {
  font-size: 0.625rem;
  margin: 0 0 0 0.5rem;
}

.jblc-alternate-cta-bar.no-overlap {
  background: #234292;
  margin: 0 0 0;
}

.jblc-alternate-cta-bar.no-overlap .jblc-alternate-cta-bar-content {
  top: 0;
  margin-bottom: 0;
}

.jblc-multi-column {
  padding: 2.8125rem 0;
}

.jblc-multi-column.white-bg {
  background-color: #ffffff;
}

.jblc-multi-column.lightgray-bg {
  background-color: #f8f8f8;
}

.jblc-multi-column .jblc-multicolumn-content {
  height: 100%;
  background-color: #ffffff;
}

.jblc-multi-column.news h2 {
  font-size: 0.875rem;
  color: #1591fa;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.jblc-multi-column.news .jblc-multicolumn-copy h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.9375rem 0;
  color: #454545;
}

.jblc-multi-column .jblc-multicolumn-copy {
  margin: 1.875rem 0 0 0;
  padding: 0 1.875rem 1.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}

.jblc-multi-column .jblc-multicolumn-copy h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.9375rem 0;
}

.jblc-multi-column .jblc-multicolumn-copy h2, .jblc-multi-column .jblc-multicolumn-copy p {
  color: #454545;
}

.jblc-multi-column .jblc-multicolumn-copy .jblc-link-button {
  margin: 0;
}

.jblc-multi-column .row + .row {
  margin: 2.8125rem auto 0;
}

.jblc-multi-column .row.padding-adjacent-zero + .row {
  margin: 0.9375rem auto 0;
}

.jblc-multi-column .row.padding-adjacent-zero .columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.jblc-multi-column .row.padding-adjacent-zero .columns a {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #454545;
  font-weight: 600;
}

.jblc-multi-column.gray-buttons .jblc-multicolumn-buttons a {
  background-color: #dbdddd;
}

.jblc-multi-column.gray-buttons .jblc-multicolumn-buttons a:hover {
  background-color: #454545;
}

.jblc-multi-column.blue-buttons .jblc-multicolumn-buttons a {
  background: #2259a5;
}

.jblc-multi-column.blue-buttons .jblc-multicolumn-buttons a:hover {
  background-color: #19427b;
}

.jblc-multi-column .jblc-multicolumn-buttons a {
  color: #ffffff;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  display: inline-block;
  text-transform: uppercase;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
}

.jblc-multi-column .jblc-multicolumn-buttons a i {
  font-size: 0.625rem;
}

.jblc-multi-column .jblc-multicolumn-buttons a + a {
  margin: 0.9375rem 0 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-multi-column .jblc-multicolumn-buttons a + a {
    margin: 0 0 0 0.9375rem;
  }
}

.jblc-callout {
  padding: 0.9375rem 0 2.8125rem 0;
}

.jblc-callout.full-width-callouts {
  padding: 0;
}

.jblc-callout.full-width-callouts .columns:first-of-type {
  background-color: #063475;
}

.jblc-callout.full-width-callouts .columns:first-of-type h2, .jblc-callout.full-width-callouts .columns:first-of-type p {
  color: #ffffff;
}

.jblc-callout.full-width-callouts .columns:last-of-type {
  background-color: #acccf9;
}

.jblc-callout.full-width-callouts .columns:last-of-type h2, .jblc-callout.full-width-callouts .columns:last-of-type p {
  color: #2259a5;
}

.jblc-callout.full-width-callouts .columns a {
  background: #ffffff;
  color: #2259a5;
}

.jblc-callout.full-width-callouts .columns a:hover {
  color: #ffffff;
  background: #2259a5;
}

@media print, screen and (min-width: 64em) {
  .jblc-callout.full-width-callouts .columns {
    padding: 3.75rem 8.5%;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .jblc-callout.full-width-callouts .columns {
    padding: 3.75% 4.25%;
  }
}

.jblc-callout.white-bg {
  background-color: #ffffff;
}

.jblc-callout.lightgray-bg {
  background-color: #f8f8f8;
}

.jblc-callout.lightblue-bg {
  background-color: #acccf9;
}

.jblc-callout.darkblue-bg {
  background-color: #063475;
}

.jblc-callout.serif-heading-font h2, .jblc-callout.serif-heading-font h3, .jblc-callout.serif-heading-font h4, .jblc-callout.serif-heading-font h5, .jblc-callout.serif-heading-font h6 {
  font-family: 'trajan-pro-3', serif;
}

.jblc-callout.sans-serif-heading-font h2, .jblc-callout.sans-serif-heading-font h3, .jblc-callout.sans-serif-heading-font h4, .jblc-callout.sans-serif-heading-font h5, .jblc-callout.sans-serif-heading-font h6 {
  font-weight: 600;
}

.jblc-callout.blue-buttons a {
  background-color: #2259a5;
  color: #ffffff;
}

.jblc-callout.blue-buttons a:hover {
  background-color: #19427b;
}

.jblc-callout.gray-buttons a {
  background-color: #dbdddd;
  color: #ffffff;
}

.jblc-callout.gray-buttons a:hover {
  background-color: #454545;
}

.jblc-callout.transparent-buttons a {
  background-color: transparent;
  color: #234292;
}

.jblc-callout.transparent-buttons a i {
  opacity: 0;
}

.jblc-callout h2 {
  font-size: 1.25rem;
}

.jblc-callout h2, .jblc-callout p {
  color: #454545;
}

.jblc-callout .jblc-single-callout-content {
  padding: 0.9375rem 0 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-callout .jblc-single-callout-content {
    padding: 0 0 0 3.75rem;
  }
}

.jblc-callout .jblc-single-callout-content h2 {
  font-size: 1.875rem;
}

.jblc-callout .jblc-single-callout-content a {
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
  padding: 0.5rem 1rem;
}

.jblc-callout .jblc-single-callout-content a i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-callout.card-appearance .jblc-dual-callout-content-container {
  background: #ffffff;
  padding: 1.875rem;
}

.jblc-callout.card-appearance .jblc-dual-callout-content-container h2, .jblc-callout.card-appearance .jblc-dual-callout-content-container h3, .jblc-callout.card-appearance .jblc-dual-callout-content-container p {
  color: #2259a5 !important;
}

.jblc-callout.card-appearance .jblc-dual-callout-content-container img {
  max-width: 37.5%;
}

@media screen and (max-width: 39.99875em) {
  .jblc-callout.card-appearance .jblc-dual-callout-content-container img {
    margin: 0 0 0.9375rem 0;
  }
}

.jblc-callout .jblc-dual-callout-content-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media screen and (max-width: 39.99875em) {
  .jblc-callout .jblc-dual-callout-content-container {
    -ms-flex-align: start;
        align-items: flex-start;
    padding: 1.875rem 0.9375rem;
  }
  .jblc-callout .jblc-dual-callout-content-container img {
    margin: 0 0 0.9375rem 0;
  }
}

@media print, screen and (min-width: 40em) {
  .jblc-callout .jblc-dual-callout-content-container {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .jblc-callout .jblc-dual-callout-content-container img {
    max-width: 48%;
  }
  .jblc-callout .jblc-dual-callout-content-container .jblc-dual-callout-content {
    padding: 0 0 0 1.875rem;
  }
  .jblc-callout .jblc-dual-callout-content-container p {
    font-size: 0.925rem;
  }
}

.jblc-callout .jblc-dual-callout-content-container a {
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
  padding: 0.5rem 1rem;
}

.jblc-callout .jblc-dual-callout-content-container a i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-carousel {
  background-color: #f8f8f8;
  padding: 0 0 2.8125rem;
  margin: 2.8125rem 0 0;
  position: relative;
}

.jblc-carousel:before {
  content: ' ';
  width: 100%;
  height: 2.8125rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

.jblc-carousel.top-bg-blue:before {
  background-color: #2259a5;
}

.jblc-carousel.top-bg-gray:before {
  background-color: #f8f8f8;
}

.jblc-carousel.top-bg-white:before {
  background-color: #ffffff;
}

.jblc-carousel .jblc-carousel-container figure figcaption {
  padding: 1.125rem 0;
  font-size: 0.875rem;
  color: #454545;
}

.jblc-carousel .jblc-carousel-container img {
  width: 100%;
}

.jblc-carousel .slick-dots li {
  height: 5px;
  width: 50px;
}

.jblc-carousel .slick-dots li button {
  height: inherit;
  width: inherit;
  padding: 0;
  background-color: #d9d9d9;
}

.jblc-carousel .slick-dots li button:before {
  content: "";
  height: inherit;
  width: inherit;
  background-color: #d9d9d9;
}

.jblc-carousel .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #2259a5;
}

.jblc-carousel .jblc-prev,
.jblc-carousel .jblc-next {
  position: absolute;
  display: block;
  height: auto;
  width: auto;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 500;
}

.jblc-carousel .jblc-prev:hover, .jblc-carousel .jblc-prev:focus,
.jblc-carousel .jblc-next:hover,
.jblc-carousel .jblc-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.jblc-carousel .jblc-prev i,
.jblc-carousel .jblc-next i {
  font-size: 3rem;
  color: #2259a5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.jblc-carousel .jblc-prev {
  left: -2.8125rem;
}

.jblc-carousel .jblc-next {
  right: -2.8125rem;
}

.jblc-dual-column {
  padding: 2.8125rem 0 0;
}

.jblc-dual-column.gray-bg {
  background-color: #f8f8f8;
}

.jblc-dual-column + .jblc-dual-column {
  padding: 0 0 1.875rem;
}

@media print, screen and (min-width: 40em) {
  .jblc-dual-column {
    padding: 2.8125rem 0;
  }
  .jblc-dual-column + .jblc-dual-column {
    padding: 2.8125rem 0;
  }
}

.jblc-dual-column.serif-heading-font h2 {
  font-size: 1.875rem;
  font-family: 'trajan-pro-3', serif;
}

.single-locations .jblc-dual-column.serif-heading-font h2 {
  font-size: 1.5rem;
}

.jblc-dual-column.sans-serif-heading-font h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.jblc-dual-column h2, .jblc-dual-column h3 {
  color: #454545;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0;
}

.jblc-dual-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.single-locations .jblc-dual-column h3 {
  font-size: 1.125rem;
}

.jblc-dual-column p, .jblc-dual-column ul, .jblc-dual-column ol {
  font-size: 1rem;
  color: #454545;
}

.jblc-dual-column ul {
  list-style-type: none;
  margin: 0 0 2rem 0;
}

.jblc-dual-column ul li, .jblc-dual-column ol li {
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
}

.jblc-dual-column ul a, .jblc-dual-column ol a {
  text-transform: uppercase;
  color: #2259a5;
  font-weight: 600;
}

.jblc-dual-column a {
  color: #2259a5;
}

.jblc-dual-column figure {
  margin: 0 0 1.875rem 0;
}

.jblc-dual-column .jblc-internal-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 1.875rem 0 0 0;
}

@media screen and (max-width: 480px) {
  .jblc-dual-column .jblc-internal-columns {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

.jblc-dual-column .jblc-dual-column-content {
  margin-bottom: 1.875rem;
}

@media print, screen and (min-width: 40em) {
  .jblc-dual-column .jblc-dual-column-content {
    margin-bottom: 0;
  }
}

.jblc-dual-column .jblc-dual-column-buttons a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
  padding: 0.5rem 1rem;
}

.jblc-dual-column .jblc-dual-column-buttons a i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-dual-column .jblc-dual-column-buttons a + a {
  margin: 1.85rem 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-dual-column .jblc-dual-column-buttons a + a {
    margin: 0 0 0 1.875rem;
  }
}

.jblc-dual-column .jblc-dual-column-buttons.blue-buttons a {
  background: #2259a5;
  color: #ffffff;
}

.jblc-dual-column .jblc-dual-column-buttons.blue-buttons a:hover {
  background-color: #19427b;
}

.jblc-dual-column .jblc-dual-column-buttons.lightgray-buttons a {
  background-color: #dbdddd;
  color: #ffffff;
}

.jblc-dual-column .jblc-dual-column-buttons.lightgray-buttons a:hover {
  background-color: #454545;
}

.jblc-dual-column .jblc-dual-column-image figcaption {
  margin: 0.9375rem 0;
  font-size: 0.875rem;
  color: #454545;
}

.jblc-dual-column .jblc-dual-column-image .jblc-location-image {
  width: 100%;
}

.single-locations .jblc-dual-column + .jblc-dual-column {
  padding: 0 0 2.8125rem;
}

.jblc-dual-column .jblc-company-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  margin-bottom: 1.875rem;
}

@media print, screen and (min-width: 40em) {
  .jblc-dual-column .jblc-company-info {
    margin-bottom: 0;
  }
}

.jblc-dual-column .jblc-company-info h3 {
  font-weight: 600;
  color: #2259a5;
  margin: 0;
}

.jblc-dual-column .jblc-company-info > div:first-child {
  width: 100%;
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.single-locations .jblc-dual-column .jblc-company-info > div:first-child {
  max-width: 60%;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}

.jblc-dual-column .jblc-company-info > div:last-child {
  width: 100%;
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.single-locations .jblc-dual-column .jblc-company-info > div:last-child {
  max-width: 40%;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.jblc-dual-column .jblc-company-info > div a:not(.jblc-directions) {
  color: #454545;
}

.jblc-dual-column .jblc-company-info > div a:not(.jblc-directions):hover {
  color: #2259a5;
}

.jblc-dual-column .jblc-company-info .jblc-company-information {
  display: block;
}

.jblc-dual-column .jblc-company-info .jblc-company-right h3:nth-child(3) {
  margin: 1.875rem 0 0;
}

.jblc-dual-column .jblc-company-info [itemprop="name"] {
  display: block;
}

.jblc-dual-column .jblc-company-info .jblc-directions {
  background-color: #2259a5;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 200px;
  padding: 0.5rem 1rem;
  margin: 1.875rem 0 0;
}

.jblc-dual-column .jblc-company-info .jblc-directions i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-dual-column .jblc-company-info + h2 {
  margin-top: 3.75rem;
}

.jblc-dual-column .jblc-company-info .jblc-business-hours {
  margin: 1.875rem 0 0;
}

.jblc-dual-column .jblc-company-info .jblc-business-hours ul {
  margin: 0.46875rem 0 0;
}

.jblc-dual-column .jblc-company-info .jblc-business-hours ul li {
  margin: 0 0 0.46875rem;
}

.jblc-alternate-dual-column.serif-heading-font h2 {
  font-size: 1.875rem;
  font-family: 'trajan-pro-3', serif;
}

.jblc-alternate-dual-column.sans-serif-heading-font h2 {
  font-weight: 600;
}

.jblc-alternate-dual-column h2 {
  font-size: 1.25rem;
  color: #454545;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0;
}

.jblc-alternate-dual-column p, .jblc-alternate-dual-column ul, .jblc-alternate-dual-column ol {
  font-size: 1rem;
  color: #454545;
}

.jblc-alternate-dual-column ul {
  list-style-type: none;
  margin: 0 0 2rem 0;
}

.jblc-alternate-dual-column ul li, .jblc-alternate-dual-column ol li {
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
}

.jblc-alternate-dual-column ul a, .jblc-alternate-dual-column ol a {
  text-transform: uppercase;
  color: #2259a5;
  font-weight: 600;
}

.jblc-alternate-dual-column a {
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
  padding: 0.5rem 1rem;
  background-color: #2259a5;
  color: #ffffff;
}

.jblc-alternate-dual-column a:hover {
  background-color: #19427b;
}

.jblc-alternate-dual-column a i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-alternate-dual-column figure {
  margin: 0 0 1.875rem 0;
}

.jblc-combo-columns {
  padding: 3.75rem 0 0;
}

.jblc-combo-columns .row + .row {
  margin-top: 3rem;
}

.jblc-combo-columns.serif-heading-font h2 {
  font-size: 1.875rem;
  font-family: 'trajan-pro-3', serif;
}

.jblc-combo-columns.sans-serif-heading-font h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.jblc-combo-columns.images-on-top .jblc-combo-column-content-container {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
}

.jblc-combo-columns.images-on-top img {
  margin: 0 0 1.875rem;
}

.jblc-combo-columns.images-on-side .jblc-combo-column-content-container {
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
}

.jblc-combo-columns.images-on-side .jblc-combo-column-content-container .jblc-combo-column-content {
  padding: 0.9375rem 0 1.875rem;
}

@media print, screen and (min-width: 40em) {
  .jblc-combo-columns.images-on-side .jblc-combo-column-content-container .jblc-combo-column-content {
    padding: 0 0 0 1.875rem;
  }
}

@media screen and (max-width: 550px) {
  .jblc-combo-columns.images-on-side .jblc-combo-column-content-container {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}

.jblc-combo-columns .jblc-combo-column {
  margin-bottom: 1.875rem;
}

@media print, screen and (min-width: 40em) {
  .jblc-combo-columns .jblc-combo-column {
    margin-bottom: 3.75rem;
  }
}

.jblc-combo-columns .jblc-combo-column-content-container {
  display: -ms-flexbox;
  display: flex;
}

.jblc-combo-columns h2, .jblc-combo-columns h3, .jblc-combo-columns p, .jblc-combo-columns ul, .jblc-combo-columns ol {
  color: #454545;
}

.jblc-combo-columns h2 {
  margin: 0 0 1.875rem;
}

.jblc-combo-columns h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.jblc-single-column {
  padding: 3.7rem 0 1.875rem;
}

.jblc-single-column h2, .jblc-single-column h3 {
  font-weight: 600;
}

.jblc-single-column h2 {
  font-size: 1.5rem;
}

.jblc-single-column h3 {
  font-size: 1.25rem;
}

.jblc-single-column a {
  color: #1591fa;
  text-decoration: underline;
}

.jblc-single-column ul {
  padding: 0 0 0 0.925rem;
}

.jblc-customer-testimonial {
  padding: 3.65rem 0;
}

.jblc-customer-testimonial blockquote, .jblc-customer-testimonial figcaption, .jblc-customer-testimonial cite {
  color: #ffffff;
  font-style: normal;
  font-size: 1rem;
}

.jblc-customer-testimonial blockquote, .jblc-customer-testimonial figcaption {
  text-align: center;
}

.jblc-customer-testimonial blockquote {
  padding: 0 0 0 0.5rem;
  border: none;
}

.jblc-customer-testimonial figcaption cite {
  display: inline;
}

.jblc-partners {
  background-color: #2259a5;
  padding: 3.75rem 0;
}

.jblc-partners img {
  margin: 0 0 1.875rem 0;
}

.jblc-branch-map {
  background-color: #2259a5;
  padding: 3.75rem 0;
}

.jblc-branch-map.serif-heading-font h2 {
  font-size: 1.875rem;
  font-family: 'trajan-pro-3', serif;
}

.jblc-branch-map.sans-serif-heading-font h2 {
  font-weight: 600;
}

.jblc-branch-map h2, .jblc-branch-map p {
  color: #ffffff;
}

.jblc-branch-map a {
  background: #12223e;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  display: inline-block;
  text-transform: uppercase;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
}

.jblc-branch-map a i {
  font-size: 0.625rem;
}

.jblc-branch-map + .jblc-carousel {
  margin: 0;
}

.jblc-image-lockup.single img {
  width: 100%;
}

.jblc-image-lockup.multiple .jblc-image-row {
  column-gap: 0;
}

.jblc-image-lockup.multiple .jblc-image-row.column-count-1 {
  columns: 1;
}

.jblc-image-lockup.multiple .jblc-image-row.column-count-2 {
  columns: 2;
}

.jblc-image-lockup.multiple .jblc-image-row.column-count-3 {
  columns: 3;
}

.jblc-image-lockup.multiple .jblc-image-row.column-count-4 {
  columns: 4;
}

.jblc-image-lockup.multiple .jblc-image-row img {
  width: 100%;
}

.jblc-divisions-list {
  background-color: #f8f8f8;
  padding: 1.875rem 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-divisions-list {
    padding: 3.875rem 0;
  }
}

.jblc-divisions-list h2 {
  font-family: 'proxima-nova', sans-serif;
  color: #2259a5;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

@media print, screen and (min-width: 40em) {
  .jblc-divisions-list p {
    margin: 0;
  }
}

.jblc-divisions-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  columns: 2;
}

@media print, screen and (min-width: 40em) {
  .jblc-divisions-list ul {
    columns: 3;
    margin: 0 0 0 1.875rem;
  }
}

.jblc-divisions-list ul li {
  text-align: center;
  margin: 0 0 1.125rem 0;
}

.jblc-divisions-list ul li a {
  display: block;
  padding: 0.5rem 0.9375rem;
  background: #acccf9;
  color: #2259a5;
  font-size: 1rem;
  break-inside: avoid;
  font-weight: 400;
}

.jblc-divisions-list ul li a.internal-link:hover {
  background: #1591fa;
  color: #ffffff;
}

.jblc-divisions-list ul li a.external-link:hover {
  background: #2259a5;
  color: #ffffff;
}

.jblc-divisions-list > a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #ffffff;
  color: #2259a5;
  border: 1px solid #dddddd;
  font-size: 1rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 205px;
  padding: 0.5rem 1rem;
  margin: 1.875rem auto 0;
}

.jblc-divisions-list > a i {
  color: inherit;
  font-size: 0.625rem;
}

.jblc-divisions-list > a:hover {
  background: #2259a5;
  color: #ffffff;
}

.has-tip {
  cursor: pointer;
}

.padding-top-none {
  padding-top: 0;
}

.padding-top-slim {
  padding-top: 0.9375rem;
}

.padding-top-default {
  padding-top: 1.875rem;
}

.padding-top-medium {
  padding-top: 2.8125rem;
}

.padding-top-large {
  padding-top: 3.75rem;
}

.padding-top-extra {
  padding-top: 4.6875rem;
}

.padding-top-extramid {
  padding-top: 5rem;
}

.padding-top-extraplus {
  padding-top: 5.625rem;
}

.padding-bottom-none {
  padding-bottom: 0;
}

.padding-bottom-slim {
  padding-bottom: 0.9375rem;
}

.padding-bottom-default {
  padding-bottom: 1.875rem;
}

.padding-bottom-medium {
  padding-bottom: 2.8125rem;
}

.padding-bottom-large {
  padding-bottom: 3.75rem;
}

.padding-bottom-extra {
  padding-bottom: 4.6875rem;
}

.padding-bottom-extramid {
  padding-bottom: 5rem;
}

.padding-bottom-extraplus {
  padding-bottom: 5.625rem;
}

.margin-top-none {
  margin-top: 0;
}

.margin-top-slim {
  margin-top: 0.9375rem;
}

.margin-top-default {
  margin-top: 1.875rem;
}

.margin-top-medium {
  margin-top: 2.8125rem;
}

.margin-top-large {
  margin-top: 3.75rem;
}

.margin-top-extra {
  margin-top: 4.6875rem;
}

.margin-top-extramid {
  margin-top: 5rem;
}

.margin-top-extraplus {
  margin-top: 5.625rem;
}

.margin-bottom-none {
  margin-bottom: 0;
}

.margin-bottom-slim {
  margin-bottom: 0.9375rem;
}

.margin-bottom-default {
  margin-bottom: 1.875rem;
}

.margin-bottom-medium {
  margin-bottom: 2.8125rem;
}

.margin-bottom-large {
  margin-bottom: 3.75rem;
}

.margin-bottom-extra {
  margin-bottom: 4.6875rem;
}

.margin-bottom-extramid {
  margin-bottom: 5rem;
}

.margin-bottom-extraplus {
  margin-bottom: 5.625rem;
}

/*# sourceMappingURL=style.css.map */
