@charset "UTF-8";

/**
 * Computes a CSS calc function that betweens a value from
 * A to B over viewport-width A to viewport-width B.
 * Requires a media query to cap the value at B.
 *
 * https://css-tricks.com/between-the-lines/
 */

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * Determine what text color should be
 * based on background color provided
 */

/* 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;
  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 {
  -webkit-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;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: "FontAwesome";
  src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0px;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.disabled,
.flatpickr-months .flatpickr-next-month.disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/

/*
      /*rtl:end:ignore*/

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/

/*
      /*rtl:end:ignore*/

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f3f3;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.flatpickr-minute,
.flatpickr-hour {
  border: 0 !important;
}

.flatpickr-hour {
  pointer-events: none;
}

.flatpickr-mobile + .input-group__label,
.flatpickr-time .flatpickr-minute,
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-time-separator + .numInputWrapper {
  display: none !important;
}

.flatpickr-time .numInputWrapper,
.flatpickr-time .numInputWrapper input {
  margin: 0;
}

input.flatpickr-hour {
  width: 212px;
  padding: 0 !important;
}

.arrowUp,
.arrowDown {
  opacity: 1 !important;
  padding: 0 20px 0 20px !important;
}

.arrowUp:after,
.arrowDown:after {
  position: relative;
  margin-left: -2px;
  margin-top: 2px;
}

.flatpickr-current-month .numInputWrapper {
  display: none !important;
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer {
  overflow: visible !important;
}

.link-anchor {
  position: relative;
  width: 0;
  font-size: 0.8em;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.anchor-wrapper {
  border: none;
}

.anchor-wrapper:hover .link-anchor {
  opacity: 1;
}

.popper,
.tooltip {
  position: absolute;
  background: #222;
  color: black;
  width: 350px;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  padding: 10px;
  text-align: center;
  z-index: 99999;
}

.tooltip {
  background: #222 !important;
  color: #FFFFFF !important;
  max-width: 350px !important;
  width: auto;
  font-size: 16px;
  padding: 0.5em 1em;
}

.popper .popper__arrow,
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
}

.tooltip .tooltip-arrow,
.popper .popper__arrow {
  border-color: #222;
}

.tooltip .tooltip-arrow {
  border-color: #222;
}

.popper[x-placement^=top],
.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}

.popper[x-placement^=top] .popper__arrow,
.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.popper[x-placement^=bottom],
.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}

.tooltip[x-placement^=bottom] .tooltip-arrow,
.popper[x-placement^=bottom] .popper__arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^=right],
.popper[x-placement^=right] {
  margin-left: 5px;
}

.popper[x-placement^=right] .popper__arrow,
.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.popper[x-placement^=left],
.tooltip[x-placement^=left] {
  margin-right: 5px;
}

.popper[x-placement^=left] .popper__arrow,
.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tooltip-inner {
  font-family: "proxima-nova", proxima-nova, sans-serif;
}

.tooltip {
  display: block !important;
  transition: visibility 125ms ease-in-out, opacity 125ms ease-in-out;
}

.tooltip[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.tooltip[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    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;
  }
}

#frunt .u-left {
  text-align: left;
}

#frunt .u-centered {
  text-align: center;
}

#frunt .u-right {
  text-align: right;
}

#frunt .u-vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#frunt .u-flex-align {
  display: flex;
  justify-content: center;
  align-items: center;
}

#frunt .u-pull-left {
  float: left;
}

#frunt .u-pull-right {
  float: right;
}

#frunt .u-clearing:before,
#frunt .u-clearing:after {
  content: " ";
  display: table;
}

#frunt .u-clearing:after {
  clear: both;
}

#frunt .u-height-100 {
  min-height: 100px !important;
}

#frunt .u-height-150 {
  min-height: 150px !important;
}

#frunt .u-height-200 {
  min-height: 200px !important;
}

#frunt .u-height-300 {
  min-height: 300px !important;
}

#frunt .u-height-400 {
  min-height: 400px !important;
}

#frunt .u-height-500 {
  min-height: 500px !important;
}

#frunt .u-italic {
  font-style: italic;
}

#frunt .u-text-center {
  text-align: center;
}

#frunt .u-wrapper {
  position: relative;
}

#frunt .u-m-a-0 {
  margin: 0 0 !important;
}

#frunt .u-m-t-0 {
  margin-top: 0 !important;
}

#frunt .u-m-r-0 {
  margin-right: 0 !important;
}

#frunt .u-m-b-0 {
  margin-bottom: 0 !important;
}

#frunt .u-m-l-0 {
  margin-left: 0 !important;
}

#frunt .u-m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

#frunt .u-m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#frunt .u-m-a-1 {
  margin: 1rem 1rem !important;
}

#frunt .u-m-t-1 {
  margin-top: 1rem !important;
}

#frunt .u-m-r-1 {
  margin-right: 1rem !important;
}

#frunt .u-m-b-1 {
  margin-bottom: 1rem !important;
}

#frunt .u-m-l-1 {
  margin-left: 1rem !important;
}

#frunt .u-m-x-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

#frunt .u-m-y-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

#frunt .u-m-a-2 {
  margin: 1.5rem 1.5rem !important;
}

#frunt .u-m-t-2 {
  margin-top: 1.5rem !important;
}

#frunt .u-m-r-2 {
  margin-right: 1.5rem !important;
}

#frunt .u-m-b-2 {
  margin-bottom: 1.5rem !important;
}

#frunt .u-m-l-2 {
  margin-left: 1.5rem !important;
}

#frunt .u-m-x-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

#frunt .u-m-y-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

#frunt .u-m-a-3 {
  margin: 3rem 3rem !important;
}

#frunt .u-m-t-3 {
  margin-top: 3rem !important;
}

#frunt .u-m-r-3 {
  margin-right: 3rem !important;
}

#frunt .u-m-b-3 {
  margin-bottom: 3rem !important;
}

#frunt .u-m-l-3 {
  margin-left: 3rem !important;
}

#frunt .u-m-x-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

#frunt .u-m-y-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

#frunt .u-p-a-0 {
  padding: 0 0 !important;
}

#frunt .u-p-t-0 {
  padding-top: 0 !important;
}

#frunt .u-p-r-0 {
  padding-right: 0 !important;
}

#frunt .u-p-b-0 {
  padding-bottom: 0 !important;
}

#frunt .u-p-l-0 {
  padding-left: 0 !important;
}

#frunt .u-p-x-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

#frunt .u-p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#frunt .u-p-a-1 {
  padding: 1rem 1rem !important;
}

#frunt .u-p-t-1 {
  padding-top: 1rem !important;
}

#frunt .u-p-r-1 {
  padding-right: 1rem !important;
}

#frunt .u-p-b-1 {
  padding-bottom: 1rem !important;
}

#frunt .u-p-l-1 {
  padding-left: 1rem !important;
}

#frunt .u-p-x-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

#frunt .u-p-y-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

#frunt .u-p-a-2 {
  padding: 1.5rem 1.5rem !important;
}

#frunt .u-p-t-2 {
  padding-top: 1.5rem !important;
}

#frunt .u-p-r-2 {
  padding-right: 1.5rem !important;
}

#frunt .u-p-b-2 {
  padding-bottom: 1.5rem !important;
}

#frunt .u-p-l-2 {
  padding-left: 1.5rem !important;
}

#frunt .u-p-x-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

#frunt .u-p-y-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

#frunt .u-p-a-3 {
  padding: 3rem 3rem !important;
}

#frunt .u-p-t-3 {
  padding-top: 3rem !important;
}

#frunt .u-p-r-3 {
  padding-right: 3rem !important;
}

#frunt .u-p-b-3 {
  padding-bottom: 3rem !important;
}

#frunt .u-p-l-3 {
  padding-left: 3rem !important;
}

#frunt .u-p-x-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

#frunt .u-p-y-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

#frunt .u-locked {
  overflow: hidden;
}

#frunt .u-hidden-xs-up {
  display: none !important;
}

@media (max-width: 543.9px) {
  #frunt .u-hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 544px) {
  #frunt .u-hidden-sm-up {
    display: none !important;
  }
}

@media (max-width: 767.9px) {
  #frunt .u-hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  #frunt .u-hidden-md-up {
    display: none !important;
  }
}

@media (max-width: 991.9px) {
  #frunt .u-hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 992px) {
  #frunt .u-hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1199.9px) {
  #frunt .u-hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  #frunt .u-hidden-xl-up {
    display: none !important;
  }
}

#frunt .u-hidden-xl-down {
  display: none !important;
}

#frunt .u-visible-print-block {
  display: none !important;
}

@media print {
  #frunt .u-visible-print-block {
    display: block !important;
  }
}

#frunt .u-visible-print-inline {
  display: none !important;
}

@media print {
  #frunt .u-visible-print-inline {
    display: inline !important;
  }
}

#frunt .u-visible-print-inline-block {
  display: none !important;
}

@media print {
  #frunt .u-visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  #frunt .u-hidden-print {
    display: none !important;
  }
}

#frunt [v-cloak] .v-cloak--block {
  display: block;
}

#frunt [v-cloak] .v-cloak--inline {
  display: inline;
}

#frunt [v-cloak] .v-cloak--inlineBlock {
  display: inline-block;
}

#frunt [v-cloak] .v-cloak--hidden {
  display: none;
}

#frunt [v-cloak] .v-cloak--invisible {
  visibility: hidden;
}

#frunt .v-cloak--block,
#frunt .v-cloak--inline,
#frunt .v-cloak--inlineBlock {
  display: none;
}

@-webkit-keyframes fadeInDownShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDownShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes slideInRightSmall {
  from {
    -webkit-transform: translate3d(20%, 0, 0);
            transform: translate3d(20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRightSmall {
  from {
    -webkit-transform: translate3d(20%, 0, 0);
            transform: translate3d(20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

meta.foundation-version {
  font-family: "/5.5.3/";
}

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0;
}

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0;
}

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em;
}

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  width: 40.0625em;
}

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.0625em)/";
  width: 64.0625em;
}

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  width: 64.0625em;
}

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.0625em)/";
  width: 90.0625em;
}

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  width: 90.0625em;
}

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.0625em)/";
  width: 120.0625em;
}

meta.foundation-data-attribute-namespace {
  font-family: false;
}

html,
body {
  height: 100%;
}

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

html,
body {
  font-size: 100%;
}

body {
  background: #fff;
  color: #222;
  cursor: auto;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

img {
  -ms-interpolation-mode: bicubic;
}

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

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

.row:before,
.row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

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

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

.row .row {
  margin: 0 -0.9375rem;
  max-width: none;
  width: auto;
}

.row .row:before,
.row .row:after {
  content: " ";
  display: table;
}

.row .row:after {
  clear: both;
}

.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}

.row .row.collapse:before,
.row .row.collapse:after {
  content: " ";
  display: table;
}

.row .row.collapse:after {
  clear: both;
}

.column,
.columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left;
}

.column + .column:last-child,
.columns + .column:last-child,
.column + .columns:last-child,
.columns + .columns:last-child {
  float: right;
}

.column + .column.end,
.columns + .column.end,
.column + .columns.end,
.columns + .columns.end {
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }

  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }

  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }

  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }

  .small-1 {
    width: 8.33333%;
  }

  .small-2 {
    width: 16.66667%;
  }

  .small-3 {
    width: 25%;
  }

  .small-4 {
    width: 33.33333%;
  }

  .small-5 {
    width: 41.66667%;
  }

  .small-6 {
    width: 50%;
  }

  .small-7 {
    width: 58.33333%;
  }

  .small-8 {
    width: 66.66667%;
  }

  .small-9 {
    width: 75%;
  }

  .small-10 {
    width: 83.33333%;
  }

  .small-11 {
    width: 91.66667%;
  }

  .small-12 {
    width: 100%;
  }

  .small-offset-0 {
    margin-left: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }

  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }

  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }

  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }

  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }

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

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

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

@media only screen and (min-width: 40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }

  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }

  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }

  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }

  .medium-1 {
    width: 8.33333%;
  }

  .medium-2 {
    width: 16.66667%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-4 {
    width: 33.33333%;
  }

  .medium-5 {
    width: 41.66667%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-7 {
    width: 58.33333%;
  }

  .medium-8 {
    width: 66.66667%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-10 {
    width: 83.33333%;
  }

  .medium-11 {
    width: 91.66667%;
  }

  .medium-12 {
    width: 100%;
  }

  .medium-offset-0 {
    margin-left: 0 !important;
  }

  .medium-offset-1 {
    margin-left: 8.33333% !important;
  }

  .medium-offset-2 {
    margin-left: 16.66667% !important;
  }

  .medium-offset-3 {
    margin-left: 25% !important;
  }

  .medium-offset-4 {
    margin-left: 33.33333% !important;
  }

  .medium-offset-5 {
    margin-left: 41.66667% !important;
  }

  .medium-offset-6 {
    margin-left: 50% !important;
  }

  .medium-offset-7 {
    margin-left: 58.33333% !important;
  }

  .medium-offset-8 {
    margin-left: 66.66667% !important;
  }

  .medium-offset-9 {
    margin-left: 75% !important;
  }

  .medium-offset-10 {
    margin-left: 83.33333% !important;
  }

  .medium-offset-11 {
    margin-left: 91.66667% !important;
  }

  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }

  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }

  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }

  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }

  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }

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

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

  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }

  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }

  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }

  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }

  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }

  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }

  .large-1 {
    width: 8.33333%;
  }

  .large-2 {
    width: 16.66667%;
  }

  .large-3 {
    width: 25%;
  }

  .large-4 {
    width: 33.33333%;
  }

  .large-5 {
    width: 41.66667%;
  }

  .large-6 {
    width: 50%;
  }

  .large-7 {
    width: 58.33333%;
  }

  .large-8 {
    width: 66.66667%;
  }

  .large-9 {
    width: 75%;
  }

  .large-10 {
    width: 83.33333%;
  }

  .large-11 {
    width: 91.66667%;
  }

  .large-12 {
    width: 100%;
  }

  .large-offset-0 {
    margin-left: 0 !important;
  }

  .large-offset-1 {
    margin-left: 8.33333% !important;
  }

  .large-offset-2 {
    margin-left: 16.66667% !important;
  }

  .large-offset-3 {
    margin-left: 25% !important;
  }

  .large-offset-4 {
    margin-left: 33.33333% !important;
  }

  .large-offset-5 {
    margin-left: 41.66667% !important;
  }

  .large-offset-6 {
    margin-left: 50% !important;
  }

  .large-offset-7 {
    margin-left: 58.33333% !important;
  }

  .large-offset-8 {
    margin-left: 66.66667% !important;
  }

  .large-offset-9 {
    margin-left: 75% !important;
  }

  .large-offset-10 {
    margin-left: 83.33333% !important;
  }

  .large-offset-11 {
    margin-left: 91.66667% !important;
  }

  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }

  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }

  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }

  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }

  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }

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

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

  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }

  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }

  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
}

button,
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  background-color: #008CBA;
  border-color: #007095;
  color: #FFFFFF;
  transition: background-color 300ms ease-out;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  background-color: #007095;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  color: #FFFFFF;
}

button.secondary,
.button.secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333333;
}

button.secondary:hover,
button.secondary:focus,
.button.secondary:hover,
.button.secondary:focus {
  background-color: #b9b9b9;
}

button.secondary:hover,
button.secondary:focus,
.button.secondary:hover,
.button.secondary:focus {
  color: #333333;
}

button.success,
.button.success {
  background-color: #43AC6A;
  border-color: #368a55;
  color: #FFFFFF;
}

button.success:hover,
button.success:focus,
.button.success:hover,
.button.success:focus {
  background-color: #368a55;
}

button.success:hover,
button.success:focus,
.button.success:hover,
.button.success:focus {
  color: #FFFFFF;
}

button.alert,
.button.alert {
  background-color: #f04124;
  border-color: #cf2a0e;
  color: #FFFFFF;
}

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

button.alert:hover,
button.alert:focus,
.button.alert:hover,
.button.alert:focus {
  color: #FFFFFF;
}

button.warning,
.button.warning {
  background-color: #f08a24;
  border-color: #cf6e0e;
  color: #FFFFFF;
}

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

button.warning:hover,
button.warning:focus,
.button.warning:hover,
.button.warning:focus {
  color: #FFFFFF;
}

button.info,
.button.info {
  background-color: #a0d3e8;
  border-color: #61b6d9;
  color: #333333;
}

button.info:hover,
button.info:focus,
.button.info:hover,
.button.info:focus {
  background-color: #61b6d9;
}

button.info:hover,
button.info:focus,
.button.info:hover,
.button.info:focus {
  color: #FFFFFF;
}

button.large,
.button.large {
  padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  font-size: 1.25rem;
}

button.small,
.button.small {
  padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  font-size: 0.8125rem;
}

button.tiny,
.button.tiny {
  padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  font-size: 0.6875rem;
}

button.expand,
.button.expand {
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  padding-bottom: 1.0625rem;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

button.left-align,
.button.left-align {
  text-align: left;
  text-indent: 0.75rem;
}

button.right-align,
.button.right-align {
  text-align: right;
  padding-right: 0.75rem;
}

button.radius,
.button.radius {
  border-radius: 3px;
}

button.round,
.button.round {
  border-radius: 1000px;
}

button.disabled,
button[disabled],
.button.disabled,
.button[disabled] {
  background-color: #008CBA;
  border-color: #007095;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

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

button.disabled:hover,
button.disabled:focus,
button[disabled]:hover,
button[disabled]:focus,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled]:hover,
.button[disabled]:focus {
  color: #FFFFFF;
}

button.disabled:hover,
button.disabled:focus,
button[disabled]:hover,
button[disabled]:focus,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled]:hover,
.button[disabled]:focus {
  background-color: #008CBA;
}

button.disabled.secondary,
button[disabled].secondary,
.button.disabled.secondary,
.button[disabled].secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333333;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

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

button.disabled.secondary:hover,
button.disabled.secondary:focus,
button[disabled].secondary:hover,
button[disabled].secondary:focus,
.button.disabled.secondary:hover,
.button.disabled.secondary:focus,
.button[disabled].secondary:hover,
.button[disabled].secondary:focus {
  color: #333333;
}

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

button.disabled.success,
button[disabled].success,
.button.disabled.success,
.button[disabled].success {
  background-color: #43AC6A;
  border-color: #368a55;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.success:hover,
button.disabled.success:focus,
button[disabled].success:hover,
button[disabled].success:focus,
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success:hover,
.button[disabled].success:focus {
  background-color: #368a55;
}

button.disabled.success:hover,
button.disabled.success:focus,
button[disabled].success:hover,
button[disabled].success:focus,
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success:hover,
.button[disabled].success:focus {
  color: #FFFFFF;
}

button.disabled.success:hover,
button.disabled.success:focus,
button[disabled].success:hover,
button[disabled].success:focus,
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success:hover,
.button[disabled].success:focus {
  background-color: #43AC6A;
}

button.disabled.alert,
button[disabled].alert,
.button.disabled.alert,
.button[disabled].alert {
  background-color: #f04124;
  border-color: #cf2a0e;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

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

button.disabled.alert:hover,
button.disabled.alert:focus,
button[disabled].alert:hover,
button[disabled].alert:focus,
.button.disabled.alert:hover,
.button.disabled.alert:focus,
.button[disabled].alert:hover,
.button[disabled].alert:focus {
  color: #FFFFFF;
}

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

button.disabled.warning,
button[disabled].warning,
.button.disabled.warning,
.button[disabled].warning {
  background-color: #f08a24;
  border-color: #cf6e0e;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

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

button.disabled.warning:hover,
button.disabled.warning:focus,
button[disabled].warning:hover,
button[disabled].warning:focus,
.button.disabled.warning:hover,
.button.disabled.warning:focus,
.button[disabled].warning:hover,
.button[disabled].warning:focus {
  color: #FFFFFF;
}

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

button.disabled.info,
button[disabled].info,
.button.disabled.info,
.button[disabled].info {
  background-color: #a0d3e8;
  border-color: #61b6d9;
  color: #333333;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.info:hover,
button.disabled.info:focus,
button[disabled].info:hover,
button[disabled].info:focus,
.button.disabled.info:hover,
.button.disabled.info:focus,
.button[disabled].info:hover,
.button[disabled].info:focus {
  background-color: #61b6d9;
}

button.disabled.info:hover,
button.disabled.info:focus,
button[disabled].info:hover,
button[disabled].info:focus,
.button.disabled.info:hover,
.button.disabled.info:focus,
.button[disabled].info:hover,
.button[disabled].info:focus {
  color: #FFFFFF;
}

button.disabled.info:hover,
button.disabled.info:focus,
button[disabled].info:hover,
button[disabled].info:focus,
.button.disabled.info:hover,
.button.disabled.info:focus,
.button[disabled].info:hover,
.button[disabled].info:focus {
  background-color: #a0d3e8;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

@media only screen and (min-width: 40.0625em) {
  button,
  .button {
    display: inline-block;
  }
}

/* Standard Forms */

form {
  margin: 0 0 1rem;
}

/* Using forms within rows, we need to set some defaults */

form .row .row {
  margin: 0 -0.5rem;
}

form .row .row .column,
form .row .row .columns {
  padding: 0 0.5rem;
}

form .row .row.collapse {
  margin: 0;
}

form .row .row.collapse .column,
form .row .row.collapse .columns {
  padding: 0;
}

form .row .row.collapse input {
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.5rem;
}

/* Label Styles */

label {
  color: #4d4d4d;
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
  /* Styles for required inputs */
}

label.right {
  float: none !important;
  text-align: right;
}

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

label small {
  text-transform: capitalize;
  color: #676767;
}

/* Attach elements to the beginning or end of an input */

.prefix,
.postfix {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
  overflow: visible;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

/* Adjust padding, alignment and radius if pre/post element is a button */

.postfix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

/* Separate prefix and postfix styles when on span or label so buttons keep their own */

span.prefix,
label.prefix {
  background: #f2f2f2;
  border-right: none;
  color: #333333;
  border-color: #cccccc;
}

span.postfix,
label.postfix {
  background: #f2f2f2;
  border-left: none;
  color: #333333;
  border-color: #cccccc;
}

/* We use this to get basic styling on all basic form elements */

input:not([type]),
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: 0.875rem;
  height: 2.3125rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s linear, background 0.15s linear;
}

input:not([type]):focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=color]:focus,
textarea:focus {
  background: #fafafa;
  border-color: #999999;
  outline: none;
}

input:not([type]):disabled,
input[type=text]:disabled,
input[type=password]:disabled,
input[type=date]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=time]:disabled,
input[type=url]:disabled,
input[type=color]:disabled,
textarea:disabled {
  background-color: #DDDDDD;
  cursor: default;
}

input:not([type])[disabled],
input:not([type])[readonly],
fieldset[disabled] input:not([type]),
input[type=text][disabled],
input[type=text][readonly],
fieldset[disabled] input[type=text],
input[type=password][disabled],
input[type=password][readonly],
fieldset[disabled] input[type=password],
input[type=date][disabled],
input[type=date][readonly],
fieldset[disabled] input[type=date],
input[type=datetime][disabled],
input[type=datetime][readonly],
fieldset[disabled] input[type=datetime],
input[type=datetime-local][disabled],
input[type=datetime-local][readonly],
fieldset[disabled] input[type=datetime-local],
input[type=month][disabled],
input[type=month][readonly],
fieldset[disabled] input[type=month],
input[type=week][disabled],
input[type=week][readonly],
fieldset[disabled] input[type=week],
input[type=email][disabled],
input[type=email][readonly],
fieldset[disabled] input[type=email],
input[type=number][disabled],
input[type=number][readonly],
fieldset[disabled] input[type=number],
input[type=search][disabled],
input[type=search][readonly],
fieldset[disabled] input[type=search],
input[type=tel][disabled],
input[type=tel][readonly],
fieldset[disabled] input[type=tel],
input[type=time][disabled],
input[type=time][readonly],
fieldset[disabled] input[type=time],
input[type=url][disabled],
input[type=url][readonly],
fieldset[disabled] input[type=url],
input[type=color][disabled],
input[type=color][readonly],
fieldset[disabled] input[type=color],
textarea[disabled],
textarea[readonly],
fieldset[disabled] textarea {
  background-color: #DDDDDD;
  cursor: default;
}

input:not([type]).radius,
input[type=text].radius,
input[type=password].radius,
input[type=date].radius,
input[type=datetime].radius,
input[type=datetime-local].radius,
input[type=month].radius,
input[type=week].radius,
input[type=email].radius,
input[type=number].radius,
input[type=search].radius,
input[type=tel].radius,
input[type=time].radius,
input[type=url].radius,
input[type=color].radius,
textarea.radius {
  border-radius: 3px;
}

form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse textarea,
form .row .prefix-radius.row.collapse select,
form .row .prefix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse textarea,
form .row .postfix-radius.row.collapse select,
form .row .postfix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse textarea,
form .row .prefix-round.row.collapse select,
form .row .prefix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse textarea,
form .row .postfix-round.row.collapse select,
form .row .postfix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

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

/* Respect enforced amount of rows for textarea */

textarea[rows] {
  height: auto;
}

/* Not allow resize out of parent */

textarea {
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #666666;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #666666;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #666666;
}

:-ms-input-placeholder {
  color: #666666;
}

/* Add height value for select elements to match text input height */

select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #FAFAFA;
  border-radius: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  color: rgba(0, 0, 0, 0.75);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: normal;
  padding: 0.5rem;
  border-radius: 0;
  height: 2.3125rem;
}

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

select.radius {
  border-radius: 3px;
}

select:focus {
  background-color: #f3f3f3;
  border-color: #999999;
}

select:disabled {
  background-color: #DDDDDD;
  cursor: default;
}

select[multiple] {
  height: auto;
}

/* Adjust margin for form elements below */

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

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

/* Normalize file input width */

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

/* HTML5 Number spinners settings */

/* We add basic fieldset styling */

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

fieldset legend {
  font-weight: bold;
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

/* Error Handling */

[data-abide] .error small.error,
[data-abide] .error span.error,
[data-abide] span.error,
[data-abide] small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

[data-abide] span.error,
[data-abide] small.error {
  display: none;
}

span.error,
small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

.error input,
.error textarea,
.error select {
  margin-bottom: 0;
}

.error input[type=checkbox],
.error input[type=radio] {
  margin-bottom: 1rem;
}

.error label,
.error label.error {
  color: #f04124;
}

.error small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

.error > label > small {
  background: transparent;
  color: #676767;
  display: inline;
  font-size: 60%;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

.error span.error-message {
  display: block;
}

input.error,
textarea.error,
select.error {
  margin-bottom: 0;
}

label.error {
  color: #f04124;
}

meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em;
}

/* Wrapped around .top-bar to contain to grid width */

.contain-to-grid {
  width: 100%;
  background: #333333;
}

.contain-to-grid .top-bar {
  margin-bottom: 0;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  left: 0;
}

.fixed.expanded:not(.top-bar) {
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
}

.fixed.expanded:not(.top-bar) .title-area {
  position: fixed;
  width: 100%;
  z-index: 99;
}

.fixed.expanded:not(.top-bar) .top-bar-section {
  margin-top: 2.8125rem;
  z-index: 98;
}

.top-bar {
  background: #333333;
  height: 2.8125rem;
  line-height: 2.8125rem;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

.top-bar ul {
  list-style: none;
  margin-bottom: 0;
}

.top-bar .row {
  max-width: none;
}

.top-bar form,
.top-bar input,
.top-bar select {
  margin-bottom: 0;
}

.top-bar input,
.top-bar select {
  font-size: 0.75rem;
  height: 1.75rem;
  padding-bottom: 0.35rem;
  padding-top: 0.35rem;
}

.top-bar .button,
.top-bar button {
  font-size: 0.75rem;
  margin-bottom: 0;
  padding-bottom: 0.4125rem;
  padding-top: 0.4125rem;
}

@media only screen and (max-width: 40em) {
  .top-bar .button,
  .top-bar button {
    position: relative;
    top: -1px;
  }
}

.top-bar .title-area {
  margin: 0;
  position: relative;
}

.top-bar .name {
  font-size: 16px;
  height: 2.8125rem;
  margin: 0;
}

.top-bar .name h1,
.top-bar .name h2,
.top-bar .name h3,
.top-bar .name h4,
.top-bar .name p,
.top-bar .name span {
  font-size: 1.0625rem;
  line-height: 2.8125rem;
  margin: 0;
}

.top-bar .name h1 a,
.top-bar .name h2 a,
.top-bar .name h3 a,
.top-bar .name h4 a,
.top-bar .name p a,
.top-bar .name span a {
  color: #FFFFFF;
  display: block;
  font-weight: normal;
  padding: 0 0.9375rem;
  width: 75%;
}

.top-bar .toggle-topbar {
  position: absolute;
  right: 0;
  top: 0;
}

.top-bar .toggle-topbar a {
  color: #FFFFFF;
  display: block;
  font-size: 0.8125rem;
  font-weight: bold;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 0.9375rem;
  position: relative;
  text-transform: uppercase;
}

.top-bar .toggle-topbar.menu-icon {
  margin-top: -16px;
  top: 50%;
}

.top-bar .toggle-topbar.menu-icon a {
  color: #FFFFFF;
  height: 34px;
  line-height: 33px;
  padding: 0 2.5rem 0 0.9375rem;
  position: relative;
}

.top-bar .toggle-topbar.menu-icon a span::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  margin-top: -8px;
  top: 50%;
  right: 0.9375rem;
  box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  width: 16px;
}

.top-bar .toggle-topbar.menu-icon a span:hover:after {
  box-shadow: 0 0 0 1px "", 0 7px 0 1px "", 0 14px 0 1px "";
}

.top-bar.expanded {
  background: transparent;
  height: auto;
}

.top-bar.expanded .title-area {
  background: #333333;
}

.top-bar.expanded .toggle-topbar a {
  color: #888888;
}

.top-bar.expanded .toggle-topbar a span::after {
  box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .top-bar.expanded .top-bar-section .has-dropdown.moved > .dropdown,
  .top-bar.expanded .top-bar-section .dropdown {
    clip: initial;
  }

  .top-bar.expanded .top-bar-section .has-dropdown:not(.moved) > ul {
    padding: 0;
  }
}

.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  transition: left 300ms ease-out;
}

.top-bar-section ul {
  display: block;
  font-size: 16px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

.top-bar-section .divider,
.top-bar-section [role=separator] {
  border-top: solid 1px #1a1a1a;
  clear: both;
  height: 1px;
  width: 100%;
}

.top-bar-section ul li {
  background: #333333;
}

.top-bar-section ul li > a {
  color: #FFFFFF;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: normal;
  padding-left: 0.9375rem;
  padding: 12px 0 12px 0.9375rem;
  text-transform: none;
  width: 100%;
}

.top-bar-section ul li > a.button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #008CBA;
  border-color: #007095;
  color: #FFFFFF;
}

.top-bar-section ul li > a.button:hover,
.top-bar-section ul li > a.button:focus {
  background-color: #007095;
}

.top-bar-section ul li > a.button:hover,
.top-bar-section ul li > a.button:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333333;
}

.top-bar-section ul li > a.button.secondary:hover,
.top-bar-section ul li > a.button.secondary:focus {
  background-color: #b9b9b9;
}

.top-bar-section ul li > a.button.secondary:hover,
.top-bar-section ul li > a.button.secondary:focus {
  color: #333333;
}

.top-bar-section ul li > a.button.success {
  background-color: #43AC6A;
  border-color: #368a55;
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.success:hover,
.top-bar-section ul li > a.button.success:focus {
  background-color: #368a55;
}

.top-bar-section ul li > a.button.success:hover,
.top-bar-section ul li > a.button.success:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.alert {
  background-color: #f04124;
  border-color: #cf2a0e;
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.alert:hover,
.top-bar-section ul li > a.button.alert:focus {
  background-color: #cf2a0e;
}

.top-bar-section ul li > a.button.alert:hover,
.top-bar-section ul li > a.button.alert:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.warning {
  background-color: #f08a24;
  border-color: #cf6e0e;
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.warning:hover,
.top-bar-section ul li > a.button.warning:focus {
  background-color: #cf6e0e;
}

.top-bar-section ul li > a.button.warning:hover,
.top-bar-section ul li > a.button.warning:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.info {
  background-color: #a0d3e8;
  border-color: #61b6d9;
  color: #333333;
}

.top-bar-section ul li > a.button.info:hover,
.top-bar-section ul li > a.button.info:focus {
  background-color: #61b6d9;
}

.top-bar-section ul li > a.button.info:hover,
.top-bar-section ul li > a.button.info:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #008CBA;
  border-color: #007095;
  color: #FFFFFF;
}

.top-bar-section ul li > button:hover,
.top-bar-section ul li > button:focus {
  background-color: #007095;
}

.top-bar-section ul li > button:hover,
.top-bar-section ul li > button:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333333;
}

.top-bar-section ul li > button.secondary:hover,
.top-bar-section ul li > button.secondary:focus {
  background-color: #b9b9b9;
}

.top-bar-section ul li > button.secondary:hover,
.top-bar-section ul li > button.secondary:focus {
  color: #333333;
}

.top-bar-section ul li > button.success {
  background-color: #43AC6A;
  border-color: #368a55;
  color: #FFFFFF;
}

.top-bar-section ul li > button.success:hover,
.top-bar-section ul li > button.success:focus {
  background-color: #368a55;
}

.top-bar-section ul li > button.success:hover,
.top-bar-section ul li > button.success:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.alert {
  background-color: #f04124;
  border-color: #cf2a0e;
  color: #FFFFFF;
}

.top-bar-section ul li > button.alert:hover,
.top-bar-section ul li > button.alert:focus {
  background-color: #cf2a0e;
}

.top-bar-section ul li > button.alert:hover,
.top-bar-section ul li > button.alert:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.warning {
  background-color: #f08a24;
  border-color: #cf6e0e;
  color: #FFFFFF;
}

.top-bar-section ul li > button.warning:hover,
.top-bar-section ul li > button.warning:focus {
  background-color: #cf6e0e;
}

.top-bar-section ul li > button.warning:hover,
.top-bar-section ul li > button.warning:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.info {
  background-color: #a0d3e8;
  border-color: #61b6d9;
  color: #333333;
}

.top-bar-section ul li > button.info:hover,
.top-bar-section ul li > button.info:focus {
  background-color: #61b6d9;
}

.top-bar-section ul li > button.info:hover,
.top-bar-section ul li > button.info:focus {
  color: #FFFFFF;
}

.top-bar-section ul li:hover:not(.has-form) > a {
  background-color: #555555;
  color: #FFFFFF;
  background: #222222;
}

.top-bar-section ul li.active > a {
  background: #008CBA;
  color: #FFFFFF;
}

.top-bar-section ul li.active > a:hover {
  background: #0078a0;
  color: #FFFFFF;
}

.top-bar-section .has-form {
  padding: 0.9375rem;
}

.top-bar-section .has-dropdown {
  position: relative;
}

.top-bar-section .has-dropdown > a:after {
  border: inset 5px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  border-left-style: solid;
  margin-right: 0.9375rem;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  right: 0;
}

.top-bar-section .has-dropdown.moved {
  position: static;
}

.top-bar-section .has-dropdown.moved > .dropdown {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
  display: block;
  position: absolute !important;
  width: 100%;
}

.top-bar-section .has-dropdown.moved > a:after {
  display: none;
}

.top-bar-section .dropdown {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  display: block;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 99;
  left: 100%;
}

.top-bar-section .dropdown li {
  height: auto;
  width: 100%;
}

.top-bar-section .dropdown li a {
  font-weight: normal;
  padding: 8px 0.9375rem;
}

.top-bar-section .dropdown li a.parent-link {
  font-weight: normal;
}

.top-bar-section .dropdown li.title h5,
.top-bar-section .dropdown li.parent-link {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.125rem;
}

.top-bar-section .dropdown li.title h5 a,
.top-bar-section .dropdown li.parent-link a {
  color: #FFFFFF;
  display: block;
}

.top-bar-section .dropdown li.title h5 a:hover,
.top-bar-section .dropdown li.parent-link a:hover {
  background: none;
}

.top-bar-section .dropdown li.has-form {
  padding: 8px 0.9375rem;
}

.top-bar-section .dropdown li .button,
.top-bar-section .dropdown li button {
  top: auto;
}

.top-bar-section .dropdown label {
  color: #777777;
  font-size: 0.625rem;
  font-weight: bold;
  margin-bottom: 0;
  padding: 8px 0.9375rem 2px;
  text-transform: uppercase;
}

.js-generated {
  display: block;
}

@media only screen and (min-width: 40.0625em) {
  .top-bar {
    background: #333333;
    overflow: visible;
  }

  .top-bar:before,
  .top-bar:after {
    content: " ";
    display: table;
  }

  .top-bar:after {
    clear: both;
  }

  .top-bar .toggle-topbar {
    display: none;
  }

  .top-bar .title-area {
    float: left;
  }

  .top-bar .name h1 a,
  .top-bar .name h2 a,
  .top-bar .name h3 a,
  .top-bar .name h4 a,
  .top-bar .name h5 a,
  .top-bar .name h6 a {
    width: auto;
  }

  .top-bar input,
  .top-bar select,
  .top-bar .button,
  .top-bar button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }

  .top-bar .has-form > .button,
  .top-bar .has-form > button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }

  .top-bar.expanded {
    background: #333333;
  }

  .contain-to-grid .top-bar {
    margin: 0 auto;
    margin-bottom: 0;
    max-width: 62.5rem;
  }

  .top-bar-section {
    transition: none 0 0;
    left: 0 !important;
  }

  .top-bar-section ul {
    display: inline;
    height: auto !important;
    width: auto;
  }

  .top-bar-section ul li {
    float: left;
  }

  .top-bar-section ul li .js-generated {
    display: none;
  }

  .top-bar-section li.hover > a:not(.button) {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }

  .top-bar-section li:not(.has-form) a:not(.button) {
    background: #333333;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }

  .top-bar-section li:not(.has-form) a:not(.button):hover {
    background-color: #555555;
    background: #222222;
  }

  .top-bar-section li.active:not(.has-form) a:not(.button) {
    background: #008CBA;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }

  .top-bar-section li.active:not(.has-form) a:not(.button):hover {
    background: #0078a0;
    color: #FFFFFF;
  }

  .top-bar-section .has-dropdown > a {
    padding-right: 2.1875rem !important;
  }

  .top-bar-section .has-dropdown > a:after {
    border: inset 5px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
    border-top-style: solid;
    margin-top: -2.5px;
    top: 1.40625rem;
  }

  .top-bar-section .has-dropdown.moved {
    position: relative;
  }

  .top-bar-section .has-dropdown.moved > .dropdown {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    display: block;
  }

  .top-bar-section .has-dropdown.hover > .dropdown,
  .top-bar-section .has-dropdown.not-click:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }

  .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }

  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
    border: none;
    content: "\BB";
    top: 0.1875rem;
    right: 5px;
  }

  .top-bar-section .dropdown {
    left: 0;
    background: transparent;
    min-width: 100%;
    top: auto;
  }

  .top-bar-section .dropdown li a {
    background: #333333;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 12px 0.9375rem;
    white-space: nowrap;
  }

  .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
    background: #333333;
    color: #FFFFFF;
  }

  .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
    background-color: #555555;
    color: #FFFFFF;
    background: #222222;
  }

  .top-bar-section .dropdown li label {
    background: #333333;
    white-space: nowrap;
  }

  .top-bar-section .dropdown li .dropdown {
    left: 100%;
    top: 0;
  }

  .top-bar-section > ul > .divider,
  .top-bar-section > ul > [role=separator] {
    border-right: solid 1px #4e4e4e;
    border-bottom: none;
    border-top: none;
    clear: none;
    height: 2.8125rem;
    width: 0;
  }

  .top-bar-section .has-form {
    background: #333333;
    height: 2.8125rem;
    padding: 0 0.9375rem;
  }

  .top-bar-section .right li .dropdown {
    left: auto;
    right: 0;
  }

  .top-bar-section .right li .dropdown li .dropdown {
    right: 100%;
  }

  .top-bar-section .left li .dropdown {
    right: auto;
    left: 0;
  }

  .top-bar-section .left li .dropdown li .dropdown {
    left: 100%;
  }

  .no-js .top-bar-section ul li:hover > a {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }

  .no-js .top-bar-section ul li:active > a {
    background: #008CBA;
    color: #FFFFFF;
  }

  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }

  .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
}

