@charset "UTF-8";
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir="rtl"]
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container
  .select2-search--inline
  .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled
  .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled
  .select2-selection--single
  .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default
  .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover,
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled
  .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled
  .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__group {
  padding-left: 0;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--single
  .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above
  .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below
  .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__clear {
  display: none;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open
  .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow--left {
  left: 2em;
}

.glide__arrow--right {
  right: 2em;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover,
.glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}

.glide__bullet--active {
  background-color: white;
}

.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}

.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/**
 * Foundation for Sites by ZURB
 * Version 6.2.4
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: not-allowed;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
 */
/* fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
} */
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.foundation-mq {
  font-family: "xsmall=0em&small=36em&medium=48em&large=64em&xlarge=77.5em&xxlarge=90em";
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #595b5d;
  background: #fefefe;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  width: 100%;
  border-radius: 0;
}

#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;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1;
}
[data-whatinput="mouse"] button {
  outline: 0;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (min-width: 36em) {
  .row .row {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }
}
@media screen and (min-width: 48em) {
  .row .row {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.row.expanded {
  max-width: none;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.is-collapse-child,
.row.collapse > .column > .row,
.row.collapse > .columns > .row {
  margin-left: 0;
  margin-right: 0;
}

.column,
.columns {
  flex: 1 1 0px;
  min-width: initial;
}
@media screen and (min-width: 36em) {
  .column,
  .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}
@media screen and (min-width: 48em) {
  .column,
  .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.column.row.row,
.row.row.columns {
  float: none;
  display: block;
}

.row .column.row.row,
.row .row.row.columns {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.xsmall-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.xsmall-offset-0 {
  margin-left: 0%;
}

.xsmall-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.xsmall-offset-1 {
  margin-left: 8.3333333333%;
}

.xsmall-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.xsmall-offset-2 {
  margin-left: 16.6666666667%;
}

.xsmall-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.xsmall-offset-3 {
  margin-left: 25%;
}

.xsmall-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.xsmall-offset-4 {
  margin-left: 33.3333333333%;
}

.xsmall-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.xsmall-offset-5 {
  margin-left: 41.6666666667%;
}

.xsmall-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.xsmall-offset-6 {
  margin-left: 50%;
}

.xsmall-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.xsmall-offset-7 {
  margin-left: 58.3333333333%;
}

.xsmall-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.xsmall-offset-8 {
  margin-left: 66.6666666667%;
}

.xsmall-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.xsmall-offset-9 {
  margin-left: 75%;
}

.xsmall-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.xsmall-offset-10 {
  margin-left: 83.3333333333%;
}

.xsmall-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.xsmall-offset-11 {
  margin-left: 91.6666666667%;
}

.xsmall-order-1 {
  order: 1;
}

.xsmall-order-2 {
  order: 2;
}

.xsmall-order-3 {
  order: 3;
}

.xsmall-order-4 {
  order: 4;
}

.xsmall-order-5 {
  order: 5;
}

.xsmall-order-6 {
  order: 6;
}

.xsmall-up-1 {
  flex-wrap: wrap;
}
.xsmall-up-1 > .column,
.xsmall-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}

.xsmall-up-2 {
  flex-wrap: wrap;
}
.xsmall-up-2 > .column,
.xsmall-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}

.xsmall-up-3 {
  flex-wrap: wrap;
}
.xsmall-up-3 > .column,
.xsmall-up-3 > .columns {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.xsmall-up-4 {
  flex-wrap: wrap;
}
.xsmall-up-4 > .column,
.xsmall-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}

.xsmall-up-5 {
  flex-wrap: wrap;
}
.xsmall-up-5 > .column,
.xsmall-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}

.xsmall-up-6 {
  flex-wrap: wrap;
}
.xsmall-up-6 > .column,
.xsmall-up-6 > .columns {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.xsmall-up-7 {
  flex-wrap: wrap;
}
.xsmall-up-7 > .column,
.xsmall-up-7 > .columns {
  flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
}

.xsmall-up-8 {
  flex-wrap: wrap;
}
.xsmall-up-8 > .column,
.xsmall-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.xsmall-collapse > .column,
.xsmall-collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.xsmall-uncollapse > .column,
.xsmall-uncollapse > .columns {
  padding-left: /2;
  padding-right: /2;
}

@media screen and (min-width: 36em) {
  .small-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .small-offset-0 {
    margin-left: 0%;
  }

  .small-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .small-offset-1 {
    margin-left: 8.3333333333%;
  }

  .small-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .small-offset-2 {
    margin-left: 16.6666666667%;
  }

  .small-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .small-offset-3 {
    margin-left: 25%;
  }

  .small-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .small-offset-4 {
    margin-left: 33.3333333333%;
  }

  .small-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .small-offset-5 {
    margin-left: 41.6666666667%;
  }

  .small-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .small-offset-6 {
    margin-left: 50%;
  }

  .small-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .small-offset-7 {
    margin-left: 58.3333333333%;
  }

  .small-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .small-offset-8 {
    margin-left: 66.6666666667%;
  }

  .small-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .small-offset-9 {
    margin-left: 75%;
  }

  .small-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .small-offset-10 {
    margin-left: 83.3333333333%;
  }

  .small-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .small-offset-11 {
    margin-left: 91.6666666667%;
  }

  .small-order-1 {
    order: 1;
  }

  .small-order-2 {
    order: 2;
  }

  .small-order-3 {
    order: 3;
  }

  .small-order-4 {
    order: 4;
  }

  .small-order-5 {
    order: 5;
  }

  .small-order-6 {
    order: 6;
  }

  .small-up-1 {
    flex-wrap: wrap;
  }
  .small-up-1 > .column,
  .small-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .small-up-2 {
    flex-wrap: wrap;
  }
  .small-up-2 > .column,
  .small-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .small-up-3 {
    flex-wrap: wrap;
  }
  .small-up-3 > .column,
  .small-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .small-up-4 {
    flex-wrap: wrap;
  }
  .small-up-4 > .column,
  .small-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .small-up-5 {
    flex-wrap: wrap;
  }
  .small-up-5 > .column,
  .small-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .small-up-6 {
    flex-wrap: wrap;
  }
  .small-up-6 > .column,
  .small-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .small-up-7 {
    flex-wrap: wrap;
  }
  .small-up-7 > .column,
  .small-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .small-up-8 {
    flex-wrap: wrap;
  }
  .small-up-8 > .column,
  .small-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 36em) and (min-width: 36em) {
  .small-expand {
    flex: 1 1 0px;
  }
}
.row.small-unstack > .column,
.row.small-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 36em) {
  .row.small-unstack > .column,
  .row.small-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 36em) {
  .small-collapse > .column,
  .small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 36em) {
  .small-uncollapse > .column,
  .small-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}
@media screen and (min-width: 48em) {
  .medium-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .medium-offset-0 {
    margin-left: 0%;
  }

  .medium-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }

  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }

  .medium-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .medium-offset-3 {
    margin-left: 25%;
  }

  .medium-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }

  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }

  .medium-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .medium-offset-6 {
    margin-left: 50%;
  }

  .medium-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }

  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }

  .medium-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .medium-offset-9 {
    margin-left: 75%;
  }

  .medium-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }

  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }

  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }

  .medium-up-1 {
    flex-wrap: wrap;
  }
  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .medium-up-2 {
    flex-wrap: wrap;
  }
  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .medium-up-3 {
    flex-wrap: wrap;
  }
  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .medium-up-4 {
    flex-wrap: wrap;
  }
  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .medium-up-5 {
    flex-wrap: wrap;
  }
  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .medium-up-6 {
    flex-wrap: wrap;
  }
  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .medium-up-7 {
    flex-wrap: wrap;
  }
  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .medium-up-8 {
    flex-wrap: wrap;
  }
  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}
.row.medium-unstack > .column,
.row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 48em) {
  .row.medium-unstack > .column,
  .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 48em) {
  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 48em) {
  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 64em) {
  .large-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .large-offset-0 {
    margin-left: 0%;
  }

  .large-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .large-offset-1 {
    margin-left: 8.3333333333%;
  }

  .large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .large-offset-2 {
    margin-left: 16.6666666667%;
  }

  .large-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .large-offset-3 {
    margin-left: 25%;
  }

  .large-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .large-offset-4 {
    margin-left: 33.3333333333%;
  }

  .large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .large-offset-5 {
    margin-left: 41.6666666667%;
  }

  .large-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .large-offset-6 {
    margin-left: 50%;
  }

  .large-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .large-offset-7 {
    margin-left: 58.3333333333%;
  }

  .large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .large-offset-8 {
    margin-left: 66.6666666667%;
  }

  .large-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .large-offset-9 {
    margin-left: 75%;
  }

  .large-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .large-offset-10 {
    margin-left: 83.3333333333%;
  }

  .large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .large-offset-11 {
    margin-left: 91.6666666667%;
  }

  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }

  .large-up-1 {
    flex-wrap: wrap;
  }
  .large-up-1 > .column,
  .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .large-up-2 {
    flex-wrap: wrap;
  }
  .large-up-2 > .column,
  .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .large-up-3 {
    flex-wrap: wrap;
  }
  .large-up-3 > .column,
  .large-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .large-up-4 {
    flex-wrap: wrap;
  }
  .large-up-4 > .column,
  .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .large-up-5 {
    flex-wrap: wrap;
  }
  .large-up-5 > .column,
  .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .large-up-6 {
    flex-wrap: wrap;
  }
  .large-up-6 > .column,
  .large-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .large-up-7 {
    flex-wrap: wrap;
  }
  .large-up-7 > .column,
  .large-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .large-up-8 {
    flex-wrap: wrap;
  }
  .large-up-8 > .column,
  .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    flex: 1 1 0px;
  }
}
.row.large-unstack > .column,
.row.large-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 64em) {
  .row.large-unstack > .column,
  .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 64em) {
  .large-collapse > .column,
  .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 64em) {
  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 77.5em) {
  .xlarge-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .xlarge-offset-0 {
    margin-left: 0%;
  }

  .xlarge-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }

  .xlarge-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }

  .xlarge-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .xlarge-offset-3 {
    margin-left: 25%;
  }

  .xlarge-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }

  .xlarge-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }

  .xlarge-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .xlarge-offset-6 {
    margin-left: 50%;
  }

  .xlarge-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }

  .xlarge-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }

  .xlarge-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .xlarge-offset-9 {
    margin-left: 75%;
  }

  .xlarge-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }

  .xlarge-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }

  .xlarge-order-1 {
    order: 1;
  }

  .xlarge-order-2 {
    order: 2;
  }

  .xlarge-order-3 {
    order: 3;
  }

  .xlarge-order-4 {
    order: 4;
  }

  .xlarge-order-5 {
    order: 5;
  }

  .xlarge-order-6 {
    order: 6;
  }

  .xlarge-up-1 {
    flex-wrap: wrap;
  }
  .xlarge-up-1 > .column,
  .xlarge-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .xlarge-up-2 {
    flex-wrap: wrap;
  }
  .xlarge-up-2 > .column,
  .xlarge-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .xlarge-up-3 {
    flex-wrap: wrap;
  }
  .xlarge-up-3 > .column,
  .xlarge-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .xlarge-up-4 {
    flex-wrap: wrap;
  }
  .xlarge-up-4 > .column,
  .xlarge-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .xlarge-up-5 {
    flex-wrap: wrap;
  }
  .xlarge-up-5 > .column,
  .xlarge-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .xlarge-up-6 {
    flex-wrap: wrap;
  }
  .xlarge-up-6 > .column,
  .xlarge-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .xlarge-up-7 {
    flex-wrap: wrap;
  }
  .xlarge-up-7 > .column,
  .xlarge-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .xlarge-up-8 {
    flex-wrap: wrap;
  }
  .xlarge-up-8 > .column,
  .xlarge-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 77.5em) and (min-width: 77.5em) {
  .xlarge-expand {
    flex: 1 1 0px;
  }
}
.row.xlarge-unstack > .column,
.row.xlarge-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 77.5em) {
  .row.xlarge-unstack > .column,
  .row.xlarge-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 77.5em) {
  .xlarge-collapse > .column,
  .xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 77.5em) {
  .xlarge-uncollapse > .column,
  .xlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .xxlarge-offset-0 {
    margin-left: 0%;
  }

  .xxlarge-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }

  .xxlarge-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }

  .xxlarge-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .xxlarge-offset-3 {
    margin-left: 25%;
  }

  .xxlarge-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }

  .xxlarge-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }

  .xxlarge-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .xxlarge-offset-6 {
    margin-left: 50%;
  }

  .xxlarge-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }

  .xxlarge-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }

  .xxlarge-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .xxlarge-offset-9 {
    margin-left: 75%;
  }

  .xxlarge-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }

  .xxlarge-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }

  .xxlarge-order-1 {
    order: 1;
  }

  .xxlarge-order-2 {
    order: 2;
  }

  .xxlarge-order-3 {
    order: 3;
  }

  .xxlarge-order-4 {
    order: 4;
  }

  .xxlarge-order-5 {
    order: 5;
  }

  .xxlarge-order-6 {
    order: 6;
  }

  .xxlarge-up-1 {
    flex-wrap: wrap;
  }
  .xxlarge-up-1 > .column,
  .xxlarge-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .xxlarge-up-2 {
    flex-wrap: wrap;
  }
  .xxlarge-up-2 > .column,
  .xxlarge-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .xxlarge-up-3 {
    flex-wrap: wrap;
  }
  .xxlarge-up-3 > .column,
  .xxlarge-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .xxlarge-up-4 {
    flex-wrap: wrap;
  }
  .xxlarge-up-4 > .column,
  .xxlarge-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .xxlarge-up-5 {
    flex-wrap: wrap;
  }
  .xxlarge-up-5 > .column,
  .xxlarge-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .xxlarge-up-6 {
    flex-wrap: wrap;
  }
  .xxlarge-up-6 > .column,
  .xxlarge-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .xxlarge-up-7 {
    flex-wrap: wrap;
  }
  .xxlarge-up-7 > .column,
  .xxlarge-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .xxlarge-up-8 {
    flex-wrap: wrap;
  }
  .xxlarge-up-8 > .column,
  .xxlarge-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 90em) and (min-width: 90em) {
  .xxlarge-expand {
    flex: 1 1 0px;
  }
}
.row.xxlarge-unstack > .column,
.row.xxlarge-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 90em) {
  .row.xxlarge-unstack > .column,
  .row.xxlarge-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 90em) {
  .xxlarge-collapse > .column,
  .xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-uncollapse > .column,
  .xxlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.shrink {
  flex: 0 0 auto;
  max-width: 100%;
}

.column.align-top,
.align-top.columns {
  align-self: flex-start;
}

.column.align-bottom,
.align-bottom.columns {
  align-self: flex-end;
}

.column.align-middle,
.align-middle.columns {
  align-self: center;
}

.column.align-stretch,
.align-stretch.columns {
  align-self: stretch;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #6d6f71;
  line-height: 0;
}

@media screen and (min-width: 36em) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1875rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  h5 {
    font-size: 1.0625rem;
  }

  h6 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 48em) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.9375rem;
  }

  h4 {
    font-size: 1.5625rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1rem;
  }
}
a {
  color: #14589f;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #114c89;
}
a img {
  border: 0;
}