.breadcrumbs {
  border-style: solid;
  border-width: 1px;
  display: block;
  list-style: none;
  margin-left: 0;
  overflow: hidden;
  padding: 0.5625rem 0.875rem 0.5625rem;
  background-color: #f4f4f4;
  border-color: gainsboro;
  border-radius: 3px;
}

.breadcrumbs > * {
  color: #008CBA;
  float: left;
  font-size: 0.6875rem;
  line-height: 0.6875rem;
  margin: 0;
  text-transform: uppercase;
}

.breadcrumbs > *:hover a,
.breadcrumbs > *:focus a {
  text-decoration: underline;
}

.breadcrumbs > * a {
  color: #008CBA;
}

.breadcrumbs > *.current {
  color: #333333;
  cursor: default;
}

.breadcrumbs > *.current a {
  color: #333333;
  cursor: default;
}

.breadcrumbs > *.current:hover,
.breadcrumbs > *.current:hover a,
.breadcrumbs > *.current:focus,
.breadcrumbs > *.current:focus a {
  text-decoration: none;
}

.breadcrumbs > *.unavailable {
  color: #999999;
}

.breadcrumbs > *.unavailable a {
  color: #999999;
}

.breadcrumbs > *.unavailable:hover,
.breadcrumbs > *.unavailable:hover a,
.breadcrumbs > *.unavailable:focus,
.breadcrumbs > *.unavailable a:focus {
  color: #999999;
  cursor: not-allowed;
  text-decoration: none;
}

.breadcrumbs > *:before {
  color: #AAAAAA;
  content: "/";
  margin: 0 0.75rem;
  position: relative;
  top: 1px;
}

.breadcrumbs > *:first-child:before {
  content: " ";
  margin: 0;
}

/* Accessibility - hides the forward slash */

[aria-label=breadcrumbs] [aria-hidden=true]:after {
  content: "/";
}

.alert-box {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.8125rem;
  font-weight: normal;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  position: relative;
  transition: opacity 300ms ease-out;
  background-color: #008CBA;
  border-color: #0078a0;
  color: #FFFFFF;
}

.alert-box .close {
  right: 0.25rem;
  background: inherit;
  color: #333333;
  font-size: 1.375rem;
  line-height: 0.9;
  margin-top: -0.6875rem;
  opacity: 0.3;
  padding: 0 6px 4px;
  position: absolute;
  top: 50%;
}

.alert-box .close:hover,
.alert-box .close:focus {
  opacity: 0.5;
}

.alert-box.radius {
  border-radius: 3px;
}

.alert-box.round {
  border-radius: 1000px;
}

.alert-box.success {
  background-color: #43AC6A;
  border-color: #3a945b;
  color: #FFFFFF;
}

.alert-box.alert {
  background-color: #f04124;
  border-color: #de2d0f;
  color: #FFFFFF;
}

.alert-box.secondary {
  background-color: #e7e7e7;
  border-color: #c7c7c7;
  color: #4f4f4f;
}

.alert-box.warning {
  background-color: #f08a24;
  border-color: #de770f;
  color: #FFFFFF;
}

.alert-box.info {
  background-color: #a0d3e8;
  border-color: #74bfdd;
  color: #4f4f4f;
}

.alert-box.alert-close {
  opacity: 0;
}

.inline-list {
  list-style: none;
  margin-top: 0;
  margin-bottom: 1.0625rem;
  margin-left: -1.375rem;
  margin-right: 0;
  overflow: hidden;
  padding: 0;
}

.inline-list > li {
  display: block;
  float: left;
  list-style: none;
  margin-left: 1.375rem;
}

.inline-list > li > * {
  display: block;
}

.button-group {
  list-style: none;
  margin: 0;
  left: 0;
}

.button-group:before,
.button-group:after {
  content: " ";
  display: table;
}

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

.button-group.even-2 li {
  display: inline-block;
  margin: 0 -2px;
  width: 50%;
}

.button-group.even-2 li > button,
.button-group.even-2 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.even-2 li:first-child button,
.button-group.even-2 li:first-child .button {
  border-left: 0;
}

.button-group.even-2 li button,
.button-group.even-2 li .button {
  width: 100%;
}

.button-group.even-3 li {
  display: inline-block;
  margin: 0 -2px;
  width: 33.33333%;
}

.button-group.even-3 li > button,
.button-group.even-3 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.even-3 li:first-child button,
.button-group.even-3 li:first-child .button {
  border-left: 0;
}

.button-group.even-3 li button,
.button-group.even-3 li .button {
  width: 100%;
}

.button-group.even-4 li {
  display: inline-block;
  margin: 0 -2px;
  width: 25%;
}

.button-group.even-4 li > button,
.button-group.even-4 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.even-4 li:first-child button,
.button-group.even-4 li:first-child .button {
  border-left: 0;
}

.button-group.even-4 li button,
.button-group.even-4 li .button {
  width: 100%;
}

.button-group.even-5 li {
  display: inline-block;
  margin: 0 -2px;
  width: 20%;
}

.button-group.even-5 li > button,
.button-group.even-5 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.even-5 li:first-child button,
.button-group.even-5 li:first-child .button {
  border-left: 0;
}

.button-group.even-5 li button,
.button-group.even-5 li .button {
  width: 100%;
}

.button-group.even-6 li {
  display: inline-block;
  margin: 0 -2px;
  width: 16.66667%;
}

.button-group.even-6 li > button,
.button-group.even-6 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.even-6 li:first-child button,
.button-group.even-6 li:first-child .button {
  border-left: 0;
}

.button-group.even-6 li button,
.button-group.even-6 li .button {
  width: 100%;
}

.button-group.even-7 li {
  display: inline-block;
  margin: 0 -2px;
  width: 14.28571%;
}

.button-group.even-7 li > button,
.button-group.even-7 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.even-7 li:first-child button,
.button-group.even-7 li:first-child .button {
  border-left: 0;
}

.button-group.even-7 li button,
.button-group.even-7 li .button {
  width: 100%;
}

.button-group.even-8 li {
  display: inline-block;
  margin: 0 -2px;
  width: 12.5%;
}

.button-group.even-8 li > button,
.button-group.even-8 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.even-8 li:first-child button,
.button-group.even-8 li:first-child .button {
  border-left: 0;
}

.button-group.even-8 li button,
.button-group.even-8 li .button {
  width: 100%;
}

.button-group > li {
  display: inline-block;
  margin: 0 -2px;
}

.button-group > li > button,
.button-group > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group > li:first-child button,
.button-group > li:first-child .button {
  border-left: 0;
}

.button-group.stack > li {
  display: block;
  margin: 0;
  float: none;
}

.button-group.stack > li > button,
.button-group.stack > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.stack > li:first-child button,
.button-group.stack > li:first-child .button {
  border-left: 0;
}

.button-group.stack > li > button,
.button-group.stack > li .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}

.button-group.stack > li > button {
  width: 100%;
}

.button-group.stack > li:first-child button,
.button-group.stack > li:first-child .button {
  border-top: 0;
}

.button-group.stack-for-small > li {
  display: inline-block;
  margin: 0 -2px;
}

.button-group.stack-for-small > li > button,
.button-group.stack-for-small > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.stack-for-small > li:first-child button,
.button-group.stack-for-small > li:first-child .button {
  border-left: 0;
}

@media only screen and (max-width: 40em) {
  .button-group.stack-for-small > li {
    display: block;
    margin: 0;
    width: 100%;
  }

  .button-group.stack-for-small > li > button,
  .button-group.stack-for-small > li .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .button-group.stack-for-small > li:first-child button,
  .button-group.stack-for-small > li:first-child .button {
    border-left: 0;
  }

  .button-group.stack-for-small > li > button,
  .button-group.stack-for-small > li .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }

  .button-group.stack-for-small > li > button {
    width: 100%;
  }

  .button-group.stack-for-small > li:first-child button,
  .button-group.stack-for-small > li:first-child .button {
    border-top: 0;
  }
}

.button-group.radius > * {
  display: inline-block;
  margin: 0 -2px;
}

.button-group.radius > * > button,
.button-group.radius > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.button-group.radius > *,
.button-group.radius > * > a,
.button-group.radius > * > button,
.button-group.radius > * > .button {
  border-radius: 0;
}

.button-group.radius > *:first-child,
.button-group.radius > *:first-child > a,
.button-group.radius > *:first-child > button,
.button-group.radius > *:first-child > .button {
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.button-group.radius > *:last-child,
.button-group.radius > *:last-child > a,
.button-group.radius > *:last-child > button,
.button-group.radius > *:last-child > .button {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.button-group.radius.stack > * {
  display: block;
  margin: 0;
}

.button-group.radius.stack > * > button,
.button-group.radius.stack > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.button-group.radius.stack > * > button,
.button-group.radius.stack > * .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}

.button-group.radius.stack > * > button {
  width: 100%;
}

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

.button-group.radius.stack > *,
.button-group.radius.stack > * > a,
.button-group.radius.stack > * > button,
.button-group.radius.stack > * > .button {
  border-radius: 0;
}

.button-group.radius.stack > *:first-child,
.button-group.radius.stack > *:first-child > a,
.button-group.radius.stack > *:first-child > button,
.button-group.radius.stack > *:first-child > .button {
  -webkit-top-left-radius: 3px;
  -webkit-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.button-group.radius.stack > *:last-child,
.button-group.radius.stack > *:last-child > a,
.button-group.radius.stack > *:last-child > button,
.button-group.radius.stack > *:last-child > .button {
  -webkit-bottom-left-radius: 3px;
  -webkit-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

@media only screen and (min-width: 40.0625em) {
  .button-group.radius.stack-for-small > * {
    display: inline-block;
    margin: 0 -2px;
  }

  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .button-group.radius.stack-for-small > *:first-child button,
  .button-group.radius.stack-for-small > *:first-child .button {
    border-left: 0;
  }

  .button-group.radius.stack-for-small > *,
  .button-group.radius.stack-for-small > * > a,
  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * > .button {
    border-radius: 0;
  }

  .button-group.radius.stack-for-small > *:first-child,
  .button-group.radius.stack-for-small > *:first-child > a,
  .button-group.radius.stack-for-small > *:first-child > button,
  .button-group.radius.stack-for-small > *:first-child > .button {
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
  }

  .button-group.radius.stack-for-small > *:last-child,
  .button-group.radius.stack-for-small > *:last-child > a,
  .button-group.radius.stack-for-small > *:last-child > button,
  .button-group.radius.stack-for-small > *:last-child > .button {
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
  }
}

@media only screen and (max-width: 40em) {
  .button-group.radius.stack-for-small > * {
    display: block;
    margin: 0;
  }

  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .button-group.radius.stack-for-small > *:first-child button,
  .button-group.radius.stack-for-small > *:first-child .button {
    border-left: 0;
  }

  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }

  .button-group.radius.stack-for-small > * > button {
    width: 100%;
  }

  .button-group.radius.stack-for-small > *:first-child button,
  .button-group.radius.stack-for-small > *:first-child .button {
    border-top: 0;
  }

  .button-group.radius.stack-for-small > *,
  .button-group.radius.stack-for-small > * > a,
  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * > .button {
    border-radius: 0;
  }

  .button-group.radius.stack-for-small > *:first-child,
  .button-group.radius.stack-for-small > *:first-child > a,
  .button-group.radius.stack-for-small > *:first-child > button,
  .button-group.radius.stack-for-small > *:first-child > .button {
    -webkit-top-left-radius: 3px;
    -webkit-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }

  .button-group.radius.stack-for-small > *:last-child,
  .button-group.radius.stack-for-small > *:last-child > a,
  .button-group.radius.stack-for-small > *:last-child > button,
  .button-group.radius.stack-for-small > *:last-child > .button {
    -webkit-bottom-left-radius: 3px;
    -webkit-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
}

.button-group.round > * {
  display: inline-block;
  margin: 0 -2px;
}

.button-group.round > * > button,
.button-group.round > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.round > *:first-child button,
.button-group.round > *:first-child .button {
  border-left: 0;
}

.button-group.round > *,
.button-group.round > * > a,
.button-group.round > * > button,
.button-group.round > * > .button {
  border-radius: 0;
}

.button-group.round > *:first-child,
.button-group.round > *:first-child > a,
.button-group.round > *:first-child > button,
.button-group.round > *:first-child > .button {
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

.button-group.round > *:last-child,
.button-group.round > *:last-child > a,
.button-group.round > *:last-child > button,
.button-group.round > *:last-child > .button {
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

.button-group.round.stack > * {
  display: block;
  margin: 0;
}

.button-group.round.stack > * > button,
.button-group.round.stack > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-group.round.stack > *:first-child button,
.button-group.round.stack > *:first-child .button {
  border-left: 0;
}

.button-group.round.stack > * > button,
.button-group.round.stack > * .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}

.button-group.round.stack > * > button {
  width: 100%;
}

.button-group.round.stack > *:first-child button,
.button-group.round.stack > *:first-child .button {
  border-top: 0;
}

.button-group.round.stack > *,
.button-group.round.stack > * > a,
.button-group.round.stack > * > button,
.button-group.round.stack > * > .button {
  border-radius: 0;
}

.button-group.round.stack > *:first-child,
.button-group.round.stack > *:first-child > a,
.button-group.round.stack > *:first-child > button,
.button-group.round.stack > *:first-child > .button {
  -webkit-top-left-radius: 1rem;
  -webkit-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.button-group.round.stack > *:last-child,
.button-group.round.stack > *:last-child > a,
.button-group.round.stack > *:last-child > button,
.button-group.round.stack > *:last-child > .button {
  -webkit-bottom-left-radius: 1rem;
  -webkit-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media only screen and (min-width: 40.0625em) {
  .button-group.round.stack-for-small > * {
    display: inline-block;
    margin: 0 -2px;
  }

  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .button-group.round.stack-for-small > *:first-child button,
  .button-group.round.stack-for-small > *:first-child .button {
    border-left: 0;
  }

  .button-group.round.stack-for-small > *,
  .button-group.round.stack-for-small > * > a,
  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * > .button {
    border-radius: 0;
  }

  .button-group.round.stack-for-small > *:first-child,
  .button-group.round.stack-for-small > *:first-child > a,
  .button-group.round.stack-for-small > *:first-child > button,
  .button-group.round.stack-for-small > *:first-child > .button {
    -webkit-border-bottom-left-radius: 1000px;
    -webkit-border-top-left-radius: 1000px;
    border-bottom-left-radius: 1000px;
    border-top-left-radius: 1000px;
  }

  .button-group.round.stack-for-small > *:last-child,
  .button-group.round.stack-for-small > *:last-child > a,
  .button-group.round.stack-for-small > *:last-child > button,
  .button-group.round.stack-for-small > *:last-child > .button {
    -webkit-border-bottom-right-radius: 1000px;
    -webkit-border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
    border-top-right-radius: 1000px;
  }
}

@media only screen and (max-width: 40em) {
  .button-group.round.stack-for-small > * {
    display: block;
    margin: 0;
  }

  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .button-group.round.stack-for-small > *:first-child button,
  .button-group.round.stack-for-small > *:first-child .button {
    border-left: 0;
  }

  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }

  .button-group.round.stack-for-small > * > button {
    width: 100%;
  }

  .button-group.round.stack-for-small > *:first-child button,
  .button-group.round.stack-for-small > *:first-child .button {
    border-top: 0;
  }

  .button-group.round.stack-for-small > *,
  .button-group.round.stack-for-small > * > a,
  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * > .button {
    border-radius: 0;
  }

  .button-group.round.stack-for-small > *:first-child,
  .button-group.round.stack-for-small > *:first-child > a,
  .button-group.round.stack-for-small > *:first-child > button,
  .button-group.round.stack-for-small > *:first-child > .button {
    -webkit-top-left-radius: 1rem;
    -webkit-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .button-group.round.stack-for-small > *:last-child,
  .button-group.round.stack-for-small > *:last-child > a,
  .button-group.round.stack-for-small > *:last-child > button,
  .button-group.round.stack-for-small > *:last-child > .button {
    -webkit-bottom-left-radius: 1rem;
    -webkit-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}

.button-bar:before,
.button-bar:after {
  content: " ";
  display: table;
}

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

.button-bar .button-group {
  float: left;
  margin-right: 0.625rem;
}

.button-bar .button-group div {
  overflow: hidden;
}

/* Panels */

.panel {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #f2f2f2;
  color: #333333;
}

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

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

.panel h1,
.panel h2,
.panel h3,
.panel h4,
.panel h5,
.panel h6,
.panel p,
.panel li,
.panel dl {
  color: #333333;
}

.panel h1,
.panel h2,
.panel h3,
.panel h4,
.panel h5,
.panel h6 {
  line-height: 1;
  margin-bottom: 0.625rem;
}

.panel h1.subheader,
.panel h2.subheader,
.panel h3.subheader,
.panel h4.subheader,
.panel h5.subheader,
.panel h6.subheader {
  line-height: 1.4;
}

.panel.callout {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #ecfaff;
  color: #333333;
}

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

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

.panel.callout h1,
.panel.callout h2,
.panel.callout h3,
.panel.callout h4,
.panel.callout h5,
.panel.callout h6,
.panel.callout p,
.panel.callout li,
.panel.callout dl {
  color: #333333;
}

.panel.callout h1,
.panel.callout h2,
.panel.callout h3,
.panel.callout h4,
.panel.callout h5,
.panel.callout h6 {
  line-height: 1;
  margin-bottom: 0.625rem;
}

.panel.callout h1.subheader,
.panel.callout h2.subheader,
.panel.callout h3.subheader,
.panel.callout h4.subheader,
.panel.callout h5.subheader,
.panel.callout h6.subheader {
  line-height: 1.4;
}

.panel.callout a:not(.button) {
  color: #008CBA;
}

.panel.callout a:not(.button):hover,
.panel.callout a:not(.button):focus {
  color: #0078a0;
}

.panel.radius {
  border-radius: 3px;
}

.dropdown.button,
button.dropdown {
  position: relative;
  padding-right: 3.5625rem;
}

.dropdown.button::after,
button.dropdown::after {
  border-color: #FFFFFF transparent transparent transparent;
  border-style: solid;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  width: 0;
}

.dropdown.button::after,
button.dropdown::after {
  border-width: 0.375rem;
  right: 1.40625rem;
  margin-top: -0.15625rem;
}

.dropdown.button::after,
button.dropdown::after {
  border-color: #FFFFFF transparent transparent transparent;
}

.dropdown.button.tiny,
button.dropdown.tiny {
  padding-right: 2.625rem;
}

.dropdown.button.tiny:after,
button.dropdown.tiny:after {
  border-width: 0.375rem;
  right: 1.125rem;
  margin-top: -0.125rem;
}

.dropdown.button.tiny::after,
button.dropdown.tiny::after {
  border-color: #FFFFFF transparent transparent transparent;
}

.dropdown.button.small,
button.dropdown.small {
  padding-right: 3.0625rem;
}

.dropdown.button.small::after,
button.dropdown.small::after {
  border-width: 0.4375rem;
  right: 1.3125rem;
  margin-top: -0.15625rem;
}

.dropdown.button.small::after,
button.dropdown.small::after {
  border-color: #FFFFFF transparent transparent transparent;
}

.dropdown.button.large,
button.dropdown.large {
  padding-right: 3.625rem;
}

.dropdown.button.large::after,
button.dropdown.large::after {
  border-width: 0.3125rem;
  right: 1.71875rem;
  margin-top: -0.15625rem;
}

.dropdown.button.large::after,
button.dropdown.large::after {
  border-color: #FFFFFF transparent transparent transparent;
}

.dropdown.button.secondary:after,
button.dropdown.secondary:after {
  border-color: #333333 transparent transparent transparent;
}

/* Image Thumbnails */

.th {
  border: solid 4px #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: all 200ms ease-out;
}

.th:hover,
.th:focus {
  box-shadow: 0 0 6px 1px rgba(0, 140, 186, 0.5);
}

.th.radius {
  border-radius: 3px;
}

/* Pricing Tables */

.pricing-table {
  border: solid 1px #DDDDDD;
  margin-left: 0;
  margin-bottom: 1.25rem;
}

.pricing-table * {
  list-style: none;
  line-height: 1;
}

.pricing-table .title {
  background-color: #333333;
  color: #EEEEEE;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.9375rem 1.25rem;
  text-align: center;
}

.pricing-table .price {
  background-color: #F6F6F6;
  color: #333333;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 2rem;
  font-weight: normal;
  padding: 0.9375rem 1.25rem;
  text-align: center;
}

.pricing-table .description {
  background-color: #FFFFFF;
  border-bottom: dotted 1px #DDDDDD;
  color: #777777;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.4;
  padding: 0.9375rem;
  text-align: center;
}

.pricing-table .bullet-item {
  background-color: #FFFFFF;
  border-bottom: dotted 1px #DDDDDD;
  color: #333333;
  font-size: 0.875rem;
  font-weight: normal;
  padding: 0.9375rem;
  text-align: center;
}

.pricing-table .cta-button {
  background-color: #FFFFFF;
  padding: 1.25rem 1.25rem 0;
  text-align: center;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Orbit Graceful Loading */

.slideshow-wrapper {
  position: relative;
}

.slideshow-wrapper ul {
  list-style-type: none;
  margin: 0;
}

.slideshow-wrapper ul li,
.slideshow-wrapper ul li .orbit-caption {
  display: none;
}

.slideshow-wrapper ul li:first-child {
  display: block;
}

.slideshow-wrapper .orbit-container {
  background-color: transparent;
}

.slideshow-wrapper .orbit-container li {
  display: block;
}

.slideshow-wrapper .orbit-container li .orbit-caption {
  display: block;
}

.slideshow-wrapper .orbit-container .orbit-bullets li {
  display: inline-block;
}

.slideshow-wrapper .preloader {
  border-radius: 1000px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  border-color: #555555 #FFFFFF;
  border: solid 3px;
  display: block;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  width: 40px;
}

.orbit-container {
  background: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.orbit-container .orbit-slides-container {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.orbit-container .orbit-slides-container img {
  display: block;
  max-width: 100%;
}

.orbit-container .orbit-slides-container > * {
  position: absolute;
  top: 0;
  width: 100%;
  margin-left: 100%;
}

.orbit-container .orbit-slides-container > *:first-child {
  margin-left: 0;
}

.orbit-container .orbit-slides-container > * .orbit-caption {
  bottom: 0;
  position: absolute;
  background-color: rgba(51, 51, 51, 0.8);
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  width: 100%;
}

.orbit-container .orbit-slide-number {
  left: 10px;
  background: transparent;
  color: #FFFFFF;
  font-size: 12px;
  position: absolute;
  top: 10px;
  z-index: 10;
}

.orbit-container .orbit-slide-number span {
  font-weight: 700;
  padding: 0.3125rem;
}

.orbit-container .orbit-timer {
  position: absolute;
  top: 12px;
  right: 10px;
  height: 6px;
  width: 100px;
  z-index: 10;
}

.orbit-container .orbit-timer .orbit-progress {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  width: 0;
  position: relative;
  right: 20px;
  top: 5px;
}

.orbit-container .orbit-timer > span {
  border: solid 4px #FFFFFF;
  border-bottom: none;
  border-top: none;
  display: none;
  height: 14px;
  position: absolute;
  top: 0;
  width: 11px;
  right: 0;
}

.orbit-container .orbit-timer.paused > span {
  top: 0;
  width: 11px;
  height: 14px;
  border: inset 8px;
  border-left-style: solid;
  border-color: transparent;
  border-left-color: #FFFFFF;
  right: -4px;
}

.orbit-container .orbit-timer.paused > span.dark {
  border-left-color: #333333;
}

.orbit-container:hover .orbit-timer > span {
  display: block;
}

.orbit-container .orbit-prev,
.orbit-container .orbit-next {
  background-color: transparent;
  color: white;
  height: 60px;
  line-height: 50px;
  margin-top: -25px;
  position: absolute;
  text-indent: -9999px !important;
  top: 45%;
  width: 36px;
  z-index: 10;
}

.orbit-container .orbit-prev:hover,
.orbit-container .orbit-next:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.orbit-container .orbit-prev > span,
.orbit-container .orbit-next > span {
  border: inset 10px;
  display: block;
  height: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 0;
}

.orbit-container .orbit-prev {
  left: 0;
}

.orbit-container .orbit-prev > span {
  border-right-style: solid;
  border-color: transparent;
  border-right-color: #FFFFFF;
}

.orbit-container .orbit-prev:hover > span {
  border-right-color: #FFFFFF;
}

.orbit-container .orbit-next {
  right: 0;
}

.orbit-container .orbit-next > span {
  border-color: transparent;
  border-left-style: solid;
  border-left-color: #FFFFFF;
  left: 50%;
  margin-left: -4px;
}

.orbit-container .orbit-next:hover > span {
  border-left-color: #FFFFFF;
}

.orbit-bullets-container {
  text-align: center;
}

.orbit-bullets {
  display: block;
  float: none;
  margin: 0 auto 30px auto;
  overflow: hidden;
  position: relative;
  text-align: center;
  top: 10px;
}

.orbit-bullets li {
  background: #CCCCCC;
  cursor: pointer;
  display: inline-block;
  float: none;
  height: 0.5625rem;
  margin-right: 6px;
  width: 0.5625rem;
  border-radius: 1000px;
}

.orbit-bullets li.active {
  background: #999999;
}

.orbit-bullets li:last-child {
  margin-right: 0;
}

.touch .orbit-container .orbit-prev,
.touch .orbit-container .orbit-next {
  display: none;
}

.touch .orbit-bullets {
  display: none;
}

@media only screen and (min-width: 40.0625em) {
  .touch .orbit-container .orbit-prev,
  .touch .orbit-container .orbit-next {
    display: inherit;
  }

  .touch .orbit-bullets {
    display: block;
  }
}

@media only screen and (max-width: 40em) {
  .orbit-stack-on-small .orbit-slides-container {
    height: auto !important;
  }

  .orbit-stack-on-small .orbit-slides-container > * {
    margin: 0 !important;
    opacity: 1 !important;
    position: relative;
  }

  .orbit-stack-on-small .orbit-slide-number {
    display: none;
  }

  .orbit-timer {
    display: none;
  }

  .orbit-next,
  .orbit-prev {
    display: none;
  }

  .orbit-bullets {
    display: none;
  }
}

[data-magellan-expedition],
[data-magellan-expedition-clone] {
  background: #FFFFFF;
  min-width: 100%;
  padding: 10px;
  z-index: 50;
}

[data-magellan-expedition] .sub-nav,
[data-magellan-expedition-clone] .sub-nav {
  margin-bottom: 0;
}

[data-magellan-expedition] .sub-nav dd,
[data-magellan-expedition-clone] .sub-nav dd {
  margin-bottom: 0;
}

[data-magellan-expedition] .sub-nav a,
[data-magellan-expedition-clone] .sub-nav a {
  line-height: 1.8em;
}

.icon-bar {
  display: inline-block;
  font-size: 0;
  width: 100%;
  background: #333333;
}

.icon-bar > * {
  display: block;
  float: left;
  font-size: 1rem;
  margin: 0 auto;
  padding: 1.25rem;
  text-align: center;
  width: 25%;
}

.icon-bar > * i,
.icon-bar > * img {
  display: block;
  margin: 0 auto;
}

.icon-bar > * i + label,
.icon-bar > * img + label {
  margin-top: 0.0625rem;
}

.icon-bar > * i {
  font-size: 1.875rem;
  vertical-align: middle;
}

.icon-bar > * img {
  height: 1.875rem;
  width: 1.875rem;
}

.icon-bar.label-right > * i,
.icon-bar.label-right > * img {
  display: inline-block;
  margin: 0 0.0625rem 0 0;
}

.icon-bar.label-right > * i + label,
.icon-bar.label-right > * img + label {
  margin-top: 0;
}

.icon-bar.label-right > * label {
  display: inline-block;
}

.icon-bar.vertical.label-right > * {
  text-align: left;
}

.icon-bar.vertical,
.icon-bar.small-vertical {
  height: 100%;
  width: auto;
}

.icon-bar.vertical .item,
.icon-bar.small-vertical .item {
  float: none;
  margin: auto;
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.medium-vertical {
    height: 100%;
    width: auto;
  }

  .icon-bar.medium-vertical .item {
    float: none;
    margin: auto;
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.large-vertical {
    height: 100%;
    width: auto;
  }

  .icon-bar.large-vertical .item {
    float: none;
    margin: auto;
    width: auto;
  }
}

.icon-bar > * {
  font-size: 1rem;
  padding: 1.25rem;
}

.icon-bar > * i + label,
.icon-bar > * img + label {
  margin-top: 0.0625rem;
  font-size: 1rem;
}

.icon-bar > * i {
  font-size: 1.875rem;
}

.icon-bar > * img {
  height: 1.875rem;
  width: 1.875rem;
}

.icon-bar > * label {
  color: #FFFFFF;
}

.icon-bar > * i {
  color: #FFFFFF;
}

.icon-bar > a:hover {
  background: #008CBA;
}

.icon-bar > a:hover label {
  color: #FFFFFF;
}

.icon-bar > a:hover i {
  color: #FFFFFF;
}

.icon-bar > a.active {
  background: #008CBA;
}

.icon-bar > a.active label {
  color: #FFFFFF;
}

.icon-bar > a.active i {
  color: #FFFFFF;
}

.icon-bar .item.disabled {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.icon-bar .item.disabled > * {
  opacity: 0.7;
  cursor: not-allowed;
}

.icon-bar.two-up .item {
  width: 50%;
}

.icon-bar.two-up.vertical .item,
.icon-bar.two-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.two-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.two-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.three-up .item {
  width: 33.3333%;
}

.icon-bar.three-up.vertical .item,
.icon-bar.three-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.three-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.three-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.four-up .item {
  width: 25%;
}

.icon-bar.four-up.vertical .item,
.icon-bar.four-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.four-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.four-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.five-up .item {
  width: 20%;
}

.icon-bar.five-up.vertical .item,
.icon-bar.five-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.five-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.five-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.six-up .item {
  width: 16.66667%;
}

.icon-bar.six-up.vertical .item,
.icon-bar.six-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.six-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.six-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.seven-up .item {
  width: 14.28571%;
}

.icon-bar.seven-up.vertical .item,
.icon-bar.seven-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.seven-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.seven-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.eight-up .item {
  width: 12.5%;
}

.icon-bar.eight-up.vertical .item,
.icon-bar.eight-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.eight-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.eight-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.two-up .item {
  width: 50%;
}

.icon-bar.two-up.vertical .item,
.icon-bar.two-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.two-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.two-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.three-up .item {
  width: 33.3333%;
}

.icon-bar.three-up.vertical .item,
.icon-bar.three-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.three-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.three-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.four-up .item {
  width: 25%;
}

.icon-bar.four-up.vertical .item,
.icon-bar.four-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.four-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.four-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.five-up .item {
  width: 20%;
}

.icon-bar.five-up.vertical .item,
.icon-bar.five-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.five-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.five-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.six-up .item {
  width: 16.66667%;
}

.icon-bar.six-up.vertical .item,
.icon-bar.six-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.six-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.six-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.seven-up .item {
  width: 14.28571%;
}

.icon-bar.seven-up.vertical .item,
.icon-bar.seven-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.seven-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.seven-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.eight-up .item {
  width: 12.5%;
}

.icon-bar.eight-up.vertical .item,
.icon-bar.eight-up.small-vertical .item {
  width: auto;
}

@media only screen and (min-width: 40.0625em) {
  .icon-bar.eight-up.medium-vertical .item {
    width: auto;
  }
}

@media only screen and (min-width: 64.0625em) {
  .icon-bar.eight-up.large-vertical .item {
    width: auto;
  }
}

.tabs {
  margin-bottom: 0 !important;
  margin-left: 0;
}

.tabs:before,
.tabs:after {
  content: " ";
  display: table;
}

.tabs:after {
  clear: both;
}

.tabs dd,
.tabs .tab-title {
  float: left;
  list-style: none;
  margin-bottom: 0 !important;
  position: relative;
}

.tabs dd > a,
.tabs .tab-title > a {
  display: block;
  background-color: #EFEFEF;
  color: #222222;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.tabs dd > a:hover,
.tabs .tab-title > a:hover {
  background-color: #e1e1e1;
}

.tabs dd.active > a,
.tabs .tab-title.active > a {
  background-color: #FFFFFF;
  color: #222222;
}

.tabs.radius dd:first-child a,
.tabs.radius .tab:first-child a {
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.tabs.radius dd:last-child a,
.tabs.radius .tab:last-child a {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.tabs.vertical dd,
.tabs.vertical .tab-title {
  position: inherit;
  float: none;
  display: block;
  top: auto;
}

.tabs-content {
  margin-bottom: 1.5rem;
  width: 100%;
}

.tabs-content:before,
.tabs-content:after {
  content: " ";
  display: table;
}

.tabs-content:after {
  clear: both;
}

.tabs-content > .content {
  display: none;
  float: left;
  padding: 0.9375rem 0;
  width: 100%;
}

.tabs-content > .content.active {
  display: block;
  float: none;
}

.tabs-content > .content.contained {
  padding: 0.9375rem;
}

.tabs-content.vertical {
  display: block;
}

.tabs-content.vertical > .content {
  padding: 0 0.9375rem;
}

@media only screen and (min-width: 40.0625em) {
  .tabs.vertical {
    float: left;
    margin: 0;
    margin-bottom: 1.25rem !important;
    max-width: 20%;
    width: 20%;
  }

  .tabs-content.vertical {
    float: left;
    margin-left: -1px;
    max-width: 80%;
    padding-left: 1rem;
    width: 80%;
  }
}

.no-js .tabs-content > .content {
  display: block;
  float: none;
}

ul.pagination {
  display: block;
  margin-left: -0.3125rem;
  min-height: 1.5rem;
}

ul.pagination li {
  color: #222222;
  font-size: 0.875rem;
  height: 1.5rem;
  margin-left: 0.3125rem;
}

ul.pagination li a,
ul.pagination li button {
  border-radius: 3px;
  transition: background-color 300ms ease-out;
  background: none;
  color: #999999;
  display: block;
  font-size: 1em;
  font-weight: normal;
  line-height: inherit;
  padding: 0.0625rem 0.625rem 0.0625rem;
}

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

ul.pagination li.unavailable a,
ul.pagination li.unavailable button {
  cursor: default;
  color: #999999;
  pointer-events: none;
}

ul.pagination li.unavailable:hover a,
ul.pagination li.unavailable a:focus,
ul.pagination li.unavailable:hover button,
ul.pagination li.unavailable button:focus {
  background: transparent;
}

ul.pagination li.current a,
ul.pagination li.current button {
  background: #008CBA;
  color: #FFFFFF;
  cursor: default;
  font-weight: bold;
}

ul.pagination li.current a:hover,
ul.pagination li.current a:focus,
ul.pagination li.current button:hover,
ul.pagination li.current button:focus {
  background: #008CBA;
}

ul.pagination li {
  display: block;
  float: left;
}

/* Pagination centred wrapper */

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

.pagination-centered ul.pagination li {
  display: inline-block;
  float: none;
}

.side-nav {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  padding: 0.875rem 0;
}

.side-nav li {
  font-size: 0.875rem;
  font-weight: normal;
  margin: 0 0 0.4375rem 0;
}

.side-nav li a:not(.button) {
  color: #008CBA;
  display: block;
  margin: 0;
  padding: 0.4375rem 0.875rem;
}

.side-nav li a:not(.button):hover,
.side-nav li a:not(.button):focus {
  background: rgba(0, 0, 0, 0.025);
  color: #1cc7ff;
}

.side-nav li a:not(.button):active {
  color: #1cc7ff;
}

.side-nav li.active > a:first-child:not(.button) {
  color: #1cc7ff;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
}

.side-nav li.divider {
  border-top: 1px solid;
  height: 0;
  list-style: none;
  padding: 0;
  border-top-color: #e6e6e6;
}

.side-nav li.heading {
  color: #008CBA;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}

.accordion {
  margin-bottom: 0;
  margin-left: 0;
}

.accordion:before,
.accordion:after {
  content: " ";
  display: table;
}

.accordion:after {
  clear: both;
}

.accordion .accordion-navigation,
.accordion dd {
  display: block;
  margin-bottom: 0 !important;
}

.accordion .accordion-navigation.active > a,
.accordion dd.active > a {
  background: #e8e8e8;
  color: #222222;
}

.accordion .accordion-navigation > a,
.accordion dd > a {
  background: #EFEFEF;
  color: #222222;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  padding: 1rem;
}

.accordion .accordion-navigation > a:hover,
.accordion dd > a:hover {
  background: #e3e3e3;
}

.accordion .accordion-navigation > .content,
.accordion dd > .content {
  display: none;
  padding: 0.9375rem;
}

.accordion .accordion-navigation > .content.active,
.accordion dd > .content.active {
  background: #FFFFFF;
  display: block;
}

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

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

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

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

@media only screen and (max-width: 40em) {
  .small-only-text-left {
    text-align: left !important;
  }

  .small-only-text-right {
    text-align: right !important;
  }

  .small-only-text-center {
    text-align: center !important;
  }

  .small-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen {
  .small-text-left {
    text-align: left !important;
  }

  .small-text-right {
    text-align: right !important;
  }

  .small-text-center {
    text-align: center !important;
  }

  .small-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  .medium-only-text-left {
    text-align: left !important;
  }

  .medium-only-text-right {
    text-align: right !important;
  }

  .medium-only-text-center {
    text-align: center !important;
  }

  .medium-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 40.0625em) {
  .medium-text-left {
    text-align: left !important;
  }

  .medium-text-right {
    text-align: right !important;
  }

  .medium-text-center {
    text-align: center !important;
  }

  .medium-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  .large-only-text-left {
    text-align: left !important;
  }

  .large-only-text-right {
    text-align: right !important;
  }

  .large-only-text-center {
    text-align: center !important;
  }

  .large-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 64.0625em) {
  .large-text-left {
    text-align: left !important;
  }

  .large-text-right {
    text-align: right !important;
  }

  .large-text-center {
    text-align: center !important;
  }

  .large-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  .xlarge-only-text-left {
    text-align: left !important;
  }

  .xlarge-only-text-right {
    text-align: right !important;
  }

  .xlarge-only-text-center {
    text-align: center !important;
  }

  .xlarge-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 90.0625em) {
  .xlarge-text-left {
    text-align: left !important;
  }

  .xlarge-text-right {
    text-align: right !important;
  }

  .xlarge-text-center {
    text-align: center !important;
  }

  .xlarge-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  .xxlarge-only-text-left {
    text-align: left !important;
  }

  .xxlarge-only-text-right {
    text-align: right !important;
  }

  .xxlarge-only-text-center {
    text-align: center !important;
  }

  .xxlarge-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 120.0625em) {
  .xxlarge-text-left {
    text-align: left !important;
  }

  .xxlarge-text-right {
    text-align: right !important;
  }

  .xxlarge-text-center {
    text-align: center !important;
  }

  .xxlarge-text-justify {
    text-align: justify !important;
  }
}

/* Typography resets */

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

/* Default Link Styles */

a {
  color: #008CBA;
  line-height: inherit;
  text-decoration: none;
}

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

a img {
  border: none;
}

/* Default paragraph styles */

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

p.lead {
  font-size: 1.21875rem;
  line-height: 1.6;
}

p aside {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.35;
}

/* Default header styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222222;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  text-rendering: optimizeLegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #6f6f6f;
  font-size: 60%;
  line-height: 0;
}

h1 {
  font-size: 2.125rem;
}

h2 {
  font-size: 1.6875rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

hr {
  border: solid #DDDDDD;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  margin: 1.25rem 0 1.1875rem;
}

/* Helpful Typography Defaults */

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

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

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

code {
  background-color: #f8f8f8;
  border-color: #dfdfdf;
  border-style: solid;
  border-width: 1px;
  color: #333333;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

/* Lists */

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

ul {
  margin-left: 1.1rem;
}

/* Unordered Lists */

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

ul.square li ul,
ul.circle li ul,
ul.disc li ul {
  list-style: inherit;
}

ul.square {
  list-style-type: square;
  margin-left: 1.1rem;
}

ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem;
}

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

/* Ordered Lists */

ol {
  margin-left: 1.4rem;
}

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

.no-bullet {
  list-style-type: none;
  margin-left: 0;
}

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

/* Definition Lists */

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

dl dd {
  margin-bottom: 0.75rem;
}

/* Abbreviations */

abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #222;
  cursor: help;
}

abbr {
  text-transform: none;
}

abbr[title] {
  border-bottom: 1px dotted #DDDDDD;
}

/* Blockquotes */

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

blockquote cite {
  display: block;
  font-size: 0.8125rem;
  color: #555555;
}

blockquote cite:before {
  content: "\2014   ";
}

blockquote cite a,
blockquote cite a:visited {
  color: #555555;
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #6f6f6f;
}

/* Microformats */

.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #DDDDDD;
  padding: 0.625rem 0.75rem;
}

.vcard li {
  margin: 0;
  display: block;
}

.vcard .fn {
  font-weight: bold;
  font-size: 0.9375rem;
}

.vevent .summary {
  font-weight: bold;
}

.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0 0.0625rem;
}

@media only screen and (min-width: 40.0625em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.3125rem;
  }

  h3 {
    font-size: 1.6875rem;
  }

  h4 {
    font-size: 1.4375rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  h6 {
    font-size: 1rem;
  }
}

/*
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/

@media print {
  * {
    background: transparent !important;
    color: #000000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

@page {
    margin: 0.34in;
}

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.split.button {
  position: relative;
  padding-right: 5.0625rem;
}

.split.button span {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: solid 1px;
}

.split.button span:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-style: inset;
  top: 50%;
  left: 50%;
}

.split.button span:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.split.button span {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.split.button span {
  width: 3.09375rem;
}

.split.button span:after {
  border-top-style: solid;
  border-width: 0.375rem;
  margin-left: -0.375rem;
  top: 48%;
}

.split.button span:after {
  border-color: #FFFFFF transparent transparent transparent;
}

.split.button.secondary span {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.split.button.secondary span:after {
  border-color: #FFFFFF transparent transparent transparent;
}

.split.button.alert span {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.split.button.success span {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.split.button.tiny {
  padding-right: 3.75rem;
}

.split.button.tiny span {
  width: 2.25rem;
}

.split.button.tiny span:after {
  border-top-style: solid;
  border-width: 0.375rem;
  margin-left: -0.375rem;
  top: 48%;
}

.split.button.small {
  padding-right: 4.375rem;
}

.split.button.small span {
  width: 2.625rem;
}

.split.button.small span:after {
  border-top-style: solid;
  border-width: 0.4375rem;
  margin-left: -0.375rem;
  top: 48%;
}

.split.button.large {
  padding-right: 5.5rem;
}

.split.button.large span {
  width: 3.4375rem;
}

.split.button.large span:after {
  border-top-style: solid;
  border-width: 0.3125rem;
  margin-left: -0.375rem;
  top: 48%;
}

.split.button.expand {
  padding-left: 2rem;
}

.split.button.secondary span:after {
  border-color: #333333 transparent transparent transparent;
}

.split.button.radius span {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.split.button.round span {
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

.split.button.no-pip span:before {
  border-style: none;
}

.split.button.no-pip span:after {
  border-style: none;
}

.split.button.no-pip span > i {
  display: block;
  left: 50%;
  margin-left: -0.28889em;
  margin-top: -0.48889em;
  position: absolute;
  top: 50%;
}

.reveal-modal-bg {
  background: #000000;
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004;
  left: 0;
}

.reveal-modal {
  border-radius: 3px;
  display: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1005;
  left: 0;
  background-color: #FFFFFF;
  padding: 1.875rem;
  border: solid 1px #666666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 40em) {
  .reveal-modal {
    min-height: 100vh;
  }
}

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

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

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

@media only screen and (min-width: 40.0625em) {
  .reveal-modal {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 80%;
  }
}

@media only screen and (min-width: 40.0625em) {
  .reveal-modal {
    top: 6.25rem;
  }
}

.reveal-modal.radius {
  box-shadow: none;
  border-radius: 3px;
}

.reveal-modal.round {
  box-shadow: none;
  border-radius: 1000px;
}

.reveal-modal.collapse {
  padding: 0;
  box-shadow: none;
}

@media only screen and (min-width: 40.0625em) {
  .reveal-modal.tiny {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 30%;
  }
}

@media only screen and (min-width: 40.0625em) {
  .reveal-modal.small {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 40%;
  }
}

@media only screen and (min-width: 40.0625em) {
  .reveal-modal.medium {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 60%;
  }
}

@media only screen and (min-width: 40.0625em) {
  .reveal-modal.large {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 70%;
  }
}

@media only screen and (min-width: 40.0625em) {
  .reveal-modal.xlarge {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 95%;
  }
}

.reveal-modal.full {
  height: 100vh;
  height: 100%;
  left: 0;
  margin-left: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  top: 0;
}

@media only screen and (min-width: 40.0625em) {
  .reveal-modal.full {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 100%;
  }
}

.reveal-modal.toback {
  z-index: 1003;
}

.reveal-modal .close-reveal-modal {
  color: #AAAAAA;
  cursor: pointer;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0.625rem;
  right: 1.375rem;
}

/* Tooltips */

.has-tip {
  border-bottom: dotted 1px #CCCCCC;
  color: #333333;
  cursor: help;
  font-weight: bold;
}

.has-tip:hover,
.has-tip:focus {
  border-bottom: dotted 1px #003f54;
  color: #008CBA;
}

.has-tip.tip-left,
.has-tip.tip-right {
  float: none !important;
}

.tooltip {
  background: #333333;
  color: #FFFFFF;
  display: none;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.3;
  max-width: 300px;
  padding: 0.75rem;
  position: absolute;
  width: 100%;
  z-index: 1006;
  left: 50%;
}

.tooltip > .nub {
  border: solid 5px;
  border-color: transparent transparent #333333 transparent;
  display: block;
  height: 0;
  pointer-events: none;
  position: absolute;
  top: -10px;
  width: 0;
  left: 5px;
}

.tooltip > .nub.rtl {
  left: auto;
  right: 5px;
}

.tooltip.radius {
  border-radius: 3px;
}

.tooltip.round {
  border-radius: 1000px;
}

.tooltip.round > .nub {
  left: 2rem;
}

.tooltip.opened {
  border-bottom: dotted 1px #003f54 !important;
  color: #008CBA !important;
}

.tap-to-close {
  color: #777777;
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
}

@media only screen {
  .tooltip > .nub {
    border-color: transparent transparent #333333 transparent;
    top: -10px;
  }

  .tooltip.tip-top > .nub {
    border-color: #333333 transparent transparent transparent;
    bottom: -10px;
    top: auto;
  }

  .tooltip.tip-left,
  .tooltip.tip-right {
    float: none !important;
  }

  .tooltip.tip-left > .nub {
    border-color: transparent transparent transparent #333333;
    left: auto;
    margin-top: -5px;
    right: -10px;
    top: 50%;
  }

  .tooltip.tip-right > .nub {
    border-color: transparent #333333 transparent transparent;
    left: -10px;
    margin-top: -5px;
    right: auto;
    top: 50%;
  }
}

/* Clearing Styles */

.clearing-thumbs,
[data-clearing] {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.clearing-thumbs:before,
.clearing-thumbs:after,
[data-clearing]:before,
[data-clearing]:after {
  content: " ";
  display: table;
}

.clearing-thumbs:after,
[data-clearing]:after {
  clear: both;
}

.clearing-thumbs li,
[data-clearing] li {
  float: left;
  margin-right: 10px;
}

.clearing-thumbs[class*=block-grid-] li,
[data-clearing][class*=block-grid-] li {
  margin-right: 0;
}

.clearing-blackout {
  background: #333333;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  left: 0;
}

.clearing-blackout .clearing-close {
  display: block;
}

.clearing-container {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 998;
}

.clearing-touch-label {
  color: #AAAAAA;
  font-size: 0.6em;
  left: 50%;
  position: absolute;
  top: 50%;
}

.visible-img {
  height: 95%;
  position: relative;
}

.visible-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-height: 100%;
  max-width: 100%;
}

.clearing-caption {
  background: #333333;
  bottom: 0;
  color: #CCCCCC;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  padding: 10px 30px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
}

.clearing-close {
  color: #CCCCCC;
  display: none;
  font-size: 30px;
  line-height: 1;
  padding-left: 20px;
  padding-top: 10px;
  z-index: 999;
}

.clearing-close:hover,
.clearing-close:focus {
  color: #CCCCCC;
}

.clearing-assembled .clearing-container {
  height: 100%;
}

.clearing-assembled .clearing-container .carousel > ul {
  display: none;
}

.clearing-feature li {
  display: none;
}

.clearing-feature li.clearing-featured-img {
  display: block;
}

@media only screen and (min-width: 40.0625em) {
  .clearing-main-prev,
  .clearing-main-next {
    height: 100%;
    position: absolute;
    top: 0;
    width: 40px;
  }

  .clearing-main-prev > span,
  .clearing-main-next > span {
    border: solid 12px;
    display: block;
    height: 0;
    position: absolute;
    top: 50%;
    width: 0;
  }

  .clearing-main-prev > span:hover,
  .clearing-main-next > span:hover {
    opacity: 0.8;
  }

  .clearing-main-prev {
    left: 0;
  }

  .clearing-main-prev > span {
    left: 5px;
    border-color: transparent;
    border-right-color: #CCCCCC;
  }

  .clearing-main-next {
    right: 0;
  }

  .clearing-main-next > span {
    border-color: transparent;
    border-left-color: #CCCCCC;
  }

  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3;
  }

  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center;
  }

  .clearing-assembled .clearing-container .carousel > ul {
    display: inline-block;
    z-index: 999;
    height: 100%;
    position: relative;
    float: none;
  }

  .clearing-assembled .clearing-container .carousel > ul li {
    clear: none;
    cursor: pointer;
    display: block;
    float: left;
    margin-right: 0;
    min-height: inherit;
    opacity: 0.4;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 120px;
  }

  .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
    height: 100%;
    max-width: none;
  }

  .clearing-assembled .clearing-container .carousel > ul li a.th {
    border: none;
    box-shadow: none;
    display: block;
  }

  .clearing-assembled .clearing-container .carousel > ul li img {
    cursor: pointer !important;
    width: 100% !important;
  }

  .clearing-assembled .clearing-container .carousel > ul li.visible {
    opacity: 1;
  }

  .clearing-assembled .clearing-container .carousel > ul li:hover {
    opacity: 0.8;
  }

  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    height: 85%;
    overflow: hidden;
  }

  .clearing-close {
    padding-left: 0;
    padding-top: 0;
    position: absolute;
    top: 10px;
    right: 20px;
  }
}

/* Progress Bar */

.progress {
  background-color: #F6F6F6;
  border: 1px solid white;
  height: 1.5625rem;
  margin-bottom: 0.625rem;
  padding: 0.125rem;
}

.progress .meter {
  background: #008CBA;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}

.progress .meter.secondary {
  background: #e7e7e7;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}

.progress .meter.success {
  background: #43AC6A;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}

.progress .meter.alert {
  background: #f04124;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}

.progress.secondary .meter {
  background: #e7e7e7;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}

.progress.success .meter {
  background: #43AC6A;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}

.progress.alert .meter {
  background: #f04124;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}

.progress.radius {
  border-radius: 3px;
}

.progress.radius .meter {
  border-radius: 2px;
}

.progress.round {
  border-radius: 1000px;
}

.progress.round .meter {
  border-radius: 999px;
}

.sub-nav {
  display: block;
  margin: -0.25rem 0 1.125rem;
  overflow: hidden;
  padding-top: 0.25rem;
  width: auto;
}

.sub-nav dt {
  text-transform: uppercase;
}

.sub-nav dt,
.sub-nav dd,
.sub-nav li {
  color: #999999;
  float: left;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  margin-left: 1rem;
  margin-bottom: 0;
}

.sub-nav dt a,
.sub-nav dd a,
.sub-nav li a {
  color: #999999;
  padding: 0.1875rem 1rem;
  text-decoration: none;
}

.sub-nav dt a:hover,
.sub-nav dd a:hover,
.sub-nav li a:hover {
  color: #737373;
}

.sub-nav dt.active a,
.sub-nav dd.active a,
.sub-nav li.active a {
  border-radius: 3px;
  background: #008CBA;
  color: #FFFFFF;
  cursor: default;
  font-weight: normal;
  padding: 0.1875rem 1rem;
}

.sub-nav dt.active a:hover,
.sub-nav dd.active a:hover,
.sub-nav li.active a:hover {
  background: #0078a0;
}

/* Foundation Joyride */

.joyride-list {
  display: none;
}

/* Default styles for the container */

.joyride-tip-guide {
  background: #333333;
  color: #FFFFFF;
  display: none;
  font-family: inherit;
  font-weight: normal;
  position: absolute;
  top: 0;
  width: 95%;
  z-index: 103;
  left: 2.5%;
}

.lt-ie9 .joyride-tip-guide {
  margin-left: -400px;
  max-width: 800px;
  left: 50%;
}

.joyride-content-wrapper {
  padding: 1.125rem 1.25rem 1.5rem;
  width: 100%;
}

.joyride-content-wrapper .button {
  margin-bottom: 0 !important;
}

.joyride-content-wrapper .joyride-prev-tip {
  margin-right: 10px;
}

/* Add a little css triangle pip, older browser just miss out on the fanciness of it */

.joyride-tip-guide .joyride-nub {
  border: 10px solid #333333;
  display: block;
  height: 0;
  position: absolute;
  width: 0;
  left: 22px;
}

.joyride-tip-guide .joyride-nub.top {
  border-color: #333333;
  border-top-color: transparent !important;
  border-top-style: solid;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  top: -20px;
}

.joyride-tip-guide .joyride-nub.bottom {
  border-color: #333333 !important;
  border-bottom-color: transparent !important;
  border-bottom-style: solid;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  bottom: -20px;
}

.joyride-tip-guide .joyride-nub.right {
  right: -20px;
}

.joyride-tip-guide .joyride-nub.left {
  left: -20px;
}

/* Typography */

.joyride-tip-guide h1,
.joyride-tip-guide h2,
.joyride-tip-guide h3,
.joyride-tip-guide h4,
.joyride-tip-guide h5,
.joyride-tip-guide h6 {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.25;
  margin: 0;
}

.joyride-tip-guide p {
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0 0 1.125rem 0;
}

.joyride-timer-indicator-wrap {
  border: solid 1px #555555;
  bottom: 1rem;
  height: 3px;
  position: absolute;
  width: 50px;
  right: 1.0625rem;
}

.joyride-timer-indicator {
  background: #666666;
  display: block;
  height: inherit;
  width: 0;
}

.joyride-close-tip {
  color: #777777 !important;
  font-size: 24px;
  font-weight: normal;
  line-height: 0.5 !important;
  position: absolute;
  text-decoration: none;
  top: 10px;
  right: 12px;
}

.joyride-close-tip:hover,
.joyride-close-tip:focus {
  color: #EEEEEE !important;
}

.joyride-modal-bg {
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  left: 0;
}

.joyride-expose-wrapper {
  background-color: #FFFFFF;
  border-radius: 3px;
  box-shadow: 0 0 15px #FFFFFF;
  position: absolute;
  z-index: 102;
}

.joyride-expose-cover {
  background: transparent;
  border-radius: 3px;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9999;
}

/* Styles for screens that are at least 768px; */

@media only screen {
  .joyride-tip-guide {
    width: 300px;
    left: inherit;
  }

  .joyride-tip-guide .joyride-nub.bottom {
    border-color: #333333 !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    bottom: -20px;
  }

  .joyride-tip-guide .joyride-nub.right {
    border-color: #333333 !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    border-top-color: transparent !important;
    left: auto;
    right: -20px;
    top: 22px;
  }

  .joyride-tip-guide .joyride-nub.left {
    border-color: #333333 !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
    left: -20px;
    right: auto;
    top: 22px;
  }
}

.label {
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0.5rem 0.25rem;
  font-size: 0.6875rem;
  background-color: #008CBA;
  color: #FFFFFF;
}

.label.radius {
  border-radius: 3px;
}

.label.round {
  border-radius: 1000px;
}

.label.alert {
  background-color: #f04124;
  color: #FFFFFF;
}

.label.warning {
  background-color: #f08a24;
  color: #FFFFFF;
}

.label.success {
  background-color: #43AC6A;
  color: #FFFFFF;
}

.label.secondary {
  background-color: #e7e7e7;
  color: #333333;
}

.label.info {
  background-color: #a0d3e8;
  color: #333333;
}

.off-canvas-wrap {
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.off-canvas-wrap.move-right,
.off-canvas-wrap.move-left,
.off-canvas-wrap.move-bottom,
.off-canvas-wrap.move-top {
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
}

.inner-wrap {
  position: relative;
  width: 100%;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.inner-wrap:before,
.inner-wrap:after {
  content: " ";
  display: table;
}

.inner-wrap:after {
  clear: both;
}

.tab-bar {
  -webkit-backface-visibility: hidden;
  background: #333333;
  color: #FFFFFF;
  height: 2.8125rem;
  line-height: 2.8125rem;
  position: relative;
}

.tab-bar h1,
.tab-bar h2,
.tab-bar h3,
.tab-bar h4,
.tab-bar h5,
.tab-bar h6 {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 2.8125rem;
  margin: 0;
}

.tab-bar h1,
.tab-bar h2,
.tab-bar h3,
.tab-bar h4 {
  font-size: 1.125rem;
}

.left-small {
  height: 2.8125rem;
  position: absolute;
  top: 0;
  width: 2.8125rem;
  border-right: solid 1px #1a1a1a;
  left: 0;
}

.right-small {
  height: 2.8125rem;
  position: absolute;
  top: 0;
  width: 2.8125rem;
  border-left: solid 1px #1a1a1a;
  right: 0;
}

.tab-bar-section {
  height: 2.8125rem;
  padding: 0 0.625rem;
  position: absolute;
  text-align: center;
  top: 0;
}

.tab-bar-section.left {
  text-align: left;
}

.tab-bar-section.right {
  text-align: right;
}

.tab-bar-section.left {
  left: 0;
  right: 2.8125rem;
}

.tab-bar-section.right {
  left: 2.8125rem;
  right: 0;
}

.tab-bar-section.middle {
  left: 2.8125rem;
  right: 2.8125rem;
}

.tab-bar .menu-icon {
  color: #FFFFFF;
  display: block;
  height: 2.8125rem;
  padding: 0;
  position: relative;
  text-indent: 2.1875rem;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  width: 2.8125rem;
}

.tab-bar .menu-icon span::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  left: 0.90625rem;
  box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  width: 1rem;
}

.tab-bar .menu-icon span:hover:after {
  box-shadow: 0 0 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3;
}

.left-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: -webkit-transform 500ms ease 0s;
  transition: transform 500ms ease 0s;
  transition: transform 500ms ease 0s, -webkit-transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  top: 0;
}

.left-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

.right-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: -webkit-transform 500ms ease 0s;
  transition: transform 500ms ease 0s;
  transition: transform 500ms ease 0s, -webkit-transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  top: 0;
}

.right-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

.top-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: -webkit-transform 500ms ease 0s;
  transition: transform 500ms ease 0s;
  transition: transform 500ms ease 0s, -webkit-transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  top: 0;
  width: 100%;
  height: 18.75rem;
}

.top-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

.bottom-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: -webkit-transform 500ms ease 0s;
  transition: transform 500ms ease 0s;
  transition: transform 500ms ease 0s, -webkit-transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  width: 100%;
  height: 18.75rem;
}

.bottom-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

ul.off-canvas-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.off-canvas-list li label {
  background: #444444;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
  color: #999999;
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
  margin: 0;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
}

ul.off-canvas-list li a {
  border-bottom: 1px solid #262626;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 0.66667rem;
  transition: background 300ms ease;
}

ul.off-canvas-list li a:hover {
  background: #242424;
}

ul.off-canvas-list li a:active {
  background: #242424;
}

.move-right > .inner-wrap {
  -webkit-transform: translate3d(15.625rem, 0, 0);
  transform: translate3d(15.625rem, 0, 0);
}

.move-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .move-right .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.move-left > .inner-wrap {
  -webkit-transform: translate3d(-15.625rem, 0, 0);
  transform: translate3d(-15.625rem, 0, 0);
}

.move-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .move-left .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.move-top > .inner-wrap {
  -webkit-transform: translate3d(0, -18.75rem, 0);
  transform: translate3d(0, -18.75rem, 0);
}

.move-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .move-top .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.move-bottom > .inner-wrap {
  -webkit-transform: translate3d(0, 18.75rem, 0);
  transform: translate3d(0, 18.75rem, 0);
}

.move-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .move-bottom .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap .left-off-canvas-menu,
.offcanvas-overlap .right-off-canvas-menu,
.offcanvas-overlap .top-off-canvas-menu,
.offcanvas-overlap .bottom-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003;
}

.offcanvas-overlap .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .offcanvas-overlap .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-left .right-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003;
}

.offcanvas-overlap-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .offcanvas-overlap-left .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-right .left-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003;
}

.offcanvas-overlap-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .offcanvas-overlap-right .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-top .bottom-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003;
}

.offcanvas-overlap-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .offcanvas-overlap-top .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-bottom .top-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003;
}

.offcanvas-overlap-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}

@media only screen and (min-width: 40.0625em) {
  .offcanvas-overlap-bottom .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.no-csstransforms .left-off-canvas-menu {
  left: -15.625rem;
}

.no-csstransforms .right-off-canvas-menu {
  right: -15.625rem;
}

.no-csstransforms .top-off-canvas-menu {
  top: -18.75rem;
}

.no-csstransforms .bottom-off-canvas-menu {
  bottom: -18.75rem;
}

.no-csstransforms .move-left > .inner-wrap {
  right: 15.625rem;
}

.no-csstransforms .move-right > .inner-wrap {
  left: 15.625rem;
}

.no-csstransforms .move-top > .inner-wrap {
  right: 18.75rem;
}

.no-csstransforms .move-bottom > .inner-wrap {
  left: 18.75rem;
}

.left-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.left-submenu * {
  -webkit-backface-visibility: hidden;
}

.left-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}

.left-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
}

.left-submenu .back > a:before {
  content: "\AB";
  margin-right: 0.5rem;
  display: inline;
}

.left-submenu.move-right,
.left-submenu.offcanvas-overlap-right,
.left-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.right-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.right-submenu * {
  -webkit-backface-visibility: hidden;
}

.right-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}

.right-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
}

.right-submenu .back > a:after {
  content: "\BB";
  margin-left: 0.5rem;
  display: inline;
}

.right-submenu.move-left,
.right-submenu.offcanvas-overlap-left,
.right-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.top-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  top: 0;
  width: 100%;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.top-submenu * {
  -webkit-backface-visibility: hidden;
}

.top-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}

.top-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
}

.top-submenu.move-bottom,
.top-submenu.offcanvas-overlap-bottom,
.top-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.bottom-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  width: 100%;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.bottom-submenu * {
  -webkit-backface-visibility: hidden;
}

.bottom-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}

.bottom-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #5e5e5e;
}

.bottom-submenu.move-top,
.bottom-submenu.offcanvas-overlap-top,
.bottom-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
  content: "\BB";
  margin-left: 0.5rem;
  display: inline;
}

.right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
  content: "\AB";
  margin-right: 0.5rem;
  display: inline;
}

/* Foundation Dropdowns */

.f-dropdown {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 2px;
  max-width: 200px;
}

.f-dropdown.open {
  display: block;
}

.f-dropdown > *:first-child {
  margin-top: 0;
}

.f-dropdown > *:last-child {
  margin-bottom: 0;
}

.f-dropdown:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #FFFFFF transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -12px;
  left: 10px;
  z-index: 89;
}

.f-dropdown:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #cccccc transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -14px;
  left: 9px;
  z-index: 88;
}

.f-dropdown.right:before {
  left: auto;
  right: 10px;
}

.f-dropdown.right:after {
  left: auto;
  right: 9px;
}

.f-dropdown.drop-right {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: 2px;
  max-width: 200px;
}

.f-dropdown.drop-right.open {
  display: block;
}

.f-dropdown.drop-right > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-right > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-right:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #FFFFFF transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 10px;
  left: -12px;
  z-index: 89;
}

.f-dropdown.drop-right:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #cccccc transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 9px;
  left: -14px;
  z-index: 88;
}

.f-dropdown.drop-left {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: -2px;
  max-width: 200px;
}

.f-dropdown.drop-left.open {
  display: block;
}

.f-dropdown.drop-left > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-left > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-left:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #FFFFFF;
  border-left-style: solid;
  position: absolute;
  top: 10px;
  right: -12px;
  left: auto;
  z-index: 89;
}

.f-dropdown.drop-left:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #cccccc;
  border-left-style: solid;
  position: absolute;
  top: 9px;
  right: -14px;
  left: auto;
  z-index: 88;
}

.f-dropdown.drop-top {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-left: 0;
  margin-top: -2px;
  max-width: 200px;
}

.f-dropdown.drop-top.open {
  display: block;
}

.f-dropdown.drop-top > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-top > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-top:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #FFFFFF transparent transparent transparent;
  border-top-style: solid;
  bottom: -12px;
  position: absolute;
  top: auto;
  left: 10px;
  right: auto;
  z-index: 89;
}

.f-dropdown.drop-top:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #cccccc transparent transparent transparent;
  border-top-style: solid;
  bottom: -14px;
  position: absolute;
  top: auto;
  left: 9px;
  right: auto;
  z-index: 88;
}

.f-dropdown li {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
}

.f-dropdown li:hover,
.f-dropdown li:focus {
  background: #EEEEEE;
}

.f-dropdown li a {
  display: block;
  padding: 0.5rem;
  color: #555555;
}

.f-dropdown.content {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  padding: 1.25rem;
  width: 100%;
  z-index: 89;
  max-width: 200px;
}

.f-dropdown.content.open {
  display: block;
}

.f-dropdown.content > *:first-child {
  margin-top: 0;
}

.f-dropdown.content > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.radius {
  border-radius: 3px;
}

.f-dropdown.tiny {
  max-width: 200px;
}

.f-dropdown.small {
  max-width: 300px;
}

.f-dropdown.medium {
  max-width: 500px;
}

.f-dropdown.large {
  max-width: 800px;
}

.f-dropdown.mega {
  width: 100% !important;
  max-width: 100% !important;
}

.f-dropdown.mega.open {
  left: 0 !important;
}