hr {
  max-width: 90rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #6d6f71;
  border-left: 0;
  margin: 1.25rem auto;
  clear: both;
}

ul,
ol,
dl {
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside;
}

li {
  font-size: inherit;
}

ul {
  list-style-type: disc;
  margin-left: 1.25rem;
}

ol {
  margin-left: 1.25rem;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #6d6f71;
}
blockquote,
blockquote p {
  line-height: 1.6;
  color: #3c3c3b;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #3c3c3b;
}
cite:before {
  content: "— ";
}

abbr {
  color: #595b5d;
  cursor: help;
  border-bottom: 1px dotted #595b5d;
}

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #595b5d;
  background-color: #efefef;
  border: 1px solid #6d6f71;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #efefef;
  color: #595b5d;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #3c3c3b;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

.no-bullet {
  margin-left: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media screen and (min-width: 36em) {
  .small-text-left {
    text-align: left;
  }

  .small-text-right {
    text-align: right;
  }

  .small-text-center {
    text-align: center;
  }

  .small-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left;
  }

  .medium-text-right {
    text-align: right;
  }

  .medium-text-center {
    text-align: center;
  }

  .medium-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }

  .large-text-right {
    text-align: right;
  }

  .large-text-center {
    text-align: center;
  }

  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 77.5em) {
  .xlarge-text-left {
    text-align: left;
  }

  .xlarge-text-right {
    text-align: right;
  }

  .xlarge-text-center {
    text-align: center;
  }

  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-text-left {
    text-align: left;
  }

  .xxlarge-text-right {
    text-align: right;
  }

  .xxlarge-text-center {
    text-align: center;
  }

  .xxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .show-for-print {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  table.show-for-print {
    display: table !important;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  pre,
  blockquote {
    border: 1px solid #3c3c3b;
    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;
  }
}
.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #14589f;
  color: #fefefe;
}
[data-whatinput="mouse"] .button {
  outline: 0;
}
.button:hover,
.button:focus {
  background-color: #114b87;
  color: #fefefe;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.button.primary {
  background-color: #14589f;
  color: #fefefe;
}
.button.primary:hover,
.button.primary:focus {
  background-color: #10467f;
  color: #fefefe;
}
.button.secondary {
  background-color: #777;
  color: #fefefe;
}
.button.secondary:hover,
.button.secondary:focus {
  background-color: #5f5f5f;
  color: #fefefe;
}
.button.success {
  background-color: #3adb76;
  color: #fefefe;
}
.button.success:hover,
.button.success:focus {
  background-color: #22bb5b;
  color: #fefefe;
}
.button.warning {
  background-color: #ffae00;
  color: #fefefe;
}
.button.warning:hover,
.button.warning:focus {
  background-color: #cc8b00;
  color: #fefefe;
}
.button.alert {
  background-color: #ec5840;
  color: #fefefe;
}
.button.alert:hover,
.button.alert:focus {
  background-color: #da3116;
  color: #fefefe;
}
.button.hollow {
  border: 1px solid #14589f;
  color: #14589f;
}
.button.hollow,
.button.hollow:hover,
.button.hollow:focus {
  background-color: transparent;
}
.button.hollow:hover,
.button.hollow:focus {
  border-color: #0a2c50;
  color: #0a2c50;
}
.button.hollow.primary {
  border: 1px solid #14589f;
  color: #14589f;
}
.button.hollow.primary:hover,
.button.hollow.primary:focus {
  border-color: #0a2c50;
  color: #0a2c50;
}
.button.hollow.secondary {
  border: 1px solid #777;
  color: #777;
}
.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
  border-color: #3c3c3c;
  color: #3c3c3c;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover,
.button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover,
.button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert {
  border: 1px solid #ec5840;
  color: #ec5840;
}
.button.hollow.alert:hover,
.button.hollow.alert:focus {
  border-color: #881f0e;
  color: #881f0e;
}
.button.disabled,
.button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled:hover,
.button.disabled:focus,
.button[disabled]:hover,
.button[disabled]:focus {
  background-color: #14589f;
  color: #fefefe;
}
.button.disabled.primary,
.button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary:hover,
.button.disabled.primary:focus,
.button[disabled].primary:hover,
.button[disabled].primary:focus {
  background-color: #14589f;
  color: #fefefe;
}
.button.disabled.secondary,
.button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary:hover,
.button.disabled.secondary:focus,
.button[disabled].secondary:hover,
.button[disabled].secondary:focus {
  background-color: #777;
  color: #fefefe;
}
.button.disabled.success,
.button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success:hover,
.button[disabled].success:focus {
  background-color: #3adb76;
  color: #fefefe;
}
.button.disabled.warning,
.button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning:hover,
.button.disabled.warning:focus,
.button[disabled].warning:hover,
.button[disabled].warning:focus {
  background-color: #ffae00;
  color: #fefefe;
}
.button.disabled.alert,
.button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert:hover,
.button.disabled.alert:focus,
.button[disabled].alert:hover,
.button[disabled].alert:focus {
  background-color: #ec5840;
  color: #fefefe;
}
.button.dropdown::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  border-color: #fefefe transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: relative;
  top: 0.4em;
  float: right;
  margin-left: 1em;
  display: inline-block;
}
.button.arrow-only::after {
  margin-left: 0;
  float: none;
  top: -0.1em;
}

[type="text"],
[type="password"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="week"],
[type="email"],
[type="number"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="color"],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #6d6f71;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #595b5d;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(89, 91, 93, 0.1);
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}
[type="text"]:focus,
[type="password"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="email"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="color"]:focus,
textarea:focus {
  border: 1px solid #3c3c3b;
  background-color: #fefefe;
  outline: none;
  box-shadow: 0 0 5px #6d6f71;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #6d6f71;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #6d6f71;
}

input::placeholder,
textarea::placeholder {
  color: #6d6f71;
}
input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #efefef;
  cursor: not-allowed;
}

[type="submit"],
[type="button"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="search"] {
  box-sizing: border-box;
}

[type="file"],
[type="checkbox"],
[type="radio"] {
  margin: 0 0 1rem;
}

[type="checkbox"] + label,
[type="radio"] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}
[type="checkbox"] + label[for],
[type="radio"] + label[for] {
  cursor: pointer;
}

label > [type="checkbox"],
label > [type="radio"] {
  margin-right: 0.5rem;
}

[type="file"] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #595b5d;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #595b5d;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child {
  border-radius: 0 0 0 0;
}
.input-group > :last-child > * {
  border-radius: 0 0 0 0;
}

.input-group-button,
.input-group-field,
.input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #efefef;
  color: #595b5d;
  border: 1px solid #6d6f71;
  white-space: nowrap;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  height: auto;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button {
  margin: 0;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  margin-bottom: 0.5rem;
  max-width: 100%;
}

.fieldset {
  border: 1px solid #6d6f71;
  padding: 1.25rem;
  margin: 1.125rem 0;
}
.fieldset legend {
  background: #fefefe;
  padding: 0 0.1875rem;
  margin: 0;
  margin-left: -0.1875rem;
}

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #6d6f71;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #595b5d;
  background-color: #fefefe;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2860, 60, 59%29'></polygon></svg>");
  background-size: 9px 6px;
  background-position: right -1rem center;
  background-origin: content-box;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}
@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:disabled {
  background-color: #efefef;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840;
}

.is-invalid-label {
  color: #ec5840;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ec5840;
}
.form-error.is-visible {
  display: block;
}

.accordion {
  list-style-type: none;
  background: #fefefe;
  margin-left: 0;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #14589f;
  position: relative;
  border: 1px solid #efefef;
  border-bottom: 0;
}
:last-child:not(.is-active) > .accordion-title {
  border-radius: 0 0 0 0;
  border-bottom: 1px solid #efefef;
}
.accordion-title:hover,
.accordion-title:focus {
  background-color: #efefef;
}
.accordion-title::before {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -0.5rem;
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  padding: 1rem;
  display: none;
  border: 1px solid #efefef;
  border-bottom: 0;
  background-color: #fefefe;
  color: #595b5d;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #efefef;
}

.is-accordion-submenu-parent > a {
  position: relative;
}
.is-accordion-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: #2199e8 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded="true"] > a::after {
  transform-origin: 50% 50%;
  transform: scaleY(-1);
}

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #14589f;
  color: #fefefe;
}
.badge.secondary {
  background: #777;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #fefefe;
}
.badge.warning {
  background: #ffae00;
  color: #fefefe;
}
.badge.alert {
  background: #ec5840;
  color: #fefefe;
}

.breadcrumbs {
  list-style: none;
  margin: 0 0 1rem 0;
}
.breadcrumbs::before,
.breadcrumbs::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  color: #595b5d;
  font-size: 0.6875rem;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  color: #6d6f71;
  content: "/";
  margin: 0 0.75rem;
  position: relative;
  top: 1px;
  opacity: 1;
}
.breadcrumbs a {
  color: #14589f;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #6d6f71;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.button-group::before,
.button-group::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button {
  background-color: #14589f;
  color: #fefefe;
}
.button-group.primary .button:hover,
.button-group.primary .button:focus {
  background-color: #10467f;
  color: #fefefe;
}
.button-group.secondary .button {
  background-color: #777;
  color: #fefefe;
}
.button-group.secondary .button:hover,
.button-group.secondary .button:focus {
  background-color: #5f5f5f;
  color: #fefefe;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #fefefe;
}
.button-group.success .button:hover,
.button-group.success .button:focus {
  background-color: #22bb5b;
  color: #fefefe;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #fefefe;
}
.button-group.warning .button:hover,
.button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #fefefe;
}
.button-group.alert .button {
  background-color: #ec5840;
  color: #fefefe;
}
.button-group.alert .button:hover,
.button-group.alert .button:focus {
  background-color: #da3116;
  color: #fefefe;
}
.button-group.stacked,
.button-group.stacked-for-small,
.button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button,
.button-group.stacked-for-small .button,
.button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child,
.button-group.stacked-for-small .button:last-child,
.button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .button-group.stacked-for-small .button {
    flex: 1 1 0px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 1 1 0px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 36em) and (max-width: 47.9375em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(89, 91, 93, 0.25);
  border-radius: 0;
  position: relative;
  color: #595b5d;
  background-color: white;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d3e6f9;
}
.callout.secondary {
  background-color: #ebebeb;
}
.callout.success {
  background-color: #e1faea;
}
.callout.warning {
  background-color: #fff3d9;
}
.callout.alert {
  background-color: #fce6e2;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.close-button {
  position: absolute;
  color: #3c3c3b;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
}
[data-whatinput="mouse"] .close-button {
  outline: 0;
}
.close-button:hover,
.close-button:focus {
  color: #595b5d;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block !important;
}

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}
.is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}

.is-drilldown-submenu-parent > a {
  position: relative;
}
.is-drilldown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent transparent transparent #14589f;
  border-left-style: solid;
  border-right-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