table {
  background: #FFFFFF;
  border: solid 1px #DDDDDD;
  margin-bottom: 1.25rem;
  table-layout: auto;
}

table caption {
  background: transparent;
  color: #222222;
  font-size: 1rem;
  font-weight: bold;
}

table thead {
  background: #F5F5F5;
}

table thead tr th,
table thead tr td {
  color: #222222;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

table tfoot {
  background: #F5F5F5;
}

table tfoot tr th,
table tfoot tr td {
  color: #222222;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

table tr th,
table tr td {
  color: #222222;
  font-size: 0.875rem;
  padding: 0.5625rem 0.625rem;
  text-align: left;
}

table tr.even,
table tr.alt,
table tr:nth-of-type(even) {
  background: #F9F9F9;
}

table thead tr th,
table tfoot tr th,
table tfoot tr td,
table tbody tr th,
table tbody tr td,
table tr td {
  display: table-cell;
  line-height: 1.125rem;
}

.range-slider {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  touch-action: none;
  display: block;
  height: 1rem;
  width: 100%;
  background: #FAFAFA;
}

.range-slider.vertical-range {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  touch-action: none;
  display: inline-block;
  height: 12.5rem;
  width: 1rem;
}

.range-slider.vertical-range .range-slider-handle {
  bottom: -10.5rem;
  margin-left: -0.5rem;
  margin-top: 0;
  position: absolute;
}

.range-slider.vertical-range .range-slider-active-segment {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border-top-left-radius: initial;
  bottom: 0;
  height: auto;
  width: 0.875rem;
}

.range-slider.radius {
  background: #FAFAFA;
  border-radius: 3px;
}

.range-slider.radius .range-slider-handle {
  background: #008CBA;
  border-radius: 3px;
}

.range-slider.radius .range-slider-handle:hover {
  background: #007ba4;
}

.range-slider.round {
  background: #FAFAFA;
  border-radius: 1000px;
}

.range-slider.round .range-slider-handle {
  background: #008CBA;
  border-radius: 1000px;
}

.range-slider.round .range-slider-handle:hover {
  background: #007ba4;
}

.range-slider.disabled,
.range-slider[disabled] {
  background: #FAFAFA;
  cursor: not-allowed;
  opacity: 0.7;
}

.range-slider.disabled .range-slider-handle,
.range-slider[disabled] .range-slider-handle {
  background: #008CBA;
  cursor: default;
  opacity: 0.7;
}

.range-slider.disabled .range-slider-handle:hover,
.range-slider[disabled] .range-slider-handle:hover {
  background: #007ba4;
}

.range-slider-active-segment {
  background: #e5e5e5;
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
  display: inline-block;
  height: 0.875rem;
  position: absolute;
}

.range-slider-handle {
  border: 1px solid none;
  cursor: pointer;
  display: inline-block;
  height: 1.375rem;
  position: absolute;
  top: -0.3125rem;
  width: 2rem;
  z-index: 1;
  touch-action: manipulation;
  background: #008CBA;
}

.range-slider-handle:hover {
  background: #007ba4;
}

[class*=block-grid-] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem;
}

[class*=block-grid-]:before,
[class*=block-grid-]:after {
  content: " ";
  display: table;
}

[class*=block-grid-]:after {
  clear: both;
}

[class*=block-grid-] > li {
  display: block;
  float: left;
  height: auto;
  padding: 0 0.625rem 1.25rem;
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }

  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }

  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }

  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }

  .small-block-grid-3 > li {
    list-style: none;
    width: 33.33333%;
  }

  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }

  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }

  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }

  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }

  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }

  .small-block-grid-6 > li {
    list-style: none;
    width: 16.66667%;
  }

  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }

  .small-block-grid-7 > li {
    list-style: none;
    width: 14.28571%;
  }

  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }

  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }

  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }

  .small-block-grid-9 > li {
    list-style: none;
    width: 11.11111%;
  }

  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }

  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }

  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }

  .small-block-grid-11 > li {
    list-style: none;
    width: 9.09091%;
  }

  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }

  .small-block-grid-12 > li {
    list-style: none;
    width: 8.33333%;
  }

  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }

  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 40.0625em) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }

  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }

  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }

  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }

  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.33333%;
  }

  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }

  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }

  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }

  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }

  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }

  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.66667%;
  }

  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }

  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.28571%;
  }

  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }

  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }

  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }

  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.11111%;
  }

  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }

  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }

  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }

  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.09091%;
  }

  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }

  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.33333%;
  }

  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }

  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 64.0625em) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }

  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }

  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }

  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }

  .large-block-grid-3 > li {
    list-style: none;
    width: 33.33333%;
  }

  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }

  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }

  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }

  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }

  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }

  .large-block-grid-6 > li {
    list-style: none;
    width: 16.66667%;
  }

  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }

  .large-block-grid-7 > li {
    list-style: none;
    width: 14.28571%;
  }

  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }

  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }

  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }

  .large-block-grid-9 > li {
    list-style: none;
    width: 11.11111%;
  }

  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }

  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }

  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }

  .large-block-grid-11 > li {
    list-style: none;
    width: 9.09091%;
  }

  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }

  .large-block-grid-12 > li {
    list-style: none;
    width: 8.33333%;
  }

  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }

  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}

.flex-video {
  height: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  padding-bottom: 67.5%;
  padding-top: 1.5625rem;
  position: relative;
}

.flex-video.widescreen {
  padding-bottom: 56.34%;
}

.flex-video.vimeo {
  padding-top: 0;
}

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

.keystroke,
kbd {
  background-color: #ededed;
  border-color: #dddddd;
  color: #222222;
  border-style: solid;
  border-width: 1px;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  font-size: inherit;
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  border-radius: 3px;
}

.switch {
  border: none;
  margin-bottom: 1.5rem;
  outline: 0;
  padding: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.switch label {
  background: #DDDDDD;
  color: transparent;
  cursor: pointer;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  text-indent: 100%;
  width: 4rem;
  height: 2rem;
  transition: left 0.15s ease-out;
}

.switch input {
  left: 10px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 9px;
}

.switch input + label {
  margin-left: 0;
  margin-right: 0;
}

.switch label:after {
  background: #FFFFFF;
  content: "";
  display: block;
  height: 1.5rem;
  left: 0.25rem;
  position: absolute;
  top: 0.25rem;
  width: 1.5rem;
  transition: left 0.15s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.switch input:checked + label {
  background: #008CBA;
}

.switch input:checked + label:after {
  left: 2.25rem;
}

.switch label {
  height: 2rem;
  width: 4rem;
}

.switch label:after {
  height: 1.5rem;
  width: 1.5rem;
}

.switch input:checked + label:after {
  left: 2.25rem;
}

.switch label {
  color: transparent;
  background: #DDDDDD;
}

.switch label:after {
  background: #FFFFFF;
}

.switch input:checked + label {
  background: #008CBA;
}

.switch.large label {
  height: 2.5rem;
  width: 5rem;
}

.switch.large label:after {
  height: 2rem;
  width: 2rem;
}

.switch.large input:checked + label:after {
  left: 2.75rem;
}

.switch.small label {
  height: 1.75rem;
  width: 3.5rem;
}

.switch.small label:after {
  height: 1.25rem;
  width: 1.25rem;
}

.switch.small input:checked + label:after {
  left: 2rem;
}

.switch.tiny label {
  height: 1.5rem;
  width: 3rem;
}

.switch.tiny label:after {
  height: 1rem;
  width: 1rem;
}

.switch.tiny input:checked + label:after {
  left: 1.75rem;
}

.switch.radius label {
  border-radius: 4px;
}

.switch.radius label:after {
  border-radius: 3px;
}

.switch.round {
  border-radius: 1000px;
}

.switch.round label {
  border-radius: 2rem;
}

.switch.round label:after {
  border-radius: 2rem;
}

/* small displays */

@media only screen {
  .show-for-small-only,
  .show-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-medium,
  .show-for-medium-down,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-large,
  .show-for-large-down,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xlarge,
  .show-for-xlarge-down,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .hide-for-xxlarge,
  .show-for-xxlarge-down {
    display: inherit !important;
  }

  .hide-for-small-only,
  .hide-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-medium,
  .hide-for-medium-down,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-large,
  .hide-for-large-down,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xlarge,
  .hide-for-xlarge-down,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up,
  .show-for-xxlarge,
  .hide-for-xxlarge-down {
    display: none !important;
  }

  .visible-for-small-only,
  .visible-for-small-up,
  .visible-for-small,
  .visible-for-small-down,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-medium,
  .visible-for-medium-down,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-large,
  .visible-for-large-down,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xlarge,
  .visible-for-xlarge-down,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .hidden-for-xxlarge,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .hidden-for-small-only,
  .hidden-for-small-up,
  .hidden-for-small,
  .hidden-for-small-down,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .visible-for-medium,
  .hidden-for-medium-down,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-large,
  .hidden-for-large-down,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xlarge,
  .hidden-for-xlarge-down,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up,
  .visible-for-xxlarge,
  .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }

  table.show-for-small-only,
  table.show-for-small-up,
  table.show-for-small,
  table.show-for-small-down,
  table.hide-for-medium-only,
  table.hide-for-medium-up,
  table.hide-for-medium,
  table.show-for-medium-down,
  table.hide-for-large-only,
  table.hide-for-large-up,
  table.hide-for-large,
  table.show-for-large-down,
  table.hide-for-xlarge-only,
  table.hide-for-xlarge-up,
  table.hide-for-xlarge,
  table.show-for-xlarge-down,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.hide-for-xxlarge,
  table.show-for-xxlarge-down {
    display: table !important;
  }

  thead.show-for-small-only,
  thead.show-for-small-up,
  thead.show-for-small,
  thead.show-for-small-down,
  thead.hide-for-medium-only,
  thead.hide-for-medium-up,
  thead.hide-for-medium,
  thead.show-for-medium-down,
  thead.hide-for-large-only,
  thead.hide-for-large-up,
  thead.hide-for-large,
  thead.show-for-large-down,
  thead.hide-for-xlarge-only,
  thead.hide-for-xlarge-up,
  thead.hide-for-xlarge,
  thead.show-for-xlarge-down,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.hide-for-xxlarge,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }

  tbody.show-for-small-only,
  tbody.show-for-small-up,
  tbody.show-for-small,
  tbody.show-for-small-down,
  tbody.hide-for-medium-only,
  tbody.hide-for-medium-up,
  tbody.hide-for-medium,
  tbody.show-for-medium-down,
  tbody.hide-for-large-only,
  tbody.hide-for-large-up,
  tbody.hide-for-large,
  tbody.show-for-large-down,
  tbody.hide-for-xlarge-only,
  tbody.hide-for-xlarge-up,
  tbody.hide-for-xlarge,
  tbody.show-for-xlarge-down,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.hide-for-xxlarge,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }

  tr.show-for-small-only,
  tr.show-for-small-up,
  tr.show-for-small,
  tr.show-for-small-down,
  tr.hide-for-medium-only,
  tr.hide-for-medium-up,
  tr.hide-for-medium,
  tr.show-for-medium-down,
  tr.hide-for-large-only,
  tr.hide-for-large-up,
  tr.hide-for-large,
  tr.show-for-large-down,
  tr.hide-for-xlarge-only,
  tr.hide-for-xlarge-up,
  tr.hide-for-xlarge,
  tr.show-for-xlarge-down,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.hide-for-xxlarge,
  tr.show-for-xxlarge-down {
    display: table-row;
  }

  th.show-for-small-only,
  td.show-for-small-only,
  th.show-for-small-up,
  td.show-for-small-up,
  th.show-for-small,
  td.show-for-small,
  th.show-for-small-down,
  td.show-for-small-down,
  th.hide-for-medium-only,
  td.hide-for-medium-only,
  th.hide-for-medium-up,
  td.hide-for-medium-up,
  th.hide-for-medium,
  td.hide-for-medium,
  th.show-for-medium-down,
  td.show-for-medium-down,
  th.hide-for-large-only,
  td.hide-for-large-only,
  th.hide-for-large-up,
  td.hide-for-large-up,
  th.hide-for-large,
  td.hide-for-large,
  th.show-for-large-down,
  td.show-for-large-down,
  th.hide-for-xlarge-only,
  td.hide-for-xlarge-only,
  th.hide-for-xlarge-up,
  td.hide-for-xlarge-up,
  th.hide-for-xlarge,
  td.hide-for-xlarge,
  th.show-for-xlarge-down,
  td.show-for-xlarge-down,
  th.hide-for-xxlarge-only,
  td.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  td.hide-for-xxlarge-up,
  th.hide-for-xxlarge,
  td.hide-for-xxlarge,
  th.show-for-xxlarge-down,
  td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}

/* medium displays */

@media only screen and (min-width: 40.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-medium,
  .show-for-medium-down,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-large,
  .show-for-large-down,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xlarge,
  .show-for-xlarge-down,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .hide-for-xxlarge,
  .show-for-xxlarge-down {
    display: inherit !important;
  }

  .show-for-small-only,
  .hide-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-medium,
  .hide-for-medium-down,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-large,
  .hide-for-large-down,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xlarge,
  .hide-for-xlarge-down,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up,
  .show-for-xxlarge,
  .hide-for-xxlarge-down {
    display: none !important;
  }

  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-small,
  .hidden-for-small-down,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .visible-for-medium,
  .visible-for-medium-down,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-large,
  .visible-for-large-down,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xlarge,
  .visible-for-xlarge-down,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .hidden-for-xxlarge,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-small,
  .visible-for-small-down,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-medium,
  .hidden-for-medium-down,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-large,
  .hidden-for-large-down,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xlarge,
  .hidden-for-xlarge-down,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up,
  .visible-for-xxlarge,
  .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }

  table.hide-for-small-only,
  table.show-for-small-up,
  table.hide-for-small,
  table.hide-for-small-down,
  table.show-for-medium-only,
  table.show-for-medium-up,
  table.show-for-medium,
  table.show-for-medium-down,
  table.hide-for-large-only,
  table.hide-for-large-up,
  table.hide-for-large,
  table.show-for-large-down,
  table.hide-for-xlarge-only,
  table.hide-for-xlarge-up,
  table.hide-for-xlarge,
  table.show-for-xlarge-down,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.hide-for-xxlarge,
  table.show-for-xxlarge-down {
    display: table !important;
  }

  thead.hide-for-small-only,
  thead.show-for-small-up,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.show-for-medium-only,
  thead.show-for-medium-up,
  thead.show-for-medium,
  thead.show-for-medium-down,
  thead.hide-for-large-only,
  thead.hide-for-large-up,
  thead.hide-for-large,
  thead.show-for-large-down,
  thead.hide-for-xlarge-only,
  thead.hide-for-xlarge-up,
  thead.hide-for-xlarge,
  thead.show-for-xlarge-down,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.hide-for-xxlarge,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only,
  tbody.show-for-small-up,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.show-for-medium-only,
  tbody.show-for-medium-up,
  tbody.show-for-medium,
  tbody.show-for-medium-down,
  tbody.hide-for-large-only,
  tbody.hide-for-large-up,
  tbody.hide-for-large,
  tbody.show-for-large-down,
  tbody.hide-for-xlarge-only,
  tbody.hide-for-xlarge-up,
  tbody.hide-for-xlarge,
  tbody.show-for-xlarge-down,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.hide-for-xxlarge,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }

  tr.hide-for-small-only,
  tr.show-for-small-up,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.show-for-medium-only,
  tr.show-for-medium-up,
  tr.show-for-medium,
  tr.show-for-medium-down,
  tr.hide-for-large-only,
  tr.hide-for-large-up,
  tr.hide-for-large,
  tr.show-for-large-down,
  tr.hide-for-xlarge-only,
  tr.hide-for-xlarge-up,
  tr.hide-for-xlarge,
  tr.show-for-xlarge-down,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.hide-for-xxlarge,
  tr.show-for-xxlarge-down {
    display: table-row;
  }

  th.hide-for-small-only,
  td.hide-for-small-only,
  th.show-for-small-up,
  td.show-for-small-up,
  th.hide-for-small,
  td.hide-for-small,
  th.hide-for-small-down,
  td.hide-for-small-down,
  th.show-for-medium-only,
  td.show-for-medium-only,
  th.show-for-medium-up,
  td.show-for-medium-up,
  th.show-for-medium,
  td.show-for-medium,
  th.show-for-medium-down,
  td.show-for-medium-down,
  th.hide-for-large-only,
  td.hide-for-large-only,
  th.hide-for-large-up,
  td.hide-for-large-up,
  th.hide-for-large,
  td.hide-for-large,
  th.show-for-large-down,
  td.show-for-large-down,
  th.hide-for-xlarge-only,
  td.hide-for-xlarge-only,
  th.hide-for-xlarge-up,
  td.hide-for-xlarge-up,
  th.hide-for-xlarge,
  td.hide-for-xlarge,
  th.show-for-xlarge-down,
  td.show-for-xlarge-down,
  th.hide-for-xxlarge-only,
  td.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  td.hide-for-xxlarge-up,
  th.hide-for-xxlarge,
  td.hide-for-xxlarge,
  th.show-for-xxlarge-down,
  td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}

/* large displays */

@media only screen and (min-width: 64.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-medium,
  .hide-for-medium-down,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-large,
  .show-for-large-down,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xlarge,
  .show-for-xlarge-down,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .hide-for-xxlarge,
  .show-for-xxlarge-down {
    display: inherit !important;
  }

  .show-for-small-only,
  .hide-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-medium,
  .show-for-medium-down,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-large,
  .hide-for-large-down,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xlarge,
  .hide-for-xlarge-down,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up,
  .show-for-xxlarge,
  .hide-for-xxlarge-down {
    display: none !important;
  }

  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-medium,
  .hidden-for-medium-down,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-large,
  .visible-for-large-down,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xlarge,
  .visible-for-xlarge-down,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .hidden-for-xxlarge,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-medium,
  .visible-for-medium-down,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-large,
  .hidden-for-large-down,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xlarge,
  .hidden-for-xlarge-down,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up,
  .visible-for-xxlarge,
  .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }

  table.hide-for-small-only,
  table.show-for-small-up,
  table.hide-for-small,
  table.hide-for-small-down,
  table.hide-for-medium-only,
  table.show-for-medium-up,
  table.hide-for-medium,
  table.hide-for-medium-down,
  table.show-for-large-only,
  table.show-for-large-up,
  table.show-for-large,
  table.show-for-large-down,
  table.hide-for-xlarge-only,
  table.hide-for-xlarge-up,
  table.hide-for-xlarge,
  table.show-for-xlarge-down,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.hide-for-xxlarge,
  table.show-for-xxlarge-down {
    display: table !important;
  }

  thead.hide-for-small-only,
  thead.show-for-small-up,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.hide-for-medium-only,
  thead.show-for-medium-up,
  thead.hide-for-medium,
  thead.hide-for-medium-down,
  thead.show-for-large-only,
  thead.show-for-large-up,
  thead.show-for-large,
  thead.show-for-large-down,
  thead.hide-for-xlarge-only,
  thead.hide-for-xlarge-up,
  thead.hide-for-xlarge,
  thead.show-for-xlarge-down,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.hide-for-xxlarge,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only,
  tbody.show-for-small-up,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.hide-for-medium-only,
  tbody.show-for-medium-up,
  tbody.hide-for-medium,
  tbody.hide-for-medium-down,
  tbody.show-for-large-only,
  tbody.show-for-large-up,
  tbody.show-for-large,
  tbody.show-for-large-down,
  tbody.hide-for-xlarge-only,
  tbody.hide-for-xlarge-up,
  tbody.hide-for-xlarge,
  tbody.show-for-xlarge-down,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.hide-for-xxlarge,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }

  tr.hide-for-small-only,
  tr.show-for-small-up,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.hide-for-medium-only,
  tr.show-for-medium-up,
  tr.hide-for-medium,
  tr.hide-for-medium-down,
  tr.show-for-large-only,
  tr.show-for-large-up,
  tr.show-for-large,
  tr.show-for-large-down,
  tr.hide-for-xlarge-only,
  tr.hide-for-xlarge-up,
  tr.hide-for-xlarge,
  tr.show-for-xlarge-down,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.hide-for-xxlarge,
  tr.show-for-xxlarge-down {
    display: table-row;
  }

  th.hide-for-small-only,
  td.hide-for-small-only,
  th.show-for-small-up,
  td.show-for-small-up,
  th.hide-for-small,
  td.hide-for-small,
  th.hide-for-small-down,
  td.hide-for-small-down,
  th.hide-for-medium-only,
  td.hide-for-medium-only,
  th.show-for-medium-up,
  td.show-for-medium-up,
  th.hide-for-medium,
  td.hide-for-medium,
  th.hide-for-medium-down,
  td.hide-for-medium-down,
  th.show-for-large-only,
  td.show-for-large-only,
  th.show-for-large-up,
  td.show-for-large-up,
  th.show-for-large,
  td.show-for-large,
  th.show-for-large-down,
  td.show-for-large-down,
  th.hide-for-xlarge-only,
  td.hide-for-xlarge-only,
  th.hide-for-xlarge-up,
  td.hide-for-xlarge-up,
  th.hide-for-xlarge,
  td.hide-for-xlarge,
  th.show-for-xlarge-down,
  td.show-for-xlarge-down,
  th.hide-for-xxlarge-only,
  td.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  td.hide-for-xxlarge-up,
  th.hide-for-xxlarge,
  td.hide-for-xxlarge,
  th.show-for-xxlarge-down,
  td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}

/* xlarge displays */

@media only screen and (min-width: 90.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-medium,
  .hide-for-medium-down,
  .hide-for-large-only,
  .show-for-large-up,
  .hide-for-large,
  .hide-for-large-down,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xlarge,
  .show-for-xlarge-down,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .hide-for-xxlarge,
  .show-for-xxlarge-down {
    display: inherit !important;
  }

  .show-for-small-only,
  .hide-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-medium,
  .show-for-medium-down,
  .show-for-large-only,
  .hide-for-large-up,
  .show-for-large,
  .show-for-large-down,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xlarge,
  .hide-for-xlarge-down,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up,
  .show-for-xxlarge,
  .hide-for-xxlarge-down {
    display: none !important;
  }

  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-medium,
  .hidden-for-medium-down,
  .hidden-for-large-only,
  .visible-for-large-up,
  .hidden-for-large,
  .hidden-for-large-down,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xlarge,
  .visible-for-xlarge-down,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .hidden-for-xxlarge,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-medium,
  .visible-for-medium-down,
  .visible-for-large-only,
  .hidden-for-large-up,
  .visible-for-large,
  .visible-for-large-down,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xlarge,
  .hidden-for-xlarge-down,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up,
  .visible-for-xxlarge,
  .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }

  table.hide-for-small-only,
  table.show-for-small-up,
  table.hide-for-small,
  table.hide-for-small-down,
  table.hide-for-medium-only,
  table.show-for-medium-up,
  table.hide-for-medium,
  table.hide-for-medium-down,
  table.hide-for-large-only,
  table.show-for-large-up,
  table.hide-for-large,
  table.hide-for-large-down,
  table.show-for-xlarge-only,
  table.show-for-xlarge-up,
  table.show-for-xlarge,
  table.show-for-xlarge-down,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.hide-for-xxlarge,
  table.show-for-xxlarge-down {
    display: table !important;
  }

  thead.hide-for-small-only,
  thead.show-for-small-up,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.hide-for-medium-only,
  thead.show-for-medium-up,
  thead.hide-for-medium,
  thead.hide-for-medium-down,
  thead.hide-for-large-only,
  thead.show-for-large-up,
  thead.hide-for-large,
  thead.hide-for-large-down,
  thead.show-for-xlarge-only,
  thead.show-for-xlarge-up,
  thead.show-for-xlarge,
  thead.show-for-xlarge-down,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.hide-for-xxlarge,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only,
  tbody.show-for-small-up,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.hide-for-medium-only,
  tbody.show-for-medium-up,
  tbody.hide-for-medium,
  tbody.hide-for-medium-down,
  tbody.hide-for-large-only,
  tbody.show-for-large-up,
  tbody.hide-for-large,
  tbody.hide-for-large-down,
  tbody.show-for-xlarge-only,
  tbody.show-for-xlarge-up,
  tbody.show-for-xlarge,
  tbody.show-for-xlarge-down,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.hide-for-xxlarge,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }

  tr.hide-for-small-only,
  tr.show-for-small-up,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.hide-for-medium-only,
  tr.show-for-medium-up,
  tr.hide-for-medium,
  tr.hide-for-medium-down,
  tr.hide-for-large-only,
  tr.show-for-large-up,
  tr.hide-for-large,
  tr.hide-for-large-down,
  tr.show-for-xlarge-only,
  tr.show-for-xlarge-up,
  tr.show-for-xlarge,
  tr.show-for-xlarge-down,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.hide-for-xxlarge,
  tr.show-for-xxlarge-down {
    display: table-row;
  }

  th.hide-for-small-only,
  td.hide-for-small-only,
  th.show-for-small-up,
  td.show-for-small-up,
  th.hide-for-small,
  td.hide-for-small,
  th.hide-for-small-down,
  td.hide-for-small-down,
  th.hide-for-medium-only,
  td.hide-for-medium-only,
  th.show-for-medium-up,
  td.show-for-medium-up,
  th.hide-for-medium,
  td.hide-for-medium,
  th.hide-for-medium-down,
  td.hide-for-medium-down,
  th.hide-for-large-only,
  td.hide-for-large-only,
  th.show-for-large-up,
  td.show-for-large-up,
  th.hide-for-large,
  td.hide-for-large,
  th.hide-for-large-down,
  td.hide-for-large-down,
  th.show-for-xlarge-only,
  td.show-for-xlarge-only,
  th.show-for-xlarge-up,
  td.show-for-xlarge-up,
  th.show-for-xlarge,
  td.show-for-xlarge,
  th.show-for-xlarge-down,
  td.show-for-xlarge-down,
  th.hide-for-xxlarge-only,
  td.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  td.hide-for-xxlarge-up,
  th.hide-for-xxlarge,
  td.hide-for-xxlarge,
  th.show-for-xxlarge-down,
  td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}

/* xxlarge displays */

@media only screen and (min-width: 120.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-medium,
  .hide-for-medium-down,
  .hide-for-large-only,
  .show-for-large-up,
  .hide-for-large,
  .hide-for-large-down,
  .hide-for-xlarge-only,
  .show-for-xlarge-up,
  .hide-for-xlarge,
  .hide-for-xlarge-down,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up,
  .show-for-xxlarge,
  .show-for-xxlarge-down {
    display: inherit !important;
  }

  .show-for-small-only,
  .hide-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-medium,
  .show-for-medium-down,
  .show-for-large-only,
  .hide-for-large-up,
  .show-for-large,
  .show-for-large-down,
  .show-for-xlarge-only,
  .hide-for-xlarge-up,
  .show-for-xlarge,
  .show-for-xlarge-down,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .hide-for-xxlarge,
  .hide-for-xxlarge-down {
    display: none !important;
  }

  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-medium,
  .hidden-for-medium-down,
  .hidden-for-large-only,
  .visible-for-large-up,
  .hidden-for-large,
  .hidden-for-large-down,
  .hidden-for-xlarge-only,
  .visible-for-xlarge-up,
  .hidden-for-xlarge,
  .hidden-for-xlarge-down,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up,
  .visible-for-xxlarge,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-medium,
  .visible-for-medium-down,
  .visible-for-large-only,
  .hidden-for-large-up,
  .visible-for-large,
  .visible-for-large-down,
  .visible-for-xlarge-only,
  .hidden-for-xlarge-up,
  .visible-for-xlarge,
  .visible-for-xlarge-down,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .hidden-for-xxlarge,
  .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }

  table.hide-for-small-only,
  table.show-for-small-up,
  table.hide-for-small,
  table.hide-for-small-down,
  table.hide-for-medium-only,
  table.show-for-medium-up,
  table.hide-for-medium,
  table.hide-for-medium-down,
  table.hide-for-large-only,
  table.show-for-large-up,
  table.hide-for-large,
  table.hide-for-large-down,
  table.hide-for-xlarge-only,
  table.show-for-xlarge-up,
  table.hide-for-xlarge,
  table.hide-for-xlarge-down,
  table.show-for-xxlarge-only,
  table.show-for-xxlarge-up,
  table.show-for-xxlarge,
  table.show-for-xxlarge-down {
    display: table !important;
  }

  thead.hide-for-small-only,
  thead.show-for-small-up,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.hide-for-medium-only,
  thead.show-for-medium-up,
  thead.hide-for-medium,
  thead.hide-for-medium-down,
  thead.hide-for-large-only,
  thead.show-for-large-up,
  thead.hide-for-large,
  thead.hide-for-large-down,
  thead.hide-for-xlarge-only,
  thead.show-for-xlarge-up,
  thead.hide-for-xlarge,
  thead.hide-for-xlarge-down,
  thead.show-for-xxlarge-only,
  thead.show-for-xxlarge-up,
  thead.show-for-xxlarge,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only,
  tbody.show-for-small-up,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.hide-for-medium-only,
  tbody.show-for-medium-up,
  tbody.hide-for-medium,
  tbody.hide-for-medium-down,
  tbody.hide-for-large-only,
  tbody.show-for-large-up,
  tbody.hide-for-large,
  tbody.hide-for-large-down,
  tbody.hide-for-xlarge-only,
  tbody.show-for-xlarge-up,
  tbody.hide-for-xlarge,
  tbody.hide-for-xlarge-down,
  tbody.show-for-xxlarge-only,
  tbody.show-for-xxlarge-up,
  tbody.show-for-xxlarge,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }

  tr.hide-for-small-only,
  tr.show-for-small-up,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.hide-for-medium-only,
  tr.show-for-medium-up,
  tr.hide-for-medium,
  tr.hide-for-medium-down,
  tr.hide-for-large-only,
  tr.show-for-large-up,
  tr.hide-for-large,
  tr.hide-for-large-down,
  tr.hide-for-xlarge-only,
  tr.show-for-xlarge-up,
  tr.hide-for-xlarge,
  tr.hide-for-xlarge-down,
  tr.show-for-xxlarge-only,
  tr.show-for-xxlarge-up,
  tr.show-for-xxlarge,
  tr.show-for-xxlarge-down {
    display: table-row;
  }

  th.hide-for-small-only,
  td.hide-for-small-only,
  th.show-for-small-up,
  td.show-for-small-up,
  th.hide-for-small,
  td.hide-for-small,
  th.hide-for-small-down,
  td.hide-for-small-down,
  th.hide-for-medium-only,
  td.hide-for-medium-only,
  th.show-for-medium-up,
  td.show-for-medium-up,
  th.hide-for-medium,
  td.hide-for-medium,
  th.hide-for-medium-down,
  td.hide-for-medium-down,
  th.hide-for-large-only,
  td.hide-for-large-only,
  th.show-for-large-up,
  td.show-for-large-up,
  th.hide-for-large,
  td.hide-for-large,
  th.hide-for-large-down,
  td.hide-for-large-down,
  th.hide-for-xlarge-only,
  td.hide-for-xlarge-only,
  th.show-for-xlarge-up,
  td.show-for-xlarge-up,
  th.hide-for-xlarge,
  td.hide-for-xlarge,
  th.hide-for-xlarge-down,
  td.hide-for-xlarge-down,
  th.show-for-xxlarge-only,
  td.show-for-xxlarge-only,
  th.show-for-xxlarge-up,
  td.show-for-xxlarge-up,
  th.show-for-xxlarge,
  td.show-for-xxlarge,
  th.show-for-xxlarge-down,
  td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}

/* Orientation targeting */

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

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

/* Specific visibility for tables */

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

thead.hide-for-landscape,
thead.show-for-portrait {
  display: table-header-group !important;
}

tbody.hide-for-landscape,
tbody.show-for-portrait {
  display: table-row-group !important;
}

tr.hide-for-landscape,
tr.show-for-portrait {
  display: table-row !important;
}

td.hide-for-landscape,
td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important;
}

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

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

  /* Specific visibility for tables */

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

  thead.show-for-landscape,
  thead.hide-for-portrait {
    display: table-header-group !important;
  }

  tbody.show-for-landscape,
  tbody.hide-for-portrait {
    display: table-row-group !important;
  }

  tr.show-for-landscape,
  tr.hide-for-portrait {
    display: table-row !important;
  }

  td.show-for-landscape,
  td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important;
  }
}

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

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

  /* Specific visibility for tables */

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

  thead.show-for-portrait,
  thead.hide-for-landscape {
    display: table-header-group !important;
  }

  tbody.show-for-portrait,
  tbody.hide-for-landscape {
    display: table-row-group !important;
  }

  tr.show-for-portrait,
  tr.hide-for-landscape {
    display: table-row !important;
  }

  td.show-for-portrait,
  td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important;
  }
}

/* Touch-enabled device targeting */

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

.hide-for-touch {
  display: inherit !important;
}

.touch .show-for-touch {
  display: inherit !important;
}

.touch .hide-for-touch {
  display: none !important;
}

/* Specific visibility for tables */

table.hide-for-touch {
  display: table !important;
}

.touch table.show-for-touch {
  display: table !important;
}

thead.hide-for-touch {
  display: table-header-group !important;
}

.touch thead.show-for-touch {
  display: table-header-group !important;
}

tbody.hide-for-touch {
  display: table-row-group !important;
}

.touch tbody.show-for-touch {
  display: table-row-group !important;
}

tr.hide-for-touch {
  display: table-row !important;
}

.touch tr.show-for-touch {
  display: table-row !important;
}

td.hide-for-touch {
  display: table-cell !important;
}

.touch td.show-for-touch {
  display: table-cell !important;
}

th.hide-for-touch {
  display: table-cell !important;
}

.touch th.show-for-touch {
  display: table-cell !important;
}

/* Screen reader-specific classes */

.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

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

/* Print visibility */

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

@media print {
  .print-only,
  .show-for-print {
    display: block !important;
  }

  .hide-on-print,
  .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;
  }
}

body {
  background: #F2F2F2;
}

#sitewrapper {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  width: 1500px;
  margin: 0px auto;
}

.mobile {
  display: none;
}

a,
a:focus,
a:visited {
  color: #0D8AB2;
}

#content .medium-8 p a {
  text-decoration: underline;
}

a:hover {
  color: #00304a;
}

select,
select:hover {
  background: url(/images/icon-arrow-down.svg) no-repeat 97% center;
  background-color: transparent;
  background-size: 10%;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}

.button,
button {
  background-color: #0D8A89;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: #FFF !important;
  letter-spacing: 1px;
  font-family: "brandon-grotesque", sans-serif;
}

.button:hover,
button:hover {
  background: #096B6A;
}

.button.dark {
  background: #162f39;
}

.button.dark:hover {
  background: #264B5A;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: "brandon-grotesque", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1 {
  text-transform: uppercase;
  font-weight: 700;
  color: #2f6a7a;
  font-size: 22px;
  letter-spacing: 1px;
}

h2 {
  font-size: 28px;
  font-weight: 300;
  color: #0d8a89;
  margin-bottom: 30px;
}

h3 {
  color: #2f6a7a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

h4 {
  font-size: 14px;
  color: #189594;
  text-transform: uppercase;
  margin-top: 0px;
}

#content h1 {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

p,
a,
blockquote,
li {
  font-family: "proxima-nova", proxima-nova, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

p {
  color: #4e6067;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 12px;
}

a {
  /* font-size: 12px; */
  font-weight: 700;
  color: #189594;
  /* letter-spacing: 1px; */
}

strong,
b {
  font-weight: 700;
}

#content ul,
#content ol {
  margin-left: 40px;
}

#content ul li,
#content ol li {
  font-size: 16px;
  color: #4e6067;
  margin-bottom: 5px;
  list-style: circle;
}

.overlay {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
}

.location-select {
  display: none;
  background: #FFF;
  position: absolute;
  z-index: 999999;
  width: 100%;
  width: 1000px;
  top: 110px;
  left: 0;
  right: 0;
  margin: 0px auto;
  text-align: center;
  padding: 45px;
}

.location-select.hide {
  display: none !important;
}

.location-select svg {
  width: 75px;
  height: 75px;
}

.location-select h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 10px;
  padding: 0;
  border-bottom: 0px;
  letter-spacing: 1px;
}

.location-select p {
  color: #929292;
  font-size: 13px;
  font-weight: 700;
}

.location-select ul {
  margin-top: 50px;
  margin-bottom: 40px;
}

.location-select ul li {
  padding-bottom: 0;
}

.location-select ul li a {
  display: block;
  height: 100%;
  position: relative;
  min-height: 200px;
}

.location-select ul li a .location-info {
  background: url(/images/greenBG-trans.png) repeat 0 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 5px;
}

.location-select ul li a .location-info h2 {
  font-size: 14px;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 700;
}

.location-select ul li a .location-info p {
  margin: 0;
  color: #184d4b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.location-select ul li:hover a .location-info,
.location-select ul li a.active .location-info {
  background: url(/images/blueBG-trans.png) repeat 0 0;
}

.location-select ul li:hover a .location-info p,
.location-select ul li a.active .location-info p {
  color: #548ea5;
}

.location-select .button {
  color: #FFF;
  margin: 0 5px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700 !important;
  letter-spacing: 0px;
}

/* Header */

#header {
  position: relative;
  background: #FFF;
  max-width: 1500px;
  margin: 0px auto;
  height: 166px;
  padding: 30px 0 0;
}

body.home #header {
  height: 131px;
}

#header:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
  height: 35px;
  background: #eee;
}

body.home #header:after {
  display: none;
}

#header .logo {
  float: left;
  margin: 0;
  border: 0;
  padding: 0;
}

#header .logo a {
  background: url(/images/nl-horizontal-logo-new.png) no-repeat 0 0;
  display: block;
  width: 300px;
  height: 60px;
  background-size: 273px;
  text-indent: -999em;
}

#header .mastNav {
  float: right;
  margin: 0;
  list-style-type: none;
}

#header .mastNav li {
  float: left;
  font-size: 12px;
  color: #939393;
  border-left: 1px solid #939393;
  padding: 0 12px;
  font-family: "brandon-grotesque", sans-serif;
}

#header .mastNav li:first-child {
  border-left: 0px;
}

#header .mastNav li a {
  font-family: "brandon-grotesque", sans-serif;
  color: #939393;
  font-weight: 500;
  letter-spacing: 0px;
}

#header .mastNav li.estimate {
  border-left: 0px;
  padding-left: 0;
}

#header .mastNav li.estimate > a {
  background: #0d8a89;
  color: #FFF;
  padding: 8px 19px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 11px;
}

#header .mastNav li.estimate.inhome > a {
  background: #0b4d60;
}

#header .mastNav li.estimate:hover > a {
  background: #096B6A;
}

#header .mastNav li select {
  border: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  font-size: 12px;
  padding: 0 20px 0 0;
  color: #939393;
  height: 20px;
}

#header .mastNav li.search {
  position: relative;
  padding: 0 14px;
  display: block;
  width: 50px;
  height: 19px;
}

#header .mastNav li.search a {
  background: url(/images/icon-search.svg) no-repeat center center;
  float: right;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  right: 15px;
  overflow-x: hidden;
}

#header .mastNav li.search form {
  position: absolute;
  right: 5px;
  background: #FFF;
  top: -7px;
  margin: 0;
  transition: 0.5s ease all;
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  width: 0px;
  max-height: 32px;
  overflow: hidden;
}

#header .mastNav li.search form.active {
  display: block;
  width: 400px;
  right: 0px;
}

#header .mastNav li.search form input {
  margin: 0;
  border: 0;
  box-shadow: none;
  float: left;
  width: 80%;
  background: #efefef;
  color: #333;
  font-weight: 500 !important;
  font-family: "brandon-grotesque", sans-serif;
  height: 32px;
  border-radius: 3px 0px 0px 3px;
  padding: 0;
}

#header .mastNav li.search form.active input {
  padding: 0.5rem;
}

#header .mastNav li.search form button {
  margin: 0;
  padding: 0px;
  float: left;
  height: 32px;
  border-radius: 0px 3px 3px 0px;
  width: 10%;
}

#header .mastNav li.search form.active button {
  padding: 5px 10px;
}

#header .mastNav li.search form .exit {
  width: 6.5%;
  border-radius: 3px;
  margin-left: 1%;
  background: #162f39;
}

/*COVID-19*/

#header:before {
  background-color: #ffffff;
  content: "";
  display: block;
  position: absolute;
  top: -48px;
  bottom: 140px;
  z-index: 2;
  width: 100%;
}

.global-alert {
  display: flex;
  top: 0;
  transition: top 0.3s;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  height: 3em;
  z-index: 11;
  background-color: #141414;
  width: 100%;
  max-width: 1500px;
  position: fixed;
}

.global-alert .alert-text {
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}

.global-alert .margin-block-zero {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.global-alert .icon-exclamation {
  background: url("/images/exclamation.png") no-repeat center center;
  width: 16px;
  height: 16px;
}

.global-alert .text-white {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .global-alert .text-white {
    font-size: 14px;
  }
}

/* Main Navigation */

#header .mainNav {
  float: right;
  margin: 21px 0 0;
  list-style-type: none;
}

#header .mainNav li {
  float: left;
  margin: 0 15px;
}

#header .mainNav li a {
  text-transform: uppercase;
  font-family: "brandon-grotesque", sans-serif;
  color: #2a2a2a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 3px 40px;
}

#header .mainNav li:hover > a {
  color: #0d8a89;
}

#header .mainNav > li.active > a,
#header .mainNav li.parent-active > a {
  border-bottom: 4px solid #189594;
  color: #0d8a89;
  padding-bottom: 35px;
}

#header .mainNav li > ul,
.subNav {
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: 98px;
  z-index: 9;
  background: #fff;
  width: 200px;
  display: block;
  text-align: center;
  -webkit-animation: all 3s ease;
          animation: all 3s ease;
  transition: all 0.2s 0.1s ease;
  display: none;
  box-shadow: 0 5px 15px -7px #00000073;
  border-top: solid 4px #199594;
  padding: 10px 0;
  margin-left: -50px;
}

#header .mainNav li > ul > li,
.subNav > li {
  display: block;
  float: none;
  margin: 0px;
  padding: 0;
  text-align: left;
  height: auto;
}

#header .mainNav li > ul > li > a,
.subNav > li > a {
  text-transform: uppercase;
  color: #828282;
  font-size: 11px;
  padding: 12px 15px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
}

#header .mainNav li > ul > li:last-child > a,
.subNav > li:last-child > a {
  border-right: 0px;
}

#header .mainNav li > ul > li:hover > a,
.subNav > li:hover > a {
  color: #0d8a89 !important;
}

#header .mainNav li > ul > li.active > a,
.subNav > li.active > a {
  color: #0d8a89;
  border-bottom: 0px;
  padding-bottom: 0px;
}

#header .mainNav li > ul {
  z-index: 8;
}

#header .mainNav li.active > ul,
#header .mainNav li.parent-active > ul {
  z-index: 9;
}

#header .mainNav li:hover > ul {
  z-index: 30;
  display: block;
}

#header .mainNav li > ul > li.parent-active > a {
  padding: 0 15px;
  border-bottom: none;
}

#header .mainNav li.active > ul > li > a {
  /* border-bottom: 0px; */
  /* padding-bottom: 0px; */
  color: #828282;
}

/* Sub Navigation */

#subnavigation {
  position: relative;
  margin-bottom: 39px;
  display: block;
}

.subNav {
  top: 0;
  z-index: 8;
  display: block;
  height: 36px;
}

/* Rotator */

.orbit-timer,
.orbit-slide-number,
.orbit-bullets-container {
  visibility: hidden;
  display: none;
}

.orbit-container .orbit-next {
  right: 30px;
}

.orbit-container .orbit-prev {
  left: 30px;
}

.orbit-container .orbit-prev:hover,
.orbit-container .orbit-next:hover {
  background-color: transparent;
}

.orbit-container .orbit-next:hover > span {
  border-left-color: #0D8A89;
}

.orbit-container .orbit-prev:hover > span {
  border-right-color: #0D8A89;
}

#rotator {
  max-width: 1280px;
  margin: 0px auto;
  height: 598px;
  position: relative;
}

#rotator .slide {
  height: 598px;
}

#rotator .slide.active {
  z-index: 2;
}

#rotator .slide .slidecontent {
  vertical-align: middle;
  height: 511px;
  display: table-cell;
  text-align: center;
  width: 1000px;
}

#rotator .slide .slidecontent.Left {
  text-align: left;
}

#rotator .slide .slidecontent.Center {
  text-align: center;
}

#rotator .slide .slidecontent.Right {
  text-align: right;
}

#rotator .slide h1,
#rotator .slide h3 {
  font-size: 26px;
  letter-spacing: 1px;
  color: #FFF;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0 0 30px;
  border: 0;
  padding: 0 10px;
}

@media only screen and (max-width: 640px) {
  #rotator .slide h1,
  #rotator .slide h3 {
    font-size: 12px;
    line-height: 1.4;
  }

  #rotator .slide h1 .button-resize > a:nth-last-child(n+2):first-child,
  #rotator .slide h1 .button-resize > a:nth-last-child(n+2):first-child ~ a,
  #rotator .slide h3 .button-resize > a:nth-last-child(n+2):first-child,
  #rotator .slide h3 .button-resize > a:nth-last-child(n+2):first-child ~ a {
    display: inline-block !important;
    min-width: 115px !important;
  }

  #rotator .slide h1 .hide-icon > span,
  #rotator .slide h3 .hide-icon > span {
    display: none !important;
  }
}

#rotator .slide h4,
#rotator .slide h2 {
  color: #1ba6a5;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
  display: inline-block;
  padding: 0 35px;
}

#rotator .slide h4:before,
#rotator .slide h4:after,
#rotator .slide h2:before,
#rotator .slide h2:after {
  background: url(/images/icon-star.svg) no-repeat center center;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 10px;
  top: 0;
}

#rotator .slide h4:after,
#rotator .slide h2:after {
  left: auto;
  right: 10px;
}

#rotator .slide .button {
  margin: 0 10px;
  background: url(/images/greenBG-trans.png) repeat 0 0;
  padding: 10px 0px 10px 0px;
  min-width: 210px;
  line-height: 23px;
}

#rotator .slide .button.gray {
  background: url(/images/grayBG-trans.png) repeat 0 0;
}

#rotator .slide .button span {
  width: 42px;
  height: 23px;
  display: block;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 10px;
}

#rotator .slide .button:hover {
  background-color: #0A6160;
}

#rotator .slide .button.gray:hover {
  background-color: #666;
}

#rotator .pager {
  background: url(/images/pagerBG.png) repeat 0 0;
  display: block;
  height: 88px;
  position: absolute;
  width: 100%;
  max-width: 1280px;
  bottom: -2px;
  z-index: 9;
}

#rotator .pager a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  position: relative;
  padding-top: 20px;
  margin-top: 30px;
  display: block;
  text-align: center;
  opacity: 1;
}

#rotator .pager a i.bullet {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  background: #fff;
  height: 5px;
  width: 5px;
  border-radius: 5px;
  opacity: 1;
}

#rotator .pager a span {
  opacity: 0;
  transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
}

#rotator.slide0 .pager .p1 span {
  opacity: 1;
}

#rotator.slide1 .pager .p2 span {
  opacity: 1;
}

#rotator.slide2 .pager .p3 span {
  opacity: 1;
}

#rotator.slide3 .pager .p4 span {
  opacity: 1;
}

#rotator .pager a:hover span {
  opacity: 1;
}

#rotator .pager a i.bullet:before {
  content: " ";
  position: absolute;
  left: 51%;
  top: 2px;
  background: #FFF;
  height: 1px;
  width: 241px;
  opacity: 0.2;
}

#rotator .pager a i.bullet:after {
  content: " ";
  position: absolute;
  left: 51%;
  top: 2px;
  background: #FFF;
  height: 1px;
  width: 0px;
  opacity: 1;
  transition: width 8.1s linear;
  -webkit-transition: width 8.1s linear;
  -moz-transition: width 8.1s linear;
  -o-transition: width 8.1s linear;
}

/*#rotator .pager a.active > i.bullet:after { width: 241px; }*/

#rotator.slide0 .pager a.p1 > i.bullet:after {
  width: 241px;
}

#rotator.slide1 .pager a.p1 > i.bullet:after,
#rotator.slide1 .pager a.p2 > i.bullet:after {
  width: 241px;
}

#rotator.slide2 .pager a.p1 > i.bullet:after,
#rotator.slide2 .pager a.p2 > i.bullet:after,
#rotator.slide2 .pager a.p3 > i.bullet:after {
  width: 241px;
}

#rotator.slide3 .pager a.p1 > i.bullet:after,
#rotator.slide3 .pager a.p2 > i.bullet:after,
#rotator.slide3 .pager a.p3 > i.bullet:after {
  opacity: 0;
}

#rotator.slide3 .pager a.p4 > i.bullet:after {
  opacity: 1;
  content: " " !important;
  width: 730px;
  left: auto;
  right: 0px;
  top: 2px;
}

#rotator.noline .pager a.p1 > i.bullet:after,
#rotator.noline .pager a.p2 > i.bullet:after,
#rotator.noline .pager a.p3 > i.bullet:after,
#rotator.noline .pager a.p4 > i.bullet:after {
  opacity: 0 !important;
}

#rotator .pager a.p4 i.bullet:after,
#rotator .pager a.p4 i.bullet:before {
  content: none;
}

/* Buckets */

#buckets {
  background: #FFF;
  max-width: 1500px;
  margin: 0px auto;
  padding: 95px 0;
}

#buckets .large-4 img {
  margin: 0 0 20px;
  display: block;
}

#buckets .large-4 h2 {
  color: #189594;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

#buckets .large-4 p {
  color: #4e6067;
  font-size: 16px;
  line-height: 22px;
}

#buckets .large-4 p span.hovergreen {
  display: block;
  width: 100%;
  height: 100%;
  background: #109e9d;
  z-index: 9;
}

#buckets .large-4 p span.hovergreen:before {
  content: "Read More";
  color: #FFF;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 0px;
}

#buckets .large-4 p span.hovergreen img {
  opacity: 0.2;
}

/* Signup */

#signup {
  background: #F3F5F5;
  max-width: 1280px;
  margin: 0px auto;
  padding: 80px 0;
}

#signup img {
  text-align: center;
  margin: 0px auto 20px;
  display: block;
}

#signup h3 {
  color: #718381;
  text-align: center;
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  border: 0;
  padding: 0;
  margin: 0px;
  text-transform: none;
}

#signup .signupform {
  float: left;
  width: 100%;
}

#signup form {
  margin: 40px auto 0;
  float: left;
  width: 100%;
  display: block;
}

#signup form label {
  float: left;
  width: 7%;
  height: 43px;
  margin: 0;
  border: 0;
  box-shadow: none;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px 0px 0px 2px;
}

#signup form label.name {
  background: url(/images/icon-person.svg) no-repeat -49px -34px #FFF;
}

#signup form label.email {
  background: url(/images/icon-envelope.svg) no-repeat -49px -34px #FFF;
  margin-left: 1%;
}

#signup form input {
  float: left;
  width: 42%;
  height: 43px;
  border-radius: 0px 2px 2px 0px;
  border: 0;
  box-shadow: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 11px;
  color: #189594;
  font-weight: 700;
  letter-spacing: 1px;
}

#signup form .large-8 {
  padding-right: 0.1%;
}

#signup form .large-3 {
  padding-left: 0px;
}

#signup form button {
  height: 43px;
  padding: 5px 40px;
  background-color: #0D8A89;
  border-color: rgba(0, 0, 0, 0);
}

#signup form button:hover {
  float: left;
  background: black;
  margin-left: 0;
}

/* Meet the Movers */

#meetmovers {
  max-width: 1280px;
  margin: 0px auto;
  padding: 85px 0;
  background: #FFF;
  display: none;
}

#meetmovers #moverwrap {
  overflow: hidden;
}

#meetmovers h2 {
  text-align: center;
  color: #2f6a7a;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#meetmovers p {
  text-align: center;
  font-size: 16px;
  color: #4e6067;
  width: 40%;
  margin: 0px auto;
}

#meetmovers .movers {
  margin: 60px 0 0;
  float: left;
  list-style-type: none;
  width: 100%;
}

#meetmovers .movers li {
  clear: none !important;
  position: relative;
}

#meetmovers .movers li .mover-image {
  width: 100%;
  height: auto;
  margin: 0px auto 20px;
}

#meetmovers .movers li a {
  display: block;
  border-radius: 100%;
  background-size: 100% !important;
}

#meetmovers .movers li .mover-image img {
  border-radius: 100%;
  width: 100%;
}

/*#meetmovers .movers li a:hover img { opacity: 0; }*/

#meetmovers .movers li .rewards {
  text-align: center;
  margin-bottom: 10px;
}

#meetmovers .movers li .rewards span {
  font-size: 11px;
  color: #178f8e;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  height: 26px;
  background-size: 26px !important;
  padding-left: 0;
  padding-top: 0;
  position: absolute;
  top: 148px;
  left: 130px;
  border: solid 3px #fff;
  border-radius: 100px;
  width: 26px;
  display: block;
  text-indent: -999em;
}

#meetmovers .movers li .rewards span:hover {
  text-indent: 0;
  background: #128F8D;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
}

#meetmovers .movers li .rewards .nl {
  background: url(/images/award-nl.svg) no-repeat center center;
  margin-right: 4px;
}

#meetmovers .movers li .rewards .stars {
  background: url(/images/award-star.svg) no-repeat center center;
  margin-left: 22px;
  margin-top: -22px;
}

#meetmovers .movers li h3 {
  color: #283a42;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border: 0px;
  padding: 0;
  margin: 0 0 5px;
}

#meetmovers .movers li strong {
  font-size: 11px;
  color: #178f8e;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  text-align: center;
  font-weight: 700;
}

#meetmovers .button {
  margin: 40px auto 0;
  width: 80%;
  border: 1px solid #0d8a89;
  background: transparent;
  color: #0D8A89 !important;
  font-weight: 700 !important;
  display: block;
}

.orbit-container .orbit-prev,
.orbit-container .orbit-next {
  display: none;
}

.staff-pager a {
  position: absolute;
  top: 45%;
  margin-top: -25px;
  width: 36px;
  height: 60px;
  line-height: 50px;
  color: #FFF;
  z-index: 10;
}

.staff-pager a.pnext {
  right: 0px;
}

.staff-pager a.pprev {
  left: 0px;
}

.staff-pager a > span {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  display: block;
  width: 0;
  height: 0;
  border: inset 12px;
  line-height: 50px;
  color: #FFF;
  text-indent: -9999em;
}

.staff-pager a.pnext > span {
  border-color: rgba(0, 0, 0, 0);
  border-left-style: solid;
  border-left-color: #505050;
  left: 80px;
  margin-left: -4px;
}

.staff-pager a.pprev > span {
  border-color: rgba(0, 0, 0, 0);
  border-right-style: solid;
  border-right-color: #505050;
  right: 80px;
  margin-right: -4px;
}

.staff-pager a.pnext:hover > span {
  border-left-color: #0d8a89;
}

.staff-pager a.pprev:hover > span {
  border-right-color: #0d8a89;
}

/* Call to Action */

#cta {
  max-width: 1500px;
  margin: 0px auto;
  background: url(/images/ctaBG.png) repeat-x center top;
  padding: 78px 0;
  border-bottom: 9px solid #0d8a89;
}

#cta .columns {
  margin: 0px auto;
  text-align: center;
}

#cta p {
  font-size: 26px;
  color: #FFF;
  text-align: center;
  line-height: 36px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 100;
  margin-bottom: 30px;
}

#cta .button {
  margin: 0 10px;
  background: url(/images/greenBG-trans.png) repeat 0 0;
  padding: 10px 15px 10px 0px;
  min-width: 210px;
  line-height: 23px;
}

#cta .button.gray {
  background: url(/images/grayBG-trans.png) repeat 0 0;
}

#cta .button span {
  width: 42px;
  height: 23px;
  display: block;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 10px;
}

#cta .button:hover {
  background-color: #0A6160;
}

#cta .button.gray:hover {
  background-color: #666;
}

#reviews iframe {
  /* width: 100%; */
  margin: -40px 20px 0 0px !important;
  box-shadow: 20px 20px 7px rgba(177, 175, 162, 0.59);
}

/* Testimonials */

#testimonials {
  max-width: 1280px;
  margin: 0px auto;
  padding: 40px 0 80px;
  height: 295px;
}

#testimonials .title {
  /* border-bottom: 1px solid #e4e4e4; */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

#testimonials .title h2 {
  color: #189594;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
}

#testimonials .title a {
  text-transform: uppercase;
  font-size: 11px;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  margin-left: 15px;
  padding-left: 15px;
  letter-spacing: 1px;
  color: #178f8e;
  font-weight: 700;
}

#testimonials blockquote {
  border: 0;
  margin: 0;
  padding: 0;
  color: #4e6067;
  font-size: 16px;
  line-height: 22px;
}

#testimonials blockquote em {
  color: #9aa6ab;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-top: 20px;
}

/* Content */

#content,
#simple-content {
  background: #FFF;
  max-width: 1500px;
  margin: 0px auto;
  padding: 50px 0;
}

#title {
  max-width: 1500px;
  margin: 0px auto;
  height: 158px;
  background: url(/images/header-default.jpg) no-repeat center top;
  background-size: cover !important;
  background-position: center center !important;
}

#title .columns {
  display: table-cell;
  vertical-align: middle;
  height: 158px;
  float: none;
  text-align: center;
  padding: 0 15%;
  width: 1280px;
}

#title.title--large,
#title.title--large .columns {
  height: 331px;
}

#title h2 {
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

#title .title-seperator {
  margin: 20px auto;
}

#title p {
  color: #FFF;
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  font-family: "brandon-grotesque", sans-serif;
}

/* Inside */

.inside #cta {
  border-bottom: 0px;
}

/*Copyright*/

.instagram {
  height: 22px;
}

.facebook {
  height: 26px;
}

.linkedIn {
  height: 22px;
}

/* Sidebar */

#content .widget {
  padding: 20px 25px;
  background: #f7f7f7;
  margin-bottom: 10px;
}

#content .widget h2.widget-title {
  font-size: 16px;
  color: #2f6a7a;
  font-weight: 500;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

#content .widget h3 {
  color: #162f39;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 15px;
}

#content .widget p {
  font-size: 16px;
  line-height: 22px;
}

#content .widget.promotions {
  background: #162f39;
}

#content .widget.promotions h2.widget-title {
  color: #FFF;
  border-bottom: 1px solid #1d3f4c;
  padding-left: 0px;
  margin-top: 0;
  padding-top: 9px;
  position: relative;
}

#content .widget.promotions h2.widget-title:before {
  background: url(/images/icon-coupon.svg) no-repeat left top;
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}

#content .widget.promotions p {
  color: #ddd;
}

#content .widget.job-openings ul.jobs {
  margin: 0;
  list-style-type: none;
}

#content .widget.job-openings ul.jobs li {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
  list-style: none;
}

#content .widget.job-openings ul.jobs li:last-child {
  border-bottom: 0px;
}

#content .widget.job-openings a {
  font-size: 11px;
}

#content .widget.job-openings h3 {
  margin: 0 0 5px;
}

#content .widget.job-openings h3 a {
  color: #162F39;
}

#content .widget.social p a {
  color: #747474;
  font-size: 13px;
  width: 33.333%;
  font-weight: 500;
  letter-spacing: 0px;
  background-size: 25px !important;
  padding: 4px 10px 4px 30px;
}

#content .widget.social p a.angies {
  background: url(/images/icon-angies.svg) no-repeat left center;
}

#content .widget.social p a.twitter {
  background: url(/images/icon-twitter.svg) no-repeat left center;
}

#content .widget.social p a.facebook {
  background: url(/images/icon-facebook.svg) no-repeat left center;
  background-size: 26px !important;
}

#content .widget.social p a.instagram {
  background: url(/images/icon-instagram.svg) no-repeat left center;
  background-size: 22px !important;
}

#content .widget.social p a.linkedin {
  background: url(/images/icon-linkedIn.svg) no-repeat left center;
  background-size: 22px !important;
}

#content .widget.social p a:nth-child(n+3) {
  padding-top: 4px;
}

#content .widget.company-awards a.award-img {
  float: none;
  margin-bottom: 16px;
  display: block;
  max-width: 200px;
}

#content .widget p:last-child,
#content .widget .button {
  margin-bottom: 0;
}

/* About */

#firstsection {
  background: #f7f7f7;
  padding: 90px 0 50px;
}

#content .about-facts {
  margin: 0;
}

#content .about-facts li .large-8 {
  padding: 0;
}

#content .about-facts li h3 {
  color: #189594;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 0;
  margin-bottom: 10px;
  padding: 0;
  margin-top: 0px;
}

#content .about-facts li p {
  font-size: 16px;
  color: #4e6067;
}

#history {
  background: url(/images/about-history.jpg) no-repeat right bottom #FFF;
  min-height: 647px;
  padding: 0;
}

#history h1 {
  color: #2f6a7a;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 50px;
  border: 0;
  padding: 0;
  margin-top: 83px;
}

#history h3 {
  display: none;
}

#history p {
  color: #4e6067;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  margin-bottom: 40px;
}

#history .history-dates {
  padding: 166px 0 90px;
  list-style-type: none;
  margin: 0;
  background: url(/images/timeline.png) no-repeat 64px top;
}

#history .history-dates li {
  text-transform: uppercase;
  font-size: 15px;
  color: #189594;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 75px;
  list-style: none;
}

#history .history-dates li span {
  margin-right: 44px;
  width: 53px;
  display: inline-block;
  text-align: right;
}

#history .history-dates li:nth-child(2) {
  margin-bottom: 105px;
}

#history .history-dates li:nth-child(3) {
  margin-bottom: 62px;
}

#about-bottom {
  background: url(/images/about-testimonial.jpg) no-repeat left top;
  padding: 90px 0 0px;
  min-height: 497px;
}

#about-bottom .section-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

#about-bottom .section-title h2 {
  color: #189594;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 0px 0px 0px;
}

#about-bottom .section-title a {
  display: inline-block;
  text-align: right;
  float: right;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 0 15px;
  letter-spacing: 1px;
  padding-top: 3px;
}

#about-bottom .section-title a.border-right {
  border-right: 1px solid #dadada;
  padding-right: 15px;
}

#about-bottom blockquote {
  border: 0;
  padding: 0;
  color: #4e6067;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

#about-bottom blockquote p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0px;
}

#about-bottom blockquote em {
  color: #9aa6ab;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  font-style: normal;
  margin-top: 10px;
}

#about-bottom blockquote em strong {
  font-weight: 500;
  text-transform: uppercase;
}

#about-bottom .benefits-list {
  margin: 0;
}

#about-bottom .benefits-list li {
  color: #4e6067;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 10px;
  margin-bottom: 0px;
}

#about-bottom .benefits-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #4e6067;
  border-radius: 100%;
  display: block;
  margin-top: 5px;
  float: left;
  margin-right: 10px;
}

/* Team */

.staff #title {
  background: url(/images/header-team.jpg) no-repeat center top;
  height: 289px;
}

.staff #title .columns {
  height: 289px;
}

.staff-list {
  margin-left: 0px !important;
  text-align: center;
}

.staff-list li {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.staff-list li .mover-image {
  border-radius: 100%;
  margin-bottom: 20px;
  padding: 3px;
  border: 3px solid #FFF;
  width: 100%;
  height: auto;
  margin: 0px auto 20px;
}

.staff-list li .mover-image a img {
  border-radius: 100%;
  width: 100%;
}

.staff-list li .mover-image a {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 100%;
  background-size: 100% !important;
}

/*.staff-list li .mover-image a:hover img { opacity: 0; }*/

.staff-list li h3 {
  border-bottom: 0px;
  padding: 0;
  text-align: center;
  margin: 0 0 5px;
}

.staff-list li h3 a {
  color: #283a42;
  font-size: 14px;
  text-transform: uppercase;
}

.staff-list li strong {
  color: #178f8e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  display: block;
}

.team-executives li .mover-image {
  border: 3px solid #1a908f;
}

.team-movers {
  margin-top: 40px;
  margin-left: 0px !important;
}

.team-movers .rewards {
  text-align: center;
  margin-bottom: 10px;
}

.team-movers .rewards span {
  font-size: 11px;
  color: #178f8e;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  height: 25px;
  background-size: 26px !important;
  padding-left: 31px;
  padding-top: 4px;
}

.team-movers .rewards .nl {
  background: url(/images/award-nl.svg) no-repeat left center;
  margin-right: 4px;
}

.team-movers .rewards .stars {
  border-left: 1px solid #ddd;
  background: url(/images/award-star.svg) no-repeat 8px center;
  padding-left: 40px;
}

.staff-detail #content h1 {
  border: 0;
  padding: 0;
  margin: 0 0 5px;
}

.staff-detail #content strong {
  font-size: 11px;
  color: #178f8e;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
}

/*.staff-detail #content img:hover { opacity: 0; }*/

.staff-detail #content .staff-bio {
  margin-top: 15px;
}

.staff-detail #content .rewards {
  float: left;
  background: url(/images/pattern-grid.png) repeat 0 0;
  width: 100%;
  padding: 10px 70px;
  color: #FFF;
  text-align: center;
}

.staff-detail #content .rewards h4 {
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  float: left;
  margin: 0;
  letter-spacing: 0px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  margin-top: 6px;
  padding: 3px 10px 3px 0px;
}

.staff-detail #content .rewards .leadership {
  float: left;
}

.staff-detail #content .rewards .appreciation {
  float: left;
  margin-left: 20px;
}

.staff-detail #content .rewards span {
  float: left;
  color: #FFF;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  padding-left: 36px;
  padding-top: 10px;
}

.staff-detail #content .rewards .nl {
  background: url(/images/award-nl-white.svg) no-repeat left center;
  width: 48px;
  height: 30px;
  display: block;
}

.staff-detail #content .rewards .stars {
  background: url(/images/award-star-white.svg) no-repeat left center;
  width: 48px;
  height: 30px;
  display: block;
}

.staff-detail #content .funfacts {
  float: left;
  width: 100%;
  margin: 30px 0 50px;
}

.staff-detail #content .funfacts h3 {
  font-size: 16px;
  color: #189594;
}

.staff-detail #content .funfacts ul {
  margin: 0;
}

.staff-detail #content .funfacts ul li {
  color: #4e6067;
  font-size: 16px;
  /* text-transform: uppercase; */
  padding: 0 0 20px;
  /* font-weight: 700; */
}

.staff-detail #content .funfacts ul li strong {
  color: #4e6067;
  font-weight: 700;
  display: block;
}

.staff-detail #content {
  padding-bottom: 0px;
}

#content .staff-reviews {
  background: #f7f7f7;
  padding: 50px 0;
}

#content .staff-reviews form {
  margin: 0;
  background: #ececec;
  padding: 20px 30px;
  float: left;
  width: 100%;
}

#content .staff-reviews form h3 {
  color: #178F8E;
  border: 0px;
  padding: 0;
  margin-bottom: 10px;
  font-size: 14px;
}

#content .staff-reviews form input,
#content .staff-reviews form textarea {
  background: #FFF;
  margin: 0;
}

#content .staff-reviews form button {
  padding: 8px 15px;
  font-weight: 500 !important;
}

#content .staff-reviews form .sub_filename {
  margin: 0;
}

#content .staff-reviews form input[type=file] {
  padding: 5px;
}

#content .staff-reviews .large-5 {
  padding: 0 3.5rem 0 0.9375rem;
}

#content .staff-reviews h3 {
  color: #2f6a7a;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 30px;
}

#content .staff-reviews .small-10 h3 {
  margin-top: 0px;
  color: #0d8a89;
  font-size: 14px;
}

/* Services */

.services #title {
  background: url(/images/header-services.jpg) no-repeat center top;
  height: 335px;
}

.services #title .columns {
  height: 335px;
}

.services hr {
  margin: 10px 0 50px;
}

.service-list {
  margin: 30px 0 60px !important;
}

.service-list li {
  padding: 0 1.25rem 0rem;
  position: relative;
  margin: 0px !important;
}

.service-list li a {
  display: block;
  min-height: 173px;
  position: relative;
  width: 100%;
  background-size: cover !important;
  background-position: 0 -20px !important;
}

.service-list li a .service-title {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #1c9291;
  padding: 7px 20px;
}

.service-list li a:hover > .service-title {
  background: #162f39;
}

.service-list li a .service-title h3 {
  color: #FFF;
  border: 0px;
  padding: 3px 0 0 0;
  font-size: 15px;
  margin: 0;
  float: left;
  line-height: 24px;
}

.service-list li a .service-title span {
  float: right;
  display: block;
  width: 30px;
  height: 30px;
}

.service-list li a .service-title span.residential {
  background: url(/images/icon-residential-2.svg) no-repeat 0 0;
}

.service-list li a .service-title span.commercial {
  background: url(/images/icon-commercial-2.svg) no-repeat 0 0;
}

#longdistance {
  background: url(/images/services-longdistance.jpg) no-repeat center top;
  max-width: 1280px;
  margin: 50px auto 0px;
  height: 211px;
  padding: 80px 0;
}

#longdistance .firstCol {
  border-right: 1px solid #FFF;
  padding-left: 0px;
}

#longdistance .secondCol {
  padding-left: 1.5rem;
}

#longdistance h3 {
  color: #FFF;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 22px;
}

#longdistance p {
  color: #FFF;
}

#longdistance .button {
  color: #FFF;
  background: transparent;
  border: 1px solid #FFF;
}

/* Blog */

.blog #title {
  background: url(/images/header-blog.jpg) no-repeat center top;
  height: 329px;
}

.blog #title .columns {
  height: 335px;
}

.blog #content .large-7,
.default #content .large-7,
.contact #content .large-7 {
  width: 60%;
}

.blog #content .large-5,
.default #content .large-5,
.contact #content .large-5 {
  width: 37%;
}

#content .blog-list {
  margin: 0;
  list-style-type: none;
  padding: 0;
  float: left;
  width: 100%;
}

#content .blog-list .blog-post {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
  padding-bottom: 30px;
  float: left;
  width: 100%;
  list-style: none;
}

#content .blog-list .blog-post h1 {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin: 0px;
}

#content .blog-list .blog-post h1 a {
  font-size: 14px;
}

#content .blog-list .blog-post .post-info {
  color: #9b9b9b;
  font-size: 14px;
  margin-bottom: 30px;
}

#content .blog-list .blog-post .post-tags {
  color: #9b9b9b;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  float: left;
  display: block;
}

#content .blog-list .blog-post .post-tags .thetags {
  padding-top: 7px;
  /* display: inline-block; */
  float: left;
}

#content .blog-list .blog-post .post-tags .icon-categories {
  height: 30px;
  width: 30px;
  display: block;
  float: left;
  margin-right: 15px;
}

#content .blog-list .blog-post .post-tags .icon-categories.residential {
  background: url(/images/icon-residential.svg) no-repeat left center;
}

#content .blog-list .blog-post .post-tags .icon-categories.commercial {
  background: url(/images/icon-commercial.svg) no-repeat left center;
}