.js-drilldown-back > a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #14589f transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  background-color: #fefefe;
  border: 1px solid #6d6f71;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10;
}
.dropdown-pane.is-open {
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1.5rem;
  position: relative;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: #14589f transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  right: 5px;
  margin-top: -2px;
}
[data-whatinput="mouse"] .dropdown.menu a {
  outline: 0;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
  margin-top: -3px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #14589f transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #14589f;
  border-left-style: solid;
  border-right-width: 0;
}
@media screen and (min-width: 36em) {
  .dropdown.menu.small-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.small-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.small-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.small-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #14589f transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.small-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.small-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.small-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.small-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.small-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #14589f transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.small-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #14589f;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 48em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #14589f transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #14589f transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #14589f;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #14589f transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #14589f transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #14589f;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 77.5em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #14589f transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #14589f transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #14589f;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 90em) {
  .dropdown.menu.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #14589f transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.xxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #14589f transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #14589f;
    border-left-style: solid;
    border-right-width: 0;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -2px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #fefefe;
  border: 1px solid #6d6f71;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
  margin-top: -3px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #14589f transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #14589f;
  border-left-style: solid;
  border-right-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.flex-video {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-video.widescreen {
  padding-bottom: 56.25%;
}
.flex-video.vimeo {
  padding-top: 0;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #14589f;
  color: #fefefe;
}
.label.secondary {
  background: #777;
  color: #fefefe;
}
.label.success {
  background: #3adb76;
  color: #fefefe;
}
.label.warning {
  background: #ffae00;
  color: #fefefe;
}
.label.alert {
  background: #ec5840;
  color: #fefefe;
}

.media-object {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 35.9375em) {
  .media-object.stack-for-xsmall {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 35.9375em) {
  .media-object.stack-for-xsmall .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .media-object.stack-for-xsmall .media-object-section img {
    width: 100%;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.menu {
  margin: 0;
  list-style-type: none;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-wrap: nowrap;
}
.menu > li {
  flex: 0 0 auto;
}
[data-whatinput="mouse"] .menu > li {
  outline: 0;
}
.menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}
.menu input,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu > li > a {
  display: flex;
}
.menu > li > a {
  flex-flow: row nowrap;
}
.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  margin-right: 0.25rem;
}
.menu > li {
  flex: 0 0 auto;
}
.menu.vertical {
  flex-wrap: wrap;
}
.menu.vertical > li {
  flex: 0 0 100%;
  max-width: 100%;
}
.menu.vertical > li > a {
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (min-width: 36em) {
  .menu.small-horizontal {
    flex-wrap: nowrap;
  }
  .menu.small-horizontal > li {
    flex: 0 0 auto;
  }
  .menu.small-vertical {
    flex-wrap: wrap;
  }
  .menu.small-vertical > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menu.small-vertical > li > a {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 48em) {
  .menu.medium-horizontal {
    flex-wrap: nowrap;
  }
  .menu.medium-horizontal > li {
    flex: 0 0 auto;
  }
  .menu.medium-vertical {
    flex-wrap: wrap;
  }
  .menu.medium-vertical > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menu.medium-vertical > li > a {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: nowrap;
  }
  .menu.large-horizontal > li {
    flex: 0 0 auto;
  }
  .menu.large-vertical {
    flex-wrap: wrap;
  }
  .menu.large-vertical > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menu.large-vertical > li > a {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 77.5em) {
  .menu.xlarge-horizontal {
    flex-wrap: nowrap;
  }
  .menu.xlarge-horizontal > li {
    flex: 0 0 auto;
  }
  .menu.xlarge-vertical {
    flex-wrap: wrap;
  }
  .menu.xlarge-vertical > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menu.xlarge-vertical > li > a {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 90em) {
  .menu.xxlarge-horizontal {
    flex-wrap: nowrap;
  }
  .menu.xxlarge-horizontal > li {
    flex: 0 0 auto;
  }
  .menu.xxlarge-vertical {
    flex-wrap: wrap;
  }
  .menu.xxlarge-vertical > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menu.xxlarge-vertical > li > a {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.menu.simple li {
  line-height: 1;
  display: inline-block;
  margin-right: 1rem;
}
.menu.simple a {
  padding: 0;
}
.menu.align-right {
  justify-content: flex-end;
}
.menu.expanded > li {
  flex: 1 1 0px;
}
.menu.expanded > li:first-child:last-child {
  width: 100%;
}
.menu.icon-top > li > a {
  flex-flow: column nowrap;
}
.menu.icon-top > li > a img,
.menu.icon-top > li > a i,
.menu.icon-top > li > a svg {
  align-self: stretch;
  text-align: center;
  margin-bottom: 0.25rem;
}
.menu.nested {
  margin-left: 1rem;
}
.menu .active > a {
  color: #fefefe;
  background: #14589f;
}

.menu-text {
  font-weight: bold;
  color: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
}

.menu-centered {
  text-align: center;
}
.menu-centered > .menu {
  display: inline-block;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

html,
body {
  height: 100%;
}

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: auto;
}

.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  transition: transform 0.5s ease;
}
.off-canvas-wrapper-inner::before,
.off-canvas-wrapper-inner::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.off-canvas-wrapper-inner::after {
  clear: both;
}

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: #fefefe;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(89, 91, 93, 0.5);
}

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254, 254, 254, 0.25);
  cursor: pointer;
  transition: background 0.5s ease;
}

.off-canvas {
  position: absolute;
  background: #efefef;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(0);
}
[data-whatinput="mouse"] .off-canvas {
  outline: 0;
}
.off-canvas.position-left {
  left: -250px;
  top: 0;
  width: 250px;
}
.is-open-left {
  transform: translateX(250px);
}

.off-canvas.position-right {
  right: -250px;
  top: 0;
  width: 250px;
}
.is-open-right {
  transform: translateX(-250px);
}

@media screen and (min-width: 36em) {
  .position-left.reveal-for-small {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-small ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-small {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-small ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 48em) {
  .position-left.reveal-for-medium {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-medium {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-large {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 77.5em) {
  .position-left.reveal-for-xlarge {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-xlarge {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 90em) {
  .position-left.reveal-for-xxlarge {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-xxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-xxlarge {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-xxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  margin: 0;
  overflow: hidden;
  list-style: none;
}

.orbit-slide {
  width: 100%;
  max-height: 100%;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0;
  color: #fefefe;
  background-color: rgba(89, 91, 93, 0.5);
}

.orbit-next,
.orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe;
}
[data-whatinput="mouse"] .orbit-next,
[data-whatinput="mouse"] .orbit-previous {
  outline: 0;
}
.orbit-next:hover,
.orbit-previous:hover,
.orbit-next:active,
.orbit-previous:active,
.orbit-next:focus,
.orbit-previous:focus {
  background-color: rgba(89, 91, 93, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput="mouse"] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  background-color: #6d6f71;
  border-radius: 50%;
}
.orbit-bullets button:hover {
  background-color: #3c3c3b;
}
.orbit-bullets button.is-active {
  background-color: #3c3c3b;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before,
.pagination::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  font-size: 0.875rem;
  margin-right: 0.0625rem;
  border-radius: 0;
  display: none;
}
.pagination li:last-child,
.pagination li:first-child {
  display: inline-block;
}
@media screen and (min-width: 48em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  color: #595b5d;
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
}
.pagination a:hover,
.pagination button:hover {
  background: #efefef;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #14589f;
  color: #fefefe;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #6d6f71;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  content: "…";
  padding: 0.1875rem 0.625rem;
  color: #595b5d;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  content: "«";
  display: inline-block;
  margin-right: 0.5rem;
}

.pagination-next a::after,
.pagination-next.disabled::after {
  content: "»";
  display: inline-block;
  margin-left: 0.5rem;
}

.progress {
  background-color: #6d6f71;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
}
.progress.primary .progress-meter {
  background-color: #14589f;
}
.progress.secondary .progress-meter {
  background-color: #777;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #ec5840;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #14589f;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #efefef;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #6d6f71;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #14589f;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
  border-radius: 0;
}
[data-whatinput="mouse"] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #114b87;
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: absolute;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: absolute;
  left: auto;
  right: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.reveal-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  background-color: rgba(89, 91, 93, 0.45);
  overflow-y: scroll;
}

.reveal {
  display: none;
  z-index: 1006;
  padding: 1rem;
  border: 1px solid #6d6f71;
  background-color: #fefefe;
  border-radius: 0;
  position: relative;
  top: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
}
[data-whatinput="mouse"] .reveal {
  outline: 0;
}
@media screen and (min-width: 48em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column,
.reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .reveal {
    width: 600px;
    max-width: 90rem;
  }
}
@media screen and (min-width: 48em) {
  .reveal .reveal {
    left: auto;
    right: auto;
    margin: 0 auto;
  }
}
.reveal.collapse {
  padding: 0;
}
@media screen and (min-width: 48em) {
  .reveal.tiny {
    width: 30%;
    max-width: 90rem;
  }
}
@media screen and (min-width: 48em) {
  .reveal.small {
    width: 50%;
    max-width: 90rem;
  }
}
@media screen and (min-width: 48em) {
  .reveal.large {
    width: 90%;
    max-width: 90rem;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  max-width: none;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 35.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  height: 2rem;
  margin-bottom: 1rem;
  outline: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fefefe;
  font-weight: bold;
  font-size: 0.875rem;
}

.switch-input {
  opacity: 0;
  position: absolute;
  margin-bottom: 0;
}

.switch-paddle {
  background: #6d6f71;
  cursor: pointer;
  display: block;
  position: relative;
  width: 4rem;
  height: 2rem;
  transition: all 0.25s ease-out;
  border-radius: 0;
  color: inherit;
  font-weight: inherit;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  background: #fefefe;
  content: "";
  display: block;
  position: absolute;
  height: 1.5rem;
  left: 0.25rem;
  top: 0.25rem;
  width: 1.5rem;
  transition: all 0.25s ease-out;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
}
input:checked ~ .switch-paddle {
  background: #14589f;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput="mouse"] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive,
.switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}

caption {
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

thead {
  background: #f8f8f8;
  color: #595b5d;
}

tfoot {
  background: #f1f1f1;
  color: #595b5d;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}
tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f3f3f3;
}
table.hover tfoot tr:hover {
  background-color: #ececec;
}
table.hover tbody tr:hover {
  background-color: #f9f9f9;
}
table.hover tbody tr:nth-of-type(even):hover {
  background-color: #ececec;
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #efefef;
}
.tabs::before,
.tabs::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  width: auto;
  float: none;
  display: block;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #14589f;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover,
.tabs.primary > li > a:focus {
  background: #1660ae;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  line-height: 1;
  font-size: 0.75rem;
}
.tabs-title > a:hover {
  background: #fefefe;
}
.tabs-title > a:focus,
.tabs-title > a[aria-selected="true"] {
  background: #efefef;
}

.tabs-content {
  background: #fefefe;
  transition: all 0.5s ease;
  border: 1px solid #efefef;
  border-top: 0;
}

.tabs-content.vertical {
  border: 1px solid #efefef;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  border: solid 4px #fefefe;
  box-shadow: 0 0 0 1px rgba(89, 91, 93, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: box-shadow 200ms ease-out;
  border-radius: 0;
  margin-bottom: 1rem;
}
.thumbnail:hover,
.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(20, 88, 159, 0.5);
}

.title-bar {
  background: #595b5d;
  color: #fefefe;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px;
}

.title-bar-right {
  text-align: right;
}

.title-bar-title {
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}

.has-tip {
  border-bottom: dotted 1px #3c3c3b;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip {
  background-color: #595b5d;
  color: #fefefe;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0;
}
.tooltip::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #595b5d;
  border-bottom-style: solid;
  border-top-width: 0;
  bottom: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: #595b5d transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  top: 100%;
  bottom: auto;
}
.tooltip.left::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent transparent #595b5d;
  border-left-style: solid;
  border-right-width: 0;
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent #595b5d transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #efefef;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 48em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
  }
}
@media screen and (max-width: 47.9375em) {
  .top-bar.stacked-for-small {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-small .top-bar-left,
  .top-bar.stacked-for-small .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 63.9375em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 77.4375em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 89.9375em) {
  .top-bar.stacked-for-xlarge {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.top-bar.stacked-for-xxlarge {
  flex-wrap: wrap;
}
.top-bar.stacked-for-xxlarge .top-bar-left,
.top-bar.stacked-for-xxlarge .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}

.top-bar-title {
  flex: 0 0 auto;
  margin-right: 1rem;
}

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 35.9375em) {
  .hide-for-xsmall-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 36em) {
  .show-for-xsmall-only {
    display: none !important;
  }
}

@media screen and (min-width: 36em) {
  .hide-for-small {
    display: none !important;
  }
}

@media screen and (max-width: 35.9375em) {
  .show-for-small {
    display: none !important;
  }
}

@media screen and (min-width: 36em) and (max-width: 47.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 35.9375em), screen and (min-width: 48em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 47.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 77.4375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 77.5em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 77.5em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 77.4375em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 77.5em) and (max-width: 89.9375em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 77.4375em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (min-width: 90em) {
  .hide-for-xxlarge {
    display: none !important;
  }
}

@media screen and (max-width: 89.9375em) {
  .show-for-xxlarge {
    display: none !important;
  }
}

@media screen and (min-width: 90em) {
  .hide-for-xxlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 89.9375em) {
  .show-for-xxlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.xsmall-order-1 {
  order: 1;
}

.xsmall-order-2 {
  order: 2;
}

.xsmall-order-3 {
  order: 3;
}

.xsmall-order-4 {
  order: 4;
}

.xsmall-order-5 {
  order: 5;
}

.xsmall-order-6 {
  order: 6;
}

@media screen and (min-width: 36em) {
  .small-order-1 {
    order: 1;
  }

  .small-order-2 {
    order: 2;
  }

  .small-order-3 {
    order: 3;
  }

  .small-order-4 {
    order: 4;
  }

  .small-order-5 {
    order: 5;
  }

  .small-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 48em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 77.5em) {
  .xlarge-order-1 {
    order: 1;
  }

  .xlarge-order-2 {
    order: 2;
  }

  .xlarge-order-3 {
    order: 3;
  }

  .xlarge-order-4 {
    order: 4;
  }

  .xlarge-order-5 {
    order: 5;
  }

  .xlarge-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-order-1 {
    order: 1;
  }

  .xxlarge-order-2 {
    order: 2;
  }

  .xxlarge-order-3 {
    order: 3;
  }

  .xxlarge-order-4 {
    order: 4;
  }

  .xxlarge-order-5 {
    order: 5;
  }

  .xxlarge-order-6 {
    order: 6;
  }
}
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.24,
    1.245
  ) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(
    0.76,
    -0.245,
    0.24,
    1.245
  ) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90% {
    transform: translateX(7%);
  }
  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75%,
  85%,
  95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-ccw-1turn;
}
@keyframes spin-ccw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%,
  50%,
  60% {
    transform: rotate(7deg);
  }
  35%,
  45%,
  55%,
  65% {
    transform: rotate(-7deg);
  }
  0%,
  30%,
  70%,
  100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

body {
  color: #6d6f71;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
}

.breadcrumbs-trail {
  padding: 0 0.5rem;
}

.margin-top {
  margin-top: 5rem !important;
}

@media (max-width: 768px) {
  .margin-top-small {
    margin-top: 2rem !important;
  }
}
@media (min-width: 768px) {
  .margin-top-large-xl {
    margin-top: 5rem !important;
  }

  .margin-top-large {
    margin-top: 2rem !important;
  }
}
p {
  line-height: 1.3;
}

h2,
.heading-normal {
  margin: 1.25rem 0;
  padding-bottom: 0.625rem;
  font-weight: bold;
  font-size: 2.1rem;
  color: #14589f;
  letter-spacing: -0.35px;
}

h3 {
  margin: 0.9375rem 0;
  font-weight: bold;
  color: #14589f;
  font-size: 1.6rem;
  letter-spacing: -0.22px;
}

.heading-white {
  color: #fefefe;
}

.cl-white {
  color: #fefefe;
}

.cl-primary {
  color: #14589f;
}

.bg-white {
  background: #fefefe;
}

.bg-primary {
  background: #14589f;
}

.bg-lt-grey {
  background: #efefef;
}

.bg-lt-gradient {
  background-image: url("../images/gradient.jpg");
}

.df {
  display: flex;
}

.xjc {
  justify-content: center;
}

.xjs {
  justify-content: flex-start;
}

.xac {
  align-items: center;
}

.pb0 {
  padding-bottom: 0;
}

.content-container {
  margin-top: -0.375rem;
}

@media screen and (min-width: 64em) {
  .content-container {
    margin-top: -3.125rem;
  }
}
.content-container-product {
  background-color: #f5f5f5;
}

body.home .content-container {
  margin-top: auto;
}

.image-swoosh {
  max-width: 150%;
  width: 100%;
}

@media screen and (max-width: 47.9375em) {
  .image-swoosh {
    margin-top: -1.5625rem;
  }
}
@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .image-swoosh {
    margin-top: -2.5rem;
  }
}
@media screen and (min-width: 64em) {
  .image-swoosh {
    margin-top: -1.25rem;
  }
}
@media screen and (min-width: 77.5em) {
  .image-swoosh {
    margin-top: -0.3125rem;
  }
}
.swoosh-grey {
  height: 140px;
  background: url("../images/swoosh-grey.png");
  background: url("../images/swoosh-grey.svg"),
    linear-gradient(transparent, transparent);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.swoosh-silver {
  height: 160px;
  background: url("../images/swoosh-silver.png");
  background-size: 101% auto;
  background-repeat: no-repeat;
  background-position: left top;
}

.swoosh-white {
  height: 160px;
  background: url("../images/swoosh-white.png");
  background: url("../images/swoosh-white.svg"),
    linear-gradient(transparent, transparent);
  background-size: 103% auto;
  background-repeat: no-repeat;
  background-position: -5px -10px;
  overflow: hidden;
}

.button-wrapper .button {
  margin-bottom: 1.25rem;
}

.button-wrapper-standalone {
  margin: 3.75rem 0;
}

.page-template-page_professionals .button-wrapper {
  margin-bottom: 0;
}

.button-grey {
  margin-bottom: 0;
  padding: 0.625rem 0.9375rem;
  color: #fefefe;
  border-radius: 0.5rem;
  background-color: #9e9fa2;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.31px;
}

.button-grey:hover,
.button-grey:focus {
  background-color: #ee6430;
}

.button-white {
  margin-bottom: 0;
  padding: 0.625rem 0.9375rem;
  color: #14589f;
  border-radius: 0.5rem;
  background-color: #fefefe;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.31px;
}

.button-white:hover,
.button-white:focus {
  background-color: #f29100;
}

.button-orange {
  margin-bottom: 0;
  padding: 0.625rem 0.9375rem;
  color: #fefefe;
  border-radius: 0.5rem;
  background-color: #ee6430;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.31px;
  text-align: left;
  min-height: 2.4rem;
}

.button-blue {
  padding: 0.625rem 0.9375rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.31px;
}

.button-orange:hover,
.button-orange:focus {
  background-color: #d94812;
}

.button-content {
  font-size: 1.25rem;
}

.button-silver.button-small {
  margin-bottom: 0;
  padding: 0.625rem 0.9375rem;
  color: #76787a;
  border-radius: 0.5rem;
  background-color: #f0f0f1;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.31px;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-right: 0.625rem;
  margin-bottom: 1.25rem;
}

.button-silver.button-small:hover,
.button-silver.button-small:focus {
  background-color: #fff;
}

.button-arrow-right::after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 0 0 1.25rem;
  background: url("../images/arrow-right.png");
  background: url("../images/arrow-right.svg"),
    linear-gradient(transparent, transparent);
  background-size: 100% 100%;
  transition: all 0.25s ease;
  vertical-align: middle;
}

.button-white.button-arrow-right::after {
  background: url("../images/arrow-right-blue.svg"),
    linear-gradient(transparent, transparent);
  background-size: 100% 100%;
  vertical-align: middle;
}

.button-white:hover.button-arrow-right::after {
  background: url("../images/arrow-right.svg"),
    linear-gradient(transparent, transparent);
  background-size: 100% 100%;
  vertical-align: middle;
}

.button-silver.button-arrow-right::after {
  background: url("../images/arrow-right-black.png");
  background: url("../images/arrow-right-black.svg"),
    linear-gradient(transparent, transparent);
  background-size: 100% 100%;
  vertical-align: middle;
}

.button-arrow-left::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 1.25rem 0 0;
  background: url("../images/arrow-left.png");
  background: url("../images/arrow-left.svg"),
    linear-gradient(transparent, transparent);
  background-size: 100% 100%;
}

.button-silver.button-arrow-left::before {
  background: url("../images/arrow-left-black.png");
  background: url("../images/arrow-left-black.svg"),
    linear-gradient(transparent, transparent);
  background-size: 100% 100%;
  vertical-align: middle;
}

.button-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
}

.button-wrapper .button-select {
  margin-top: 1.25rem;
}

.background-grey {
  background-color: #dbdcdd;
}

@media screen and (max-width: 47.9375em) {
  .background-grey {
    margin-top: -0.3125rem;
  }
}
.background-grey-top {
  background-color: #f5f5f5;
  background: url("../images/swoosh-grey.png");
  background: url("../images/swoosh-grey.svg"),
    linear-gradient(transparent, transparent);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 30px;
}

.background-silver {
  background-color: #f5f5f5;
}

@media screen and (max-width: 47.9375em) {
  .background-silver {
    margin-top: -0.3125rem;
  }
}
.background-white {
  background-color: #fefefe;
}

.button-medium {
  font-size: 1.5rem;
}

.block-bottom {
  padding-left: 0.5rem;
  padding-bottom: 3.75rem;
}

.content-top-offset {
  margin-top: 3rem;
}

.content-bottom-offset {
  margin-bottom: 2.5rem;
}

.content-product .content-top-offset {
  margin-top: 40px;
}

.content-top-narrow-offset {
  margin-top: 1.25rem;
}

.content-top-offset-40 {
  margin-top: 2.5rem;
}

.content-bottom-offset-30 {
  margin-bottom: 1.875rem;
}

.button-top-offset {
  margin-top: 1.25rem;
}

.checkbox-button-top-offset {
  margin-top: 2.3125rem;
}

.sharing-container {
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 77.5em) and (max-width: 89.9375em) {
  .sharing-container {
    margin: 0 0.0625rem;
  }
}
.icon-print {
  margin-right: 1.25rem;
}

.icon-share {
  margin-right: 0.625rem;
}

.sharing-popup {
  position: relative;
  display: inline-block;
  visibility: hidden;
  padding-left: 0.625rem;
  line-height: 2.5625rem;
  border-radius: 0.5rem;
  background-color: #dbdcdd;
}

.icon-sharing-popup {
  margin-right: 0.625rem;
}

.sharing-popup::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -0.5rem;
  top: 0.75rem;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-right: 0.5rem solid #dbdcdd;
}

p.strong {
  font-weight: bold;
}

.u-text-orange {
  color: #ee6430;
}

.u-link-grey {
  color: #595b5d;
}

.u-link-grey:hover,
.u-link-grey:active {
  color: #ee6430;
}

.content .heading-large {
  color: #ee6430;
  font-size: 3.75rem;
  font-weight: bold;
  letter-spacing: -0.79px;
}

@media screen and (max-width: 47.9375em) {
  .content .heading-large {
    font-size: 3rem;
  }
}
.content .heading-underlined {
  margin: 1.25rem 0 0;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #ee6430;
  font-size: 3rem;
  font-weight: bold;
  color: #ee6430;
  letter-spacing: -0.53px;
}

.content .heading-medium,
.content .figure-title {
  margin: 1.25rem 0 0;
  border-bottom: 0;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ee6430;
  letter-spacing: -0.31px;
}

.content .heading-thin {
  font-weight: lighter;
  font-size: 1.25rem;
  color: #ee6430;
  letter-spacing: -0.4px;
}

.content .heading-medium.margin-bottom,
.content .margin-bottom.figure-title {
  margin-bottom: 0.625rem;
}

.content .heading-grey-underlined {
  margin: 1.25rem 0 0;
  padding-bottom: 0.625rem;
  font-weight: bold;
  font-size: 1.25rem;
  color: #76787a;
  letter-spacing: -0.35px;
  border-bottom: 2px solid #ee6430;
}

.content .heading-margin {
  margin-bottom: 1.25rem;
}

.content-metadata {
  margin: 1.25rem 0;
}

.content-block h1 {
  margin-bottom: 0.625rem;
  font-weight: bold;
  font-size: 1rem;
  color: #ee6430;
  letter-spacing: -0.22px;
}

.content-block p {
  margin-bottom: 1.875rem;
}

.content-block p + p {
  margin-bottom: 2.25rem;
}

.content-block b,
.content-block b {
  font-weight: normal;
  color: #ee6430;
}

.content-download {
  display: block;
  margin-top: 1.25rem;
}

.content .lead {
  margin-top: 1.25rem;
  color: #ee6430;
  font-size: 1rem;
  font-weight: bold;
}

.content .lead-grey {
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: -0.31px;
  color: #76787a;
}

.content .abstract {
  font-size: 1.25rem;
  line-height: 1.2;
}

.content .figure-title {
  display: inline-block;
}

@media screen and (min-width: 64em) {
  .content .figure-title {
    margin-top: 4.375rem;
    max-width: 80%;
  }
}
.content ol:not(.pp) {
  counter-reset: item;
  line-height: 1.8;
}
.content ol:not(.pp) > li {
  display: block;
}
.content ol:not(.pp) > li:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #ee6430;
}

.content ol.arrows > li {
  padding-left: 1rem;
}

.content ol.arrows > li:before {
  content: "→";
  margin-left: -1rem;
}

.text-bold {
  font-weight: bold;
}

.content .paragraph-offset {
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
}

.content-block .ul-orange,
.content-product ul {
  color: #ee6430;
}

.content-news {
  padding-left: 0.9375rem;
  position: relative;
}

.content-news-icon {
  display: inline-block;
  margin-top: 5rem;
  text-align: left;
}

.content-link-icon {
  display: inline-block;
  margin-top: 2.5rem;
  text-align: left;
}

.content-block-news .content-news-icon {
  position: absolute;
  right: 0.9375rem;
  top: -3.75rem;
  width: 40px;
}

.content-block-link {
  position: absolute;
  right: 0.625rem;
  top: -1.5625rem;
  width: 50px;
}

.content .content-news-metadata {
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
}

.content-news h1 {
  margin-top: 1.25rem;
}

.single-news h1 {
  font-size: 1.25rem;
  line-height: 3.125rem;
}

@media screen and (min-width: 64em) {
  .single-news h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}
@media screen and (min-width: 77.5em) and (max-width: 89.9375em) {
  .single-news h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}
.news-navigation {
  margin-top: 1.25rem;
}

.second-background-white:nth-child(odd) > div,
.content-news-wrapper:nth-child(even) .background-silver {
  background-color: #fefefe;
}

.home-products-2-col {
  margin: 1rem 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .home-products-2-col .product {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .home-products-2-col .product {
    float: left;
    width: 41%;
    min-height: 25rem;
    height: auto;
  }
}
.home-products-2-aligner {
  margin: 1.25rem 3.75rem 0;
}

@media screen and (max-width: 47.9375em) {
  .home-products-2-aligner {
    margin-left: 2.5rem;
    margin-bottom: 1.25rem;
  }
}
.heading-product,
.person-heading {
  font-weight: bold;
  color: #14589f;
  font-size: 1rem;
  letter-spacing: -0.22px;
}

.listing-single-item {
  margin-top: 1.875rem;
}

.leaving-site {
  padding-bottom: 1.25rem;
  color: #ee6430;
}

.leaving-site-modal {
  margin-bottom: 0;
  color: #ee6430;
}

.conditions-list {
  list-style: none;
  margin-left: 0;
}

.conditions-list a {
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: -0.4px;
  color: #595b5d;
}

.conditions-list a:hover,
.conditions-list a:active {
  color: #ee6430;
}

.condition-heading {
  margin: 1.25rem 0;
  font-weight: bold;
  font-size: 3rem;
  color: #ee6430;
  letter-spacing: -0.53px;
}

.gallery-image {
  display: inline-block;
  width: auto;
}

.gallery-image {
  height: auto;
}

.gallery-image-first {
  float: left;
  height: auto;
}

.content-gallery {
  margin-bottom: 5rem;
}

.content-gallery-images-small {
  float: left;
  margin-left: 1.25rem;
}

.content-gallery-images-small a {
  display: block;
  padding-bottom: 1.25rem;
}

.content-gallery-images-small img {
  max-height: 146px;
  max-width: 100%;
}

.person-heading {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.products-buttons {
  margin-top: 2.5rem;
}

.career-top-line {
  display: block;
  padding-top: 3.75rem;
  border-top: 1px solid #bebebe;
}

#map {
  width: 100%;
  height: 21.875rem;
}

.remodal {
  padding: 6.875rem 3.75rem;
  max-width: 57.5rem;
  background: #f5f5f5;
  box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.56);
}

.remodal--plain {
  background: #fff;
}

@media screen and (max-width: 47.9375em) {
  .remodal {
    padding: 2.5rem 1.25rem;
  }
}
@media screen and (min-width: 48em) {
  .remodal {
    margin-bottom: 5.3125rem;
  }
}
.person-modal-hidden {
  display: none;
}

.person-modal {
  text-align: left;
  font-size: 1rem;
  color: #76787a;
  letter-spacing: -0.18px;
  line-height: 1.5rem;
}

.person-modal-header,
.person-modal-subheader {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #14589f;
  letter-spacing: -0.22px;
  line-height: 1.1;
}

.person-modal-subheader {
  padding-bottom: 0.625rem;
  margin-bottom: 1.25rem;
  font-weight: normal;
  border-bottom: 2px solid #14589f;
}

.person-modal-image {
  width: 100%;
  max-width: 100%;
}

.person-modal-image-small {
  margin-bottom: 1.25rem;
}

.person-modal-buttons {
  margin-top: 3.75rem;
}

.person-modal-buttons a {
  margin-bottom: 1.25rem;
}

.modal-lead {
  font-weight: bold;
}

.modal-close {
  position: absolute;
  top: 3.75rem;
  right: 4.6875rem;
  width: 2.3125rem;
  height: 2.3125rem;
  background-image: url("../images/icon-close.png");
  background-image: url("../images/icon-close.svg");
  background-size: cover;
}

@media screen and (max-width: 47.9375em) {
  .modal-close {
    top: 1.25rem;
    right: 2.1875rem;
  }
}
.hero-image {
  position: relative;
  z-index: 0;
}

.hero-image::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 13.125rem;
  background-image: url("../images/header-background.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left top;
}

.hero-image.header-white-silver::before {
  background-image: url("../images/swoosh-white.png");
  background-position: -5px -1px -5px;
}

.hero-image.header-grey-silver::before {
  background-image: url("../images/swoosh-grey.png");
  background-position: -5px -1px -5px;
}

.hero-image.hero-no-top-image::before {
  display: none;
}

@media screen and (max-width: 47.9375em) {
  .hero-image.hero-no-top-image {
    margin-top: -0.9375rem;
  }
}
@media screen and (min-width: 64em) {
  .hero-image.hero-no-top-medium::before {
    display: none;
  }
}
.hero-image::after {
  position: absolute;
  content: "";
  display: block;
}

.hero-image.hero-no-bottom-image::after {
  display: none;
}

.hero-image-contact {
  height: 56.25rem;
}

@media screen and (min-width: 48em) {
  .hero-image-contact {
    height: 54.125rem;
  }
}
@media screen and (min-width: 64em) {
  .hero-image-home {
    margin-top: -3.125rem;
  }
}
.hero-content {
  position: relative;
  top: 14.375rem;
}

body.home .header-small-background {
  display: none;
}

.carousel-heading,
.hero-heading {
  position: absolute;
  left: 60px;
  top: 110px;
  max-width: 70%;
  color: #fefefe;
  font-weight: bold;
  font-size: 2.25rem;
  letter-spacing: -0.79px;
  line-height: 1.1;
}

@media screen and (min-width: 48em) {
  .carousel-heading,
  .hero-heading {
    left: 90px;
    top: 150px;
    max-width: 70%;
  }
}
@media screen and (min-width: 64em) {
  .carousel-heading,
  .hero-heading {
    left: 117px;
    top: 180px;
    max-width: 50%;
    font-size: 3rem;
  }
}
@media screen and (min-width: 90em) {
  .carousel-heading,
  .hero-heading {
    font-size: 3.75rem;
  }
}
.carousel-heading-button {
  margin-top: 1.875rem;
}

.carousel .orbit-bullets {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 38px);
  bottom: 50px;
}

@media screen and (min-width: 48em) {
  .carousel .orbit-bullets {
    bottom: 40px;
  }
}
@media screen and (min-width: 64em) {
  .carousel .orbit-bullets {
    bottom: 100px;
  }
}
.carousel .orbit-bullets button {
  width: 10px;
  border-radius: 5px;
}

.carousel-heading .button {
  margin-top: 1.875rem;
}

.image-swoosh-top-silver {
  position: relative;
  height: 37.3125rem;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 77.5em) {
  .image-swoosh-top-silver {
    height: 49.1875rem;
  }
}
.image-swoosh-top-silver::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 13.125rem;
  background-image: url("../images/swoosh-image-top-silver.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left -40px;
}

@media screen and (max-width: 47.9375em) {
  .image-swoosh-top-silver::before {
    background-position: left 0px;
  }
}
.image-swoosh-heading {
  position: absolute;
  right: 4.0625rem;
  top: 14.25rem;
  max-width: 19.5625rem;
  color: #fefefe;
  font-weight: bold;
  font-size: 1.75rem;
  letter-spacing: -0.79px;
  line-height: 1.1;
}

@media screen and (max-width: 47.9375em) {
  .image-swoosh-heading {
    left: 1.875rem;
  }
}
@media screen and (min-width: 77.5em) {
  .image-swoosh-heading {
    right: 118px;
    top: 355px;
    max-width: 24.5625rem;
  }
}
.image-swoosh-heading-button {
  margin-top: 1.875rem;
}

.home-news {
  margin-top: 6.25rem;
  padding: 2.5rem 3.75rem 3.75rem 3.75rem;
  background-color: #efefef;
}

@media screen and (min-width: 64em) {
  .home-news {
    position: relative;
    min-height: 34.375rem;
  }
}
@media screen and (min-width: 77.5em) {
  .home-news {
    min-height: 37.5rem;
  }
}
@media screen and (min-width: 90em) {
  .home-news {
    min-height: 35rem;
  }
}
.home-news-img {
  display: block;
  margin: 1.25rem 0;
  width: 100%;
  height: 9rem;
  background-size: 100%;
  background-image-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 77.5em) {
  .home-news-img {
    height: 15.5625rem;
  }
}
@media screen and (min-width: 64em) {
  .content .home-news:first-child {
    margin-right: 15px;
    width: calc(41.66667% - 15px);
  }
}
@media screen and (max-width: 63.9375em) {
  .content .home-news:last-child {
    margin-top: 30px;
  }
}
@media screen and (min-width: 64em) {
  .content .home-news:last-child {
    margin-left: 15px;
    width: calc(41.66667% - 15px);
  }
}
@media screen and (min-width: 64em) {
  .home-news-button-wrapper {
    position: absolute;
    bottom: 3.75rem;
  }
}
.search-modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.95);
}

.search-modal ::-webkit-input-placeholder {
  font-size: 1.75rem;
  color: #76787a;
  letter-spacing: -0.57px;
}

.search-modal :-moz-placeholder {
  font-size: 1.75rem;
  color: #76787a;
  letter-spacing: -0.57px;
}

.search-modal ::-moz-placeholder {
  font-size: 1.75rem;
  color: #76787a;
  letter-spacing: -0.57px;
}

.search-modal :-ms-input-placeholder {
  font-size: 1.75rem;
  color: #76787a;
  letter-spacing: -0.57px;
}

.search-input,
.search-page-input {
  position: relative;
  padding: 0.3125rem 0.625rem;
  height: 3.125rem;
  width: 100%;
  font-size: 1.75rem;
  color: #595b5d;
  letter-spacing: -0.57px;
}

.search-form {
  position: absolute;
  top: calc(50% - 12px);
  left: 15%;
  width: 70%;
}

.search-page-form {
  position: relative;
  margin: 1.875rem 0;
}

.search-page-input {
  margin: auto 0.9375rem;
  width: calc(100% - 25px);
}

.search-icon-after,
.search-page-after {
  content: "";
  position: absolute;
  display: block;
  top: 0.125rem;
  right: 0;
  height: 2.8125rem;
  width: 2.8125rem;
  background-image: url("../images/search-icon.png");
  background-image: url("../images/search-icon.svg");
  background-repeat: no-repeat;
  background-position: 15% 50%;
  background-size: 80% 80%;
}

.search-page-after {
  right: 0.625rem;
}

.select2-container .select2-selection--single {
  height: 2.5rem;
}

.select2-container--default .select2-selection--single {
  background-color: #9e9fa2;
}

.select2-selection__rendered {
  padding-top: 0.3125rem;
}

.select {
  font-weight: lighter;
  font-size: 1.125rem;
  color: #fefefe;
  letter-spacing: -0.31px;
  padding-left: 0.4375rem;
}

.select-option {
  font-weight: bold;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 0.9375rem 0.625rem 0 0.625rem;
  border-color: #76787a transparent transparent transparent;
  left: -50%;
  top: 55%;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 0 0.625rem 0.9375rem 0.625rem;
  border-color: transparent transparent #76787a transparent;
  left: -50%;
  top: 55%;
}

.select2-results__option .select {
  color: #595b5d;
}

.select2-container.select2-container--default.select2-container--open {
  position: relative;
  z-index: 11000;
}

.form input,
.form input:focus,
.form input:active,
.form textarea,
.form textarea:focus,
.form textarea:active {
  padding-top: 0.4375rem;
  padding-left: 0.9375rem;
  border-radius: 0.3125rem;
  background-color: #9e9fa2;
  font-weight: lighter;
  font-size: 1.125rem;
  color: #fefefe;
  letter-spacing: -0.31px;
}

.form input {
  height: 2.5625rem;
}

.form ::-webkit-input-placeholder {
  background-color: #9e9fa2 !important;
  padding-top: 0.3125rem;
  font-weight: lighter;
  font-size: 1.125rem;
  color: #cbcbcb;
  letter-spacing: -0.31px;
}

.form :-moz-placeholder {
  background-color: #9e9fa2 !important;
  padding-top: 0.3125rem;
  font-weight: lighter;
  font-size: 1.125rem;
  color: #cbcbcb;
  letter-spacing: -0.31px;
}

.form ::-moz-placeholder {
  background-color: #9e9fa2 !important;
  padding-top: 0.3125rem;
  font-weight: lighter;
  font-size: 1.125rem;
  color: #cbcbcb;
  letter-spacing: -0.31px;
}

.form :-ms-input-placeholder {
  background-color: #9e9fa2 !important;
  padding-top: 0.3125rem;
  font-weight: lighter;
  font-size: 1.125rem;
  color: #cbcbcb;
  letter-spacing: -0.31px;
}

.form textarea::-webkit-input-placeholder {
  padding-top: 0;
  margin-top: 0;
}

.form textarea:-moz-placeholder {
  padding-top: 0;
  margin-top: 0;
}

.form textarea::-moz-placeholder {
  padding-top: 0;
  margin-top: 0;
}

.form textarea:-ms-input-placeholder {
  padding-top: 0;
  margin-top: 0;
}

.form button {
  margin-top: 1.875rem;
}

.form-show-error {
  border: 2px solid red;
}

.form-thankyou {
  display: none;
  padding-left: 0.625rem;
  line-height: 2.5rem;
  vertical-align: bottom;
}

.form-custom-select {
  width: 100%;
}

@media screen and (min-width: 48em) {
  .form-custom-select {
    width: 50%;
  }
}
.page-template-page_sitemap .menu > li > a {
  padding-left: 0;
}

.page-template-page_sitemap .menu a {
  color: #595b5d;
}

.page-template-page_sitemap .menu a:hover,
.page-template-page_sitemap .menu a:active {
  color: #ee6430;
}

.page-template-page_sitemap .menu-item {
  display: block;
}

.page-template-page_sitemap .sub-menu {
  padding-left: 0.3125rem;
}

.search-item {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #76787a;
}

.search-items:last-child .search-item {
  border-bottom: 0;
}

.form .control-inline label {
  display: inline;
}

.form [type="checkbox"] + label {
  margin-left: 0;
}

.form :not(#foo) .styled-checkbox {
  position: absolute;
  opacity: 0;
}

.form :not(#foo) .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.form :not(#foo) .styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #fefefe;
  margin-top: -9px;
}

.form :not(#foo) .styled-checkbox:focus + label:before,
.form :not(#foo) .styled-checkbox:hover + label:before {
  background: #9e9fa2;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
}

.form :not(#foo) .styled-checkbox:checked + label:before {
  background: #9e9fa2;
}

.form :not(#foo) .styled-checkbox.disabled + label,
.form :not(#foo) .styled-checkbox[disabled] + label {
  color: #b8b8b8;
}

.form :not(#foo) .styled-checkbox.disabled + label:before,
.form :not(#foo) .styled-checkbox[disabled] + label:before {
  box-shadow: none;
  background: #ddd;
}

.form :not(#foo) .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: #9e9fa2;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  margin-top: -9px;
  background: url("../images/icon-x.png");
  background: url("../images/icon-x.svg"),
    linear-gradient(transparent, transparent);
  background-repeat: no-repeat;
  background-position: center center;
}

.form .styled-checkbox-label {
  font-weight: bold;
  font-size: 1rem;
  color: #76787a;
  letter-spacing: -0.18px;
}

.swoosh img {
  width: 100%;
  height: auto;
}

.square:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* initial ratio of 1:1*/
}

.mb0 {
  margin-bottom: 0 !important;
}

.orange-bullet-list {
  list-style: none;
  /* Remove default bullets */
  font-size: 1.25rem;
}
.orange-bullet-list li {
  margin-bottom: 1rem;
}
.orange-bullet-list li p {
  display: inline;
}
.orange-bullet-list.m0 li {
  margin-bottom: 0;
}
.orange-bullet-list li::before {
  content: "•";
  color: #ee6430;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

@media only screen and (max-width: 768px) {
  .small-content-padding {
    padding: 0.75rem !important;
  }
}
sup {
  top: -0.3em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  word-wrap: break-word;
}

.reset-list-elements::before,
.reset-list-elements::after {
  content: none;
}

figure {
  margin: 0;
}

.is-open-right {
  position: fixed;
  min-height: 106%;
  overflow-y: scroll;
  transform: none;
}

.menu-close {
  justify-content: flex-end;
  padding-right: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

body.tall-header.swoosh-color-grey .header-large {
  background-image: url("../images/oval.png");
}

body.tall-header.swoosh-color-silver .header-large {
  background-image: url("../images/swoosh-color-silver.svg");
}

body.tall-header.swoosh-color-white .header-large {
  background-image: url("../images/swoosh-color-white.svg");
}

body.swoosh-header-grey .header-large {
  background-image: url("../images/header-background-grey.png");
}

.header-small-inner {
  position: relative;
  z-index: 50;
  margin-top: 1.75rem;
}

@media screen and (min-width: 48em) {
  .header-small-inner {
    margin-top: 2.75rem;
  }
}
@media screen and (min-width: 64em) {
  .header-small-inner {
    margin-top: 0;
  }
}
.header-small-background {
  margin-top: 0.625rem;
  height: 1.875rem;
  background-image: url("../images/oval.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
}

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .header-small-background {
    margin-top: 0;
    height: 3.75rem;
  }
}
body.header-small-background {
  display: none;
}

body.swoosh-header-grey .header-small-background {
  background-image: url("../images/header-background-grey.png");
}

.row-inner {
  max-width: 75rem;
  margin: auto;
}

.header-small-logo,
.header-small-menu {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .header-small-logo,
  .header-small-menu {
    text-align: center;
    display: block;
  }
}
.header-menu-icon {
  height: 1.5625rem;
  margin-top: 0.75rem;
}

@media screen and (max-width: 47.9375em) {
  .header-menu-icon {
    margin-top: 0%;
  }
}
@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .header-menu-icon {
    margin-top: 18%;
  }
}
.off-canvas-wrapper-inner {
  position: relative;
  z-index: 50;
}

.off-canvas.position-right {
  margin-top: -1.75rem;
}

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .off-canvas.position-right {
    margin-top: -2.75rem;
  }
}
.off-canvas .menu {
  height: 100vh;
}

.off-canvas .menu a {
  color: #595b5d;
  font-weight: bold;
}

.off-canvas .menu a:hover,
.off-canvas .menu a:active {
  color: #ee6430;
}

#sticky-wrapper {
  z-index: 500;
}

body.home .header-large {
  position: relative;
  z-index: 50;
}

body.tall-header .header-large {
  height: 9.375rem;
  background: none !important;
}

body.narrow-header .header-large {
  height: 13.75rem;
  background-size: 101% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}

@media screen and (min-width: 64em) and (max-width: 77.4375em) {
  body.narrow-header .header-large {
    height: 12.5rem;
  }
}
@media screen and (min-width: 77.5em) {
  body.narrow-header .header-large {
    background-size: 101% auto;
  }
}
.header-selectors {
  position: relative;
  z-index: 30;
  margin-top: 2.5rem;
}

.header-selectors a {
  color: #595b5d;
  font-size: 0.875rem;
  letter-spacing: -0.16px;
}

.header-selectors a:hover,
.header-selectors a:active {
  color: #ee6430;
}

.header-selector-language {
  margin-right: 1.25rem;
}

.header-selector-site {
  margin-right: 1.9375rem;
}

.header-selector-language img,
.header-selector-site img {
  margin-left: 0.625rem;
  height: 1.8125rem;
  width: 1.8125rem;
}

.header-large {
  padding-top: 60px;
}
.header-large__menu {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}

.flags__text {
  margin-right: 20px;
}
.flags__link {
  margin-left: 28px;
}

.header-large .header-large-menu-wrapper {
  position: relative;
  z-index: 10;
  border-bottom: 0 solid #fefefe;
  background-color: #fefefe;
}

.header-large .dropdown > li a {
  padding: 0 0.5625rem;
  color: #595b5d;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  white-space: nowrap;
  height: 1.875rem;
}

.header-large .dropdown > li a a:last-child {
  padding-right: 0;
}

@media screen and (min-width: 64em) and (max-width: 77.4375em) {
  .header-large .dropdown > li a {
    padding: 0 0.4375rem;
    font-size: 0.9375rem;
  }
}
.header-large .dropdown > li.menu-extra-width {
  padding-right: 0.0625rem;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: none;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 0;
}

.dropdown.menu a:hover,
.dropdown.menu a:active {
  color: #ee6430;
}

.header-large .is-dropdown-submenu {
  min-width: 9.375rem;
  border: none;
  padding-top: 1.25rem;
}

.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  box-shadow: 0px 18px 16px 0px rgba(0, 0, 0, 0.35);
}

.header-large li.is-dropdown-submenu-item {
  padding: 1.0625rem 1.25rem 0.9375rem;
  border-bottom: 1px solid #efefef;
}

.header-large li.is-dropdown-submenu-item a {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: -0.17px;
}

.menu {
  margin: 0;
  list-style-type: none;
  width: 100%;
  display: block;
}

@media screen and (max-width: 63.9375em) {
  .vertical.menu {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 64em) {
  .vertical.menu {
    display: none;
    position: absolute;
    top: 60px;
    z-index: 50;
    overflow: hidden;
    background: rgba(254, 254, 254, 0.7);
    width: auto;
    border-radius: 0.2rem;
  }

  .menu {
    margin: 0;
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 77.5em) {
  .vertical.menu {
    padding-top: 20px;
  }
}
.cookie-notice {
  padding: 2.8125rem 0;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ee6430;
  letter-spacing: -0.22px;
  display: flex;
  justify-content: center;
  background: #efefef;
}

.off-canvas.is-open {
  transform: translateX(-250px);
  z-index: 60;
}

.footer {
  background-color: #3c3c3b;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

body.footer-no-top-margin .footer {
  margin-top: 0;
}

.footer-logo {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  max-width: 170px;
}

.footer-follow {
  margin: 1rem 0;
  color: #fff;
  line-height: 1.25rem;
}
.footer-follow h4 {
  margin: 0;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

@media screen and (max-width: 63.9375em) {
  .footer-logo {
    text-align: center;
  }
}
.footer-copyright {
  margin-top: 2.5rem;
  margin-bottom: 1.875rem;
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: -0.14px;
  line-height: 1.25rem;
  padding-right: 5%;
}

@media screen and (max-width: 63.9375em) {
  .footer-copyright {
    margin-bottom: 0;
    text-align: center;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer-copyright {
    margin-top: 0;
    padding: 0 2.1875rem;
  }
}
.footer-copyright a {
  color: #ffffff;
}

.footer-copyright a:hover,
.footer-copyright a:active {
  color: #ee6430;
}

.footer-divider {
  margin: 0 0.625rem;
  color: #9e9fa2;
}

.footer-divider:last-child {
  display: none;
}

.footer-heading {
  display: block;
  margin-bottom: 0.625rem;
  color: #fefefe;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: -0.2px;
}

.footer-heading-about {
  color: #ee6430;
}

.footer-col {
  float: left;
  margin-right: 5.625rem;
  max-width: 11.25rem;
}

@media screen and (max-width: 63.9375em) {
  .footer-col {
    text-align: center;
    margin: 0;
    max-width: 100%;
    width: 33.3%;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer-col {
    margin-bottom: 1.875rem;
    width: 100%;
  }
}
.footer-col-wide {
  max-width: 16.25rem;
}

.footer-col-about {
  float: right;
  margin-right: 0;
  max-width: 12.5rem;
}

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .footer-col-about {
    padding-left: 8.5%;
  }
}
@media screen and (max-width: 63.9375em) {
  .footer-col-about {
    max-width: 100%;
  }
}
.footer-col-text a,
.footer-col-text span {
  line-height: 1.25rem;
}

@media screen and (min-width: 64em) and (max-width: 77.4375em) {
  .footer-col-careers {
    margin-right: 0;
  }
}
.footer-item,
.footer-col-block li > a {
  display: block;
  color: #fefefe;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.footer-item:hover,
.footer-col-block li > a:hover {
  color: #ee6430;
}

.footer-col-block li {
  list-style: none;
}

.footer-social {
  margin-top: 1.25rem;
}

.footer-social a {
  margin-right: 0.625rem;
}

.footer-social a:last-child {
  margin-right: 0;
}

.footer-col-block {
  float: left;
}

.footer-col-block:last-child {
  margin-left: 2.5rem;
}

@media screen and (max-width: 63.9375em) {
  .footer-copyright-design {
    margin-top: 0.625rem;
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 48em) {
  .footer-copyright-design a {
    padding-right: 1.625rem;
  }
}
.social-icon {
  margin: 0.75rem;
  width: 3rem;
}
.social-icon img {
  width: 3rem;
}
@media screen and (max-width: 48em) {
  .social-icon {
    width: 2rem;
  }
  .social-icon img {
    width: 2rem;
  }
}

.mb1 {
  margin-bottom: 1rem;
}

.home-video {
  width: 100%;
}

.home-image {
  width: 100%;
}

.home-product-card {
  background-color: #efefef !important;
  margin: 1rem 2rem;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.home-product-card p {
  line-height: 1.2;
}
.home-product-card.glaucoma-home {
  opacity: 0.9;
  padding: 1rem;
}
@media (min-width: 1023px) and (max-width: 1140px) {
  .home-product-card.glaucoma-home .d-none-1040 {
    display: none;
  }
}
@media (max-width: 420px) {
  .home-product-card.glaucoma-home .d-none-1040 {
    display: none;
  }
}
.home-product-card.glaucoma-home * {
  opacity: 1;
}
.home-product-card.glaucoma-home .heading-product {
  color: #fff;
}

@media (max-width: 768px) {
  .home-product-card {
    margin: 0.5rem 0;
    padding: 1rem 0.75rem;
  }
}
.home-image-bar {
  background-size: 100% auto;
  max-width: 150%;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 1rem;
  display: flex;
}
@media screen and (min-width: 1440px) {
  .home-image-bar {
    height: 490px;
  }
}

.home-hero-bar {
  background-size: cover;
  background-position: center center;
  max-width: 150%;
  width: 100%;
  position: relative;
  margin-top: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 1440px) {
  .home-hero-bar {
    height: 490px;
  }
}

.img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 200%;
  max-width: 200%;
}
.img-overlay.left {
  transform: scaleX(-1);
  left: 0;
}
@media screen and (min-width: 576px) {
  .img-overlay {
    width: 175%;
  }
}
@media screen and (min-width: 768px) {
  .img-overlay {
    width: 85%;
  }
}
@media screen and (min-width: 1024px) {
  .img-overlay {
    width: 78%;
  }
}

.carousel-text-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 390px;
}
@media screen and (min-width: 768px) {
  .carousel-text-container {
    height: auto;
  }
}

.carousel-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.carousel-title-main {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.carousel-subtitle {
  line-height: 1;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.carousel-references {
  line-height: 1.2;
  font-size: 0.9rem;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .carousel-title-main {
    font-size: 2.6rem;
  }

  .carousel-subtitle {
    line-height: 1.2;
    font-size: 1.55rem;
  }
  
  .carousel-references {
    font-size: 1rem;
  }
}

.carousel-image {
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .carousel-image {
    height: 490px;
  }
}
@media screen and (min-width: 1240px) {
  .carousel-image {
    max-width: 200%;
  }
}

.image-title {
  color: #14589f;
  position: relative;
  font-size: 2.5rem;
  line-height: 1.2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .image-title {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .image-title {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .image-title {
    padding-right: 1%;
    padding-left: 4%;
  }
}
.image-title .button {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 195px;
}

.home-split-bar {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.sub-heading-product {
  color: #14589f;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.orbit {
  width: 100vw;
  height: 100%;
  position: relative;
}
.orbit .orbit-container {
  height: 100%;
  margin-top: 0 !important;
}
.orbit .orbit-bullets {
  bottom: 0;
}
.orbit .orbit-bullets .is-active {
  background-color: #ed6430;
}

.heading-product {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #14589f;
  text-align: center;
}
.heading-product br {
  display: none;
}

.product-group-page .heading-product {
  text-align: left;
}

.product-image-container {
  min-height: 12rem;
  display: flex;
  align-items: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .product-image-container {
    min-height: auto;
    height: 10rem;
  }
}

.product-image-text-container {
  width: 100%;
  min-height: 12rem;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .product-image-text-container {
    min-height: 10rem;
  }
}

.glaucoma-home .product-image-text-container {
  height: auto;
  padding: 0;
  flex-direction: column;
  color: white;
}

.product-image {
  max-height: 12rem;
  display: block;
}
.product-image img {
  max-height: 12rem;
  display: block;
}

.product-text-container {
  height: 15rem;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
}

.social-icon-home {
  width: 15%;
}

.mb0 {
  margin-bottom: 0 !important;
}

.glide__bullet {
  height: 25px;
  width: 12px;
  border-radius: 9px;
}

.glide__bullet:hover,
.glide__bullet:focus {
  background-color: #fff;
}

.glide__bullet--active {
  background-color: #ee6430;
}

.home-video {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  min-width: 100%;
}

.flags__link__small {
  margin: 7px;
}

.flags__link img {
  max-width: unset;
}

.glide__slide {
  height: unset !important;
}

.person__item {
  margin-bottom: 1.875rem;
  max-width: 575px;
}
.person__item--image {
  background-size: 100% auto;
  background-position: center top;
}

.management__header,
.aboutus__header {
  margin: 0;
}

.partners__header {
  margin: 0;
}
.partners__button {
  margin: 0;
}

.content__partners {
  background: #14589f;
}

.partners-logo {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.about-content {
  font-size: 1.2rem;
}
.about-content p,
.about-content li {
  line-height: 1.4;
}
.about-content h4 {
  color: #ed6430;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: bold;
}
.about-content img {
  display: block;
  width: 100% !important;
}
.about-content ul {
  list-style-type: none;
  padding-left: 8px;
}
.about-content ul li {
  margin-bottom: 1rem;
}
.about-content ul li::before {
  content: "•";
  color: #ed6430;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.about-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 0;
  padding-top: 54.86%;
}

.contact-page {
  margin-top: 3rem !important;
}
.contact-page .contact-container {
  width: 100%;
  min-height: 30vh;
}
.contact-page .contact-details-box {
  background-color: #ed6430;
  padding: 2rem;
}
.contact-page .contact-info-box {
  height: 100%;
  background-color: #efefef;
  padding: 2rem;
}
.contact-page .contact-info-box.orange-info-box {
  background-color: #ed6430;
}
.contact-page .contact-info-box.orange-info-box p,
.contact-page .contact-info-box.orange-info-box ul,
.contact-page .contact-info-box.orange-info-box li,
.contact-page .contact-info-box.orange-info-box a {
  color: #fff;
}
@media screen and (max-width: 782px) {
  .contact-page .contact-details-box {
    height: unset;
    width: 100%;
    padding: 1rem;
  }
  .contact-page .contact-info-box {
    height: unset;
    width: 100%;
    padding: 1rem;
  }
}
.contact-page .contact-heading {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: -0.35px;
}
.contact-page .contact-office-head-title {
  font-weight: bold;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.22px;
}
.contact-page .contact-office-head-text {
  font-size: 1.15rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.31px;
}
.contact-page .contact-office-head-text a {
  color: #fff;
  font-weight: bold;
}
.contact-page .contact-office-secondary {
  color: #000;
  letter-spacing: -0.22px;
}
.contact-page .contact-office-secondary a,
.contact-page .contact-office-secondary a:hover,
.contact-page .contact-office-secondary a:focus {
  color: #000;
  font-weight: bold;
}
.contact-page .office-container {
  margin-bottom: 3.125rem;
}
.contact-page .office-heading {
  margin-bottom: 0.625rem;
  color: #ee6430;
  font-weight: bold;
}
.contact-page .contact-country-emails a {
  font-weight: 400;
  text-decoration: underline;
}

.contact-page-uk {
  margin-top: 3rem !important;
}
.contact-page-uk .contact-details-box {
  background-color: #ed6430;
  padding: 2rem;
}
.contact-page-uk .contact-heading {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: -0.35px;
}
.contact-page-uk .contact-info-box {
  padding: 2rem 0;
}
.contact-page-uk .contact-info-container {
  background-color: #efefef;
}
.contact-page-uk .contact-office-head-text {
  color: #000;
}
.contact-page-uk .contact-office-head-text b {
  color: #ee6430;
}
.contact-page-uk .patients-logo {
  width: 15rem;
  margin: 1rem 0;
  display: block;
}
.contact-page-uk .patients-button {
  margin-top: 1rem;
}
.contact-page-uk .sharing-buttons {
  margin-top: 2rem;
}

.careers-page {
  padding: 0.5rem 0;
  margin-top: 1rem !important;
}
@media (min-width: 1024px) {
  .careers-page {
    margin-top: 5rem !important;
  }
}

.header-image {
  width: 100%;
  height: 100%;
}

.careers-heading,
.prof-heading {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: -0.35px;
}

.careers-banner {
  width: 100%;
  background-color: #ee6430;
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 992px) {
  .careers-banner {
    font-size: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.careers-box {
  width: 100%;
  background-color: #efefef;
  text-align: center;
  margin: 0 !important;
}
.careers-box p {
  color: #3c3c3b;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .careers-box p {
    font-size: 1.5rem;
  }
}
.careers-box p b {
  color: #ee6430;
}
.careers-box__inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 992px) {
  .careers-box__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.careers-box__inner br {
  display: none;
}
@media (min-width: 1200px) {
  .careers-box__inner br {
    display: block;
  }
}

.careers-hands-box {
  margin-top: 4rem;
  position: relative;
  height: 280px;
  width: 100%;
}
@media (min-width: 992px) {
  .careers-hands-box {
    height: auto;
  }
}
.careers-hands-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 992px) {
  .careers-hands-box img {
    max-width: 100%;
    height: auto;
  }
}

.middle-text {
  font-size: 1rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .middle-text {
    font-size: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.middle-text b {
  color: #ee6430;
}

.hands-image-content {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
@media (min-width: 992px) {
  .hands-image-content {
    flex-direction: row;
    display: flex;
  }
}
.hands-image-content b {
  color: #ee6430;
}

.hands-image-content-small {
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
  background-color: #efefef;
  box-sizing: content-box;
}
@media (min-width: 992px) {
  .hands-image-content-small {
    display: none;
  }
}
.hands-image-content-small b {
  color: #ee6430;
}
.hands-image-content-small .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .hands-image-content-small .title {
    display: none;
    margin-bottom: 0;
  }
}
.hands-image-content-small .body {
  font-size: 1rem;
  font-weight: 400;
}

.hands-title {
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .hands-title {
    width: 40%;
    font-size: 2.5rem;
  }
}

.hands-body {
  width: 100%;
  height: 100%;
  color: white;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-around;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .hands-body {
    width: 60%;
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .hands-body {
    font-size: 1.5rem;
  }
}
.hands-body p {
  margin: 0;
  width: 100%;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
}
@media (min-width: 992px) {
  .hands-body p {
    font-weight: 700;
  }
}

.hands-image-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.meeting-content-small {
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
  background-color: #efefef;
  display: block;
  box-sizing: content-box;
}
@media (min-width: 992px) {
  .meeting-content-small {
    display: none;
  }
}

.careers-meeting-box {
  position: relative;
}
.careers-meeting-box .meeting-image-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.7;
  transition: opacity 0.5s ease-in-out;
  display: none;
}
@media (min-width: 768px) {
  .careers-meeting-box .meeting-image-overlay {
    opacity: 0 !important;
  }
}
@media (min-width: 992px) {
  .careers-meeting-box .meeting-image-overlay {
    display: block;
  }
}
.careers-meeting-box .meeting-title {
  width: 100%;
  color: white;
  display: none;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 2rem;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .careers-meeting-box .meeting-title {
    display: flex;
  }
}
.careers-meeting-box .meeting-body {
  width: 100%;
  height: 100%;
  color: white;
  padding: 1.5rem 1rem;
  display: none;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .careers-meeting-box .meeting-body {
    padding: 1rem 1rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .careers-meeting-box .meeting-body {
    padding: 1.5rem 6rem;
    font-size: 1.4rem;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .careers-meeting-box .meeting-body {
    padding: 1.5rem 12rem;
    font-size: 1.5rem;
  }
}
.careers-meeting-box .meeting-body p,
.careers-meeting-box .meeting-body ul {
  width: 100%;
  margin-bottom: 1.5rem;
}

.careers-meeting-box:hover .meeting-image-overlay {
  opacity: 0.7 !important;
}
.careers-meeting-box:hover .meeting-title {
  opacity: 0;
}
.careers-meeting-box:hover .meeting-body {
  opacity: 1;
}

.people-container {
  width: 100%;
  background-color: #230729;
}

.careers-people-slider {
  background-size: 100% auto;
  max-width: 150%;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 1rem;
  display: flex;
  background-color: #efefef;
}

.people-group-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  padding-left: 20px;
}
.people-group-row .flip {
  position: relative;
  z-index: 11;
  perspective: 2000px;
  transform-style: preserve-3d;
  margin: 2rem;
}
.people-group-row .flip .front,
.people-group-row .flip .back {
  border-radius: 10rem;
  height: 20rem;
  width: 20rem;
  overflow: hidden;
  display: block;
  position: absolute;
  transition: transform 1s ease-in-out;
}
.people-group-row .flip .front {
  background: #333;
  transform: rotateY(0deg);
  backface-visibility: hidden;
  z-index: 12;
  position: relative;
}
.people-group-row .flip .front img {
  position: absolute;
}
.people-group-row .flip:hover .front {
  transform: rotateY(180deg);
}
.people-group-row .flip .back {
  background: #fff;
  transform: rotateY(-180deg);
  backface-visibility: hidden;
  z-index: 13;
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}
.people-group-row .flip .back .quote {
  font-weight: 400;
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
  color: #2c2c2c;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  width: 100%;
}
.people-group-row .flip .back .job,
.people-group-row .flip .back .location,
.people-group-row .flip .back .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #2c2c2c;
  margin-bottom: 0;
}
.people-group-row .flip .back .quote-image {
  margin-bottom: 5px;
}
.people-group-row .flip:hover .back {
  transform: rotateY(0deg);
  z-index: 19;
}

.closing-body p {
  font-weight: 400;
  font-size: 1.5rem;
  padding: 0 2rem;
}
.closing-body p a,
.closing-body p b {
  color: #ee6430 !important;
  font-weight: 700;
}
.closing-body p a {
  text-decoration: underline;
}

.careers .glide__bullet {
  height: 13px;
  width: 13px;
  border-radius: 9px;
  background-color: #ee6430;
}
.careers .glide__bullet:hover,
.careers .glide__bullet:focus {
  background-color: #14589f;
}
.careers .glide__bullet--active {
  background-color: #14589f;
}

.careers-people-slider .glide .glide__bullets {
  bottom: 3em;
}

.careers-people-slider .glide .glide__track {
  padding: 2rem 0;
}

.careers-heading {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  padding: 2rem;
  font-size: 2.5rem;
}

.careers-sub-heading {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 3rem 0 0 0;
  padding: 0 2rem;
  color: #14589f;
  letter-spacing: -0.35px;
}

.careers-subheading {
  font-size: 16px;
  margin-top: 0;
}

.content-news {
  background-color: #efefef;
}

.careers-position {
  background-color: #efefef;
  padding: 2rem;
  margin: 1rem 0;
}

.careers-location {
  color: #14589f;
  font-weight: bold;
  font-size: 1.5rem;
}

.careers-title {
  color: #14589f;
  font-weight: bold;
  font-size: 1.5rem;
}

.careers-body {
  color: #3c3c3b;
  font-size: 1.25rem;
}

.position-title {
  margin-top: 2rem;
  color: #14589f;
  font-weight: bold;
}

.careers-position ul {
  list-style: none;
  /* Remove default bullets */
}
.careers-position ul li::before {
  content: "•";
  color: #ee6430;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.glide__bullets.careers .glide__bullet:nth-last-of-type(-n + 2) {
  display: none;
}

.professionals,
.news {
  padding: 0.5rem;
}
.professionals .professionals-education-image,
.news .professionals-education-image {
  margin-bottom: 1rem;
}
.professionals .header-with-caption,
.news .header-with-caption {
  position: relative;
  width: 100%;
}
.professionals .header-image-logos,
.news .header-image-logos {
  position: absolute;
  top: 60%;
  left: 10%;
  background: #fff;
  border-radius: 10px;
  padding: 5px 0 15px;
}
.professionals .header-image-logos img,
.news .header-image-logos img {
  padding: 0.25rem 1rem;
  max-height: 80px;
}
@media (max-width: 1200px) {
  .professionals .header-image-logos,
  .news .header-image-logos {
    top: 70%;
  }
}
@media (max-width: 960px) {
  .professionals .header-image-logos,
  .news .header-image-logos {
    position: unset;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.professionals .header-image-caption,
.news .header-image-caption {
  position: absolute;
  top: 30%;
  left: 10%;
  font-size: 2rem;
  color: #fff;
  width: 25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.professionals .header-image-caption.global,
.news .header-image-caption.global {
  top: 20%;
}
.professionals .header-image-caption.blue,
.news .header-image-caption.blue {
  color: #14589f;
}
.professionals .header-image-caption.xl,
.news .header-image-caption.xl {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .professionals .header-image-caption,
  .news .header-image-caption {
    width: 80%;
    top: 10%;
    font-size: 1.5rem;
    text-shadow: 2px 2px #0000006b;
  }
  .professionals .header-image-caption.xl,
  .news .header-image-caption.xl {
    font-size: 1.5rem;
  }
}
@media (max-width: 540px) {
  .professionals .header-image-caption,
  .news .header-image-caption {
    width: 80%;
    top: 10%;
    font-size: 1rem;
  }
  .professionals .header-image-caption.xl,
  .news .header-image-caption.xl {
    font-size: 1rem;
  }
}
.professionals .prof-sub-heading,
.news .prof-sub-heading {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: -0.35px;
}
.professionals .webinar-row,
.news .webinar-row {
  border-top: 1px solid #ed6430;
  padding: 1rem 0;
}
.professionals .webinar-row:last-child,
.news .webinar-row:last-child {
  border-bottom: 1px solid #ed6430;
}
.professionals .webinar-title,
.news .webinar-title {
  color: #14589f;
  font-weight: bold;
  font-size: 1rem;
}
.professionals .webinar-link,
.news .webinar-link {
  color: #ed6430;
  text-decoration: underline;
}
.professionals .accordion-title-professionals,
.news .accordion-title-professionals {
  width: 13rem;
  border-radius: 5px !important;
}
.professionals .globe::after,
.news .globe::after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 0 0 1.25rem;
  background: url("../images/globe-icon.png");
  background-size: 100% 100%;
  transition: all 0.25s ease;
  vertical-align: middle;
}
.professionals .accordion-content-professionals,
.news .accordion-content-professionals {
  border: 0;
}
.professionals .is-active > .accordion-title-professionals.more,
.news .is-active > .accordion-title-professionals.more {
  display: none;
}
.professionals
  .accordion-item:not(.is-active)
  > .accordion-title-professionals.less,
.news .accordion-item:not(.is-active) > .accordion-title-professionals.less {
  display: none;
}
.professionals .product-acc-heading,
.news .product-acc-heading {
  margin-top: 3rem;
}
.professionals .is-active > .accordion-title-professionals::before,
.news .is-active > .accordion-title-professionals::before {
  background-image: none !important;
  width: 21px;
  height: 14px;
  content: "";
}
.professionals .accordion-title-professionals::before,
.news .accordion-title-professionals::before {
  background-image: none !important;
  width: 21px;
  height: 14px;
  content: "";
}
.professionals .professionals-webinar-information b,
.news .professionals-webinar-information b {
  color: #14589f;
}
.professionals .professionals-webinar-information p,
.news .professionals-webinar-information p {
  margin-bottom: 0;
}
.professionals .webinar-link,
.news .webinar-link {
  color: #ed6430;
}

.spanish-professionals-image-text {
  filter: drop-shadow(2px 5px 5px #666);
  position: absolute;
  top: 50%;
  left: 10%;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media screen and (max-width: 700px) {
  .spanish-professionals-image-text {
    font-size: 2rem;
    top: 10%;
    left: 5%;
  }
}
.glaucoma {
  color: #3c3c3b;
  padding: 0.5rem 0;
}
.glaucoma .product-group-page .product-content div {
  margin: 0;
}
.glaucoma .content .references b {
  color: #3c3c3b !important;
}
.glaucoma .button-orange {
  font-size: 1.25rem;
}
.glaucoma .product-slider-sub-heading {
  font-size: 1.75rem !important;
  width: 95%;
}
.glaucoma .product-content p,
.glaucoma .product-content div {
  font-size: 1.75rem !important;
}
.glaucoma .product-content .references p,
.glaucoma .product-content .references {
  font-size: 1rem !important;
}
.glaucoma .product-content .content .orange-bullet-list li {
  margin-bottom: 2rem;
}
.glaucoma br {
  display: none;
}
@media (min-width: 1200px) {
  .glaucoma br {
    display: block;
  }
}
.glaucoma .caption-box__inner br {
  display: none;
}
@media (min-width: 1300px) {
  .glaucoma .caption-box__inner br {
    display: block;
  }
}
.glaucoma .references a {
  color: #454546;
  text-decoration: underline;
}
.glaucoma h2 {
  margin: 0.1rem 0 0.75rem;
  font-weight: bold;
  font-size: 2.4rem;
  color: #14589f;
  letter-spacing: -0.35px;
  padding: 0;
}
@media (min-width: 772px) {
  .glaucoma h2 {
    margin: 2.25rem 0;
  }
}
.glaucoma .header-with-caption {
  position: relative;
  width: 100%;
}
.glaucoma .header-image-caption {
  position: absolute;
  top: 35%;
  left: 10%;
  font-size: 2.75rem;
  line-height: 2.75rem;
  color: #fff;
  width: 18rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 772px) {
  .glaucoma .header-image-caption {
    font-size: 3.75rem;
    line-height: 3.75rem;
    top: 59%;
  }
}

.caption-box {
  width: 100%;
  background-color: #efefef;
  text-align: center;
  margin: 3rem 0 !important;
}
.caption-box p {
  color: #14589f;
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .caption-box p {
    font-size: 1.8rem;
  }
}
.caption-box__inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 992px) {
  .caption-box__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.glaucoma-button {
  max-width: 600px;
  font-size: 1.4rem;
  margin: 1rem 0 2.5rem 100px;
}
.glaucoma-button span {
  text-decoration: underline;
  font-weight: 600;
}

.flex-div {
  display: flex;
}

.no-break-ref br {
  display: none !important;
}

.letter-list-padding {
  padding-left: 0.75rem;
}

.glaucoma-content-container {
  margin: 1rem 0;
  position: relative;
  display: flex;
  height: auto;
}
.glaucoma-content-container .compass img {
  width: 55px;
  height: 55px;
  max-width: 55px;
}
@media (min-width: 772px) {
  .glaucoma-content-container .compass img {
    width: 125px;
    height: 125px;
    max-width: 125px;
  }
}
.glaucoma-content-container sup {
  font-size: 1.2rem;
}
.glaucoma-content-container .content {
  top: 0;
  left: 100px;
}
.glaucoma-content-container .content h2 sup {
  font-size: 1.25rem;
  top: -1em;
}
.glaucoma-content-container .content p {
  font-size: 1.8rem;
}
.glaucoma-content-container .content li {
  font-weight: 400;
  margin-bottom: 0;
  line-height: normal;
  font-size: 1.8rem;
}

.product-carousel {
  height: -moz-fit-content;
  height: fit-content;
}

.product-carousel-bar {
  background-size: 100% auto;
  max-width: 150%;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 1rem;
  display: flex;
}

body .glaucoma br {
  display: none;
}

@media (min-width: 1370px) {
  body .glaucoma br {
    display: block;
  }
}
@media (min-width: 1180px) {
  .glaucoma .caption-box p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1370px) {
  .glaucoma .caption-box p {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .lg-force-no-break {
    display: inline-block;
    text-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .faq-page {
    margin-top: 3rem !important;
  }
}
.faq-accordion {
  width: 100%;
}

.faq-accordion-item {
  width: 100%;
  background-color: #ee6430;
}

.accordion-title {
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
}

.faq-title {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: -0.35px;
  padding-left: 1rem;
}

.faq-accordion-content {
  background-color: #efefef;
  color: #3c3c3b;
  overflow: auto;
  font-size: 1.25rem;
}

.is-active > .accordion-title::before {
  background-image: url("../images/up-caret.png");
  background-size: 21px 14px;
  display: inline-block;
  width: 21px;
  height: 14px;
  content: "";
}

.accordion-title:hover,
.accordion-title:focus,
.accordion-title:active {
  background: #d94812;
  color: #fff;
}

.accordion-title::before {
  background-image: url("../images/down-caret.png");
  background-size: 21px 14px;
  display: inline-block;
  width: 21px;
  height: 14px;
  content: "";
}

.down-caret::after {
  background-image: url("../images/down-caret.png");
  background-size: 21px 14px;
  display: block;
  width: 21px;
  height: 14px;
  content: "";
  float: right;
  margin-top: 2px;
  transform: scale(1.5, 1.1);
}

.up-caret::after {
  background-image: url("../images/up-caret.png");
  background-size: 21px 14px;
  display: block;
  width: 21px;
  height: 14px;
  content: "";
  float: right;
  margin-top: 2px;
  transform: scale(1.5, 1.1);
}

.faq-image-container {
  width: 16%;
  display: inline-block;
  margin-top: 1rem;
}

.faq-text-container {
  width: 70%;
  display: inline-block;
  margin-left: 1rem;
  vertical-align: middle;
}

@media screen and (max-width: 500px) {
  .faq-image-container,
  .faq-text-container {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.product-group-page .view-less-button,
.product-group-page .view-more-button {
  width: 200px;
}
.product-group-page .header-image-caption {
  position: absolute;
  top: 8%;
  left: 8.33%;
  font-size: 2rem;
  color: #fff;
  width: 21rem;
  font-weight: bold;
  padding-left: 0.9375rem;
}
.product-group-page .header-image-caption.blue {
  color: #14589f;
}
.product-group-page .header-image-caption.xl {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .product-group-page .header-image-caption {
    width: 80%;
    top: 10%;
  }
  .product-group-page .header-image-caption.xl {
    font-size: 2rem;
  }
}
.product-group-page .product-heading,
.product-group-page .product-slider-heading {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: bold;
  font-size: 2.75rem;
  letter-spacing: -0.35px;
  margin-bottom: 0.25rem;
}
.product-group-page .sub-product-heading {
  margin: 3rem 0 1rem 0;
  padding: 0;
  color: #14589f;
  font-weight: bold;
  font-size: 2.25rem;
  letter-spacing: -0.35px;
}
.product-group-page .sub-product-heading-container {
  padding: 0;
}
.product-group-page .product-slider-heading {
  font-size: 2.5rem;
  margin-bottom: 0;
}
.product-group-page .product-sub-heading {
  margin-top: 0.75rem;
  color: #14589f;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: -0.35px;
}
.product-group-page .product-slider {
  background: #efefef;
  margin: 1rem 0;
}
.product-group-page .product-slider .button-orange {
  width: 13rem !important;
}
.product-group-page .product-slider .content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .product-group-page .product-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    min-height: 38rem;
  }
  .product-group-page .product-group {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 575px) {
  .product-group-page .product-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
  }
}
.product-group-page .product-slider-sub-heading {
  color: #14589f;
  font-weight: bold;
  letter-spacing: -0.35px;
}
.product-group-page .product-slider-image {
  padding: 1rem;
  float: right;
  min-height: 23rem;
  max-height: 25rem;
  vertical-align: middle;
}
.product-group-page .product-slider-image img {
  max-height: 23rem;
  max-width: 100%;
  display: block;
  margin: auto;
}
.product-group-page .content,
.product-group-page .content-header {
  margin-bottom: 2rem;
}
.product-group-page .content b,
.product-group-page .content strong,
.product-group-page .content p b,
.product-group-page .content p strong {
  color: #14589f;
}
.product-group-page .header-content {
  margin-top: 2rem;
}
.product-group-page .header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em) {
  .product-group-page .header-text {
    margin-bottom: 2rem;
  }
}
.product-group-page .product-slider .header-text {
  padding-left: 0;
}
@media screen and (max-width: 48em) {
  .product-group-page .product-slider .header-text {
    max-width: 100%;
    display: block;
  }
}
.product-group-page .accordion-title-product {
  margin-bottom: 0;
  padding: 0.625rem 0.9375rem;
  color: #fefefe;
  background-color: #ee6430;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.31px;
  width: 13rem;
  border-radius: 5px !important;
}
.product-group-page
  .accordion-title-product-container:hover
  .accordion-title-product,
.product-group-page .accordion-title-product:hover {
  color: #ee6430;
  background-color: #fefefe;
}
.product-group-page .product-group {
  margin-top: 2rem;
  background-color: #efefef;
  min-height: 27rem;
  margin-left: 0;
  margin-right: 0;
}
.product-group-page .product-group-text {
  margin-top: auto;
  margin-bottom: auto;
}
.product-group-page .product-group-image {
  max-height: 100%;
}
@media screen and (min-width: 782px) {
  .product-group-page .product-group-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.product-group-page .product-group-image img {
  max-height: 80%;
}
.product-group-page .disabled-message {
  font-size: 1.25rem;
  padding-right: 3rem;
  color: #0e0e0e;
}
.product-group-page .product-group-heading {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: bolder;
  font-size: 2.5rem;
  letter-spacing: -0.35px;
}
.product-group-page .product-group-sub-heading {
  margin-top: 1.25rem;
  color: #14589f;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: -0.35px;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .product-group-page .product-group-heading,
  .product-group-page .product-group-sub-heading {
    font-size: 2rem;
  }
}
.product-group-page .eye-health-info,
.product-group-page .header-content {
  width: 100%;
}
.product-group-page .eye-health-info p,
.product-group-page .eye-health-info div p,
.product-group-page .product-slider-sub-heading {
  font-size: 1.25rem;
}
.product-group-page .product-hero-bar {
  background-size: cover;
  background-position: center center;
  max-width: 150%;
  width: 100%;
  position: relative;
  margin-top: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: 490px;
}
.product-group-page .product-content iframe {
  width: 100% !important;
  margin: 0 1rem;
}
.product-group-page .product-content p,
.product-group-page .product-content div {
  font-size: 1.25rem;
}
.product-group-page .product-content .glaucoma-content-container p,
.product-group-page .product-content .glaucoma-content-container div {
  font-size: 1.75rem;
}
.product-group-page .product-content .glaucoma-content-container ul,
.product-group-page .product-content .glaucoma-content-container li {
  font-size: 1.75rem !important;
}
.product-group-page .product-content .glaucoma-content-container .references {
  font-size: 1rem;
}
.product-group-page .product-content div,
.product-group-page .product-content video {
  margin: 1rem 0;
}
.product-group-page .references {
  word-wrap: break-word;
}
.product-group-page .references p {
  font-size: 0.85rem;
}
.product-group-page .references p b {
  color: #595b5d;
}
.product-group-page .multi-product-image {
  width: 35%;
  float: right;
}
.product-group-page .multi-product-description {
  display: inline-block;
  width: 60%;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .product-group-page .multi-product-image {
    width: 100%;
    float: unset;
  }
  .product-group-page .multi-product-description {
    display: inline-block;
    width: 100%;
  }
}
.product-group-page .multi-product:first-child .multi-product-image.hide {
  display: none !important;
}
.product-group-page
  .multi-product:first-child
  .multi-product-description.hide-image {
  width: 100%;
}
.product-group-page .multi-product:last-child hr {
  display: none;
}
.product-group-page .product-separator {
  border-bottom: 4px solid #fff;
}
.product-group-page .multi-product .orange-bullet-list li,
.product-group-page .product-content .orange-bullet-list li {
  margin-bottom: 0;
  font-size: 1.25rem;
}
.product-group-page .button-container {
  padding: 0;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .product-group-page {
    padding: 1rem;
  }
}
.product-content-image-container {
  margin-top: 3rem;
  padding: 0 3rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.large-plus-image {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .large-plus-image {
    width: 33%;
  }
}
@media screen and (max-width: 760px) {
  .large-plus-image {
    width: 100%;
  }
}

.product-content-image-title {
  font-size: 1.5rem !important;
  font-weight: bold;
  color: #14589f;
  text-align: center;
}

.product-content-image {
  margin-bottom: 1rem;
  max-height: 9rem;
}
.product-content-image img {
  margin-bottom: 1rem;
  max-height: 9rem;
}

.product-content-image-caption {
  text-align: center;
  width: 100%;
}

.product-content-image-plus {
  margin-top: 2.5rem !important;
  width: 12.5%;
  padding: 2rem;
}
@media screen and (max-width: 1024px) {
  .product-content-image-plus {
    display: none;
  }
}

.product-plus-container {
  display: flex;
  flex-wrap: wrap;
}

.product-image-5 {
  width: 20% !important;
  margin-top: 3rem;
  padding: 0 0.5rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .product-image-5 {
    width: 33% !important;
  }
}
@media screen and (max-width: 800px) {
  .product-image-5 {
    width: 50% !important;
  }
}
@media screen and (max-width: 600px) {
  .product-image-5 {
    width: 100% !important;
  }
}

.product-image-4 {
  width: 24% !important;
  margin-top: 3rem;
  padding: 0 0.5rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .product-image-4 {
    width: 50% !important;
  }
}
@media screen and (max-width: 800px) {
  .product-image-4 {
    width: 100% !important;
  }
}

.product-image-3 {
  width: 33% !important;
  margin-top: 3rem;
  padding: 0 0.5rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .product-image-3 {
    width: 100% !important;
  }
}

.product-content-image-flex-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.product-separate {
  border-bottom: 3px solid #fff;
}

.product-link-button {
  max-width: 22rem;
  display: block;
  font-size: 1.125rem;
}

.pharmacy-icon {
  width: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-shop-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.tm-image {
  float: right;
  margin-top: 0.5rem;
}

.product-content-dropdown .accordion {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: transparent;
}

.product-content-dropdown .faq-accordion-item {
  width: 33%;
  padding: 0 0.5rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

@media screen and (max-width: 1100px) {
  .product-content-dropdown .faq-accordion-item {
    width: 100%;
  }
}

.product-content-dropdown .accordion-title {
  padding: 0;
}

.product-content-dropdown .accordion-title:hover,
.product-content-dropdown .accordion-title:focus {
  background: transparent;
}

.product-content-dropdown .faq-accordion-content {
  color: #6d6f71;
}

.product-content-dropdown .product-content-image {
  max-height: 405px;
}

.product-content-dropdown .accordion-title::before {
  position: absolute;
  left: calc(50% - 9px);
  bottom: 32px;
  top: auto;
  margin-top: -0.5rem;
}

.product-content-dropdown .accordion-content {
  margin-top: 0 !important;
}

.international-business {
  color: #3c3c3b;
}

.business-box {
  font-size: 1.2rem;
  max-width: 530px;
  min-height: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 45px;
  margin-bottom: 15px;
}
.business-box h4 {
  width: 100%;
  color: #14589f;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.2;
}
.business-box.de h4 {
  font-size: 1.5rem;
}
.business-box .button {
  border-radius: 5px;
  min-width: 70%;
  font-size: 1.2rem;
  padding: 10px;
  text-align: center;
}

.map-heading {
  color: #14589f;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2.5rem;
}

.distributors {
  padding: 2rem 1rem;
}

@media screen and (max-width: 768px) {
  .distributors {
    padding: 2rem 1rem 0;
  }
}
.map-tabs {
  display: block;
  margin: 0 auto 4rem;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 1rem;
}

/* @media screen and (max-width: 768px) {
                    .map-tabs {
                        display: block;
                    }
                } */
.map-tabs__tab {
  display: inline-block;
  margin: 0 0.5em 0 0;
  padding: 0 0.75em 0 0;
  border-right: 1px solid #6d6f71;
}

.map-tabs__tab:last-child {
  border: 0;
}

.map-tabs__btn {
  padding: 0;
}

.map-tabs__btn.is-current {
  font-weight: bold;
  color: #14589f;
}

.distributors__map {
  fill: #e1e1e1;
  stroke: #fff;
  stroke-width: 0.1px;
}

.distributors__location {
  fill: #14589f;
}
.distributors__location.distributors__location-alt {
  fill: #ed6430;
}
.distributors__location.distributors__location-uk {
  stroke-width: 0;
}

.distributors__country {
  transition: opacity 0.4s ease;
}

.distributors__tooltip {
  display: none;
  position: absolute;
  width: 500px;
  max-width: none !important;
  padding: 2rem;
  color: #fff;
  background: #323232;
  font-size: 100%;
}

@media screen and (max-width: 768px) {
  .distributors__tooltip {
    position: relative;
    width: auto;
    margin: 2rem -1rem 0;
  }

  .distributors__tooltip::before {
    display: none;
  }
}
.distributors__tooltip[aria-hidden="false"] {
  display: block;
}

.distributors__tooltip::before {
  border-color: transparent transparent #323232;
}

.distributors__tooltip__close {
  position: relative;
  float: right;
  width: 2rem;
  height: 2rem;
  margin: -1rem -1rem 0 0;
}

.distributors__tooltip__close::before,
.distributors__tooltip__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ef6342;
}

.distributors__tooltip__close::before {
  transform: rotate(45deg);
}

.distributors__tooltip__close::after {
  transform: rotate(-45deg);
}

.distributors__tooltip__title {
  color: #ef6342;
  font-weight: bold;
}

.distributors__tooltip__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.distributors__tooltip__list-title {
  font-weight: bold;
  margin-right: 0.5rem;
}

.distributors__tooltip__list-title::after {
  content: ":";
}

.distributors__tooltip__list-definition {
  flex: 1;
}
.distributors__tooltip__list-definition a {
  color: #ef6342;
}

.u-sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: polygon(0 0, 0 0, 0 0);
  clip-path: polygon(0 0, 0 0, 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.distributors__regional-map {
  display: none;
}

.map-wrapper {
  overflow: hidden;
  height: 600px;
}

.distributors__regional-map {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .map-wrapper {
    height: 400px;
  }
}
.dw-toggle {
  display: none;
  background: none;
  border: 0;
  margin: 1rem 0 0.5rem;
  padding: 0.25rem 0;
  color: #14589f;
}

h3 + .dw-toggle {
  margin-top: 0;
}

.dw-toggle[aria-expanded] {
  display: block;
}

.dw-toggle[aria-expanded]::after {
  display: inline-block;
  content: "❯";
  margin-left: 0.5rem;
  transform: rotate(0);
  font-size: 0.7rem;
}

.dw-toggle[aria-expanded="true"]::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease-out;
}

[aria-expanded="false"] + .dw-panel {
  display: none;
}

.dw-panel + h3 {
  margin-top: 2rem;
}

h4 {
  word-break: break-word;
}

.hcp-modal {
  padding: 2rem 4rem;
  border: 0;
  outline: none;
}
.hcp-modal .hcp-modal-title {
  margin: 2rem 1rem 1rem 1rem;
  color: #14589f;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: -0.35px;
  text-align: center;
}
.hcp-modal .hcp-modal-buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.hcp-modal .hcp-modal-buttons button,
.hcp-modal .hcp-modal-buttons a {
  margin: 1rem 0;
  min-width: 13rem;
  text-align: center;
}

.news-article {
  padding: 0.5rem;
  max-width: 1200px;
}
.news-article .header-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.news-article .header-image img {
  width: 100%;
}

.news h1,
.news h2,
.news h3,
.news h4,
.news h5,
.news h6,
.news-article-body h1,
.news-article-body h2,
.news-article-body h3,
.news-article-body h4,
.news-article-body h5,
.news-article-body h6 {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  margin: 1rem 0;
  padding: 0;
}

.news-article-body {
  padding: 1rem;
}

.news-pagination {
  display: flex;
  justify-content: end;
}

.news-preview__image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.news-preview__image img {
  align-self: center;
}
.news-preview__date {
  margin-bottom: 0;
}
.news-preview__title {
  margin-top: 0;
  padding-bottom: 0;
  font-weight: 700;
}
.news-preview__text {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.x {
  display: flex;
}

.mb2 {
  margin-bottom: 2rem;
}

.bg-catskill-white {
  background-color: #e7eef5;
}

.bg-provincial-pink {
  background-color: #fdefea;
}

@media screen {
  .sm-x {
    display: flex;
  }
}
@media screen and (min-width: 48em) {
  .md-x {
    display: flex;
  }
}
@media screen and (min-width: 64em) {
  .lg-x {
    display: flex;
  }
}
.dn {
  display: none;
}

.db {
  display: block;
}

@media (min-width: 576px) {
  .sm-dn {
    display: none;
  }

  .sm-db {
    display: block;
  }
}
@media (min-width: 768px) {
  .md-dn {
    display: none;
  }

  .md-db {
    display: block;
  }
}
@media (min-width: 992px) {
  .lg-dn {
    display: none;
  }

  .lg-db {
    display: block;
  }
}
/*# sourceMappingURL=app.css.map */

/* Extra */
.visufly-msgs {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
}

.visufly-msgs__item {
  display: flex;
}

.visufly-msgs__item img {
  width: 120px;
  height: 120px;
  margin-right: 1rem;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .visufly-msgs__item img {
    width: 75px;
    height: 75px;
  }
}

.visufly-msgs__item > div:first-child {
  flex-shrink: 0;
  margin: 0 !important;
}

.visufly-msgs__item h5 {
  font-family: proxima-nova, sans-serif;
  color: #14589f;
  font-weight: 800;
  margin-top: 1rem;
}

.visufly-msgs__item strong {
  color: #000 !important;
}

.visufly-attrs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

@media (max-width: 767px) {
  .visufly-attrs {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.visufly-attrs__item {
  width: 25%;
}

@media (max-width: 767px) {
  .visufly-attrs__item {
    width: 100%;
  }
}

.visufly-attrs__item p {
  color: #14589f;
  font-weight: 800;
  text-align: center;
  font-size: 20px;
  font-family: proxima-nova, sans-serif;
}

.visufly-attrs__item img {
  display: block;
  margin: 0 auto;
}

.visufly-attrs__item > div:first-child {
  margin: 0 !important;
}

@media (max-width: 576px) {
  .sustainability-logos-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
}

.break-word {
  word-break: break-word;
}