#content .blog-list .blog-post .post-tags strong {
  color: #9b9b9b;
  font-weight: 700;
  margin-right: 3px;
}

#content .blog-list .blog-post .post-tags a {
  color: #178f8e;
  font-size: 11px;
  letter-spacing: 0px;
}

#content .blog-list .blog-post:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}

#content #blog-navigation {
  margin-top: 20px;
  float: left;
  width: 104%;
}

#content #blog-navigation .columns {
  text-align: center;
  margin: 0px auto;
}

#content #blog-navigation a {
  background: #162f39;
  color: #FFF;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: inline-block;
  padding: 6px 20px;
  min-width: 120px;
  text-align: center;
}

#content #blog-navigation a.nextpage {
  background: #0d8a89;
}

/* Blog Sidebar */

#content .blog-side {
  margin-bottom: 30px;
}

#content .blog-side .categories {
  margin: 0 0 30px;
  list-style-type: none;
  float: left;
  width: 100%;
}

#content .blog-side .categories li {
  margin: 0 0 7px;
  float: left;
}

#content .blog-side .categories li a {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 40px;
  padding-top: 3px;
  height: 30px;
  float: left;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

#content .blog-side .categories li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 30px;
  height: 30px;
}

#content .blog-side .categories li a.icon-residential-moving:before {
  background: url(/images/icon-residential.svg) no-repeat 0 0;
}

#content .blog-side .categories li a.icon-commercial-moving:before {
  background: url(/images/icon-commercial.svg) no-repeat 0 0;
}

#content .blog-side .tags {
  list-style-type: none;
  margin: 0;
}

#content .blog-side .tags li {
  margin: 0 0 2px;
}

#content .blog-side .tags li a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0px;
}

#content .blog-side .tags li a span {
  width: 22px;
  display: inline-block;
  text-align: right;
  margin-right: 3px;
}

#featured-blogs {
  background: url(/images/featuredBG.jpg) repeat center top;
  max-width: 1280px;
  margin: 0px auto;
  padding: 40px 0;
}

#featured-blogs #lastCol {
  padding-left: 2.5em;
}

#featured-blogs .small-7 {
  padding-right: 1.5rem;
}

#featured-blogs h3 {
  font-size: 11px;
  margin: 10px 0;
  text-transform: uppercase;
  color: #FFF;
  letter-spacing: 1px;
  font-weight: 700;
  border: 0;
  padding: 0;
}

#featured-blogs h1 {
  margin: 0px;
}

#featured-blogs h1 a {
  font-size: 24px;
  font-weight: 300;
  color: #FFF;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 32px;
}

#featured-blogs .postinfo {
  float: left;
}

/* Blog Detail */

.blog-detail #content .blog-list .blog-post h1 {
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
  padding-bottom: 30px;
  font-weight: 500;
}

.blog-detail #content .blog-list .blog-post .post-info {
  margin-bottom: 20px;
}

/* Reviews */

.reviews #title {
  background: url(/images/header-services.jpg) no-repeat center top;
  height: 329px;
}

.reviews #title .columns {
  height: 335px;
}

.reviews #content form {
  margin-top: 0px;
  background: #f7f7f7;
  padding: 20px;
}

.reviews #content form input,
.reviews #content form textarea,
.reviews #content form input[type=file] {
  background: #ffffff;
  margin: 0;
  font-size: 14px;
  color: #a3a3a3;
  font-weight: 500;
  padding: 10px;
}

.reviews #content form .sub_filename {
  margin: 0;
}

.reviews #content form .row {
  margin-bottom: 10px;
}

.reviews #content form button {
  padding: 8px 16px;
  float: right;
  font-weight: 500 !important;
}

.reviews #content .large-4 p {
  color: #a3a3a3;
  font-size: 14px;
  font-weight: 500;
}

.reviews #content form h3 {
  color: #178f8e;
  border: 0px;
  margin: 0 0 20px;
  padding: 0;
}

.reviews #content .large-4 {
  width: 37%;
}

.reviews #content .large-8 {
  width: 61%;
}

.reviews #bfpublish {
  height: 500px;
}

.user-comment {
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.user-comment:last-child {
  border-bottom: 0px;
}

.user-comment .user-photo {
  width: 65px;
  height: 65px;
  background: #666;
  border-radius: 100%;
  overflow: hidden;
}

.user-comment h3 {
  color: #178f8e;
  border: 0;
  padding: 0;
  margin: 0;
  font-weight: bold;
  font-size: 20px;
}

.user-comment h4 {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 500;
  font-family: "brandon-grotesque", sans-serif;
}

.user-comment p {
  margin-bottom: 5px;
}

/* Forms */

#content form {
  margin: 30px 0;
}

#content form .row {
  margin-bottom: 10px;
}

#content form label {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  color: #4e6067;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#content form .access {
  padding-right: 20px;
}

#content form .access label,
#content form .access input {
  margin-top: 5px;
  margin-bottom: 1px;
}

#content form .access > .row {
  border-bottom: solid 1px #ddd;
}

#content form .access > .row:last-child {
  border: none;
}

#content form .access h4 {
  margin-bottom: 10px;
}

#content form input,
#content form textarea,
#content form select {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  background: #EBEBEB;
  box-shadow: none;
  border: 0px;
  border-radius: 2px;
  color: #4e6067;
  font-size: 17px;
}

#content form input[type=text],
#content form textarea,
#content form select {
  box-shadow: 0 1px rgba(0, 0, 0, 0.1) inset;
}

#content form textarea {
  min-height: 150px;
}

#content form .accordion input[type=text] {
  margin-bottom: 0;
}

/* Pricing */

.pricing #title {
  background: url(/images/header-services.jpg) no-repeat center bottom;
  height: 150px;
}

.pricing #title .columns {
  height: 335px;
}

.pricing form {
  transition: height 1s ease;
  -webkit-transition: height 1s ease;
  -moz-transition: height 1s ease;
  -o-transition: height 1s ease;
  -ms-transition: height 1s ease;
  overflow: hidden;
  height: 300px;
  position: relative;
}

.pricing #formnav ul {
  margin: 0;
  list-style-type: none;
  width: 100%;
  float: left;
}

.pricing #formnav ul li {
  float: left;
  margin: 0;
  width: 20%;
  text-align: center;
  position: relative;
  list-style: none;
}

.pricing #formnav ul li h4 {
  font-size: 13px;
  color: #ccc;
  letter-spacing: 1px;
  font-weight: 700;
}

.pricing #formnav ul.pos1 li:nth-child(1) h4 {
  color: #189594;
}

.pricing #formnav ul.pos2 li:nth-child(1) h4 {
  color: #189594;
}

.pricing #formnav ul.pos3 li:nth-child(2) h4 {
  color: #189594;
}

.pricing #formnav ul.pos4 li:nth-child(2) h4 {
  color: #189594;
}

.pricing #formnav ul.pos5 li:nth-child(2) h4 {
  color: #189594;
}

.pricing #formnav ul.pos6 li:nth-child(3) h4 {
  color: #189594;
}

.pricing #formnav ul.pos7 li:nth-child(3) h4 {
  color: #189594;
}

.pricing #formnav ul.pos8 li:nth-child(3) h4 {
  color: #189594;
}

.pricing #formnav ul.pos9 li:nth-child(4) h4 {
  color: #189594;
}

.pricing #formnav ul.pos10 li:nth-child(4) h4 {
  color: #189594;
}

.pricing #formnav ul.pos11 li:nth-child(4) h4 {
  color: #189594;
}

.pricing #formnav ul.pos12 li:nth-child(5) h4 {
  color: #189594;
}

.pricing #formnav ul li .circle {
  width: 21px;
  height: 20px;
  display: block;
  border-radius: 100%;
  background: #FFF;
  padding: 0;
  border: 2px solid #ddd;
  margin: 0px auto;
  position: relative;
}

.pricing #formnav ul li .circle i.dot {
  background: #fff;
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 100%;
  position: absolute;
  margin: 5px 6px;
}

.pricing #formnav ul.pos2 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos3 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos4 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos5 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos6 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos7 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos8 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos9 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos10 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos11 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos12 li:nth-child(1) .circle i.dot,
.pricing #formnav ul.pos4 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos5 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos6 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos7 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos8 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos9 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos10 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos11 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos12 li:nth-child(2) .circle i.dot,
.pricing #formnav ul.pos7 li:nth-child(3) .circle i.dot,
.pricing #formnav ul.pos8 li:nth-child(3) .circle i.dot,
.pricing #formnav ul.pos9 li:nth-child(3) .circle i.dot,
.pricing #formnav ul.pos10 li:nth-child(3) .circle i.dot,
.pricing #formnav ul.pos11 li:nth-child(3) .circle i.dot,
.pricing #formnav ul.pos12 li:nth-child(3) .circle i.dot,
.pricing #formnav ul.pos10 li:nth-child(4) .circle i.dot,
.pricing #formnav ul.pos11 li:nth-child(4) .circle i.dot,
.pricing #formnav ul.pos12 li:nth-child(4) .circle i.dot {
  background: #189594;
}

.pricing #formnav ul.pos2 li:nth-child(1) .circle,
.pricing #formnav ul.pos3 li:nth-child(1) .circle,
.pricing #formnav ul.pos4 li:nth-child(1) .circle,
.pricing #formnav ul.pos5 li:nth-child(1) .circle,
.pricing #formnav ul.pos6 li:nth-child(1) .circle,
.pricing #formnav ul.pos7 li:nth-child(1) .circle,
.pricing #formnav ul.pos8 li:nth-child(1) .circle,
.pricing #formnav ul.pos9 li:nth-child(1) .circle,
.pricing #formnav ul.pos10 li:nth-child(1) .circle,
.pricing #formnav ul.pos11 li:nth-child(1) .circle,
.pricing #formnav ul.pos12 li:nth-child(1) .circle,
.pricing #formnav ul.pos4 li:nth-child(2) .circle,
.pricing #formnav ul.pos5 li:nth-child(2) .circle,
.pricing #formnav ul.pos6 li:nth-child(2) .circle,
.pricing #formnav ul.pos7 li:nth-child(2) .circle,
.pricing #formnav ul.pos8 li:nth-child(2) .circle,
.pricing #formnav ul.pos9 li:nth-child(2) .circle,
.pricing #formnav ul.pos10 li:nth-child(2) .circle,
.pricing #formnav ul.pos11 li:nth-child(2) .circle,
.pricing #formnav ul.pos12 li:nth-child(2) .circle,
.pricing #formnav ul.pos7 li:nth-child(3) .circle,
.pricing #formnav ul.pos8 li:nth-child(3) .circle,
.pricing #formnav ul.pos9 li:nth-child(3) .circle,
.pricing #formnav ul.pos10 li:nth-child(3) .circle,
.pricing #formnav ul.pos11 li:nth-child(3) .circle,
.pricing #formnav ul.pos12 li:nth-child(3) .circle,
.pricing #formnav ul.pos10 li:nth-child(4) .circle,
.pricing #formnav ul.pos11 li:nth-child(4) .circle,
.pricing #formnav ul.pos12 li:nth-child(4) .circle {
  border-color: #189594;
}

.pricing #formnav #progress {
  content: "";
  position: absolute;
  left: 18px;
  background: #ddd;
  height: 2px;
  width: 757px;
  top: 7px;
}

.pricing #formnav #progress #bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: #189594;
  transition: width 1s ease;
  -webkit-transition: width 1s ease;
  -moz-transition: width 1s ease;
  -o-transition: width 1s ease;
}

.pricing #formnav .res.pos1 #progress #bar {
  width: 0%;
}

.pricing #formnav .res.pos2 #progress #bar {
  width: 12%;
}

.pricing #formnav .res.pos3 #progress #bar {
  width: 26%;
}

.pricing #formnav .res.pos4 #progress #bar {
  width: 34%;
}

.pricing #formnav .res.pos5 #progress #bar {
  width: 43%;
}

.pricing #formnav .res.pos6 #progress #bar {
  width: 51.5%;
}

.pricing #formnav .res.pos7 #progress #bar {
  width: 60.5%;
}

.pricing #formnav .res.pos8 #progress #bar {
  width: 69%;
}

.pricing #formnav .res.pos9 #progress #bar {
  width: 77%;
}

.pricing #formnav .res.pos10 #progress #bar {
  width: 86%;
}

.pricing #formnav .res.pos11 #progress #bar {
  width: 96%;
}

.pricing #formnav .res.pos12 #progress #bar {
  width: 102.7%;
}

.pricing #formnav .res.pos13 #progress #bar {
  display: none;
}

.pricing #formnav .com.pos1 #progress #bar {
  width: 0%;
}

.pricing #formnav .com.pos2 #progress #bar {
  width: 12%;
}

.pricing #formnav .com.pos3 #progress #bar {
  width: 26%;
}

.pricing #formnav .com.pos4 #progress #bar {
  width: 34%;
}

.pricing #formnav .com.pos5 #progress #bar {
  width: 43%;
}

.pricing #formnav .com.pos6 #progress #bar {
  width: 51.5%;
}

.pricing #formnav .com.pos7 #progress #bar {
  width: 60.5%;
}

.pricing #formnav .com.pos8 #progress #bar {
  width: 69%;
}

.pricing #formnav .com.pos9 #progress #bar {
  width: 77%;
}

.pricing #formnav .com.pos10 #progress #bar {
  width: 86%;
}

.pricing #formnav .com.pos11 #progress #bar {
  width: 96%;
}

.pricing #formnav .com.pos12 #progress #bar {
  width: 102.7%;
}

.pricing #formnav #progress #bar:after {
  content: " ";
  width: 30px;
  height: 20px;
  background: #fff url(/images/header-divider3.png) no-repeat -146px center;
  background-size: cover;
  position: absolute;
  right: 0px;
  margin-right: -5px;
  top: -9px;
  z-index: 4;
}

/*.pricing #formnav ul li.active > h4 { }
.pricing #formnav ul li.active > .circle:after { background: #189594; }
.pricing #formnav ul li.last > .cirle:after { content: none!important; }*/

.pricing form #commercial-move-form,
.pricing form #residential-move-form {
  display: none;
}

.pricing form #commercial-move-form.active,
.pricing form #residential-move-form.active {
  display: block;
}

.pricing form #commercial-move-form .layout-checkboxes label {
  padding-top: 11px;
}

.accordion dd > a {
  background: transparent;
  padding: 17px;
  background: #eee;
  margin-top: 5px;
}

.accordion dd > a:hover {
  background: #ddd;
  color: #fff;
}

.accordion dd > a:hover h4 {
  color: #162f39 !important;
}

.accordion dd a + .active {
  color: #fff;
}

.accordion dd .active ~ a h4 {
  color: #fff !important;
}

.accordion dd {
  position: relative;
}

.accordion .content.active {
  border-top: solid 1px rgba(0, 0, 0, 0.15);
  padding-top: 30px;
  transition: all 2s;
}

.accordion dd .panelarrow {
  background: url(/images/icon-arrow-down.svg) no-repeat center center #FFFFFF;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 17px;
  padding: 11px 11px;
  top: 17px;
  display: block;
  background-size: 12px !important;
  border-radius: 2px;
  cursor: pointer;
}

.accordion dd .content.active .panelarrow {
  background: url(/images/icon-arrow-down.svg) no-repeat center center #F2F2F2;
}

.accordion dd .content label {
  padding-top: 10px;
}

.accordion dd h4 {
  margin: 0;
}

.pricing #content .notes {
  position: absolute;
  top: 0;
  margin-right: 0.9375rem;
  right: 0;
  width: 100%;
  z-index: 9;
}

.pricing #content .notes .editnotes {
  background: url(/images/icon-pencil.svg) no-repeat 5px center #B7B7B7;
  text-transform: uppercase;
  color: #FFF;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 3px;
  background-size: 25px;
  padding: 10px 15px 10px 30px;
  float: right;
}

.pricing #content .notes .editnotes:hover {
  background-color: #0D8A89;
}

.pricing #content .notes .notes-popup {
  display: none;
  top: 25px;
  position: relative;
  background: #C2DADA;
  padding: 20px 30px 47px;
  border-radius: 3px;
  margin: 0 80px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.03), 0 0 0 5000px rgba(255, 255, 255, 0.8);
}

.pricing #content .notes .notes-popup.active {
  display: block;
}

.pricing #content .notes .notes-popup label {
  color: #4e6067;
  font-size: 13px;
  margin-bottom: 10px;
}

.pricing #content .notes .notes-popup textarea {
  background: #FFF;
  min-height: 170px;
  margin-bottom: 10px;
}

.pricing #content .notes .notes-popup a {
  float: right;
  text-transform: uppercase;
  font-size: 11px;
  background: #189594;
  padding: 10px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 3px;
}

.pricing .tip {
  display: block;
  line-height: 20px;
  max-width: 550px;
  margin: 20px auto;
  color: #999;
  font-size: 14px;
  border: solid 1px #eee;
  padding: 20px 30px;
  border-radius: 3px;
}

.pricing #content .formstep {
  margin-bottom: 100px;
  display: none;
}

.pricing #content .formstep.active {
  display: block;
}

.pricing #content form .button {
  padding: 8px 20px;
  margin: 3px;
  font-size: 11px;
  background-color: #0D8A89;
}

.pricing #content form .button.back {
  background-color: #162f39;
}

.pricing #content form .button.back:hover {
  background-color: #275466;
}

.pricing #content form h1 {
  text-align: center;
  border: 0px;
  padding: 0;
}

.pricing #content form #stepone.hide {
  display: none;
}

.pricing #content form #stepone .button {
  padding: 12px 30px;
  margin: 0px 5px 10px 5px;
}

.pricing #content form #stepone .button.residential {
  background: url(/images/icon-residential-3.svg) no-repeat 10px 7px #0D8A89;
  background-size: 25px;
  padding-left: 59px;
}

.pricing #content form #stepone .button.residential:before {
  content: "";
  position: absolute;
  left: 44px;
  top: 4px;
  background: rgba(255, 255, 255, 0.18);
  width: 1px;
  display: block;
  height: 32px;
}

.pricing #content form #stepone .button.residential:hover {
  background-color: #096B6A;
}

.pricing #content form #stepone .button.commercial {
  background: url(/images/icon-commercial-3.svg) no-repeat 10px 7px #162F39;
  background-size: 25px;
  padding-left: 59px;
}

.pricing #content form #stepone .button.commercial:before {
  content: "";
  position: absolute;
  left: 44px;
  top: 4px;
  background: rgba(255, 255, 255, 0.18);
  width: 1px;
  display: block;
  height: 32px;
}

.pricing #content form #stepone .button.commercial:hover {
  background-color: #275466;
}

.pricing #content form .biglabel,
.pricing #content form h4 {
  font-size: 15px;
  color: #178f8e;
  font-weight: 700;
  margin: 4px 0 0;
}

.pricing #content form .numlocation input[type=radio] {
  visibility: hidden;
}

.pricing #content form .numlocation label {
  background: #cfcfcf;
  color: #FFF;
  padding: 4px 0px;
  border-radius: 100%;
  font-size: 14px;
  text-align: center;
  width: 23px;
  height: 23px;
  font-weight: 500;
  margin: 0;
}

.pricing #content form .numlocation input[type=radio]:checked + label {
  background: #178f8e !important;
}

.pricing #content form select {
  background: url(/images/icon-dropdown.svg) no-repeat right center #EBEBEB;
  background-size: 22px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  text-align: right;
  height: 37px;
}

.pricing #content form #bulkyitems #bulkyitem-piano input[type=radio] {
  visibility: hidden;
}

.pricing #content form #bulkyitems #bulkyitem-piano label.labelbox {
  margin: 0px auto;
  text-align: center;
  background: #f2f2f2;
  text-transform: uppercase;
  padding: 17px 25px;
  border-radius: 2px;
}

.pricing #content form #bulkyitems #bulkyitem-piano input:checked + label {
  background: #e1e1e1;
}

.pricing #content form label.labelicon {
  background-size: 94px !important;
  text-align: center;
  margin: 0px auto 20px;
  width: 94px;
  padding-top: 130px;
}

.pricing #content form label.piano {
  background: url(/images/icon-piano.png) no-repeat center center;
}

.pricing #content form label.safe {
  background: url(/images/icon-safe.png) no-repeat center center;
}

.pricing #content form label.tv {
  background: url(/images/icon-tv.png) no-repeat center center;
}

.has-tip {
  border: none;
  background: #B8B8B8;
  padding: 0px 0;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 16px;
  height: 16px;
  display: inline-block;
  text-align: center;
  color: #FFFFFF;
  top: -4px;
  position: absolute;
  margin-left: 3px;
  font-size: 11px;
  line-height: 16px;
}

.has-tip.push {
  top: 0px;
}

.has-tip:hover {
  background: #178f8e;
  color: #fff;
  border: none;
}

.tooltip {
  font-size: 12px;
  line-height: 18px;
  padding: 0.75rem;
  max-width: 20%;
  left: 50%;
  width: 100%;
  color: white;
  background: #333333;
  border-radius: 2px;
}

.tooltip > .nub {
  display: block;
  left: 5px;
  position: absolute;
  width: 0;
  height: 0;
  border: solid 5px;
  border-color: transparent transparent #333333 transparent;
  top: -10px;
}

.tooltip.opened {
  color: #008cba !important;
  border-bottom: dotted 1px #003f54 !important;
}

/* Footer */

#footer {
  max-width: 1500px;
  margin: 0px auto;
  padding: 100px 0 50px;
  background: #FFF;
}

#footer .large-2 {
  padding-left: 0.5375rem;
  padding-right: 0.5375rem;
}

#footer .large-2 ul {
  margin: 0;
  list-style-type: none;
}

#footer .large-2 ul li a {
  line-height: 18px;
  color: #2a2a2a;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

#footer .large-2 ul li {
  display: block;
  line-height: 18px;
}

#footer .large-2 ul li ul li a {
  text-transform: uppercase;
  font-size: 10px;
  color: #878787;
  font-weight: normal;
}

#footer .large-2 ul li a:hover {
  color: #0D8A89;
}

#footer select {
  border: 0;
  margin: 0 0 15px;
  background-color: rgba(0, 0, 0, 0);
  font-size: 12px;
  padding: 0 20px 0 0;
  color: #939393;
  background-size: 8%;
  letter-spacing: 0px;
}

#footer p {
  color: #939393;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
}

#footer .location-name {
  font-weight: normal;
  color: #252525;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  letter-spacing: 1px;
}

#footer .large-4 .large-7 {
  padding-right: 0px;
}

#footer .location-address p {
  text-transform: uppercase;
  color: #939393;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0px;
  margin: 0px;
}

#footer .location-address .address2 {
  padding-left: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-right: 0px;
}

#copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  margin-top: 30px;
}

#footer .builtby {
  float: right;
  background: url(/images/builtby-new.png) no-repeat right top;
  background-size: 27px;
  font-size: 12px;
  text-transform: uppercase;
  height: 28px;
  padding-top: 8px;
  padding-right: 0px;
  text-indent: -9999em;
}

#footer .builtby.move {
  background: url(/images/move-and-store.png) no-repeat right top;
  background-size: 32px;
}

.footer-icon svg {
  float: none;
  display: block;
  margin: 0px auto;
  background-position: center top;
}

.footer-icon svg:nth-child(2) {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* Jibby Text Fix */

.off-canvas-wrap,
.inner-wrap {
  -webkit-backface-visibility: visible !important;
}

#loader {
  position: absolute;
  background: #fff;
  width: 100%;
  z-index: 999;
  opacity: 0.9;
  top: 0;
  bottom: 0;
  display: none;
}

#loader div {
  width: 30px;
  height: 30px;
  background-color: #189594;
  margin: 100px auto;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#about-bottom,
#longdistance {
  display: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
  background: #DDD;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 45px;
  height: 1.8em;
  text-align: center;
  background: #189594;
  color: #fff;
  border-radius: 2px;
  margin: 5px;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  padding: 4px 2px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 31px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  height: 29px;
  font-family: "brandon-grotesque", sans-serif;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
  font-size: 12px;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: center;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

table.grid_field_container {
  border: none;
  width: 104% !important;
}

table.grid_field_container td.grid_field_container_cell {
  padding: 0;
}

table.grid_field {
  margin: 0;
  box-shadow: none !important;
}

table.grid_field td {
  padding: 0px;
}

table.grid_field td div.grid_cell {
  padding: 0 !important;
}

table.grid_field input {
  border-radius: 0;
  box-shadow: none !important;
  margin: 0;
}

table.grid_field select {
  border-radius: 0;
  box-shadow: none !important;
  margin: 0;
}

table.grid_field_container > tbody > tr:last-child {
  background: none;
}

table.grid_field_container > tbody > tr:last-child > td {
  background: none;
  padding: 0;
}

.landing h3 {
  font-size: 14px;
  color: #0d8a89;
  border: none;
  margin: 0 0 10px;
  padding: 0;
  font-family: "brandon-grotesque";
  font-weight: bold;
}

.landing .row {
  max-width: 1100px;
}

.landing #rotator {
  height: 550px;
  background: url(/images/fire-pit/header.jpg) no-repeat center center;
  background-size: cover;
}

.landing #rotator ul {
  margin: 0;
  padding: 0;
}

.landing #rotator p {
  color: #fff;
  font-size: 22px;
  font-weight: 100;
  margin-bottom: 30px;
  font-family: "brandon-grotesque";
  line-height: 26px;
}

.landing #rotator .slide {
  height: auto;
}

.landing #rotator .slide .columns {
  padding-right: 42%;
}

.landing #rotator .slide .slidecontent h1 {
  max-width: 440px;
  margin: 0 auto 20px;
  line-height: 32px;
}

.landing #rotator .button.gray {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.landing #header {
  height: 120px;
}

.landing #header:after {
  display: none;
}

.landing #buckets {
  border-top: solid 8px #0d8a89;
  padding: 75px 0;
}

.landing #buckets h1 {
  margin: 0 0 38px;
  color: #2d2a2a;
}

.landing #buckets img {
  max-width: 100px;
  margin: 10px 0 30px;
}

.landing #buckets .medium-4 {
  padding: 0 40px;
  border-right: solid 1px #eee;
}

.landing #buckets .medium-4:last-child {
  border: none;
}

.landing #estimates {
  padding: 80px 0;
  background: url(/images/fire-pit/hex-bg.png) center center;
}

.landing #estimates h1 {
  font-size: 38px;
  color: #222;
  letter-spacing: 0.025em;
  margin-bottom: 0px;
}

.landing #estimates h1 small {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.landing #estimates h1 em {
  font-size: 26px;
  font-weight: normal;
  font-style: normal;
  line-height: 38px;
  position: relative;
  display: inline-block;
  top: -8px;
  color: #0d8a89;
}

.landing #estimates h1 + p {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

.landing #estimates h1 + p em {
  font-style: normal;
  color: #007095;
}

.landing #estimates .panel {
  border: none;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 60px 20px;
}

.landing #estimates .panel p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.landing #estimates img {
  max-width: 100px;
  margin: 10px 0 30px;
}

.landing #estimates .medium-4 {
  padding: 0 40px;
  border-right: solid 1px #eee;
}

.landing #estimates .medium-4:last-child {
  border: none;
}

.landing #reviews {
  padding: 30px 0;
  background: #fff;
}

.landing #reviews .columns img:first-child {
  width: 46px;
}

.landing #reviews .rating {
  color: #e97100;
  font-size: 18px;
  font-weight: bold;
  padding-right: 10px;
}

.landing #reviews .stars {
  display: inline-block;
  width: 75px;
  height: 20px;
  position: relative;
  top: 3px;
}

.landing #reviews .stars .active {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}

.landing #reviews .stars .bg {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

.landing #reviews .stars img {
  width: 75px !important;
}

.landing #reviews .pipe {
  display: inline-block;
  margin: 0 5px;
  color: #777;
}

.landing #reviews a {
  color: #888;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.025em;
}

.landing #reviews blockquote {
  max-width: 850px;
  margin: 20px auto;
  border: none;
  padding: 0;
}

.landing #reviews blockquote cite {
  margin-top: 15px;
  font-style: normal;
  font-weight: bold;
}

.landing #more .row {
  max-width: none;
}

.landing #more .expect {
  background: url(/images/fire-pit/expect-bg.jpg) no-repeat center center;
  background-size: cover;
}

.landing #more .protect {
  background: url(/images/fire-pit/protect-bg.jpg) no-repeat center center;
  background-size: cover;
}

.landing #more .expect:after,
.landing #more .protect:after {
  content: "";
  display: block;
  padding-top: 80%;
}

.landing #more .content {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  max-width: 410px;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  padding: 20px;
}

.landing #more img {
  max-width: 70px;
  max-height: 60px;
}

.landing #more h3 {
  color: #fff;
  margin: 20px 0 10px;
}

.landing #more p {
  color: #fff;
  font-family: "brandon-grotesque";
  font-weight: 100;
  font-size: 18px;
}

.landing #partners {
  padding: 50px 0;
}

.landing #partners img {
  margin: 0 auto;
  max-width: 175px;
  display: block;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.landing #partners li {
  margin: 0;
  padding: 0;
}

.pricing-new #header {
  height: 130px;
}

.pricing-new #header .mainNav,
.pricing-new #header .mastNav .search,
.pricing-new #header .mastNav .estimate {
  display: none;
}

.pricing-new #header .mastNav {
  margin-top: 20px;
}

.pricing-new #header .mastNav li {
  font-size: 20px;
}

.pricing-new #header:after {
  height: 2px;
}

.pricing-new form .row {
  max-width: 610px;
  margin: 30px auto;
}

.pricing-new form .sizeRow {
  max-width: 850px;
  margin: 20px auto 0 !important;
  top: -10px;
  position: relative;
}

.pricing-new .sizeRow .columns {
  border: solid #fff 20px;
  padding: 0;
  text-align: center;
  width: 20%;
}

.pricing-new .sizeRow .columns > * {
  position: relative;
  z-index: 2;
}

.pricing-new .sizeRow .columns img {
  opacity: 0.5;
}

.pricing-new .sizeRow .columns.homeSizeSmall img {
  width: 39%;
  margin: 22px 0 14px;
}

.pricing-new .sizeRow .columns.homeSizeMedium img {
  width: 80%;
  margin: -8px 0 -8px;
}

.pricing-new .sizeRow .columns.homeSizeLarge img {
  width: 59%;
  margin: -4px 0 15px;
}

.pricing-new .sizeRow .columns.homeSizeXLarge img {
  width: 74%;
  margin: -7px 0 -1px;
}

.pricing-new .sizeRow .columns.homeSizeBusiness img {
  width: 54%;
  margin: 2px 0 16px;
}

.pricing-new .sizeRow .check {
  transition: all 0.3s ease;
  position: absolute;
  top: 200px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  z-index: 1;
  background: #0d8a89;
}

.pricing-new input[type=radio] {
  visibility: hidden;
  position: absolute !important;
}

.pricing-new input[type=radio]:checked + .check {
  top: -20px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: #0b4d60;
}

.pricing-new input[type=radio]:checked + .check + label img {
  opacity: 1;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.pricing-new input[type=radio]:checked + .check + label + label {
  color: #fff !important;
}

.pricing-new #flexible {
  margin-top: 12px;
}

.pricing-new #copyright {
  margin-top: 2px;
  border: none;
}

.pricing-new #content form input {
  font-weight: 300;
}

.pricing-new #content form label {
  margin-bottom: 5px;
}

.pricing-new button {
  margin-top: 20px;
}

.pricing-new h2 {
  margin-bottom: 0px;
}

.pricing-new #footer {
  padding-top: 0;
  top: 0;
  margin: 0;
  border: none;
}

.pricing-new form .sizeRow.distance {
  max-width: 400px;
}

.pricing-new form .sizeRow.distance .columns {
  width: 50%;
}

@media only screen and (max-width: 960px) {
  .landing #more .expect:after,
  .landing #more .protect:after {
    padding-top: 100%;
  }

  .pricing-new .sizeRow {
    max-width: 600px !important;
  }

  .pricing-new .sizeRow .columns {
    width: 33%;
    height: 200px;
  }

  .pricing-new .sizeRow .columns.homeSizeXLarge {
    left: 15%;
  }

  .pricing-new .sizeRow .columns.homeSizeBusiness {
    right: 15%;
  }
}

@media only screen and (max-width: 640px) {
  .landing #header {
    height: 70px;
  }

  .landing #rotator .slide .columns {
    padding: 0;
  }

  .landing #rotator .slide .slidecontent h1 {
    font-size: 22px;
  }

  #rotator .slide .slidecontent {
    padding: 0 20px;
  }

  .landing #rotator {
    height: 430px;
  }

  .landing #partners img {
    margin: 10px auto;
  }

  .pricing-new .sizeRow {
    max-width: 320px !important;
  }

  .pricing-new .sizeRow .columns {
    width: 100% !important;
    height: 50px;
    clear: both !important;
    left: 0 !important;
    right: 0 !important;
    border: none;
    margin-bottom: 5px;
  }

  .pricing-new .sizeRow .columns label:nth-child(3) {
    width: 64px;
    float: left;
    height: 50px;
  }

  .pricing-new .sizeRow .columns label:nth-child(3) img {
    margin: 0;
    height: 50px;
  }

  .pricing-new .sizeRow .columns label:nth-child(4) {
    width: calc(100% - 64px);
    text-align: left;
    height: 50px;
    display: block;
    float: left;
    padding: 17px 0;
  }

  .pricing-new .sizeRow .columns .check {
    background: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .pricing-new .sizeRow .columns > * {
    z-index: 6;
  }

  .pricing-new input[type=radio]:checked + .check {
    top: -15px;
    bottom: -15px;
    z-index: 5;
  }
}

.grw {
  border: 1px none whitesmoke;
  z-index: 2147483647;
  position: fixed;
  left: 0px;
  bottom: 0px;
  box-shadow: #a2a2a2 1px 1px 3px;
  text-indent: 0px;
  margin: 0px;
  background: #f5f5f5;
  float: none;
  line-height: 1;
  font-size: 0;
  vertical-align: baseline;
  display: inline-block;
  width: 165px;
  height: 54px;
  padding: 7px 9px;
}

.grw__meta {
  position: relative;
}

.grw__value {
  display: inline-block;
  color: #e57125;
  font-family: HelveticaNeue-Medium;
  font-size: 13.5px;
}

.grw__stars {
  overflow: hidden;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 52px;
  margin-left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.grw__logo {
  margin-top: 1px;
}

.button.icon-clock span {
  background: url(/images/icon-stopwatch.svg) no-repeat -47px -43px;
  width: 42px;
  height: 23px;
  display: block;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 10px;
}

.button.icon-phone span {
  background: url(/images/icon-phone.svg) no-repeat -47px -43px;
}

@media only screen and (max-width: 1500px) {
  #sitewrapper,
  #header,
  #rotator,
  #buckets,
  #signup,
  #meetmovers,
  #cta,
  #testimonials #footer {
    width: 100%;
  }
}

/* 1280px */

@media only screen and (max-width: 1024px) {
  #header .logo {
    width: 25%;
  }

  #header .logo a {
    width: 100%;
    background-size: 100%;
  }

  #header .mainNav li {
    margin: 0 10px;
  }

  #header .mainNav li a {
    font-size: 12px;
  }

  #header .mainNav li ul li a,
  .subNav li a {
    font-size: 10px;
    letter-spacing: 0px;
    padding: 0 10px;
  }

  #header:after {
    display: none;
  }

  #buckets .large-4 h2 {
    font-size: 14px;
  }

  #meetmovers {
    padding: 50px 0;
  }

  #meetmovers p {
    width: 60%;
  }

  #footer {
    padding: 50px 0;
  }

  #firstsection {
    padding: 50px 0;
  }

  #title .columns {
    padding: 0 10%;
  }

  #featured-blogs h1 {
    line-height: 20px;
  }

  #featured-blogs h1 a {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
  }

  #content .blog-side .categories li a {
    font-size: 12px;
    letter-spacing: 0px;
    padding-top: 6px;
  }

  .location-select {
    width: 100%;
  }

  .pricing #content form h1 {
    text-align: left;
    font-size: 18px;
  }

  .inside #content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about #content {
    padding: 0;
  }

  .staff-detail .large-7 {
    padding-left: 20px;
  }

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

  #content .about-facts li h3 {
    margin-top: 10px;
  }

  #history .history-dates li {
    font-size: 14px;
  }

  #about-bottom {
    background-position: -260px top;
  }

  #meetmovers .button {
    width: 50%;
  }

  .service-list li a .service-title h3 {
    font-size: 10px;
    letter-spacing: 0px;
  }

  .pricing #content form #bulkyitems #bulkyitem-piano label.labelbox {
    display: block;
  }

  .pricing #content form #bulkyitems #bulkyitem-piano input[type=radio] {
    margin: 0;
  }

  #content .widget.social p a {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }

  #content .widget h2.widget-title {
    font-size: 15px;
  }

  .staff-detail #content .rewards {
    padding: 10px 50px;
  }

  .staff-detail #content .rewards h4 {
    min-width: 140px;
    text-align: right;
  }

  .staff-detail #content .rewards .leadership {
    float: none;
    width: 100%;
  }

  .staff-detail #content .rewards .appreciation {
    margin-left: 0px;
    float: none;
    width: 100%;
  }

  #content .staff-reviews .large-5 {
    padding: 0 0.9375rem;
  }

  .staff-detail #content {
    padding: 50px 0;
  }

  .staff-detail #content .row:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .user-comment .user-photo {
    width: 45px;
    height: 45px;
  }

  #footer select {
    background-size: 3% !important;
  }

  #longdistance .firstCol {
    padding-left: 0.9375rem;
  }
}

/* 1000px */

@media only screen and (max-width: 768px) {
  .location-select ul li {
    margin-bottom: 20px;
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .mobile {
    display: block;
  }

  .mastNav,
  .mainNav,
  #footer .large-2 {
    display: none;
  }

  .location-select {
    padding: 40px;
  }

  .move-right a.exit-off-canvas {
    box-shadow: none;
    background: rgba(0, 0, 0, 0.5);
  }

  .move-right a.exit-off-canvas:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  .left-off-canvas-menu {
    background: #333;
  }

  #header {
    height: 70px;
    padding: 0;
  }

  #header .large-12 {
    padding: 0;
  }

  #header .logo {
    display: none;
    width: 33.333%;
    /* padding: 0 .9375rem; */
    border-right: 1px solid #efefef;
    height: 70px;
  }

  #header .logo a {
    width: 100%;
    height: 70px;
    background: url(/images/logo-mobile.svg) no-repeat center center;
    background-size: 68px;
  }

  #header a.moblink {
    width: 33.333%;
    float: left;
    display: block;
    text-align: center;
    height: 70px;
    text-transform: uppercase;
    font-size: 13px;
    color: #333;
    padding: 45px 0 10px;
  }

  #header a.moblink.moblink {
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
  }

  #header a.moblink.quickestimate,
  #header a.moblink.quickprice {
    position: relative;
    top: -5px;
    line-height: 1;
  }

  #header a.mobmenu {
    background: url(/images/mobile-menu.svg) no-repeat center 12px;
    background-size: 32px;
    border-right: 1px solid #efefef;
  }

  #header a.quickestimate {
    border-left: 1px solid #efefef;
    background: url(/images/mobile-estimate.svg) no-repeat center 12px;
    background-size: 32px;
  }

  #header a.call {
    border-left: 1px solid #efefef;
    background: url(/images/icon-phone-dark.svg) no-repeat center -32px;
    background-size: 150px;
  }

  #header a.quickprice {
    border-right: 1px solid #efefef;
    background: url(/images/mobile-price.svg) no-repeat center 12px;
    background-size: 32px;
  }

  body.home #header {
    height: initial;
  }

  .left-off-canvas-menu {
    background-color: #fff !important;
  }

  .mobileNav {
    margin: 0;
    list-style-type: none;
  }

  .mobileNav > li {
    margin: 0;
    border-bottom: 1px solid #DCDCDC;
  }

  .mobileNav li:last-child {
    border-bottom: 0px;
  }

  .mobileNav li a {
    display: block;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #000000;
    font-size: 12px;
    font-weight: 600;
  }

  .mobileNav li.active > a {
    color: #0D8A89;
  }

  .mobileNav li.active > a:hover {
    color: #0D8a89;
  }

  .mobileNav li:hover > a:hover {
    background: #0d8a89;
    color: #FFF !important;
  }

  .mobileNav li ul {
    margin: 0;
    list-style-type: none;
    margin-bottom: 5px;
  }

  .mobileNav li ul li {
    margin: 0;
  }

  .mobileNav li ul li a {
    font-size: 14px;
    padding: 5px 20px;
    text-transform: capitalize;
    font-weight: 400;
  }

  .mobileNav li ul li a:hover {
    color: #0d8a89;
  }

  .mobileNav li:hover > ul,
  .mobileNav li:focus > ul,
  .mobileNav li.parent-active > ul,
  .mobileNav li.active > ul {
    display: block;
  }

  #rotator,
  .orbit-slides-container,
  .orbit-container {
    height: 352px;
  }

  #rotator .slide,
  #rotator .slide .slidecontent {
    height: 320px;
  }

  #rotator .slide .slidecontent {
    height: 320px;
    text-align: center !important;
  }

  #rotator .slide h4 {
    font-size: 12px;
  }

  #rotator .slide h1 {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    margin: 0 0 10px;
  }

  #rotator .slide h4:before,
  #rotator .slide h4:after {
    width: 10px;
    left: -15px;
    top: -3px;
  }

  #rotator .slide h4:after {
    right: -15px;
    left: auto;
  }

  #rotator .slide .button {
    display: inline-block;
    margin-bottom: 10px;
  }

  .orbit-container .orbit-prev,
  .orbit-container .orbit-next {
    display: none;
  }

  #rotator .pager {
    height: auto;
  }

  #rotator .pager a {
    padding-top: 20px;
    margin-top: 12px;
  }

  #rotator .pager a i.bullet {
    border-radius: 100%;
    width: 10px;
    height: 10px;
    opacity: 0.8;
  }

  #rotator .pager a span,
  #rotator .pager a.active > span,
  #rotator .pager a.active > i.bullet:after {
    display: none;
  }

  #rotator .pager a i.bullet:before {
    content: none;
  }

  #rotator .pager a i.bullet:after {
    content: none;
  }

  #rotator .pager a.active > i.bullet {
    opacity: 1;
  }

  #rotator .slide h4:before,
  #rotator .slide h4:after {
    left: 10px;
  }

  #rotator .slide h4:after {
    right: 10px;
    left: auto;
  }

  #buckets {
    padding: 30px 0 0;
  }

  #buckets .small-12 h2 {
    font-size: 14px;
  }

  #buckets .columns p img {
    width: 100%;
  }

  #signup {
    padding: 30px 0;
  }

  #signup h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }

  #signup form input {
    width: 85%;
  }

  #signup form label {
    width: 15%;
  }

  #signup form label.email {
    margin-left: 0px;
  }

  #signup form .large-8 {
    padding: 0 0.9375rem;
  }

  #signup form button {
    float: none;
    margin: 0px auto;
    display: block;
  }

  #meetmovers {
    padding: 30px 0;
  }

  #meetmovers h2 {
    font-size: 16px;
    margin: 0 0 10px;
  }

  #meetmovers p {
    width: 100%;
    font-size: 14px;
  }

  #meetmovers .movers li h3 {
    font-size: 12px;
  }

  #meetmovers .movers li strong {
    font-size: 9px;
  }

  #cta {
    padding: 30px 0;
  }

  #cta p {
    font-size: 18px;
  }

  #cta .button {
    margin: 0 10px 10px;
  }

  .about #title,
  .staff #title,
  .reviews #title,
  .blog #title {
    height: 250px !important;
  }

  .about #title .columns,
  .staff #title .columns,
  .reviews #title .columns,
  .blog #title .columns {
    height: 250px !important;
    padding: 0 5%;
  }

  #content #blog-navigation {
    margin-bottom: 20px;
  }

  #content .staff-list {
    margin-left: 0px;
  }

  .reviews #content .large-4,
  .reviews #content .large-8 {
    width: 100%;
  }

  #content .staff-reviews .large-5 {
    padding: 0 0.9375rem;
  }

  .staff-detail .large-7 {
    padding-left: 0.9375rem;
  }

  .user-comment .user-photo {
    width: 45px;
    height: 45px;
  }

  .staff-detail #content .rewards {
    margin: 0px auto;
    padding: 10px 20px;
  }

  .blog #content .large-7,
  .default #content .large-7,
  .contact #content .large-7 {
    width: 100%;
  }

  .blog #content .large-5,
  .default #content .large-5,
  .contact #content .large-5 {
    width: 100%;
  }

  #title h2 {
    font-size: 14px;
  }

  #title p {
    font-size: 26px;
    line-height: 24px;
  }

  #history .history-dates {
    display: none;
  }

  #history h3 {
    display: block;
  }

  #firstsection {
    padding: 30px 0;
  }

  #content .about-facts li .columns {
    text-align: center;
  }

  #content .about-facts li {
    margin-bottom: 0px;
  }

  #content .about-facts li h3 {
    font-size: 12px;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 10px;
  }

  #content .about-facts li p {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
  }

  #footer {
    padding: 50px 0 30px;
  }

  #footer #copyright .large-6 p {
    text-align: center;
    letter-spacing: 0px;
  }

  #footer .location-address .address2 {
    padding-left: 0px;
    border-left: 0px;
  }

  #footer .builtby {
    float: none;
    display: block;
    margin: 0px auto;
    background-position: center top;
  }

  #history .medium-7 {
    width: 100%;
  }

  .services #content .service-list li {
    margin-bottom: 20px !important;
  }

  #longdistance {
    padding: 20px 0;
  }

  #longdistance h3 {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 10px;
  }

  #longdistance h3 br {
    display: none;
  }

  #longdistance p {
    font-size: 13px;
    line-height: 16px;
    text-align: center;
  }

  #longdistance .columns {
    text-align: center;
  }

  #featured-blogs #lastCol {
    padding-left: 0.9375rem;
  }

  #content .blog-list .blog-post h1 {
    line-height: 16px;
    margin-bottom: 10px;
  }

  .grw {
    display: none;
  }
}

/* 767px */

@media screen and (max-width: 768px) {
  .is-hidden-mobile {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .is-hidden-tablet {
    display: none !important;
  }
}

@media only screen and (max-width: 640px) {
  #footer .location-address .address2 {
    padding-left: 0.9375rem;
  }

  #title p {
    font-size: 16px;
    line-height: 20px;
  }

  #buckets .small-12 {
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 20px;
  }

  #buckets .small-12:last-child {
    border-bottom: 0px;
  }

  #about-bottom {
    background: #f6f6f6;
    min-height: 0px;
    padding: 50px 0;
  }

  #about-bottom .section-title h2 {
    font-size: 14px;
  }

  #about-bottom .section-title a {
    font-size: 10px;
    letter-spacing: 0px;
  }

  #about-bottom blockquote {
    margin-bottom: 20px;
  }

  #about-bottom blockquote p {
    font-size: 14px;
  }

  #about-bottom .benefits-list li {
    font-size: 10px;
  }

  #meetmovers .button {
    width: 100%;
    letter-spacing: 0px;
  }

  #testimonials .title a {
    border: 0px;
    display: block;
    margin-left: 0;
    padding-left: 0;
  }

  .inside #content {
    padding-left: 0;
    padding-right: 0px;
  }

  .staff-list li .mover-image {
    width: 100px;
    height: 100px;
  }

  .staff-list li .mover-image a {
    width: 94px;
    height: 94px;
  }

  .staff-detail #content .rewards h4 {
    min-width: 150px;
    font-size: 10px;
  }

  #content .staff-reviews .row:first-child {
    padding: 0;
  }

  #cta p {
    font-size: 16px;
    line-height: 26px;
  }

  #meetmovers .orbit-container ul li ul li:nth-child(4),
  #meetmovers .orbit-container ul li ul li:nth-child(5) {
    display: none;
  }

  .location-select ul li {
    width: 100%;
  }

  .location-select .button {
    margin-bottom: 10px;
    min-width: 170px;
  }
}

/* 540px */

@media only screen and (max-width: 480px) {
  #subnavigation {
    display: none;
  }

  #about-bottom .section-title h2 {
    display: block;
  }

  #about-bottom .section-title a {
    float: none;
    margin-left: 0px;
    margin-right: 10px;
    border: 0px;
    margin-top: 10px;
  }

  #about-bottom .section-title a.border-right {
    border-right: 0px;
    border-left: 1px solid #DADADA;
    padding-left: 15px;
    margin-left: 15px;
    margin-right: 0px;
    padding-right: 0px;
  }
}

/* 480px */

/* 320px */

@media print {
  #header {
    display: none;
  }

  #header .logo a {
    text-indent: 0;
  }

  #header:after,
  #header .mastNav,
  #header .mainNav {
    display: none;
  }

  form .row:nth-of-type(-n+5) > .columns {
    width: 33%;
  }

  form .blank_row,
  form .empty_field {
    display: none;
  }

  #cta,
  #footer {
    display: none;
  }
}

.alert {
  display: block;
  padding: 30px;
  text-align: center;
  background-color: #5D9C95;
}

.alert__inner {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

.alert__heading,
.alert__copy {
  color: #fff;
}

.alert__heading {
  display: block;
  margin: 0 0 15px 0;
}

.alert__heading:last-child {
  margin: 0;
}

.alert__copy {
  display: block;
  margin: 0;
}

.alert__copy p {
  color: #fff;
}

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

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

.block {
  display: block;
  margin-bottom: 45px;
}

.block__heading {
  display: block;
  margin-bottom: 15px;
}

.block:first-child {
  margin-top: 0;
}

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

.block--full-width .block__component {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .block--full-width .block__component {
    max-width: 637px;
  }
}

.block--standard + .block--full-width {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #dddddd;
}

.block--full-width + .block--standard {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #dddddd;
}

.block--needs-space + .block--needs-space:before {
  content: "";
  display: block;
  margin: 10px 0 40px;
  border: solid #dddddd;
  border-width: 1px 0 0;
}

.block--buttons ul {
  margin: 0 !important;
  list-style: none;
}

.block--buttons li {
  display: inline-block;
  margin: 0 15px;
}

.block--buttons li:first-child {
  margin-left: 0;
}

.block--buttons li:last-child {
  margin-right: 0;
}

.block--navigation {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.block--navigation .widget-title {
  margin: 0 25px;
}

.calculator {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.calculator__fields {
  display: inline-block;
  padding: 50px 55px;
  margin: 0;
  overflow: hidden;
  background-color: red;
  background-color: #f2f2f2;
  list-style: none;
}

.calculator__fields:before,
.calculator__fields:after {
  content: " ";
  display: table;
}

.calculator__fields:after {
  clear: both;
}

.calculator__field {
  position: relative;
  display: inline-block;
  float: left;
  vertical-align: top;
}

@media (max-width: 767.9px) {
  .calculator__field {
    height: auto !important;
    min-height: auto !important;
  }
}

.calculator__field:after {
  display: inline-block;
  float: left;
}

.calculator__field--times,
.calculator__field--equals {
  text-align: center;
}

.calculator__field--rate {
  width: 100%;
}

@media (min-width: 768px) {
  .calculator__field--rate {
    width: 135px;
  }
}

.calculator__field--times {
  width: 100%;
}

@media (max-width: 767.9px) {
  .calculator__field--times {
    height: 100px !important;
  }
}

@media (min-width: 768px) {
  .calculator__field--times {
    width: 90px;
  }
}

.calculator__field--times .calculator__symbol {
  font-size: 50px;
  height: 100px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .calculator__field--times .calculator__symbol {
    margin-top: 33px;
  }
}

.calculator__field--hours {
  width: 100%;
}

@media (min-width: 768px) {
  .calculator__field--hours {
    width: 116px;
  }
}

.calculator__field--equals {
  width: 100%;
}

@media (max-width: 767.9px) {
  .calculator__field--equals {
    height: 100px !important;
  }
}

@media (min-width: 768px) {
  .calculator__field--equals {
    width: 90px;
  }
}

@media (min-width: 768px) {
  .calculator__field--equals .calculator__symbol {
    margin-top: 16px;
  }
}

.calculator__field--total {
  min-width: 100%;
  -webkit-transform: width 0.3s ease-in-out;
          transform: width 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .calculator__field--total {
    min-width: 145px;
  }
}

.calculator__inside {
  position: relative;
  margin: 0 auto;
  vertical-align: top;
}

.calculator__label {
  display: block;
  margin: 0 0 25px 0;
  color: #73706e;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

.calculator__value {
  display: block;
  color: #189594;
  font-size: 80px;
  font-weight: 200;
  font-family: "proxima-nova", proxima-nova, sans-serif;
  line-height: 1;
}

.calculator__input {
  display: block;
  width: 100% !important;
  height: 90px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #595959 !important;
  font-size: 80px !important;
  font-family: "proxima-nova", proxima-nova, sans-serif !important;
  text-align: center !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  line-height: 0;
}

.calculator__input,
.calculator__input:hover,
.calculator__input:focus {
  border: 0 !important;
  border-bottom: 1px solid #cacaca !important;
  box-shadow: none !important;
  outline: 0 !important;
  background-color: #fff !important;
}

.calculator__symbol {
  display: block;
  color: #189594;
  font-size: 80px;
  font-weight: 100;
  line-height: 1;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.figure {
  display: block;
  margin: 0;
}

@media (max-width: 1199.9px) {
  .figure {
    display: block;
    width: 100%;
  }
}

.figure--full {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .figure--left {
    display: inline-block;
    margin: 0;
    padding: 0 1.25rem 1.25rem 0;
    float: left;
    max-width: 33.3%;
  }
}

@media (min-width: 768px) {
  .figure--right {
    display: inline-block;
    margin: 0;
    padding: 0 0 1.25rem 1.25rem;
    float: right;
    max-width: 33.3%;
  }
}

@media (min-width: 768px) {
  .figure--center {
    margin: 0 auto;
    max-width: 50%;
  }
}

.figure img,
.figure__image {
  display: block;
  width: 100%;
  height: auto;
}

.figure figcaption,
.figure__caption {
  display: block;
  margin: 10px 0 0 0;
  color: #9aa3a7;
  font-family: "proxima-nova", proxima-nova, sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-align: left;
}

.gallery {
  position: relative;
}

.gallery__arrow {
  position: absolute;
  top: calc(50% - 14px);
  display: block;
  margin: 0;
  color: #fff;
  font-size: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gallery__arrow i {
  color: #508887;
  transition: color 0.3s ease-in-out;
}

.gallery__arrow:hover i {
  color: #345857;
}

.gallery__arrow--prev {
  left: 15px;
}

.gallery__arrow--next {
  right: 15px;
}

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

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

.hero-form {
  position: relative;
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-form .hero-body-columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-form .hero-body-columns.is-centered {
  justify-content: center;
}

.hero-form .hero-body-columns.is-centered .hero-body-content {
  flex: 0 1 65%;
  justify-self: center;
  text-align: center;
}

.hero-form .hero-body-columns.is-centered .hero-body-content .subtitle {
  max-width: 100% !important;
}

@media screen and (max-width: 1024px), print {
  .hero-form .hero-body-columns.is-centered .hero-body-content {
    flex: 1 1 100%;
  }
}

.hero-form .hero-body-columns .hero-body-content {
  flex: 1 1 60%;
}

.hero-form .hero-body-columns .hero-body-content .title > p {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-transform: uppercase;
}

@media screen and (max-width: 801px), print {
  .hero-form .hero-body-columns .hero-body-content .title > p {
    font-size: 35px;
    line-height: 40px;
  }
}

@media screen and (max-width: 562px), print {
  .hero-form .hero-body-columns .hero-body-content .title > p {
    font-size: 25px;
    line-height: 30px;
  }
}

.hero-form .hero-body-columns .hero-body-content .subtitle {
  margin-top: 15px;
  margin-bottom: 25px;
  max-width: 80% !important;
}

.hero-form .hero-body-columns .hero-body-content .subtitle > p {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

@media screen and (max-width: 562px), print {
  .hero-form .hero-body-columns .hero-body-content .subtitle > p {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (min-width: 1200px), print {
  .hero-form .hero-body-columns .hero-body-content .subtitle {
    max-width: 100% !important;
  }
}

@media screen and (min-width: 1024px), print {
  .hero-form .hero-body-columns .hero-body-content .subtitle {
    max-width: 90% !important;
  }
}

@media screen and (min-width: 861px), print {
  .hero-form .hero-body-columns .hero-body-content .subtitle {
    margin-top: 25px;
    margin-bottom: 35px;
  }
}

.hero-form .hero-body-columns .hero-body-content > a {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  min-width: 139px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0rem 2rem;
  border-radius: 2px;
  cursor: pointer;
}

.hero-form .hero-body-columns .hero-body-content > a.has-text-black {
  color: #000000 !important;
}

.hero-form .hero-body-columns .hero-body-content > a.has-text-white {
  color: #ffffff !important;
}

@media screen and (max-width: 861px), print {
  .hero-form .hero-body-columns .hero-body-content {
    flex: 1 1 100%;
  }
}

.hero-form .hero-body-columns .hero-body-form {
  flex: 1 1 calc(40% - 57px);
}

.hero-form .hero-body-columns .hero-body-form.multiple-columns {
  flex: 1 1 70%;
}

.hero-form .hero-body-columns .hero-body-form .form-columns {
  display: flex;
}

.hero-form .hero-body-columns .hero-body-form .form-columns > div {
  width: 50%;
}

.hero-form .hero-body-columns .hero-body-form .form-columns > div:not(:last-of-type) {
  margin-right: 15px;
}

.hero-form .hero-body-columns .hero-body-form > section {
  padding: 36px 50px;
  background-color: #ffffff;
}

@media screen and (max-width: 1024px), print {
  .hero-form .hero-body-columns .hero-body-form > section {
    padding: 25px 15px;
  }
}

@media screen and (max-width: 861px), print {
  .hero-form .hero-body-columns .hero-body-form {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 861px), print {
  .hero-form .hero-body-columns {
    flex-wrap: wrap;
  }
}

.hero-form nav {
  position: absolute;
  width: 100%;
  height: 111px;
  background-color: #ffffff;
}

.hero-form nav .logo {
  background-image: url(/images/nl-horizontal-logo-new.png);
  background-repeat: no-repeat;
  display: block;
  width: 300px;
  height: 60px;
  background-size: 273px;
  text-indent: -999em;
}

.hero-form nav .logo a {
  display: block;
  height: 100%;
}

@media (max-width: 862px) {
  .hero-form nav .logo {
    background-size: 273px;
  }
}

.hero-form nav .mastNav {
  margin: 0px;
  padding: 0px;
}

.hero-form nav .row,
.hero-form nav .columns {
  height: 100%;
}

.hero-form nav .columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-form nav .button {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 11px !important;
  line-height: 16px !important;
  letter-spacing: 0.1em;
  margin-bottom: 0px;
  margin-left: 10px;
  min-width: 139px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0rem 2rem;
  background: #639F9F;
  border-radius: 2px;
  cursor: pointer;
}

.hero-form nav .call-full {
  display: inline-block;
}

.hero-form nav .call-full > span {
  display: inline-block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  text-align: right;
  color: #B1B1B1;
}

.hero-form nav .call-full > span a {
  color: #B1B1B1;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}

@media (max-width: 862px) {
  .hero-form nav .call-full {
    display: none;
  }
}

.hero-form nav .call {
  display: none;
  width: 75px;
  height: 75px;
  background: url(/images/icon-phone-dark.svg) no-repeat center center;
  background-size: 150px;
  cursor: pointer;
}

@media (max-width: 862px) {
  .hero-form nav .call {
    display: inline-block;
  }
}

.hero-form nav.is-transparent {
  background-color: transparent;
  color: #ffffff !important;
}

.hero-form nav.is-transparent a {
  color: #ffffff !important;
}

.hero-form nav.is-transparent .logo {
  background-image: url(/images/nl-horizontal-logo-light-new.png);
  background-repeat: no-repeat;
}

.hero-form nav.is-transparent .call-full > span {
  color: #ffffff !important;
}

.hero-form nav.is-transparent .call {
  background: url(/images/icon-phone-light.svg) no-repeat center center;
}

.hero-form nav:not(.is-transparent) + .flex.container {
  padding-top: 111px;
}

.hero-form .form-heading {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 24px;
  line-height: 34px;
  color: #303030;
  margin-bottom: 25px;
}

.hero-form form .control {
  margin-bottom: 15px;
}

.hero-form form input {
  font-family: "brandon-grotesque", sans-serif;
  width: 100%;
  padding: 0px 20px;
  border: 1px solid #dfdfdf;
  height: 57px;
  font-size: 18px;
  line-height: 30px;
  color: #939393;
  border-radius: 4px;
  box-shadow: none;
}

.hero-form form input::placeolder {
  color: #939393;
}

.hero-form form select {
  font-family: "brandon-grotesque", sans-serif;
  width: 100%;
  padding: 0px 20px;
  border: 1px solid #dfdfdf;
  height: 57px;
  font-size: 18px;
  line-height: 30px;
  color: #939393;
  border-radius: 4px;
}

.hero-form form .button {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 0px;
  min-width: 139px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0rem 2rem;
  background: #639F9F;
  border-radius: 2px;
  cursor: pointer;
}

.hero-form .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

@media (max-width: 862px) {
  .hero-form .flex {
    height: auto;
  }
}

.hero-form .container {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

@media (max-width: 1025px) {
  .hero-form .container {
    padding: 0px 25px;
  }
}

@media (max-width: 862px) {
  .hero-form .container {
    padding: 35px 25px;
    padding-top: 125px !important;
  }
}

@media (max-width: 862px) {
  .hero-form {
    height: auto;
  }
}

.input-group {
  position: relative;
}

.input-group--select .input-group__textinput {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 37px !important;
}

.input-group--select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #73706e;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.input-group--material .input-group__textinput.is-dirty + ul + .input-group__label,
.input-group--material .input-group__textinput.is-dirty + input + .input-group__label,
.input-group--material .input-group__textinput.is-dirty + input + ul + .input-group__label,
.input-group--material .input-group__textinput.is-dirty + .input-group__label,
.input-group--material .input-group__textinput:focus + ul + .input-group__label,
.input-group--material .input-group__textinput:focus + input + .input-group__label,
.input-group--material .input-group__textinput:focus + input + ul + .input-group__label,
.input-group--material .input-group__textinput:focus + .input-group__label {
  top: 0;
  left: 0;
  color: #3e8888;
  font-size: 10px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 1;
}

.input-group--required .input-group__label:after {
  content: "*";
  position: relative;
  left: 2px;
  color: #f05b6f;
  vertical-align: top;
}

.input-group,
.input-group__textinput,
.input-group__button {
  display: block;
  height: 40px;
}

.input-group__textinput,
.input-group__button {
  width: 100%;
  margin: 0;
}

.input-group__textinput,
.input-group__label {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  color: #73706e;
  font-size: 16px;
  font-family: "proxima-nova", proxima-nova, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .input-group__textinput,
  .input-group__label {
    font-size: 13px;
  }
}

.input-group__textinput {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 15px 15px 0 !important;
  outline: 0;
  border: 0 !important;
  border-bottom: 1px solid #cacaca !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  border-radius: 0 !important;
  background: none !important;
  transition: border-color 0.3s ease-in-out;
}

.input-group__textinput:focus {
  border-color: #3e8888;
}

.input-group__textinput.is-dirty + .input-group__label {
  opacity: 0;
}

.input-group__button {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.input-group__label {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  transition: top 0.3s ease-in-out, left 0.3s ease-in-out, color 0.3s ease-in-out, font-size 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, left 0.3s ease-in-out, color 0.3s ease-in-out, font-size 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, left 0.3s ease-in-out, color 0.3s ease-in-out, font-size 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48 !important;
  background-color: #F2DEDE !important;
  border: 1px solid #EED3D7 !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.parsley-errors-list {
  display: none;
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

.review-section {
  padding: 45px 90px;
  background-color: #F9F9F9;
}

@media (max-width: 767.9px) {
  .review-section {
    padding: 45px;
  }
}

.review-section .review-quote {
  padding: 0rem;
}

.reviews-section {
  padding: 74px 0px;
  background-color: #F9F9F9;
}

.review {
  text-align: center;
}

.review-quote {
  padding: 0rem 10rem;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #000000;
}

.review-quote > p:last-child {
  margin-bottom: 0px;
}

@media (max-width: 991.9px) {
  .review-quote {
    padding: 0rem 6rem;
  }
}

@media (max-width: 767.9px) {
  .review-quote {
    padding: 0rem 4rem;
  }
}

.review-cite {
  margin-top: 24px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
}

.review-rating {
  margin-bottom: 24px;
}

.review-rating > span svg {
  fill: #C4C4C4;
}

.review-rating > span.is-active svg {
  fill: #3A7D7D;
}

/*
 * Slider via Tiny Slider 
 * https://github.com/ganlanyuan/tiny-slider
 */

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}

.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: opacity 0s, -webkit-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div,
.tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714286%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

.slider {
  position: relative;
  z-index: 1;
}

.slider .slider-nav {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0px 30px;
  margin-top: -28px;
  justify-content: space-between;
  z-index: 2;
}

.slider .slider-nav button {
  background-color: transparent;
}

.slider .slider-nav > * {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
  border: none;
  cursor: pointer;
  outline: none;
}

@media (max-width: 991.9px) {
  .slider .slider-nav > * {
    height: 40px;
    width: 40px;
  }

  .slider .slider-nav > * > .u-arrow {
    width: 10px;
    height: 10px;
  }
}

.slider .slider-nav > * > div {
  flex-grow: 0;
}

.slider .slider-nav > *:disabled {
  opacity: 0.3;
}

@media (max-width: 991.9px) {
  .slider .slider-nav .slider-nav-next {
    position: relative;
    right: -50px;
  }
}

@media (max-width: 991.9px) {
  .slider .slider-nav .slider-nav-prev {
    position: relative;
    left: -50px;
  }
}

.slider .slider-nav .slider-nav-next > div {
  position: relative;
  left: -2px;
}

.slider .slider-nav .slider-nav-prev > div {
  position: relative;
  left: 2px;
}

.slider .slider-items {
  display: flex;
}

.slider .slider-items > .slider-item {
  align-self: center;
}

button[data-action=stop],
button[data-action=start] {
  display: none;
}

.video-bg {
  position: absolute;
  width: 100%;
  min-height: 330px;
}

.video-bg-overlay {
  background: rgba(0, 0, 0, 0.33);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 56.1%;
  z-index: 1;
}

.video-bg video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 840px;
  min-height: 330px;
}

#rotator {
  height: 0px;
  z-index: 2;
  text-shadow: 0 0 10px black;
  padding-top: calc(56.111% + 32px);
  min-height: 330px;
}

@media (min-width: 768px) {
  #rotator {
    padding-top: 56.111%;
    min-height: auto;
  }
}

#rotator .orbit-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.orbit-prev,
.orbit-next {
  display: none;
}

.subnav__headline {
  display: block;
  width: 100%;
  padding: 0.625rem 1.25rem;
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  background-color: #2A9BD4;
}

.subnav__main {
  list-style: none !important;
  margin: 0 !important;
  padding: 0;
}

.subnav__main__item {
  position: relative;
  display: block;
  list-style: none !important;
}

.subnav__main__item.active > a,
.subnav__main__item:hover > a {
  color: #2A9BD4;
  background-color: #fafafa;
  border-right: 6px solid #4A7C97;
  padding-right: 0;
}

.subnav__main__item.active .subnav__sub,
.subnav__main__item:hover .subnav__sub {
  display: block;
}

.subnav__main__item > a {
  display: block;
  margin-bottom: -1px;
  padding: 0.4rem 25px;
  padding-right: 5px;
  transition: border-right 125ms ease-in-out, background 125ms ease-in-out, padding-right 125ms ease-in-out;
}

.subnav__sub {
  display: none;
  padding: 1.25rem;
  background-color: #eaedee;
  margin-top: -4px;
  margin-bottom: 4px;
}

.subnav__sub__item {
  display: block;
}

.subnav__sub__item:hover {
  color: #fff;
  border-top: none;
}

.subnav__sub__item > a {
  display: block;
}

@media (min-width: 1200px) {
  .subnav__sub__item > a {
    font-size: 1rem;
  }
}

.table {
  width: 100%;
}

.wizard {
  position: relative;
  display: block;
  font-family: "brandon-grotesque", sans-serif;
}

.wizard__progress {
  position: relative;
  display: none;
  width: 100%;
  height: 3px;
  background-color: #f2f2f2;
}

@media (min-width: 768px) {
  .wizard__progress {
    display: block;
  }
}

.wizard__progress:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 78px;
  height: 52px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCIgd2lkdGg9IjE4NyIgaGVpZ2h0PSIxMjMuOTY5IiB2aWV3Qm94PSIwIDAgMTg3IDEyMy45NjkiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6ICM3MzcwNmU7CiAgICAgICAgZmlsbC1ydWxlOiBldmVub2RkOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBkPSJNMTc3LjQxOSw1MC4xODcgTDE4Ni45OTgsODMuODIwIEwxNzYuNDIyLDgzLjgyMCBMMTc2LjQyMiwxMjAuNDY2IEwxODUuNDMxLDEyMC40NjYgTDE4NS40MzEsMTIzLjk4MCBMMTc2LjQyMiwxMjMuOTgwIEwxNjYuNDExLDEyMy45ODAgTDE2NS45MTAsMTIzLjk4MCBMMTMyLjg3NCwxMjMuOTgwIEwxMTUuMzU1LDEyMy45ODAgTDExNC44MTMsMTIzLjk4MCBMMTEzLjg1MywxMjMuOTgwIEw5MS4yODcsMTIzLjk4MCBMMy43MzEsMTIzLjk4MCBMMy43MzEsMTIwLjQ2NiBMMTIuMjE4LDEyMC40NjYgTDEyLjIxOCw4My44MjAgTC0wLjAwMCw4My44MjAgTDEyLjc0MSw3Mi4wMjUgTDEyLjc0MSwzMy42MjEgTDEuOTkxLDMzLjYyMSBMMTQuMTA3LC0wLjAxMiBMMTI1LjAwMiwtMC4wMTIgTDEzNy4xMTcsMzMuNjIxIEwxMjYuMzY3LDMzLjYyMSBMMTI2LjM2Nyw1MC4xODcgTDE3Ny40MTksNTAuMTg3IFpNMTgyLjM2Myw4MC4zMDYgTDE3NC43ODMsNTMuNzAxIEwxMjYuMzY3LDUzLjcwMSBMMTI2LjM2Nyw3Mi4wMjYgTDEzNS4zMTEsODAuMzA2IEwxODIuMzYzLDgwLjMwNiBaTTEzNi4zNzgsMTIwLjQ2NiBMMTYyLjkwNywxMjAuNDY2IEwxNjIuOTA3LDkzLjg2MCBMMTM2LjM3OCw5My44NjAgTDEzNi4zNzgsMTIwLjQ2NiBaTTEyNS4yMjIsMTIwLjQ2NiBMMTMyLjg3NCwxMjAuNDY2IEwxMzIuODc0LDkwLjM0NiBMMTY2LjQxMSw5MC4zNDYgTDE2Ni40MTEsMTIwLjQ2NiBMMTcyLjkxOCwxMjAuNDY2IEwxNzIuOTE4LDgzLjgyMCBMMTM5LjEwNyw4My44MjAgTDEzMi40MzIsODMuODIwIEwxMjUuMjIyLDgzLjgyMCBMMTI1LjIyMiwxMjAuNDY2IFpNOTQuNzkxLDEyMC40NjYgTDExMS4zMDksMTIwLjQ2NiBMMTExLjMwOSw5My44NjAgTDk0Ljc5MSw5My44NjAgTDk0Ljc5MSwxMjAuNDY2IFpNODIuNjc1LDEyMC40NjYgTDkxLjI4NywxMjAuNDY2IEw5MS4yODcsOTAuMzQ2IEwxMTQuODEzLDkwLjM0NiBMMTE0LjgxMywxMjAuNDY2IEwxMTUuMzU1LDEyMC40NjYgTDEyMi4wMDUsMTIwLjQ2NiBMMTIyLjAwNSw4My44MjAgTDgyLjY3NSw4My44MjAgTDgyLjY3NSwxMjAuNDY2IFpNMTUuNDM1LDEyMC40NjYgTDc5LjQ1OCwxMjAuNDY2IEw3OS40NTgsODMuODIwIEwxNS40MzUsODMuODIwIEwxNS40MzUsMTIwLjQ2NiBaTTEzMi4xMzUsMzAuMTA3IEwxMjIuNTQ0LDMuNTAyIEwxNi41NjIsMy41MDIgTDYuOTc0LDMwLjEwNyBMMTQuNzgwLDMwLjEwNyBMNDcuODcxLDcuMTM0IEw4MC45NDEsMzAuMTA3IEwxMzIuMTM1LDMwLjEwNyBaTTgyLjM0MSw3MC4yNjcgTDEyMi44NjMsNzAuMjY3IEwxMjIuODYzLDUyLjY5NyBMMTIyLjg2Myw1MC4xODcgTDEyMi44NjMsMzMuNjIxIEw4Mi4xMzcsMzMuNjIxIEw4Mi4zNDEsNzAuMjY3IFpNNzguNjI5LDMyLjg0MCBMNDcuODcwLDExLjQxNSBMMTYuMjQ1LDMzLjM2MSBMMTYuMjQ1LDcwLjI2NyBMNzguODM3LDcwLjI2NyBMNzguNjI5LDMyLjg0MCBaTTEyMy4wOTksNzMuNzgwIEwxNi4wMDksNzMuNzgwIEw4Ljk2NSw4MC4zMDYgTDEzMC4xNDIsODAuMzA2IEwxMjMuMDk5LDczLjc4MCBaTTQxLjI3Myw0MC4xNDcgTDU3Ljc5MSw0MC4xNDcgTDYxLjI5NSw0MC4xNDcgTDcxLjMwNSw0MC4xNDcgTDcxLjMwNSw2My43NDEgTDYxLjI5NSw2My43NDEgTDU3Ljc5MSw2My43NDEgTDQxLjI3Myw2My43NDEgTDM3Ljc2OSw2My43NDEgTDI3Ljc1OCw2My43NDEgTDI3Ljc1OCw0MC4xNDcgTDM3Ljc2OSw0MC4xNDcgTDQxLjI3Myw0MC4xNDcgWk02MS4yOTUsNjAuMjI3IEw2Ny44MDIsNjAuMjI3IEw2Ny44MDIsNDMuNjYxIEw2MS4yOTUsNDMuNjYxIEw2MS4yOTUsNjAuMjI3IFpNNTEuMjgzLDYwLjIyNyBMNTcuNzkxLDYwLjIyNyBMNTcuNzkxLDUzLjcwMSBMNTEuMjgzLDUzLjcwMSBMNTEuMjgzLDYwLjIyNyBaTTUxLjI4Myw1MC4xODcgTDU3Ljc5MSw1MC4xODcgTDU3Ljc5MSw0My42NjEgTDUxLjI4Myw0My42NjEgTDUxLjI4Myw1MC4xODcgWk00MS4yNzMsNjAuMjI3IEw0Ny43ODAsNjAuMjI3IEw0Ny43ODAsNTMuNzAxIEw0MS4yNzMsNTMuNzAxIEw0MS4yNzMsNjAuMjI3IFpNNDEuMjczLDUwLjE4NyBMNDcuNzgwLDUwLjE4NyBMNDcuNzgwLDQzLjY2MSBMNDEuMjczLDQzLjY2MSBMNDEuMjczLDUwLjE4NyBaTTMxLjI2Miw2MC4yMjcgTDM3Ljc2OSw2MC4yMjcgTDM3Ljc2OSw0My42NjEgTDMxLjI2Miw0My42NjEgTDMxLjI2Miw2MC4yMjcgWk0xMDUuODQ0LDYzLjc0MSBMOTkuMzM3LDYzLjc0MSBMOTUuODMzLDYzLjc0MSBMODUuODIxLDYzLjc0MSBMODUuODIxLDQwLjE0NyBMOTUuODMzLDQwLjE0NyBMOTkuMzM3LDQwLjE0NyBMMTA1Ljg0NCw0MC4xNDcgTDEwOS4zNDgsNDAuMTQ3IEwxMTkuMzU5LDQwLjE0NyBMMTE5LjM1OSw2My43NDEgTDEwOS4zNDgsNjMuNzQxIEwxMDUuODQ0LDYzLjc0MSBaTTk1LjgzMyw0My42NjEgTDg5LjMyNSw0My42NjEgTDg5LjMyNSw2MC4yMjcgTDk1LjgzMyw2MC4yMjcgTDk1LjgzMyw0My42NjEgWk0xMDUuODQ0LDQzLjY2MSBMOTkuMzM3LDQzLjY2MSBMOTkuMzM3LDUwLjE4NyBMMTA1Ljg0NCw1MC4xODcgTDEwNS44NDQsNDMuNjYxIFpNMTA1Ljg0NCw1My43MDEgTDk5LjMzNyw1My43MDEgTDk5LjMzNyw2MC4yMjcgTDEwNS44NDQsNjAuMjI3IEwxMDUuODQ0LDUzLjcwMSBaTTExNS44NTUsNDMuNjYxIEwxMDkuMzQ4LDQzLjY2MSBMMTA5LjM0OCw2MC4yMjcgTDExNS44NTUsNjAuMjI3IEwxMTUuODU1LDQzLjY2MSBaTTU3LjI1MCwxMTMuOTQwIEw0MC43MzIsMTEzLjk0MCBMMzcuMjI4LDExMy45NDAgTDI3LjIxNywxMTMuOTQwIEwyNy4yMTcsOTAuMzQ2IEwzNy4yMjgsOTAuMzQ2IEw0MC43MzIsOTAuMzQ2IEw1Ny4yNTAsOTAuMzQ2IEw2MC43NTQsOTAuMzQ2IEw3MC43NjUsOTAuMzQ2IEw3MC43NjUsMTEzLjk0MCBMNjAuNzU0LDExMy45NDAgTDU3LjI1MCwxMTMuOTQwIFpNMzcuMjI4LDkzLjg2MCBMMzAuNzIxLDkzLjg2MCBMMzAuNzIxLDExMC40MjYgTDM3LjIyOCwxMTAuNDI2IEwzNy4yMjgsOTMuODYwIFpNNDcuMjM5LDkzLjg2MCBMNDAuNzMyLDkzLjg2MCBMNDAuNzMyLDEwMC4zODYgTDQ3LjIzOSwxMDAuMzg2IEw0Ny4yMzksOTMuODYwIFpNNDcuMjM5LDEwMy45MDAgTDQwLjczMiwxMDMuOTAwIEw0MC43MzIsMTEwLjQyNiBMNDcuMjM5LDExMC40MjYgTDQ3LjIzOSwxMDMuOTAwIFpNNTcuMjUwLDkzLjg2MCBMNTAuNzQzLDkzLjg2MCBMNTAuNzQzLDEwMC4zODYgTDU3LjI1MCwxMDAuMzg2IEw1Ny4yNTAsOTMuODYwIFpNNTcuMjUwLDEwMy45MDAgTDUwLjc0MywxMDMuOTAwIEw1MC43NDMsMTEwLjQyNiBMNTcuMjUwLDExMC40MjYgTDU3LjI1MCwxMDMuOTAwIFpNNjcuMjYxLDkzLjg2MCBMNjAuNzU0LDkzLjg2MCBMNjAuNzU0LDExMC40MjYgTDY3LjI2MSwxMTAuNDI2IEw2Ny4yNjEsOTMuODYwIFpNMTQzLjg4NiwxMTAuNDI2IEwxNTUuMzk4LDExMC40MjYgTDE1NS4zOTgsMTEzLjk0MCBMMTQzLjg4NiwxMTMuOTQwIEwxNDMuODg2LDExMC40MjYgWiIgY2xhc3M9ImNscy0xIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}

.wizard__progress__truck {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0%;
  min-width: 5%;
  z-index: 9999;
  background-color: #086471;
  transition: width 0.25s linear;
}

.wizard__progress__truck:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100%;
  background-color: #086471;
}

.wizard__progress__truck:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -74px;
  display: block;
  width: 64px;
  height: 29px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIkAAAA+CAYAAAAf6zgEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkM0NTc2Q0MyOTNBMTFFODg5OURDMzAzRTU2NjlCMDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkM0NTc2Q0QyOTNBMTFFODg5OURDMzAzRTU2NjlCMDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyQzQ1NzZDQTI5M0ExMUU4ODk5REMzMDNFNTY2OUIwNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyQzQ1NzZDQjI5M0ExMUU4ODk5REMzMDNFNTY2OUIwNiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk/yILsAAAzgSURBVHja7F0JdFTVGb4zGTLZoEDYIYAgtRZoCTuoWASBCgVUMGwJe0uBQoysETAEpQYIBCLLgZRFpNiGngMKsmoR8FiKshfBpYBFonAkQMCEZN57/f6Z+8LNZN5smUlm+8/5znvv3rfMu/d7//3v/997R8e4vJI8rQk2u4D2zH/lPqADLgOtWXBJEZCRmbUqzdM31gv7r/g5QUguAVFAPUAKMpJEAK/hY4/zJklq+Xkh5QHxfL8ucJoFp8R6+oYGjfRUYK2/lEqxXq97N67pXlmna6im6RSlddPCn9r2vHHjWhAQ4ywQ562ba5GkEG3bbX8poeqrViZg08Va/X4VU/3Vk6nzhgc6Q9DEyN68v97fCwgEiSSDTSN7GPK7s5AEN0kgyUAzO/lZIIouVNVBShJUfgNuP2mLonRispwYqurg1SSLgRgNcjCQA1CYIit/jsnMjA5Vd5CRBFqEfDpjHJADoH25EY5nh6o7+DRJFrN4V+2Rw3xsgTwz5s2MuFCVBwlJoEWGYPNUWXLIWuRQ8yKAN0NV7roY/O0H513Pqzbu6JHxx77PsxAEoI26z2hfVjTylBHR6Yuz7y9I/ZcP+TiOYdOkgrdpEtIkgpgkU8rabt06Rev0kllzSKh8Sebg+6Va5aEmETRLVvRri3ypS9yEd+ErgjDhfiODmiRXLl+pL5mkV0GE2IXx7U+rhBCbFjvkMDdFyOsCjAjg1iEF2unJoCUJtMjrQHWAPdOwQZsmkVF3rQhgjxyijZIRlZoW5YOvOJFZgpSugnp6Z4Q63QyixASdTfLlpUvtZEkaLyQZl3Xu+EXCoY/asbJ2B1OPFWHfKq8xMAt7aT72ml9nZq1yK3oNUpA74DgQDrQElgCTg0qTmCRpOaADmIoWMTHtOtep8z9r7aFw7cHsa5ZZkTPnNWEBIpxc6ULSH0GcPkGjSc6dPTtYMpl62sp7o0P8g7579qPuVc1hrT2Y0NMpcxwJZHjD0PNAj+cwNk+7cEkfkOQgttTF/x17GBHfiHu1qWhE3+c1yelTp8IlSVoGMFuI0usfTXik+XnFhm/Ejk2injsiInlO1wBQJDtABj3IQKPxkoBCnt4YWBXwzY3JZJoOtASYFiY+9mj9SL1ecqXZEfKyIv40y9+jxDWA7bzZ+RKbOUJeIgg0OGBJ8u/jx+vJsjwPYPagU5S6M9q2Pm2bHIod4pjzugDDfLgYLgDNNfCNcN5LIEMPvp8NHBbyNiCvbkDaJNAS6fwrcSg9GtRr0yAi4m7e/fs1bPVobNsrpXkZxkkpOx+sW17og8VQDO1wVcN26cWJojrTdiEtFufL2I7G8XmgOlAHWA88H1Ca5OiRI21hc0zQskWsge6xcUGHX31j3bQ8jOeUt0mEWE8cjmf6YY/mKu/qqlIT2MLzvmWWAVmqDAZxEgOKJNAiy4Ewe7aINZpFRcY/EhN11XYkWHYUJZ5tHD+tsR8ShQZdXRGSRoIMXXneRmx2C3nZyGscECQ5dODgQMkk9QaYq0ho0XyXnUiwZpQY+1E0OMlPDVfyh6iDockI3029HX5MXtxbfP9nwCbk6fyaJPv37QuXZHR5ZVS667jXtV5sGir8UHlylO8a29AsieFJUzr7oTb5ijZCEs29yeF532MzSch71urY/0gCbTAVaOWOFgEW9+3XLx+VnQJIdoN9kqBZSiPI5ihyVviISTo/JAqFGcQ5RmOgMTrwvFxs3hXyliKvpV+S5L1du2JNkmk+BfDcwFWARquxotXLzoEAG8qQgw8jMJND4mRRyVFW63QDhjH/lGetmp29Qt5UZpnlSELjfSkIGOZ3JIEmSAdquqlFZg8cNOhhF1aSF4AAd0rJUc7rasteeRglrjZ0YqQfapOL3EeiSl0QYQPP+5HbJ6rQcIIUv/KT7MjNbQ2b4g9uXv4J8Hcx4cGGrJvGcdPSFUXJ1IoS2xi5pubFAdQlTveBoolDRee4+r0JvpPxuD4bJDkL7OH3msDzFuF4L9LP+wVJoAmWs7IjrFyRlxOGD1OsE6EZ3kJlTwJaOQj22cqbZRg8Nse0c9P1Ki4aMkLHV+B6anb2A+o8adIevbnH1gjkgijzqbUHWYp9liTb3nmnP+yJPna0hL0v6dbIUaNO2HRVbs4uDk+cPAQV3l6bHAqNR5luIy8aoHk9Y5j/SwMQYQ1IMBkowP5YpH3ECfQLIgpwE+nkiMvBOZd8iiRvb95i4FpESzoCiUljRl925/7FW9fQjPuztvKqDZmgAxEm2hmclBTWP/Etac/Wzyq5WD5llrGvRg/W0TMgQThpC+Aw9heysoOuKLYzg4C8lTgn2WdIAg1Co6d+bucUKqhlwIuefjaM2eEgQndbzQ6P9YBELCus38inpH3blEo0QOdiM9fLz1gIMrzP7ZNRzBLjUWU68j7hXeeq7d3krF9fW5akNNkSe7GHF3BuT08+2/D82Gj0bpaUd6yVixI/AbzEAlBAgpPUBFFzBFATJBqw5MKPrXKSmExSGlALYE5g5bo1az2n+WRlDiq/sTOBQCBD3yshkgWogCg/AZux2x8o4Mn1geVVSpLV2dmPS2hqAOYk2gK/94gWGTi6OQgww1EgUNAszbCfwgJceORYnDOdBG3yW30VapHlQJiTWkTFopUrsmp7QIsstUz7tBXs0xycNFff48VGLPBlHfCxcLyySkiyIjOzryxL/QDmImoDEyvybPRWWqLyhzDNMSayVrMTDWItDgJtQgb6FCGpVaWTZGnGEgPXIswNFAHbK+S027OVBiZ97HiMic28JF23wR2DQJt8V6V+EtgV5Hr/pbscm5Oa+m3Fmxs5Gd3bk+je6hQNd73NiejmLrGygqkrGgSJVCpJXk9fZCwqLJpVWHT/hmQy1UQFhat5Op3ugcFgyI+MijGGhRlsrSlLEcwMjxD1wPbT6K38BRU+wTE5hHzz3B72JOswYCj7fHeuL1Qgj+TO5V1YWn+lmuoGAu4xy6y+uWhG3HYI6ivxZbrl37r534KC201NJSX1RIKY30hRjCUlJQ3u3smvdef2rXyTqeSBVe8mdd6C+fc91wWW56HSCzQjwWXHmJiHFwhR4iUs/rkIHyDIWN5lXQS0EAhi/u64g4ziNCdw7nGgps+SBD9uGjZHgUbO1Z9Uq+Du7WogzY8SKgj4HHjbk79J/mfuD6j8N0oJYL2EhdYqBWY1Yw6OvVzFBCG/Bo1hddZ/QyPuvsN1j7v6LB0uosk89FXTsHt18bl84K6H3sfIPXqi0L1ppBQZoVeAx5jFNfwCs6wNXyrhxkhmKimWaKCZNwqbGhOdex+LwlHRUWxiky/xezqsN1Y+Yk4j54k45GqnaZ1tgXFAPysNQ8+45oTyiBN/YCsbJ9Vi3llrngqAopFTrdKJKPtBWJqiSKO7n+N2CispLqKmKMxbX6SPjVMMc7NMx6NMN1ml03ycnShT+ug+BLoKz2jmqiaprMAVPScZL+Nwbip+Ew0gGspC4rDVBPqjTPc5UaY7sRnkid5ND/bQd19RieZ2iPqxfugMQbhDh6YsXuTNkFoYI0KcYE1Z2clYSc4QhAs15YeF7jvVzTSNc8ngPaJFknOe+uMBVPJsgSAKtzlcERqMfEpoIykI9X4wMwRlKsaPPkN5bHP2Wj71k8aQHOJJnYAvkP7AxnNq2tMkTd3tJtmQ/sL+NfyYH1y5mBZlwW+5wywTikhodvy5INckvYT9f7hxPWkStUypC98LZXrBxnk17JHkjJde7oqb110XSDI0ZKeUkUuuXkDrl/DebCeetMdZP0leJbyQyc3rpBAXNMXd/xhs6uL5eaRJqNu5jDuIPClGrtJI3J2ILa6pQXNqioOcGFGCz+PXbtg01P2tIyTdc/AhUgswwwAVRIZMOy8YWeQOPqiShPrrNALKhesbWpGkE67/T5AbrjRQeSk/bOnGLXoLvhiqi9oo0xJnmhtvCXWx8oXucLKL16cKv+/rYCcIl/eE/XgaNeYCwainOU9I+sAZgniVJLxrtU5Imo8f2t3JFxrAyq5BuirEj9L10ES/SI4L643QOmriStErnX2utwN8tGSkOoCF7JMPHC3yxiObucJvO29FtmCXFME2o4DpUZRZvJ3yNAA0ok4cVfc3EO6Ysw/0euiChggwS+xAjFYeYJZlmz7lTRIZU+QJpIHO4pKZFAjshhe6EOJGuQ9po5BEHum/UuUziwOykBOIVhmYYmW/kDbq4orTVFdJL0UG0w7B5+GM3AAG4GVOhGhhs0yn8GbYldaAZjJSrMel/0qulPEkvAfVQejtOBLyJrYLEcRuma7m2ve8E6eTgZrFtbLLf6atq4IvgJoTWgXwN8wyvdPA29iLvFnaghc5E6KB0+VJHzqFQGiW4RPM4u/ScR8IEYgWstnM59S4Jf8XYAA0qUDMQ0BW5gAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}

.wizard__main {
  position: relative;
  margin-top: 87.5px;
}

@media (max-width: 767.9px) {
  .wizard__main {
    height: auto !important;
    min-height: auto !important;
  }
}

.wizard__steps {
  display: block;
}

.wizard__step {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-bottom: 180px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@media (max-width: 767.9px) {
  .wizard__step {
    position: static;
    display: none;
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 50px;
  }
}

.wizard__step--active {
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.wizard__step--Distance .wizard__nav {
  display: none;
}

.wizard__component {
  display: block;
  text-align: center;
}

.wizard__headline,
.wizard__header h2 {
  position: relative;
  display: block;
  padding: 0 0 20px 0;
  margin: 0 0 40px 0 !important;
  color: #2f6a7a;
  font-size: 24px;
  font-weight: 400;
  font-family: "brandon-grotesque", sans-serif;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .wizard__headline,
  .wizard__header h2 {
    font-size: 30px;
  }
}

.wizard__headline:after,
.wizard__header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  height: 2px;
  width: 80px;
  background-color: #d3d3d3;
}

.wizard__headline,
.wizard__header h2,
.wizard__subheadline,
.wizard__header h3,
.wizard__help,
.wizard__header p {
  text-align: center;
}

.wizard__headline:not(:last-child),
.wizard__header h2:not(:last-child),
.wizard__subheadline:not(:last-child),
.wizard__header h3:not(:last-child),
.wizard__help:not(:last-child),
.wizard__header p:not(:last-child) {
  margin-bottom: 15px;
}

.wizard__header {
  margin: 0 auto 42px auto;
  width: 100%;
  max-width: 600px;
}

.wizard__subheadline,
.wizard__header h3 {
  display: block;
  padding: 0;
  color: #73706e;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.3;
  border: 0;
}

@media (min-width: 768px) {
  .wizard__subheadline,
  .wizard__header h3 {
    font-size: 24px;
    padding: 0 20px;
  }
}

.wizard__help,
.wizard__header p {
  display: block;
  color: #b8b6b4;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
}

@media (min-width: 768px) {
  .wizard__help,
  .wizard__header p {
    font-size: 15px;
  }
}

.wizard__options {
  display: block;
  padding: 0;
  margin: 0 !important;
  text-align: center;
  list-style: none;
}

.wizard__options:before,
.wizard__options:after {
  content: " ";
  display: table;
}

.wizard__options:after {
  clear: both;
}

.wizard__options--2 .wizard__option {
  display: inline-block;
  width: 50%;
  max-width: 320px;
  padding: 0 7.5px;
}

@media (max-width: 767.9px) {
  .wizard__options--2 .wizard__option {
    float: left;
  }
}

@media (min-width: 768px) {
  .wizard__options--2 .wizard__option {
    padding: 0 15px;
  }
}

.wizard__options--3 .wizard__option {
  display: inline-block;
  padding: 0 7.5px;
  width: 50%;
  float: left;
}

@media (min-width: 768px) {
  .wizard__options--3 .wizard__option {
    width: 33.333%;
  }
}

@media (min-width: 768px) {
  .wizard__options--3 .wizard__selection__inside {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.wizard__options--5 .wizard__option {
  display: inline-block;
  padding: 0 7.5px;
  width: 50%;
  float: left;
}

@media (min-width: 544px) {
  .wizard__options--5 .wizard__option {
    width: 33.333%;
  }
}

@media (min-width: 768px) {
  .wizard__options--5 .wizard__option {
    width: 20%;
  }
}

.wizard__options--5 .wizard__selection__label {
  font-size: 12px;
  font-weight: 600;
}

.wizard__option {
  margin-bottom: 15px !important;
}

.wizard__option:first-child {
  margin-left: 0 !important;
}

.wizard__option:last-child {
  margin-right: 0 !important;
}

.wizard__selection {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 89.0625%;
  background-color: #f2f2f2;
  transition: background-color 0.2s ease-in-out;
}

.wizard__selection:hover {
  background-color: #0b4d60;
}

.wizard__selection:hover .wizard__selection__icon path {
  fill: #fff;
}

.wizard__selection:hover .wizard__selection__label {
  color: #fff;
}

.wizard__selection__inside {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 10px;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.wizard__selection__icon {
  display: block;
  margin: 0 auto;
  max-width: 45%;
  font-size: 0;
}

@media (min-width: 768px) {
  .wizard__selection__icon {
    height: 60%;
    max-width: 70%;
  }
}

.wizard__selection__icon svg {
  max-width: 100%;
  height: auto;
}

.wizard__selection__icon path {
  fill: #73706e;
  fill-rule: evenodd;
  transition: fill 0.2s ease-in-out;
}

.wizard__selection__label {
  display: block;
  margin: 0 auto;
  color: #0d8a89;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-family: "proxima-nova", proxima-nova, sans-serif;
  transition: color 0.2s ease-in-out;
}

@media (min-width: 544px) {
  .wizard__selection__label {
    font-size: 14px;
    margin: 15px auto 0 auto;
  }
}

@media (min-width: 768px) {
  .wizard__selection__label {
    margin: 20px auto 0 auto;
    font-size: 16px;
  }
}

.wizard__footer {
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  padding-bottom: 50px;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .wizard__footer {
    position: absolute;
  }
}

.wizard__footer__text {
  margin: 0;
  font-family: "proxima-nova", proxima-nova, sans-serif;
}

.wizard__footer__text a {
  font-weight: 400;
}

.wizard__nav {
  display: block;
  margin: 30px 0 0 0 !important;
  padding: 0;
  text-align: center;
}

.wizard__nav__item {
  display: inline-block;
  margin: 0 15px;
}

.wizard__nav__link {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-family: "proxima-nova", proxima-nova, sans-serif;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .wizard__nav__link {
    font-size: 15px;
  }
}

.wizard__nav__link--next {
  padding: 12px 30px;
  color: #fff;
  line-height: 1;
  text-align: center;
  background-color: #3e8888;
}

@media (min-width: 768px) {
  .wizard__nav__link--next {
    padding: 15px 40px;
  }
}

.wizard__nav__link--next:hover {
  color: #fff;
  background-color: #2e6565;
}

.wizard__form {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}

.wizard__form input,
.wizard__form input:hover,
.wizard__form input:focus {
  box-shadow: none !important;
}

.wizard__form select,
.wizard__form textarea,
.wizard__form input {
  font-size: 16px;
}

@media (min-width: 768px) {
  .wizard__form select,
  .wizard__form textarea,
  .wizard__form input {
    font-size: 13px;
  }
}

.wizard__form .info-notice {
  position: relative;
  bottom: -100%;
  background: #f6f1e2;
  width: 100%;
  left: 0px;
  margin: 0;
  padding: 9px 10px;
  font-size: 12px;
  text-align: left;
  line-height: 16px;
}

.wizard__form--smaller {
  max-width: 550px;
}

.wizard__input-group {
  display: block;
  margin-bottom: 25px;
  font-family: "proxima-nova", proxima-nova, sans-serif;
}

.wizard__input-group.tall {
  margin-bottom: 65px;
}

.wizard__tooltip,
.wizard__tooltip:hover,
.wizard__tooltip:focus,
.wizard__tooltip *,
.wizard__tooltip *:hover,
.wizard__tooltip *:focus {
  color: #73706e;
  font-size: 85%;
}

.wizard .tooltip .tooltip-inner {
  text-transform: none;
  letter-spacing: 0;
}

.wizard__calculator {
  display: inline;
  margin: 0 auto;
}

.wizard__calculator .calculator__fields {
  display: flex;
  justify-content: center;
  max-width: 700px;
  padding: 4rem 3rem;
  margin: 0px auto;
  background: #F5F6F7;
  overflow: visible !important;
}

@media (min-width: 701px) and (max-width: 1285px) {
  .wizard__calculator .calculator__fields {
    width: 700px;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .wizard__calculator .calculator__fields {
    width: 100%;
  }
}

@media (min-width: 711px) and (max-width: 1285px) {
  .wizard__calculator .calculator__fields.mobile--flex {
    flex-wrap: nowrap;
  }
}

@media (min-width: 0px) and (max-width: 700px) {
  .wizard__calculator .calculator__fields.mobile--flex {
    flex-wrap: wrap;
    padding: 2rem 25px;
  }
}

.wizard__calculator .calculator__fields.mobile--flex .calculator__field {
  float: none;
}

@media (min-width: 0px) and (max-width: 700px) {
  .wizard__calculator .calculator__fields.mobile--flex .calculator__field {
    flex: 1 1 100%;
  }
}

.wizard__calculator .calculator__field {
  flex: 1 1 20%;
}

.wizard__calculator .calculator__field--space {
  flex: 0 0 10px;
  max-width: 10px;
  min-height: 10px;
}

@media (min-width: 0px) and (max-width: 710px) {
  .wizard__calculator .calculator__field--space {
    min-height: 20px !important;
  }
}

.wizard__calculator .calculator__estimation {
  text-align: center;
  display: flex;
  justify-content: center;
  max-width: 700px;
  padding: 4rem 8.5rem;
  margin: 0px auto;
  margin-top: -1rem;
  padding-top: 0px;
  background: #F5F6F7;
}

@media (min-width: 701px) and (max-width: 1285px) {
  .wizard__calculator .calculator__estimation {
    width: 700px;
  }
}

@media (min-width: 480px) and (max-width: 700px) {
  .wizard__calculator .calculator__estimation {
    padding: 4rem 5rem;
    margin-top: -3rem;
    width: 100%;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .wizard__calculator .calculator__estimation {
    padding: 4rem 1rem;
    margin-top: -3rem;
    width: 100%;
  }
}

.wizard__calculator .calculator__estimation .calculator__estimation--value {
  margin-bottom: 0px;
  font-family: inherit;
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 65px;
  text-align: center;
  color: #303030;
}

.wizard__calculator .calculator__estimation .calculator__estimation--label {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #303030;
}

.wizard__calculator .calculator__estimation.estimation--group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard__calculator .calculator__estimation.estimation--group > div:first-child .calculator__estimation--value,
.wizard__calculator .calculator__estimation.estimation--group > div:last-child .calculator__estimation--value {
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 35px;
  line-height: 45px;
  color: #A4A4A4;
}

.wizard__calculator .calculator__estimation.estimation--group > div:first-child .calculator__estimation--label,
.wizard__calculator .calculator__estimation.estimation--group > div:last-child .calculator__estimation--label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #A4A4A4;
}

@media (min-width: 0px) and (max-width: 710px) {
  .wizard__calculator .calculator__estimation.estimation--group {
    flex-wrap: wrap;
  }

  .wizard__calculator .calculator__estimation.estimation--group > div:nth-child(2) {
    width: 100%;
    margin-bottom: 1rem;
    order: 1;
  }

  .wizard__calculator .calculator__estimation.estimation--group > div:first-child,
  .wizard__calculator .calculator__estimation.estimation--group > div:last-child {
    width: 50%;
    order: 2;
  }
}

.wizard__bell-curve {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.wizard__bell-curve__img {
  display: block;
  width: 100%;
  height: auto;
}

.wizard__graphic {
  display: block;
  width: 100%;
  max-width: 345px;
  margin: 0 auto 45px auto;
}

.wizard__graphic__img {
  display: block;
  width: 100%;
  height: auto;
}

.wizard__text {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 450px;
}

.wizard__text,
.wizard__text p {
  color: #73706e;
  font-size: 24px;
  line-height: 1.458;
}

.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #589492;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.wizard__review {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0px auto;
  justify-content: center;
  padding: 0px 25px;
}

@media (min-width: 711px) {
  .wizard__review {
    padding: 0px 0px;
  }
}

.wizard__review > section {
  flex: 1 0 100%;
}

.wizard__review section {
  height: auto !important;
  min-height: auto !important;
  text-align: left;
  padding: 23px 31px;
  margin-bottom: 15px;
  border: 1px solid #DFDFDF;
}

.wizard__review section p {
  margin-bottom: 0px;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #303030;
}

.wizard__review section small {
  display: block;
  margin-bottom: 0px;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
  color: #939393;
}

.wizard__review section small:not(:first-child) {
  margin-top: 15px;
}

.wizard__review > div.section--group {
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 100%;
  height: auto !important;
  min-height: auto !important;
  margin: 0px -15px;
}

@media (min-width: 711px) {
  .wizard__review > div.section--group {
    flex-wrap: nowrap;
  }
}

.wizard__review > div.section--group > section {
  flex: 1 1 50%;
  margin-right: 15px;
  margin-bottom: 15px;
  height: auto !important;
  min-height: auto !important;
}

.wizard__review > div.section--group > section:last-child {
  margin-left: 15px;
}

@media (min-width: 711px) {
  .wizard__review > div.section--group > section {
    margin-left: 0px !important;
  }
}

.wizard__review > div.section--group > section:first-child {
  margin-left: 15px !important;
}

svg#bellcurve {
  width: 100%;
}

.tt-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #434343;
  line-height: 12px;
  font-size: 12px;
  color: #ffffff;
  font-weight: bold;
  width: 17px;
  height: 17px;
  text-align: center;
  vertical-align: center;
  border-radius: 50px;
}

.app[v-cloak] {
  opacity: 0;
}

.app:not([v-cloak]) {
  -webkit-animation: fadeIn 125ms ease-in-out 0s 1 forwards;
          animation: fadeIn 125ms ease-in-out 0s 1 forwards;
}

.welcome-banner {
  position: relative;
}

.welcome-banner img {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
}

.welcome-banner .buttons {
  position: absolute;
  bottom: 5%;
  z-index: 20;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .welcome-banner .buttons {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 10%;
  }
}

.welcome-banner .buttons .button {
  padding: 10px;
}

@media (min-width: 768px) {
  .welcome-banner .buttons .button {
    padding: 15px 30px;
  }
}

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

.about #content {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .about #content {
    padding: 50px 0;
  }
}

.pricing-calculator #header:after,
.pricing-calculator #sub-navigation,
.pricing-calculator .mastNav {
  display: none !important;
}

.pricing-calculator #simple-content {
  padding-top: 0;
  padding-bottom: 0;
}

.pricing-calculator #footer {
  border-top: 2px solid #f2f2f2;
}

@media (min-width: 768px) {
  .pricing-calculator #header {
    height: 135px;
  }
}

@media (min-width: 768px) {
  .pricing-calculator #header .logo a {
    width: 300px;
  }
}

.pricing-calculator #footer {
  padding-top: 35px;
  padding-bottom: 35px;
}

.pricing-calculator #footer > .row:first-child {
  display: none;
}

.pricing-calculator #copyright {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.pricing-calculator__header {
  position: absolute;
  top: 57px;
  right: 0;
  left: 0;
  display: none;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}

@media (min-width: 768px) {
  .pricing-calculator__header {
    display: block;
  }
}

.pricing-calculator__header__cta {
  display: block;
  margin: 0;
  text-align: right;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 200;
}

.pricing-calculator__header__cta,
.pricing-calculator__header__cta a {
  color: #939393;
  font-size: 20px;
}

.pricing-calculator__header__cta a {
  font-weight: 600;
  pointer-events: all;
}

.search-page__search-box {
  display: block;
  margin: 45px 0;
}

.search-page__search-box .input-group__textinput {
  border-color: #9aa3a7;
}

.search-page__search-box .input-group__textinput:focus {
  border-color: #2A9BD4;
}

.search-page .button {
  width: 100%;
  margin: 0;
  position: relative;
  top: 16px;
}

.search-page__results {
  display: block;
}

.search-page__result {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaedee;
}

.search-page__result:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.search-page__result__title {
  display: block;
  margin: 0 0 0.5rem 0;
  color: #508887;
}

.search-page__result__title > a {
  color: #508887;
  font-size: 1.2rem;
}

.search-page__result__url {
  display: block;
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #92C21E;
}

.search-page__result__description {
  display: block;
  margin: 0;
  font-size: 1rem;
  color: #051720;
}

.services .columns > .block:last-child .service-list {
  text-align: center;
}

.services .columns > .block:last-child .service-list li {
  display: inline-block;
  float: none;
  clear: both;
}


/*# sourceMappingURL=style.css.map*/