/*! nouislider - 14.2.0 - 3/27/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.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;
    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 {
      position: relative; }
  .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;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .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;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    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; }
  .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; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.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__remove {
  margin-left: 2px;
  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[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.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--highlighted[aria-selected] {
  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: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  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;
    margin-right: 10px; }
  .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: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    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: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  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: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  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; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .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;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.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[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  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; }
th[role=columnheader]:not(.no-sort) {
	cursor: pointer;
}

th[role=columnheader]:not(.no-sort):after {
	content: '';
	float: right;
	margin-top: 7px;
	border-width: 0 4px 4px;
	border-style: solid;
	border-color: #404040 transparent;
	visibility: hidden;
	opacity: 0;
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

th[aria-sort=ascending]:not(.no-sort):after {
	border-bottom: none;
	border-width: 4px 4px 0;
}

th[aria-sort]:not(.no-sort):after {
	visibility: visible;
	opacity: 0.4;
}

th[role=columnheader]:not(.no-sort):hover:after {
	visibility: visible;
	opacity: 1;
}
.wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -.5rem;
  margin-left: -.5rem;
}

.row.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.col-xs-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
}

.col-xs-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.col-xs-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.col-xs-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
}

.col-xs-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
}

.col-xs-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}

.col-xs-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.col-xs-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
}

.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 25%;
}

.col-xs-offset-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 50%;
}

.col-xs-offset-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 75%;
}

.col-xs-offset-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-left: 100%;
}

.col-xs {
  -webkit-box-flex: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (min-width: 568px) {
  .container {
    width: 568px;
  }

  .col-sm {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-sm-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 100%;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    width: 768px;
  }

  .col-md {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-md-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  .col-md-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  .col-md-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  .col-md-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 100%;
  }

  .col-md {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 960px) {
  .container {
    width: 960px;
  }

  .col-lg {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-lg-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 100%;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1200px;
  }

  .col-xlg {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-xlg-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-xlg-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }

  .col-xlg-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xlg-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .col-xlg-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }

  .col-xlg-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xlg-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }

  .col-xlg-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .col-xlg-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xlg-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }

  .col-xlg-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }

  .col-xlg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xlg-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 8.33333%;
  }

  .col-xlg-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 16.66667%;
  }

  .col-xlg-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 25%;
  }

  .col-xlg-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 33.33333%;
  }

  .col-xlg-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 41.66667%;
  }

  .col-xlg-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 50%;
  }

  .col-xlg-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 58.33333%;
  }

  .col-xlg-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 66.66667%;
  }

  .col-xlg-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 75%;
  }

  .col-xlg-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 83.33333%;
  }

  .col-xlg-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 91.66667%;
  }

  .col-xlg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: .5rem;
    padding-left: .5rem;
    margin-left: 100%;
  }

  .col-xlg {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-xlg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-xlg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-xlg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-xlg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-xlg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-xlg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-xlg {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-xlg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-xlg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .last-xlg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: .15s;
       -o-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: .7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
          transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),-o-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -o-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
          transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: top 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: top 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: bottom 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: top 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.1s 0.1s ease,-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),-o-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: top 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: bottom 0.1s ease,-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),-o-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
       -o-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
       -o-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
       -o-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
       -o-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
          transform: translate3d(0, -10px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
       -o-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
       -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  -o-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
          transform: translate3d(0, 10px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
          transform: translate3d(0, -20px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
       -o-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
       -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  -o-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -o-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
          transform: translate3d(0, 10px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
          transform: translate3d(0, -20px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
       -o-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  -o-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
          transform: translate3d(80px, 80px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
          transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  -o-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,left 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top 0.05s 0.125s linear,right 0.125s 0.175s ease-in,-webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),-o-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
          transform: translate3d(80px, -80px, 0) rotate(-45deg);
  -webkit-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: left 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
          transform: translate3d(-80px, -80px, 0) rotate(45deg);
  -webkit-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: right 0.125s ease-out,top 0.05s 0.125s linear,-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out,top 0.05s 0.125s linear,transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1),-o-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
  -webkit-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  -o-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  -webkit-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  -o-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, -o-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform, -o-transform;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, -o-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform, -o-transform;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
          transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
          transform: translate3d(0, -20px, 0) rotate(90deg);
}

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in,-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
       -o-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out,-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in,-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
       -o-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out,-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  -o-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
       -o-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0s linear;
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
       -o-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0s 0.22s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: background-color 0s 0.075s linear,-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: background-color 0s 0.15s linear,-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: background-color 0s 0.075s linear,-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s 0.075s linear,-webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.075s ease-in,-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: background-color 0s 0.15s linear,-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s 0.15s linear,-webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s 0.1s ease-out,-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
       -o-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease,-webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,-webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.12s ease,-o-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19),-webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease,-webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,-webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s ease,-o-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--vortex .hamburger-inner {
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, -o-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform, -o-transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
       -o-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, -o-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform, -o-transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
       -o-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: height, -o-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform, -o-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: -o-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: -o-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: -o-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0));
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
       -o-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
       -o-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
       -o-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
       -o-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
       -o-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms top, 200ms -o-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform, 200ms -o-transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms left, 200ms -o-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform, 200ms -o-transform;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms right, 200ms -o-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform, 200ms -o-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0,0,0,0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
       -o-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
       -o-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0,0,0,0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
       -o-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
       -o-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-o-keyframes swiper-preloader-spin {
  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
       -o-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.combo-select {
  position: relative;
  max-width: 400px;
  margin-bottom: 15px;
  font: 100% Helvetica, Arial, Sans-serif;
  border: 1px #ccc solid;
  border-radius: 3px;
}

.combo-select .combo-input {
  margin-bottom: 0;
}

.combo-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: none;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  padding-right: 60px;
  border-radius: 3px;
}

.combo-input:focus {
  outline: none;
}

.combo-arrow {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  width: 40px;
  font-size: 12px;
  color: #999;
}

.combo-arrow:before {
  content: " ";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #cccccc;
  display: block;
  width: 0;
  height: 0;
  top: 0;
  right: 15px;
  bottom: 0;
  position: absolute;
  margin: auto 0;
}

.combo-open .combo-arrow {
  border-color: #51A7E8;
}

.combo-open .combo-arrow:before {
  border-top: none;
  border-bottom: 5px solid #cccccc;
}

.combo-focus {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
          box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
  border-color: #51A7E8;
}

.combo-focus input {
  border-color: #51A7E8;
}

.combo-select select {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  opacity: 0;
}

@media only screen and (min-width: 960px) {
  .combo-select select {
    left: -1px;
    top: -1px;
    width: 0;
    height: 0;
    margin: 0;
  }
}

.option-selected {
  background-color: #eee;
}

.option-hover {
  background-color: #006eab;
  color: #fff;
}

.option-item {
  cursor: pointer;
  border-bottom: 1px #e3e3e3 solid;
}

.option-item:hover {
  background-color: #006eab;
  color: #fff;
}

.option-item:last-child {
  border-bottom: none;
}

.option-group {
  cursor: text;
  font-weight: 600;
  background: #e1e1e1;
  border: 1px #ccc solid;
  border-width: 1px 0;
}

.option-disabled {
  opacity: 0.5;
}

.combo-dropdown {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  min-width: 100%;
  max-width: 300px;
  max-height: 300px;
  margin: 0;
  padding: 0;
  display: none;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
          box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.combo-dropdown li {
  list-style: none;
  padding: 8px 1em;
  margin: 0;
}

.combo-open .combo-dropdown {
  display: block;
}

.combo-marker {
  text-decoration: underline;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:last-child {
  margin-bottom: 0;
}

:first-child {
  margin-top: 0;
}

a {
  background-color: transparent;
}

a,
input,
button {
  -webkit-tap-highlight-color: fade(#000, 0%);
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #000;
  text-decoration: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

:not(pre)>code,
:not(pre)>kbd,
:not(pre)>samp {
  white-space: nowrap;
  padding: 0;
}

em {
  font-style: italic;
}

ins {
  text-decoration: none;
}

q {
  font-style: italic;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

blockquote,
figure {
  margin: 0;
}

p,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0;
}

*+p,
*+ul,
*+ol,
*+dl,
*+blockquote,
*+pre,
*+address,
*+fieldset,
*+figure {
  margin-top: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

*+h1,
*+h2,
*+h3,
*+h4,
*+h5,
*+h6 {
  margin-top: 20px;
}

ul,
ol {
  padding-left: 30px;
}

ul>li>ul,
ul>li>ol,
ol>li>ul,
ol>li>ol {
  margin: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #000;
}

*+hr {
  margin-top: 20px;
}

address {
  font-style: normal;
}

pre {
  overflow: auto;
}

pre>code {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

progress {
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
}

[hidden],
template {
  display: none;
}

iframe {
  border: 0;
}

.main {
  padding: 116px 0 0 0;
  position: relative;
  z-index: 99;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .main {
    padding: 71px 0 0 0;
  }
}

.disable-click {
  pointer-events: none;
}

.padding-150 {
  padding: 0 150px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .padding-150 {
    padding: 0 46px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .padding-150 {
    padding: 0 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .padding-150 {
    padding: 0 16px;
  }
}

.padding-90 {
  padding: 0 90px;
}

.site-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.nav-wrapper {
  padding: 0px 50px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .nav-wrapper {
    padding: 0px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .nav-wrapper {
    padding: 0px 24px;
  }
}

.show-footer {
  bottom: 45px;
  z-index: 999;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .show-footer {
    bottom: 161px;
  }
}

.wrapper {
  max-width: 100% !important;
}

.footer-wrapper {
  padding: 0px 50px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .footer-wrapper {
    padding: 15px 36px;
  }
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body {
  background: #fff;
  overflow-x: hidden;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 30px;
}

body.no-scroll {
  overflow-y: auto;
  overflow-x: hidden;
}

body.viz-no-scroll {
  height: 100vh;
  overflow: hidden;
}

a {
  color: #006FAB;
  font-weight: bold;
  border-bottom: 2px #006FAB solid;
}

a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00BCE4;
  outline-offset: 2px;
}

a.clicked:focus {
  outline: none !important;
}

[data-select2-id] a {
  border-bottom: none;
}

.active-click {
  outline: none !important;
}

video::-webkit-media-controls {
  display: none !important;
}

p.subtitle {
  font-size: 16px;
  font-weight: bold;
  font-weight: bold;
  margin-bottom: 0;
}

blockquote {
  font-size: 24px;
  font-style: italic;
  line-height: 41px;
  margin: 28px 0;
  padding: 0 40px;
  border-left: 2px #ccc solid;
}

.intro-text {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 20px;
}

.hamburger-inner {
  background: #00806F;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .hamburger-inner {
    width: 30px;
  }
}

.hamburger-inner:before,
.hamburger-inner:after {
  background: #00806F;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .hamburger-inner:before,
  .hamburger-inner:after {
    width: 30px;
  }
}

.invisible {
  display: none;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone,
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.animated {
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
     animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
     animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
     animation-name: fadeInUp;
}

@-webkit-keyframes background-gradient {
  0% {
    background-position: 7% 0%;
  }

  50% {
    background-position: 94% 100%;
  }

  100% {
    background-position: 7% 0%;
  }
}

@-o-keyframes background-gradient {
  0% {
    background-position: 7% 0%;
  }

  50% {
    background-position: 94% 100%;
  }

  100% {
    background-position: 7% 0%;
  }
}

@keyframes background-gradient {
  0% {
    background-position: 7% 0%;
  }

  50% {
    background-position: 94% 100%;
  }

  100% {
    background-position: 7% 0%;
  }
}

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

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(100deg);
            transform: translate(-50%, -50%) rotate(100deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: translate(-50%, -50%) rotate(0deg);
       transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -o-transform: translate(-50%, -50%) rotate(100deg);
       transform: translate(-50%, -50%) rotate(100deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
         -o-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(100deg);
         -o-transform: translate(-50%, -50%) rotate(100deg);
            transform: translate(-50%, -50%) rotate(100deg);
  }
}

@-webkit-keyframes load5 {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #000,1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.5),-1.8em -1.8em 0 0em rgba(0,0,0,0.7);
            box-shadow: 0em -2.6em 0em 0em #000,1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.5),-1.8em -1.8em 0 0em rgba(0,0,0,0.7);
  }

  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.7),1.8em -1.8em 0 0em #000,2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.7),1.8em -1.8em 0 0em #000,2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.5);
  }

  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.5),1.8em -1.8em 0 0em rgba(0,0,0,0.7),2.5em 0em 0 0em #000,1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.5),1.8em -1.8em 0 0em rgba(0,0,0,0.7),2.5em 0em 0 0em #000,1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.5),2.5em 0em 0 0em rgba(0,0,0,0.7),1.75em 1.75em 0 0em #000,0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.5),2.5em 0em 0 0em rgba(0,0,0,0.7),1.75em 1.75em 0 0em #000,0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.5),1.75em 1.75em 0 0em rgba(0,0,0,0.7),0em 2.5em 0 0em #000,-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.5),1.75em 1.75em 0 0em rgba(0,0,0,0.7),0em 2.5em 0 0em #000,-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.5),0em 2.5em 0 0em rgba(0,0,0,0.7),-1.8em 1.8em 0 0em #000,-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.5),0em 2.5em 0 0em rgba(0,0,0,0.7),-1.8em 1.8em 0 0em #000,-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.5),-1.8em 1.8em 0 0em rgba(0,0,0,0.7),-2.6em 0em 0 0em #000,-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.5),-1.8em 1.8em 0 0em rgba(0,0,0,0.7),-2.6em 0em 0 0em #000,-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.5),-2.6em 0em 0 0em rgba(0,0,0,0.7),-1.8em -1.8em 0 0em #000;
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.5),-2.6em 0em 0 0em rgba(0,0,0,0.7),-1.8em -1.8em 0 0em #000;
  }
}

@-o-keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #000,1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.5),-1.8em -1.8em 0 0em rgba(0,0,0,0.7);
  }

  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.7),1.8em -1.8em 0 0em #000,2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.5);
  }

  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.5),1.8em -1.8em 0 0em rgba(0,0,0,0.7),2.5em 0em 0 0em #000,1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.5),2.5em 0em 0 0em rgba(0,0,0,0.7),1.75em 1.75em 0 0em #000,0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.5),1.75em 1.75em 0 0em rgba(0,0,0,0.7),0em 2.5em 0 0em #000,-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.5),0em 2.5em 0 0em rgba(0,0,0,0.7),-1.8em 1.8em 0 0em #000,-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.5),-1.8em 1.8em 0 0em rgba(0,0,0,0.7),-2.6em 0em 0 0em #000,-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.5),-2.6em 0em 0 0em rgba(0,0,0,0.7),-1.8em -1.8em 0 0em #000;
  }
}

@keyframes load5 {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #000,1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.5),-1.8em -1.8em 0 0em rgba(0,0,0,0.7);
            box-shadow: 0em -2.6em 0em 0em #000,1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.5),-1.8em -1.8em 0 0em rgba(0,0,0,0.7);
  }

  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.7),1.8em -1.8em 0 0em #000,2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.7),1.8em -1.8em 0 0em #000,2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.5);
  }

  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.5),1.8em -1.8em 0 0em rgba(0,0,0,0.7),2.5em 0em 0 0em #000,1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.5),1.8em -1.8em 0 0em rgba(0,0,0,0.7),2.5em 0em 0 0em #000,1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.5),2.5em 0em 0 0em rgba(0,0,0,0.7),1.75em 1.75em 0 0em #000,0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.5),2.5em 0em 0 0em rgba(0,0,0,0.7),1.75em 1.75em 0 0em #000,0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.5),1.75em 1.75em 0 0em rgba(0,0,0,0.7),0em 2.5em 0 0em #000,-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.5),1.75em 1.75em 0 0em rgba(0,0,0,0.7),0em 2.5em 0 0em #000,-1.8em 1.8em 0 0em rgba(0,0,0,0.2),-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.5),0em 2.5em 0 0em rgba(0,0,0,0.7),-1.8em 1.8em 0 0em #000,-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.5),0em 2.5em 0 0em rgba(0,0,0,0.7),-1.8em 1.8em 0 0em #000,-2.6em 0em 0 0em rgba(0,0,0,0.2),-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.5),-1.8em 1.8em 0 0em rgba(0,0,0,0.7),-2.6em 0em 0 0em #000,-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.5),-1.8em 1.8em 0 0em rgba(0,0,0,0.7),-2.6em 0em 0 0em #000,-1.8em -1.8em 0 0em rgba(0,0,0,0.2);
  }

  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.5),-2.6em 0em 0 0em rgba(0,0,0,0.7),-1.8em -1.8em 0 0em #000;
            box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,0.2),1.8em -1.8em 0 0em rgba(0,0,0,0.2),2.5em 0em 0 0em rgba(0,0,0,0.2),1.75em 1.75em 0 0em rgba(0,0,0,0.2),0em 2.5em 0 0em rgba(0,0,0,0.2),-1.8em 1.8em 0 0em rgba(0,0,0,0.5),-2.6em 0em 0 0em rgba(0,0,0,0.7),-1.8em -1.8em 0 0em #000;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 186px;
  padding: 0 20px;
  height: 50px;
  border-radius: 26px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .btn {
    font-size: 12px;
    line-height: 18px;
  }
}

.btn:hover {
  color: #fff;
}

.btn:focus {
  outline: 2px solid #00BCE4;
  outline-offset: 2px;
}

.btn.clicked:focus {
  outline: none !important;
}

.btn.blue {
  background: #006FAB;
}

.btn.blue:hover {
  background: #074975;
}

.btn.green {
  background: #00806F;
}

.btn.green:hover {
  background: #006C64;
}

.btn.yellow {
  background: #FFC425;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .btn {
    height: 35px;
    width: auto;
  }
}

.btn-arrow {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-arrow.green:after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -35px;
  height: 12px;
  width: 12px;
  background-image: url(../images/btn-green-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
}

.btn-arrow.green:hover:after {
  right: -40px;
}

.btn-arrow.blue:after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -35px;
  height: 12px;
  width: 12px;
  background-image: url(../images/btn-blue-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
}

.btn-arrow.blue:hover:after {
  right: -40px;
}

.form-wrapper {
  margin: 20px auto;
  padding: 40px 0;
  text-align: left;
}

.form-wrapper h1 {
  margin: 0 0 20px 0;
}

optgroup {
  font: inherit;
  font-weight: bold;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  width: 100% !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

input::-moz-placeholder {
  opacity: 1;
  color: #000;
}

input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

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

:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

::-ms-clear {
  display: none;
}

form>:last-child {
  margin-bottom: 0;
}

select,
textarea,
input:not([type]),
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  width: 100%;
}

[class*="col-"]>select,
[class*="col-"]>textarea,
[class*="col-"]>input:not([type]),
[class*="col-"]>input[type="text"],
[class*="col-"]>input[type="password"],
[class*="col-"]>input[type="datetime"],
[class*="col-"]>input[type="datetime-local"],
[class*="col-"]>input[type="date"],
[class*="col-"]>input[type="month"],
[class*="col-"]>input[type="time"],
[class*="col-"]>input[type="week"],
[class*="col-"]>input[type="number"],
[class*="col-"]>input[type="email"],
[class*="col-"]>input[type="url"],
[class*="col-"]>input[type="search"],
[class*="col-"]>input[type="tel"],
[class*="col-"]>input[type="color"] {
  width: 100%;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  display: inline-block;
}

legend {
  width: 100%;
  border: 0;
  padding: 0;
}

legend:after {
  content: "";
  display: block;
  width: 100%;
}

textarea,
select[multiple],
select[size] {
  height: auto;
}

label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 2px;
  margin: 0 0 3px 0 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px !important;
  line-height: 15px !important;
  color: #242423 !important;
  letter-spacing: 1px !important;
}

.form-error label.error {
  font-size: 12px;
}

.form-success label.success {
  font-size: 12px;
}

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

.gform_fields li {
  position: relative;
  margin: 0 0 10px 0 !important;
}

.gform_fields li.half {
  width: 100%;
  max-width: 235px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.gform_fields li.half:first-child {
  margin-right: 15px;
}

.gform_fields li.half.modal {
  max-width: 239	px;
}

@media only screen and (max-width: 999px) and (min-width: 1px) {
  .gform_fields li.half.modal {
    max-width: 47%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .gform_fields li.half.modal {
    max-width: 100%;
  }
}

.gform_fields li.margin-bottom-negative-20 {
  margin-bottom: -20px !important;
}

.gform_fields>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  height: 38px;
  padding: 17px 12px !important;
  margin-bottom: 5px;
  background: #FFFFFF;
  border: 2px solid #00806F !important;
  border-radius: 4px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px !important;
  line-height: 14px !important;
  color: #555859 !important;
}

input[type="text"].error,
input[type="email"].error,
input[type="password"].error {
  border: 1px solid #ED3024;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
  outline-offset: 5px;
}

input[type="text"].valid,
input[type="email"].valid,
input[type="password"].valid {
  background-color: #fff;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
  opacity: 0.5;
  text-transform: uppercase;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
  opacity: 0.5;
  text-transform: uppercase;
}

input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
  opacity: 0.5;
  text-transform: uppercase;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
  opacity: 0.5;
  text-transform: uppercase;
}

select {
  background: #fff;
  border: 1px solid #ddd;
  height: 44px;
}

.selectric {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 23px;
}

.selectric .label {
  font-size: 17px;
  color: #fff;
}

.selectric .button:after {
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.selectric-open .button:after {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.selectric-scroll li.highlighted {
  background: #f2f2f2;
}

.selectric-scroll li {
  margin: 0;
}

.selectric-scroll li:hover {
  background: #f2f2f2;
}

textarea {
  height: 104px;
  padding: 20px 12px;
  background: #FFFFFF;
  border: 2px solid #00806F;
  border-radius: 4px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px !important;
  line-height: 14px !important;
  color: #555859 !important;
}

textarea:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
  outline-offset: 2px;
}

textarea.medium {
  min-height: 120px;
  max-height: 120px;
}

input[type="submit"] {
  height: 50px;
  line-height: 40px;
  padding: 5px;
  cursor: pointer;
  width: 100%;
  background: none;
  color: #242423;
  border: none;
  text-align: right;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px !important;
  line-height: 16px !important;
  color: #242423 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

input[type="submit"]:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
}

.ginput_container {
  margin-top: 0 !important;
}

.ginput_container_fileupload .button {
  background: #fa8600;
  color: #fff;
  border: 2px solid #fa8600;
  line-height: 32px;
}

.ginput_container_fileupload #extensions_message {
  padding-left: 20px;
  font-size: 11px;
  font-style: italic;
}

.ginput_container_fileupload .inputfile {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.ginput_container_fileupload .inputfile+label {
  color: inherit;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-transform: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.ginput_container_fileupload .inputfile+label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.gfield_checkbox {
  display: inline-block;
  position: relative;
  width: 100%;
}

.gfield_checkbox li {
  position: relative;
  display: inline-block;
  width: auto;
}

.gfield_checkbox label {
  line-height: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.gfield_checkbox label:before {
  position: absolute;
  content: '';
  -webkit-transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  top: 0;
  left: 5px;
  width: 20px;
  height: 20px;
  background: #fff;
  color: #fa8600;
  border-radius: 2px;
  background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  text-align: center;
}

.gfield_checkbox input:checked+label:before {
  content: '\2714';
}

.gfield_checkbox label.disabled {
  opacity: 0.75;
}

.gfield_checkbox input {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.gfield_radio {
  display: inline-block;
  position: relative;
  width: 100%;
}

.gfield_radio li {
  position: relative;
  display: inline-block;
  width: auto;
}

.gfield_radio label {
  padding-left: 30px;
  padding-right: 30px;
  line-height: 20px;
}

.gfield_radio label:before {
  top: 4px;
  right: 4px;
  top: 0;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  content: '';
  border: 1px solid #ccc;
  -webkit-transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gfield_radio input:checked+label:before {
  background: #fa8600;
}

.gfield_radio.disabled {
  opacity: 0.75;
}

.gfield_radio input {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.gform_footer {
  position: relative;
  margin-top: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gform_footer:after {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(-90deg) translateX(50%);
       -o-transform: rotate(-90deg) translateX(50%);
          transform: rotate(-90deg) translateX(50%);
  right: -5px;
  height: 10px;
  width: 10px;
  background-image: url(../images/blue-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.page-template-template-contact .gform_footer {
  position: relative;
  padding: 16px 0 10px !important;
  margin: 16px 0 0 -13px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.page-template-template-contact .gform_footer:after {
  position: absolute;
  content: '';
  top: 54%;
  -webkit-transform: rotate(-90deg) translateX(50%);
       -o-transform: rotate(-90deg) translateX(50%);
          transform: rotate(-90deg) translateX(50%);
  right: 0;
  height: 10px;
  width: 10px;
  background-image: url(../images/green-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .gform_footer:after {
    margin-right: 10px;
    top: 44%;
    right: -23px;
  }
}

.validation_list {
  margin: 0 !important;
}

.validation_error {
  padding: 0 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  color: #ED3024;
  font-size: 14px;
  text-align: center;
}

.validation_message {
  margin-bottom: -5px;
  padding: 0 5px 0 0 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  text-align: right;
  color: #ED3024;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .gform_confirmation_wrapper {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .gform_confirmation_wrapper {
    margin-bottom: 0px;
  }
}

.gform_confirmation_message {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  color: #242423;
}

.large-banner {
  position: relative;
  height: 150px;
  width: 100%;
  padding: 40px 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .large-banner {
    padding: 27px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .large-banner {
    height: 80px;
    padding: 13px 16px;
  }
}

@media only screen and (max-width: 355px) and (min-width: 1px) {
  .large-banner {
    height: auto;
  }
}

.large-banner:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
}

.large-banner.yellow {
  background: #FEF8EA;
}

.large-banner.yellow:after {
  background: #FFC425;
}

.large-banner.blue {
  background: #F0F7FC;
}

.large-banner.blue:after {
  background: #0092C7;
}

.large-banner.green {
  background: #EBFAF3;
}

.large-banner.green:after {
  background: #009E89;
}

.large-banner .large-banner-title>h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 60px !important;
  line-height: 70px !important;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .large-banner .large-banner-title>h2 {
    font-size: 54px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .large-banner .large-banner-title>h2 {
    font-size: 28px !important;
    line-height: 34px !important;
  }
}

.small-banner {
  position: relative;
  min-height: 125px;
  width: 100%;
  padding: 40px 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.small-banner:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
}

.small-banner.yellow {
  background: #FEF8EA;
}

.small-banner.yellow:after {
  background: #FFC425;
}

.small-banner.blue {
  background: #F0F7FC;
}

.small-banner.blue:after {
  background: #0092C7;
}

.small-banner.green {
  background: #EBFAF3;
}

.small-banner.green:after {
  background: #009E89;
}

.small-banner .small-banner-title>h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 60px !important;
  line-height: 70px !important;
}

.small-banner.with-search {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 50px 40px 150px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .small-banner.with-search {
    padding: 40px 46px 40px 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .small-banner.with-search {
    padding: 40px 36px 40px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .small-banner.with-search {
    padding: 40px 16px 40px 16px;
  }
}

.small-banner.with-search .small-banner-title>h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 40px !important;
  line-height: 50px !important;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .small-banner.with-search .small-banner-title>h2 {
    font-size: 32px !important;
    line-height: 48px !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .small-banner.with-search .small-banner-title>h2 {
    font-size: 20px !important;
    line-height: 24px !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .small-banner.with-search .small-banner-title>h2 {
    text-align: center;
  }
}

.small-banner.with-search .search-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 264px;
  max-width: 264px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .small-banner.with-search .search-container {
    margin-top: 20px;
  }
}

.small-banner.with-search .search-container:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 13px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("/images/search.svg");
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
}

.small-banner.with-search .search-container #search {
  padding-left: 35px;
  width: 100%;
}

.accordion-slide-container {
  padding: 25px 0;
  border-top: 2px solid #D7DDE0;
}

.accordion-slide-container:last-child {
  border-bottom: 2px solid #D7DDE0;
}

.accordion-title button {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.accordion-title button:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00BCE4 !important;
  outline-offset: 2px !important;
}

.accordion-title button.active-click {
  outline: none !important;
  outline-offset: 0 !important;
}

.accordion-title button h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .accordion-title button h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .accordion-title button h2 {
    max-width: 350px;
  }
}

@media only screen and (max-width: 350px) and (min-width: 1px) {
  .accordion-title button h2 {
    max-width: 250px;
  }
}

.accordion-slide-content-container {
  display: none;
}

.accordion-slide-content {
  margin-top: 20px;
}

.accordion-slide-content p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #242423;
}

.accordion-slide-content p a {
  text-decoration: none;
}

.question-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 145px;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .question-cta {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .question-cta {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .question-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 75px;
  }
}

.question-cta h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .question-cta h2 {
    font-size: 28px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .question-cta h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .question-cta h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.question-cta a {
  margin-left: 100px;
  padding: 0 40px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .question-cta a {
    margin-left: 115px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .question-cta a {
    margin-left: 40px;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .question-cta a {
    margin-top: 20px;
    margin-left: 0;
  }
}

.linkbox {
  padding: 0 0 0 0;
}

.linkbox .linkbox-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .linkbox .linkbox-title h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.linkbox .linkbox-links .row>.col-xs-12,
.linkbox .linkbox-links .col-xs-6,
.linkbox .linkbox-links .col-md-4,
.linkbox .linkbox-links .col-md-6>.link,
.linkbox .linkbox-links .row>.col-xs-4>.link,
.linkbox .with-description .row>.col-xs-12,
.linkbox .with-description .col-xs-6,
.linkbox .with-description .col-md-4,
.linkbox .with-description .col-md-6>.link,
.linkbox .with-description .row>.col-xs-4>.link {
  margin-top: 35px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .linkbox .linkbox-links .row>.col-xs-12,
  .linkbox .linkbox-links .col-xs-6,
  .linkbox .linkbox-links .col-md-4,
  .linkbox .linkbox-links .col-md-6>.link,
  .linkbox .linkbox-links .row>.col-xs-4>.link,
  .linkbox .with-description .row>.col-xs-12,
  .linkbox .with-description .col-xs-6,
  .linkbox .with-description .col-md-4,
  .linkbox .with-description .col-md-6>.link,
  .linkbox .with-description .row>.col-xs-4>.link {
    margin-top: 20px;
  }
}

.linkbox .linkbox-links .row>.col-xs-12 h3,
.linkbox .linkbox-links .row>.col-xs-12 a,
.linkbox .linkbox-links .col-xs-6 h3,
.linkbox .linkbox-links .col-xs-6 a,
.linkbox .linkbox-links .col-md-4 h3,
.linkbox .linkbox-links .col-md-4 a,
.linkbox .linkbox-links .col-md-6>.link h3,
.linkbox .linkbox-links .col-md-6>.link a,
.linkbox .linkbox-links .row>.col-xs-4>.link h3,
.linkbox .linkbox-links .row>.col-xs-4>.link a,
.linkbox .with-description .row>.col-xs-12 h3,
.linkbox .with-description .row>.col-xs-12 a,
.linkbox .with-description .col-xs-6 h3,
.linkbox .with-description .col-xs-6 a,
.linkbox .with-description .col-md-4 h3,
.linkbox .with-description .col-md-4 a,
.linkbox .with-description .col-md-6>.link h3,
.linkbox .with-description .col-md-6>.link a,
.linkbox .with-description .row>.col-xs-4>.link h3,
.linkbox .with-description .row>.col-xs-4>.link a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #242423;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: none;
}

.linkbox .linkbox-links .row>.col-xs-12 h3:hover+img,
.linkbox .linkbox-links .row>.col-xs-12 a:hover+img,
.linkbox .linkbox-links .col-xs-6 h3:hover+img,
.linkbox .linkbox-links .col-xs-6 a:hover+img,
.linkbox .linkbox-links .col-md-4 h3:hover+img,
.linkbox .linkbox-links .col-md-4 a:hover+img,
.linkbox .linkbox-links .col-md-6>.link h3:hover+img,
.linkbox .linkbox-links .col-md-6>.link a:hover+img,
.linkbox .linkbox-links .row>.col-xs-4>.link h3:hover+img,
.linkbox .linkbox-links .row>.col-xs-4>.link a:hover+img,
.linkbox .with-description .row>.col-xs-12 h3:hover+img,
.linkbox .with-description .row>.col-xs-12 a:hover+img,
.linkbox .with-description .col-xs-6 h3:hover+img,
.linkbox .with-description .col-xs-6 a:hover+img,
.linkbox .with-description .col-md-4 h3:hover+img,
.linkbox .with-description .col-md-4 a:hover+img,
.linkbox .with-description .col-md-6>.link h3:hover+img,
.linkbox .with-description .col-md-6>.link a:hover+img,
.linkbox .with-description .row>.col-xs-4>.link h3:hover+img,
.linkbox .with-description .row>.col-xs-4>.link a:hover+img {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  -webkit-transform: rotate(-90deg) translateY(5px);
       -o-transform: rotate(-90deg) translateY(5px);
          transform: rotate(-90deg) translateY(5px);
}

.linkbox .linkbox-links .row>.col-xs-12 img,
.linkbox .linkbox-links .col-xs-6 img,
.linkbox .linkbox-links .col-md-4 img,
.linkbox .linkbox-links .col-md-6>.link img,
.linkbox .linkbox-links .row>.col-xs-4>.link img,
.linkbox .with-description .row>.col-xs-12 img,
.linkbox .with-description .col-xs-6 img,
.linkbox .with-description .col-md-4 img,
.linkbox .with-description .col-md-6>.link img,
.linkbox .with-description .row>.col-xs-4>.link img {
  margin-left: 5px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.linkbox .linkbox-links .row>.col-xs-12 p,
.linkbox .linkbox-links .col-xs-6 p,
.linkbox .linkbox-links .col-md-4 p,
.linkbox .linkbox-links .col-md-6>.link p,
.linkbox .linkbox-links .row>.col-xs-4>.link p,
.linkbox .with-description .row>.col-xs-12 p,
.linkbox .with-description .col-xs-6 p,
.linkbox .with-description .col-md-4 p,
.linkbox .with-description .col-md-6>.link p,
.linkbox .with-description .row>.col-xs-4>.link p {
  margin-top: 15px;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #242423;
}

.video-block {
  padding: 0 0 0 0;
}

.video-block .video-block-title {
  margin-bottom: 30px;
}

.video-block .video-block-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .video-block .video-block-title h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .video-block-cnt .video-embed iframe {
    max-width: 100%;
  }
}

.mailing-list-cta-container {
  position: relative;
  margin: 60px 0px 120px 0;
  padding: 50px 60px 25px 60px;
  height: auto;
  width: 100%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .mailing-list-cta-container {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mailing-list-cta-container {
    padding: 25px 16px;
  }
}

.mailing-list-cta-container.blue {
  background: #F0F7FC;
}

.mailing-list-cta-container.blue:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #0092C7;
}

.mailing-list-cta-container.yellow {
  background: #FEF8EA;
}

.mailing-list-cta-container.yellow:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #FFC425;
}

.mailing-list-cta-container.green {
  background: #EBFAF3;
}

.mailing-list-cta-container.green:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #009E89;
}

.mailing-list-cta-container .mailing-list-cta-header h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mailing-list-cta-container .mailing-list-cta-header h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.mailing-list-cta-container .mailing-list-cta-header p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 20px !important;
  line-height: 34px !important;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mailing-list-cta-container .mailing-list-cta-header p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

.mailing-list-cta-container .gform_wrapper {
  max-width: 495px !important;
  margin: 0 auto !important;
}

dialog {
  display: block;
}

.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

#ios-download-popup {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  display: none;
}

#ios-download-popup.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#ios-download-popup .close {
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-appearance: none;
}

#ios-download-popup .close span {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 100vw;
  left: 100vw;
  opacity: 0;
  z-index: -1;
}

#ios-download-popup .background {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(144,150,153,0.8);
}

#ios-download-popup .mailing-list-cta-container {
  width: 70%;
  max-width: 700px;
  max-height: 550px;
  margin: auto;
  position: relative;
  z-index: 1;
}

#ios-download-popup .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#ios-download-popup .btn-container .btn {
  margin: auto;
}

#ios-download-popup .ios-chrome-text {
  display: none;
}

#ios-download-popup .ios-chrome-text.show {
  display: block;
}

.newsletter-modal {
  position: fixed;
  padding: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  max-width: 700px;
  max-height: 550px;
  right: auto;
  border: none;
  z-index: 999;
  overflow: hidden;
}

@media only screen and (max-width: 999px) and (min-width: 1px) {
  .newsletter-modal {
    overflow: auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .newsletter-modal {
    max-height: auto;
    z-index: 999999999999;
  }
}

.newsletter-modal .mailing-list-cta-container {
  position: relative;
  margin: 0;
  padding: 40px 50px;
  height: auto;
  width: 100%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .newsletter-modal .mailing-list-cta-container {
    padding: 40px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .newsletter-modal .mailing-list-cta-container {
    padding: 40px 16px;
  }
}

.newsletter-modal .mailing-list-cta-container.blue {
  background: #F0F7FC;
}

.newsletter-modal .mailing-list-cta-container.blue:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: #0092C7;
}

.newsletter-modal .mailing-list-cta-container.green {
  background: #EBFAF3;
}

.newsletter-modal .mailing-list-cta-container.green:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: #009E89;
}

.newsletter-modal .mailing-list-cta-container .mailing-list-cta-header {
  margin-bottom: 25px;
}

.newsletter-modal .mailing-list-cta-container .mailing-list-cta-header h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .newsletter-modal .mailing-list-cta-container .mailing-list-cta-header h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.newsletter-modal .mailing-list-cta-container .mailing-list-cta-header p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .newsletter-modal .mailing-list-cta-container .mailing-list-cta-header p {
    font-size: 16px;
    line-height: 24px;
  }
}

.newsletter-modal-close {
  float: right;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 20px 20px 0 0;
  color: #fff;
  padding: .25em;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  z-index: 99;
  position: relative;
  cursor: pointer;
}

.newsletter-modal-close:focus,
.newsletter-modal-close:hover,
.newsletter-modal-close:active {
  outline: 2px solid  #00BCE4;
  outline-offset: 5px;
  cursor: pointer;
}

.newsletter-modal-overlay[data-background-click="disabled"] {
  cursor: auto;
}

.newsletter-left-modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  opacity: .8;
  z-index: 666;
  cursor: pointer;
}

.newsletter-left-modal {
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 667;
  position: fixed;
  width: 40em;
  max-width: 100%;
  padding: 1em;
  font-size: 1em;
  border: 0;
  overflow: auto;
  background-color: #fff;
  background-image: -webkit-linear-gradient(top, #882525 3em, #f7f7f7 3em);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3em, #882525), color-stop(3em, #f7f7f7));
  background-image: -o-linear-gradient(top, #882525 3em, #f7f7f7 3em);
  background-image: linear-gradient(to bottom, #882525 3em, #f7f7f7 3em);
  background-attachment: local;
}

.newsletter-left-modal-close {
  position: absolute;
  top: .25em;
  right: 0;
  background: transparent;
  color: #fff;
}

.flex-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .flex-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mc-field-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mc-field-group.half {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48%;
  max-width: 48%;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mc-field-group.half {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }
}

.mce-submit {
  position: relative;
  left: -12px;
  top: 20px;
}

.mce-submit:after {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: rotate(-90deg) translateX(50%);
  -o-transform: rotate(-90deg) translateX(50%);
  transform: rotate(-90deg) translateX(50%);
  right: -15px;
  height: 10px;
  width: 10px;
  background-image: url(../images/green-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.mce-success-response {
  font-family: "Roboto" !important;
}

#mc_embed_signup div.mce_inline_error {
  margin: 0 0 1em 0 !important;
  padding: 5px 10px !important;
  background-color: #fff6f7 !important;
  z-index: 1 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-weight: bold !important;
  color: #790000 !important;
}

.acf-popup {
  visibility: hidden;
}

dialog {
  display: block;
}

.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

.feedback-modal,
.video-help-modal {
  position: fixed;
  padding: 0;
  left: 50%;
  top: -50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  max-width: 700px;
  max-height: 550px;
  right: auto;
  border: none;
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 500ms all;
  -o-transition: 500ms all;
  transition: 500ms all;
}

@media only screen and (max-width: 999px) and (min-width: 1px) {
  .feedback-modal,
  .video-help-modal {
    overflow: auto;
  }
}

.feedback-modal .feedback-cta-container,
.feedback-modal .video-help-container,
.video-help-modal .feedback-cta-container,
.video-help-modal .video-help-container {
  position: relative;
  margin: 0;
  padding: 40px 50px;
  height: auto;
  width: 100%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .feedback-modal .feedback-cta-container,
  .feedback-modal .video-help-container,
  .video-help-modal .feedback-cta-container,
  .video-help-modal .video-help-container {
    padding: 40px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .feedback-modal .feedback-cta-container,
  .feedback-modal .video-help-container,
  .video-help-modal .feedback-cta-container,
  .video-help-modal .video-help-container {
    padding: 40px 16px;
  }
}

.feedback-modal .feedback-cta-container.blue,
.feedback-modal .video-help-container.blue,
.video-help-modal .feedback-cta-container.blue,
.video-help-modal .video-help-container.blue {
  background: #F0F7FC;
}

.feedback-modal .feedback-cta-container.blue:after,
.feedback-modal .video-help-container.blue:after,
.video-help-modal .feedback-cta-container.blue:after,
.video-help-modal .video-help-container.blue:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: #0092C7;
}

.feedback-modal .feedback-cta-container.green,
.feedback-modal .video-help-container.green,
.video-help-modal .feedback-cta-container.green,
.video-help-modal .video-help-container.green {
  background: #EBFAF3;
}

.feedback-modal .feedback-cta-container.green:after,
.feedback-modal .video-help-container.green:after,
.video-help-modal .feedback-cta-container.green:after,
.video-help-modal .video-help-container.green:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: #009E89;
}

.feedback-modal .feedback-cta-container.yellow,
.feedback-modal .video-help-container.yellow,
.video-help-modal .feedback-cta-container.yellow,
.video-help-modal .video-help-container.yellow {
  background: #FEF9F0;
}

.feedback-modal .feedback-cta-container.yellow:after,
.feedback-modal .video-help-container.yellow:after,
.video-help-modal .feedback-cta-container.yellow:after,
.video-help-modal .video-help-container.yellow:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: #FFC425;
}

.feedback-modal .feedback-cta-container .feedback-cta-header,
.feedback-modal .video-help-container .feedback-cta-header,
.video-help-modal .feedback-cta-container .feedback-cta-header,
.video-help-modal .video-help-container .feedback-cta-header {
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .feedback-modal .feedback-cta-container .feedback-cta-header,
  .feedback-modal .video-help-container .feedback-cta-header,
  .video-help-modal .feedback-cta-container .feedback-cta-header,
  .video-help-modal .video-help-container .feedback-cta-header {
    margin-bottom: 15px;
  }
}

.feedback-modal .feedback-cta-container .feedback-cta-header h2,
.feedback-modal .video-help-container .feedback-cta-header h2,
.video-help-modal .feedback-cta-container .feedback-cta-header h2,
.video-help-modal .video-help-container .feedback-cta-header h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .feedback-modal .feedback-cta-container .feedback-cta-header h2,
  .feedback-modal .video-help-container .feedback-cta-header h2,
  .video-help-modal .feedback-cta-container .feedback-cta-header h2,
  .video-help-modal .video-help-container .feedback-cta-header h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.feedback-modal .feedback-cta-container .feedback-cta-header p,
.feedback-modal .video-help-container .feedback-cta-header p,
.video-help-modal .feedback-cta-container .feedback-cta-header p,
.video-help-modal .video-help-container .feedback-cta-header p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .feedback-modal .feedback-cta-container .feedback-cta-header p,
  .feedback-modal .video-help-container .feedback-cta-header p,
  .video-help-modal .feedback-cta-container .feedback-cta-header p,
  .video-help-modal .video-help-container .feedback-cta-header p {
    font-size: 16px;
    line-height: 24px;
  }
}

.feedback-modal .feedback-cta-container .feedback-cta-header .btn,
.feedback-modal .video-help-container .feedback-cta-header .btn,
.video-help-modal .feedback-cta-container .feedback-cta-header .btn,
.video-help-modal .video-help-container .feedback-cta-header .btn {
  margin-top: 35px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .feedback-modal .feedback-cta-container .feedback-cta-header .btn,
  .feedback-modal .video-help-container .feedback-cta-header .btn,
  .video-help-modal .feedback-cta-container .feedback-cta-header .btn,
  .video-help-modal .video-help-container .feedback-cta-header .btn {
    margin-top: 20px;
  }
}

.feedback-modal.show,
.video-help-modal.show {
  top: 50%;
  opacity: 1;
  z-index: 9999;
}

.feedback-modal-close,
.video-help-modal-close {
  float: right;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 20px 20px 0 0;
  color: #fff;
  padding: .25em;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  z-index: 99;
  position: relative;
  cursor: pointer;
}

.feedback-modal-close:focus,
.video-help-modal-close:focus,
.feedback-modal-close:hover,
.video-help-modal-close:hover,
.feedback-modal-close:active,
.video-help-modal-close.active {
  outline: 2px solid  #00BCE4;
  outline-offset: 5px;
  cursor: pointer;
}

.feedback-modal-overlay[data-background-click="disabled"],
.video-help-modal-overlay[data-background-click="disabled"] {
  cursor: auto;
}

.feedback-left-modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  opacity: .8;
  z-index: 666;
  cursor: pointer;
}

.feedback-left-modal {
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 667;
  position: fixed;
  width: 40em;
  max-width: 100%;
  padding: 1em;
  font-size: 1em;
  border: 0;
  overflow: auto;
  background-color: #fff;
  background-image: -webkit-linear-gradient(top, #882525 3em, #f7f7f7 3em);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3em, #882525), color-stop(3em, #f7f7f7));
  background-image: -o-linear-gradient(top, #882525 3em, #f7f7f7 3em);
  background-image: linear-gradient(to bottom, #882525 3em, #f7f7f7 3em);
  background-attachment: local;
}

.feedback-left-modal-close {
  position: absolute;
  top: .25em;
  right: 0;
  background: transparent;
  color: #fff;
}

dialog {
  display: block;
}

.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

.viz-modal {
  width: 100vw;
  height: 100vh;
  background: rgba(144,150,153,0.8);
  border: none;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 40px 0 80px;
  position: fixed !important;
  top: 0;
  left: 100vw;
  opacity: 0;
  z-index: -1;
}

.viz-modal.show {
  left: 0;
  opacity: 1;
  z-index: 10000;
}

.viz-modal .modal-inner {
  position: relative;
}

.viz-modal .background {
  width: 200%;
  height: 200% !important;
  position: absolute;
  background: none;
  z-index: -1;
  top: 0;
  left: 0;
}

.viz-modal .modal-filter-container {
  width: 86vw;
  min-height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,0.7),0 2px 39px -2px rgba(0,0,0,0.3);
          box-shadow: 0 0 2px 0 rgba(0,0,0,0.7),0 2px 39px -2px rgba(0,0,0,0.3);
  border-radius: 10px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .modal-filter-container {
    min-height: 80%;
  }
}

@media only screen and (max-width: 681px) {
  .viz-modal .modal-filter-container {
    display: block !important;
  }
}

.viz-modal .modal-filter-container .close {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  position: absolute;
  top: 1.1vw;
  right: 1.1vw;
  -webkit-appearance: none;
  z-index: 1000;
}

@media only screen and (max-width: 681px) {
  .viz-modal .modal-filter-container .close {
    top: 16px;
    right: 16px;
  }
}

.viz-modal .modal-filter-container .close:focus {
  border: none;
  outline: none;
}

.viz-modal .modal-filter-container .close span {
  width: 20px;
  height: 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.viz-modal .filter-modal-close {
  position: absolute;
  top: 1.1vw;
  right: 1.1vw;
  cursor: pointer;
}

.viz-modal .row {
  width: 100%;
  margin: 0;
  background: #FFFFFF;
  position: relative;
}

.viz-modal .graph-container {
  width: 82%;
  max-width: 82%;
  -ms-flex-preferred-size: 82%;
      flex-basis: 82%;
  padding: 20px 40px 32px;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .viz-modal .graph-container {
    width: 65%;
    max-width: 65%;
    -ms-flex-preferred-size: 100%;
    padding: 20px;
    border-right: 1px solid #BEC4C7;
  }
}

.viz-modal .graph-container .controls-container {
  display: none;
}

.viz-modal .graph-container span.graph-header-figure {
  margin-bottom: 7px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #00806F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.viz-modal .graph-container .text-cnt {
  margin-bottom: 40px;
}

.viz-modal .graph-container .text-cnt p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-style: italic;
  color: #5A5D5E;
  letter-spacing: 0;
  line-height: 18px;
  margin-top: 8px;
}

.viz-modal .graph-container h2 {
  max-width: 84%;
  margin-top: 12px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #232424;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .viz-modal .graph-container h2 {
    font-size: 16px;
    line-height: 20px;
  }
}

.viz-modal .graph-container .tabs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-modal .graph-container .tabs {
    overflow: scroll;
  }
}

.viz-modal .graph-container .tabs .tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid #fff;
  position: relative;
}

.viz-modal .graph-container .tabs .tab:last-child {
  border-right: 0;
}

.viz-modal .graph-container .tabs .tab input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-appearance: none;
}

.viz-modal .graph-container .tabs .tab input:checked+label {
  background: #006C64;
}

.viz-modal .graph-container .tabs .tab input:checked+label span {
  color: #FFFFFF !important;
}

.viz-modal .graph-container .tabs .tab label {
  width: 100%;
  height: 100%;
  background: #D7DDE0;
  border: none;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 11px 26px;
  letter-spacing: 0;
  text-align: center;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #232424;
}

.viz-modal .graph-container .tabs .tab label:before {
  display: none !important;
}

.viz-modal .graph-container .tabs .tab label span {
  margin: auto;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #232424;
}

.viz-modal .graph-container .svg-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  overflow: visible;
  position: relative;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .graph-container .svg-container {
    overflow: auto;
  }
}

.viz-modal .graph-container .svg-container .load-indicator {
  margin: 0 auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  top: calc(50% - .5em);
  left: calc(50% - .5em);
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  -o-animation: load5 1.1s infinite ease;
     animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0) scale(0.8);
  transform: translateZ(0) scale(0.8);
  -webkit-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: opacity 0s linear;
  -o-transition: opacity 0s linear;
  transition: opacity 0s linear;
  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

.viz-modal .graph-container .svg-container .load-indicator.show {
  opacity: 1;
}

.viz-modal .graph-container .svg-container .load-indicator.hidden {
  -webkit-animation: none;
       -o-animation: none;
          animation: none;
  display: none;
  opacity: 0;
  -webkit-transition-delay: 0;
       -o-transition-delay: 0;
          transition-delay: 0;
}

.viz-modal .graph-container .svg-container .legend-tooltip {
  display: block;
  position: absolute;
  top: 44px;
  left: 0;
  width: 250px;
  max-width: 250px;
  opacity: 0;
  -webkit-transition: 200ms 100ms opacity;
  -o-transition: 200ms 100ms opacity;
  transition: 200ms 100ms opacity;
}

.viz-modal .graph-container .svg-container .legend-tooltip .tooltip-inner {
  width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  padding: 16px;
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 500;
}

.viz-modal .graph-container .svg-container .legend-tooltip .tooltip-inner:after {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-end.svg) 50% no-repeat;
  background-position: -1px;
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-modal .graph-container .svg-container .legend-tooltip .tooltip-inner:after {
    display: none;
  }
}

.viz-modal .graph-container .svg-container .legend-tooltip .tooltip-inner p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  font-weight: 500;
  font-size: 12px !important;
}

.viz-modal .graph-container .svg-el {
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .viz-modal .graph-container .svg-el {
    overflow: auto;
  }

  .viz-modal .graph-container .svg-el svg {
    width: auto !important;
    overflow: visible;
  }

  .viz-modal .graph-container .svg-el svg[data-viz-type='map'] {
    width: 100% !important;
  }
}

.viz-modal .graph-container svg {
  width: 100%;
  min-width: 650px;
  height: auto;
  margin: auto auto 0;
  position: relative;
  overflow: visible;
}

.viz-modal .graph-container svg.line-viz {
  width: 100%;
}

.viz-modal .graph-container svg text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.viz-modal .graph-container svg text.bold {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #000000;
}

.viz-modal .graph-container svg text.large-label {
  font-size: 12px;
}

.viz-modal .graph-container svg .placeholder-tick text {
  font-size: 12px !important;
}

.viz-modal .graph-container svg .bar-hover-text {
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  line-height: 16px;
}

.viz-modal .graph-container svg .legend-group text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #232424;
  letter-spacing: 0;
}

.viz-modal .graph-container svg.Figure2_3 .data-label {
  font-size: 16px;
}

.viz-modal .axis .tick line {
  display: none !important;
}

.viz-modal .axis .tick text {
  font-size: 12px;
}

.viz-modal .x-axis-label {
  font-size: 12px;
}

.viz-modal .bar-group text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-align: center;
  line-height: 16px;
}

.viz-modal .axis-label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #5A5D5E;
  letter-spacing: 0;
}

.viz-modal .recession-bar {
  opacity: .8;
}

.viz-modal .chart-controls {
  width: 18%;
  max-width: 18%;
  -ms-flex-preferred-size: 18%;
      flex-basis: 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.1vw 1.1vw 1.9vw;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .viz-modal .chart-controls {
    display: block;
    width: 35%;
    max-width: 35%;
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    border-top: 1px solid #BEC4C7;
    padding: 0 17px;
    margin-top: 52px;
  }
}

.viz-modal .controls-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 1.1vw 0;
}

.viz-modal .controls-container.responsive-controls {
  padding: 0;
}

.viz-modal .controls-container label.disabled span {
  color: red !important;
}

@media only screen and (max-width: 681px) {
  .viz-modal .controls-container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 40px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .controls-container {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 24px 0 0;
  }

  .viz-modal .controls-container.responsive-controls {
    padding: 24px 0 0;
  }
}

.viz-modal .controls-container .control-group {
  margin-bottom: 24px;
  position: relative;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .controls-container .control-group {
    width: 100%;
  }

  .viz-modal .controls-container .control-group.state-dropdown {
    z-index: 1;
  }
}

.viz-modal .controls-container .control-group:last-child {
  margin-bottom: 0;
}

.viz-modal .controls-container .viz-data-def-tooltip {
  display: block;
  position: absolute;
  top: 30px;
  left: -50%;
  width: 250px;
  max-width: 250px;
  opacity: 0;
  -webkit-transition: 200ms 100ms all;
  -o-transition: 200ms 100ms all;
  transition: 200ms 100ms all;
}

.viz-modal .controls-container .viz-data-def-tooltip .viz-data-def-tooltip-inner {
  opacity: 0;
}

.viz-modal .controls-container .viz-data-def-tooltip .viz-data-def-tooltip-inner p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.viz-modal .controls-container label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 13px !important;
  color: #232424;
  letter-spacing: 0 !important;
  line-height: 16px !important;
  margin-bottom: 8px !important;
}

.viz-modal .controls-container label:hover+.viz-data-def-tooltip {
  z-index: 100;
  opacity: 1;
}

.viz-modal .controls-container label:hover+.viz-data-def-tooltip .viz-data-def-tooltip-inner {
  opacity: 1;
  min-width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  padding: 16px;
  position: relative;
}

.viz-modal .controls-container label:hover+.viz-data-def-tooltip .viz-data-def-tooltip-inner:after {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-bottom.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -7px;
  left: 50%;
  z-index: 9;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

.viz-modal .controls-container .state-dropdown label,
.viz-modal .controls-container .state-dropdown select {
  display: block;
}

.viz-modal .controls-container input[type=checkbox] {
  width: 18px !important;
  height: 18px;
  background: none;
  border: 2px solid #5A5D5E;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 8px;
  -webkit-appearance: none;
  z-index: 9;
  cursor: pointer;
}

.viz-modal .controls-container input[type=checkbox]:focus {
  border: 2px solid #5A5D5E;
  outline: none !important;
}

.viz-modal .controls-container input[type=checkbox]:checked {
  border: none;
}

.viz-modal .controls-container input[type=checkbox]:checked:focus {
  border: none;
}

.viz-modal .controls-container input[type=checkbox]:checked+label:before {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../images/checkbox.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -25px;
}

.viz-modal .controls-container input[type=checkbox]+label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal !important;
  letter-spacing: normal;
  margin-bottom: 0 !important;
  position: relative;
}

.viz-modal .controls-container input[type=radio] {
  width: 18px !important;
  height: 18px;
  max-width: 18px;
  min-width: 18px;
  border: 2px solid #5A5D5E;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 8px;
  -webkit-appearance: none;
  z-index: 9;
  cursor: pointer;
}

.viz-modal .controls-container input[type=radio]:focus {
  outline: none !important;
}

.viz-modal .controls-container input[type=radio]:checked {
  border-color: #006C64;
}

.viz-modal .controls-container input[type=radio]:checked+label:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=TTR-6-5]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=Pct_StatePubFinAid_EdApprop-3-19]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for="Pct_TaxApprop_StateLocal-2-11"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

@media only screen and (max-width: 1341px) and (min-width: 1px) {
  .viz-modal .controls-container input[type=radio]:checked+label[for="Pct_TaxApprop_StateLocal-2-11"]:before {
    top: 11px !important;
  }
}

.viz-modal .controls-container input[type=radio]:checked+label[for="Pct_NonTaxSupp_StateLocal-2-11"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

@media only screen and (max-width: 791px) and (min-width: 1px) {
  .viz-modal .controls-container input[type=radio]:checked+label[for="Pct_NonTaxSupp_StateLocal-2-11"]:before {
    top: 11px !important;
  }
}

.viz-modal .controls-container input[type=radio]:checked+label[for="Pct_GenPubOper_StateLocal-2-20"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for="Pct_StateFinAid_StateLocal-2-20"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for="EffTaxRate-6-5"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for="ATR_Pop-6-5"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=EdApprop_NetFTE-4-12]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=StatePubFinAid_NetFTE-4-17]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=NetTuit_NetFTE-4-22]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=TotEdRev_NetFTE-4-27]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=AllocHigherEd-6-9]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=StateLocal_Pop-6-14]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=TTR_Pop-6-5]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for="ATR_Pop-6-5"]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]:checked+label[for=StateLocal_PersInc-6-19]:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #006C64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(calc(-50%));
       -o-transform: translateY(calc(-50%));
          transform: translateY(calc(-50%));
}

.viz-modal .controls-container input[type=radio]+label {
  width: calc(100 - 26px);
  display: inline-block;
  vertical-align: middle;
  font-weight: normal !important;
  letter-spacing: normal;
  margin-bottom: 0 !important;
  position: relative;
}

.viz-modal .controls-container input[type=radio].blue:checked {
  border-color: #0078AE;
}

.viz-modal .controls-container input[type=radio].blue:checked+label:before {
  background: #0078AE;
}

.viz-modal .controls-container .switch {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
}

.viz-modal .controls-container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.viz-modal .controls-container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #BEC4C7;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.viz-modal .controls-container .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0;
  border: 2px solid #747574;
  bottom: 0;
  background-color: white;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.viz-modal .controls-container input:checked+.slider {
  background-color: #00958B;
}

.viz-modal .controls-container input:focus+.slider {
  -webkit-box-shadow: 0 0 1px #00958B;
          box-shadow: 0 0 1px #00958B;
}

.viz-modal .controls-container input:checked+.slider:before {
  -webkit-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
  border: 2px solid #007A7A;
}

.viz-modal .controls-container .slider.round {
  border-radius: 34px;
}

.viz-modal .controls-container .slider.round:before {
  border-radius: 50%;
}

.viz-modal .option-group {
  background: none !important;
  border: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.viz-modal .option-group:last-child {
  margin-bottom: 0;
}

.viz-modal .range-slider-container {
  width: 100%;
  position: relative;
}

.viz-modal .range-slider-container.play-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 40px 60px;
}

.viz-modal .range-slider-container.play-slider button {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
  padding: 0;
  position: relative;
  -webkit-appearance: none;
}

.viz-modal .range-slider-container.play-slider button span {
  width: 100%;
  height: 100%;
  font-size: 2px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.viz-modal .range-slider-container.play-slider button img {
  margin: auto;
  width: auto;
  height: 18px;
}

.viz-modal .range-slider-container.play-slider button img.play {
  display: none;
}

.viz-modal .range-slider-container.play-slider button.paused img.play {
  display: inline-block;
}

.viz-modal .range-slider-container.play-slider button.paused img.pause {
  display: none;
}

.viz-modal .range-slider-container.play-slider .noUi-horizontal {
  width: 100%;
}

.viz-modal .range-slider-container .year-label {
  position: absolute;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  border: none;
  font-size: 12px;
  color: #7D8285;
  letter-spacing: 0;
  line-height: 12px;
  top: 28px;
}

.viz-modal .range-slider-container .year-label.min-year {
  left: 0;
}

.viz-modal .range-slider-container .year-label.max-year {
  right: 0;
}

.viz-modal .range-slider-container .year-label.hidden {
  display: none;
}

.viz-modal .noUi-base {
  background: transparent;
}

.viz-modal .noUi-horizontal {
  height: 24px;
  background: transparent;
  border: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.viz-modal .noUi-horizontal .noUi-handle {
  width: 14px;
  height: 14px;
  background: #5A5D5E;
  border: none;
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  top: 5px;
  right: -4.5px;
}

.viz-modal .noUi-horizontal .noUi-handle:before,
.viz-modal .noUi-horizontal .noUi-handle:after {
  display: none;
}

.viz-modal .noUi-horizontal .noUi-tooltip {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  border: none;
  font-size: 12px;
  color: #242423;
  letter-spacing: 0;
  line-height: 12px;
  top: 18px;
}

.viz-modal .noUi-connects {
  background: transparent;
  position: relative;
}

.viz-modal .noUi-connects:after {
  content: '';
  width: 100%;
  height: 6px;
  background: #BEC4C7;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.viz-modal .noUi-connect {
  height: 6px;
  background: #5A5D5E;
  margin-top: 9px;
}

.viz-modal .notes-btn {
  text-align: left !important;
  margin-top: 50px;
}

.viz-modal .notes-btn img {
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: -webkit-transform .25s ease-in-out;
  -o-transition: -o-transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out, -o-transform .25s ease-in-out;
}

.viz-modal .notes-btn.show-notes img {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.viz-modal .table-notes {
  width: 100%;
  background: #F7F8FA;
  display: none;
  margin-top: 0;
  padding: 24px 40px;
  position: absolute;
  bottom: 80px;
  left: 0;
  -webkit-box-shadow: 0 0 1px 0 rgba(36,36,35,0.89),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 1px 0 rgba(36,36,35,0.89),2px 2px 8px 0 rgba(85,88,89,0.2);
  border-radius: 2px;
  z-index: 100;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .share-save-group {
    width: 100%;
    margin-bottom: 24px;
  }
}

.viz-modal .share-save-group .share-save-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  position: relative;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-modal .share-save-group .share-save-links {
    position: static;
  }
}

.viz-modal .share-save-group .share-save-links:last-child {
  margin-bottom: 0;
}

.viz-modal .share-save-group .share-save-links .share-save {
  width: 100%;
  min-height: 36px;
  background: #009E89;
  border-radius: 2px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 14px;
  position: relative;
  border-bottom: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.viz-modal .share-save-group .share-save-links .share-save img {
  -webkit-transform: rotate(0);
       -o-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: rotate .25s ease-in-out;
  -o-transition: rotate .25s ease-in-out;
  transition: rotate .25s ease-in-out;
  pointer-events: none;
}

.viz-modal .share-save-group .share-save-links .share-save.active img {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.viz-modal .share-save-group .share-save-links .share-save.save {
  background: #0092C7;
}

.viz-modal .share-save-group .share-save-links .share-save.save+ul {
  width: calc(100% + 16px);
  padding: 0;
}

.viz-modal .share-save-group .share-save-links .share-save.save+ul li {
  border-bottom: 1px solid #BEC4C7;
}

.viz-modal .share-save-group .share-save-links .share-save.save+ul li:last-child {
  border-bottom: none;
}

.viz-modal .share-save-group .share-save-links .share-save span {
  pointer-events: none;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay {
  width: calc(100% + 8px);
  background: #fff;
  border: 1px solid rgba(85,88,89,0.2);
  -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
  border-radius: 2px;
  list-style: none;
  margin-top: 0;
  padding: 0;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(100vw);
       -o-transform: translateX(100vw);
          transform: translateX(100vw);
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .share-save-group .share-save-links .share-save-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 16px;
  }
}

.viz-modal .share-save-group .share-save-links .share-save-overlay.show {
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  z-index: 999;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .share-save-overlay-close {
  display: none;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .share-save-group .share-save-links .share-save-overlay .share-save-overlay-close {
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #00806e;
    line-height: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: transparent;
    border: 0;
    padding: 0;
  }

  .viz-modal .share-save-group .share-save-links .share-save-overlay .share-save-overlay-close img {
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-right: 10px;
  }
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .share-save-overlay-title {
  display: none;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .share-save-group .share-save-links .share-save-overlay .share-save-overlay-title {
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.5px;
    display: block;
    padding: 20px;
  }
}

.viz-modal .share-save-group .share-save-links .share-save-overlay ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay ul li {
  border-top: 1px solid #BEC4C7;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal .share-save-group .share-save-links .share-save-overlay ul li {
    padding: 10px 0;
  }
}

.viz-modal .share-save-group .share-save-links .share-save-overlay ul li:last-child {
  border-bottom: 1px solid #BEC4C7;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay ul span:after {
  content: '';
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item {
  height: auto !important;
  background: none !important;
  cursor: pointer;
  display: block !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  position: relative;
  text-align: left !important;
  border-bottom: none;
  top: 0;
  -webkit-transition: top .2s ease-in;
  -o-transition: top .2s ease-in;
  transition: top .2s ease-in;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn:hover,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item:hover {
  opacity: 1;
  top: -4px;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn img,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item img {
  opacity: 0;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn[data-network='twitter']:before,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item[data-network='twitter']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/twitter.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn[data-network='twitter']:after,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item[data-network='twitter']:after {
  content: 'Twitter';
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn[data-network='sharethis']:before,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item[data-network='sharethis']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn[data-network='sharethis']:after,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item[data-network='sharethis']:after {
  content: 'copy';
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn[data-url='copy']:before,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item[data-url='copy']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn[data-network='facebook']:before,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item[data-network='facebook']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/facebook.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.viz-modal .share-save-group .share-save-links .share-save-overlay .st-btn[data-network='facebook']:after,
.viz-modal .share-save-group .share-save-links .share-save-overlay .dropdown-item[data-network='facebook']:after {
  content: 'Facebook';
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.viz-modal .viz-tooltip p:first-child {
  margin-right: 16px;
}

.viz-modal.map-modal .graph-container .svg-container {
  overflow: hidden;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .viz-modal.map-modal .graph-container .svg-container {
    overflow: auto;
  }
}

.viz-modal.map-modal .graph-container svg {
  width: 100%;
}

.viz-modal.map-modal .chart-container {
  padding: 40px 0 0;
}

.viz-modal.map-modal .chart-container .text-cnt {
  padding: 0 40px;
}

.viz-modal.map-modal .chart-container h4 {
  margin-bottom: 0;
}

.viz-modal.map-modal .chart-container p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #5A5D5E;
  letter-spacing: 0;
  line-height: 18px;
  margin-top: 8px;
}

.viz-modal.map-modal .chart-container .svg-container {
  margin-top: 0;
}

.viz-modal.map-modal .chart-container svg {
  width: 100%;
}

.viz-modal.map-modal .chart-container svg text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.viz-modal.map-modal .viz-tooltip {
  width: auto;
}

.viz-modal.map-modal .viz-tooltip:after {
  top: auto;
  bottom: calc(100% - 1px);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

.filter-modal-close {
  float: right;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 20px 20px 0 0;
  color: #fff;
  padding: .25em;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  z-index: 99;
  position: relative;
}

.filter-modal-close:focus {
  border: none !important;
  outline: none !important;
}

.filter-modal-close:focus,
.filter-modal-close:hover,
.filter-modal-close:active {
  outline: 2px solid #00BCE4;
  outline-offset: 5px;
  cursor: pointer;
}

.filter-modal-overlay[data-background-click="disabled"] {
  cursor: auto;
}

.filter-left-modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  opacity: .8;
  z-index: 666;
  cursor: pointer;
}

.filter-left-modal {
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 667;
  position: fixed;
  width: 40em;
  max-width: 100%;
  padding: 1em;
  font-size: 1em;
  border: 0;
  overflow: auto;
  background-color: #fff;
  background-image: -webkit-linear-gradient(top, #882525 3em, #f7f7f7 3em);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3em, #882525), color-stop(3em, #f7f7f7));
  background-image: -o-linear-gradient(top, #882525 3em, #f7f7f7 3em);
  background-image: linear-gradient(to bottom, #882525 3em, #f7f7f7 3em);
  background-attachment: local;
}

.filter-left-modal-close {
  position: absolute;
  top: .25em;
  right: 0;
  background: transparent;
  color: #fff;
}

.select2-container {
  width: 100% !important;
  z-index: 10000;
}

.select2-container .select2-selection {
  height: auto;
  border: 2px solid #7D8285;
}

.select2-container .select2-selection .select2-selection__rendered {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  padding: 7px 34px 7px 10px;
}

.select2-container .select2-selection .select2-selection__arrow {
  width: 24px;
  height: 24px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.select2-container .select2-selection .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-selection .select2-selection__arrow:after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/dropdown-arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  color: transparent;
  display: inline-block;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #E3E5E0;
  color: #242423 !important;
}

.select2-dropdown {
  width: 258px !important;
  background: #fff;
  border: 1px solid rgba(85,88,89,0.2);
  -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
  border-radius: 2px;
  left: -20px !important;
  top: 35px;
  overflow: hidden;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 400px;
}

.select2-results__option {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #242423;
  letter-spacing: 0;
  line-height: 24px;
  padding: 0 20px;
}

.disabled span {
  color: #C5CCCF !important;
}

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  color: #D8D8D8 !important;
  border: 2px solid #D8D8D8 !important;
}

input[type="radio"]:disabled+label,
input[type="checkbox"]:disabled+label {
  color: #D8D8D8 !important;
}

.figure-2_2 .control-group.regions-options {
  display: none;
}

.report-search-bar {
  position: fixed;
  top: 116px;
  height: 94px;
  width: 100%;
  max-width: 100%;
  background: #F0F7FC;
  z-index: 998;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .report-search-bar {
    top: 116px;
    height: 60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar {
    top: 71px;
    height: 45px;
  }
}

.report-search-bar .row {
  height: 100%;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt.searching {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt.searching .search-bar-txt>p {
  left: 100px;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt.searching {
    left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-txt p {
  position: relative;
  left: 48px;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 30.5px !important;
  line-height: 38px !important;
  color: #242423;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-txt p {
    position: static;
    font-size: 16px !important;
    line-height: 20px !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-txt p {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-txt {
    margin-left: -7px;
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search {
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search a.search-bar-toggle {
  border-bottom: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #555859;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search a.search-bar-toggle {
    content: '';
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search a.search-bar-toggle img {
  margin-right: 10px;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search a.search-bar-toggle.closed {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search {
    display: none;
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile {
    display: block;
  }

  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile.opened {
    width: 100%;
    background: #F0F7FC;
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile .search-bar-toggle-mobile {
  border-bottom: none;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile .search-bar-toggle-mobile.closed {
  display: none;
  border-bottom: none;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile form {
  display: none;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile form.opened {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile form.opened input {
  position: relative;
  right: 7px;
  height: 20px !important;
  padding: 10px 12px !important;
  margin-bottom: 0 !important;
  background-image: url(../images/search-blue.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: 1% 3px;
  text-indent: 13px;
  line-height: 21px !important;
  outline: none;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile form .search-bar-close-mobile {
  position: absolute;
  right: 70px;
  top: -5px;
  z-index: 9;
  border-bottom: none;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile form .search-label {
  position: absolute;
  left: 9999px;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search.mobile form button {
  position: absolute;
  height: 24px;
  right: 0;
  width: 64px;
  top: 0;
  background: #006C64;
  border: #006C64;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #fff;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container a.search-bar-close {
  margin-right: 10px;
  margin-top: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: none;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form {
  margin-right: 10px;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form {
    margin-right: 35px;
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form input {
  width: 216px;
  background-image: url(../images/search-blue.svg);
  background-repeat: no-repeat;
  background-size: 19px auto;
  background-position: 2% 50%;
  text-indent: 13px;
  border-radius: 4px 0 0 4px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form input {
    height: 25px !important;
    padding: 15px 12px !important;
    background-size: 16px;
    background-position: 4% 50%;
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form .search-label {
  position: absolute;
  left: 9999px;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form button {
  position: absolute;
  height: 38px;
  width: 56px;
  top: 0;
  background: #006C64;
  border: #006C64;
  cursor: pointer;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #fff;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form button {
    height: 34px;
  }
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened form button:focus {
  outline: 2px solid #00BCE4;
  outline-offset: 5px;
}

.report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened .search-bar-close {
  position: absolute;
  right: 10px;
  top: 55%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .report-search-bar .row .col-xs-12 .search-bar-cnt .search-bar-search .search-form-container.opened .search-bar-close {
    right: 40px;
  }
}

.report-search-bar.scrolled {
  height: 60px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar.scrolled {
    height: 45px;
  }
}

.report-search-bar.scrolled .row>.col-xs-12>.search-bar-cnt>.search-bar-txt>p {
  position: relative;
  left: -58px;
  font-size: 20px !important;
  line-height: 38px;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .report-search-bar.scrolled .row>.col-xs-12>.search-bar-cnt>.search-bar-txt>p {
    position: static;
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-search-bar.scrolled .row>.col-xs-12>.search-bar-cnt>.search-bar-txt>p {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

.report-search-bar.scrolled .row>.col-xs-12>.searching>.search-bar-txt>p {
  left: 100px;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .report-search-bar.scrolled .row>.col-xs-12>.searching>.search-bar-txt>p {
    position: static;
  }
}

.report-search-input {
  padding: 17px 30px 17px 23px !important;
  outline: none !important;
}

.state-profile-report-bar {
  position: fixed;
  top: 116px;
  height: 60px;
  width: 100%;
  max-width: 100%;
  background: #F0F7FC;
  z-index: 998;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .state-profile-report-bar {
    top: 116px;
    height: 60px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .state-profile-report-bar {
    top: 71px;
    height: 45px;
  }
}

.state-profile-report-bar .row {
  height: 100%;
}

.state-profile-report-bar.scrolled {
  height: 60px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .state-profile-report-bar.scrolled {
    height: 48px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .state-profile-report-bar.scrolled {
    height: 32px;
  }
}

.st-body-no-scroll {
  position: static !important;
  overflow: auto !important;
}

.anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.anchor a {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  border-bottom: none;
  margin-left: 10px;
  -ms-flex-item-align: center;
      align-self: center;
}

.anchor a:hover {
  color: inherit;
}

.anchor h2.tab-link a {
  margin-left: 0;
  position: relative;
}

.anchor h2.tab-link a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -30px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/graph-link-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  width: 15px;
}

.columbia-hide:not(:first-child) {
  display: none;
}

#st-el-45,
#st-el-46,
#st-el-47,
#st-el-48,
#st-el-49,
#st-el-50,
#st-el-51,
#st-el-52,
#st-el-53,
#st-el-54,
#st-el-55,
#st-el-56,
#st-el-57,
#st-el-58,
#st-el-59,
#st-el-60,
#st-el-61,
#st-el-62,
#st-el-63,
#st-el-64,
#st-el-65,
#st-el-66,
#st-el-67,
#st-el-68,
#st-el-69,
#st-el-70,
#st-el-71,
#st-el-72,
#st-el-73,
#st-el-74,
#st-el-75,
#st-el-76,
#st-el-77,
#st-el-78,
#st-el-79,
#st-el-80 {
  position: static !important;
  display: none !important;
  pointer-events: none !important;
  top: 0 !important;
  width: 0 !important;
  z-index: -1 !important;
}

.content-block {
  -webkit-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  padding: 50px 0 0 0;
  position: absolute;
  z-index: -1;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block {
    padding: 25px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block {
    padding: 25px 25px 0 16px;
  }
}

.content-block.active {
  display: block;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  opacity: 1;
  position: static;
  z-index: 1;
}

.content-block .hexagon.blue.insrt-bullet {
  top: 6px !important;
}

.content-block .content-block-cnt {
  max-width: 850px;
  position: relative;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt {
    max-width: 100%;
  }
}

.content-block .content-block-cnt>h2.tab-child:first-of-type {
  padding-top: 50px;
}

.content-block .content-block-cnt h2,
.content-block .content-block-cnt h3.tab-child {
  margin-top: -5px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt h2,
  .content-block .content-block-cnt h3.tab-child {
    font-size: 20px;
    line-height: 24px;
  }
}

.content-block .content-block-cnt h2.large,
.content-block .content-block-cnt h3.tab-child.large {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 50px;
  color: #006FAB;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt h2.large,
  .content-block .content-block-cnt h3.tab-child.large {
    font-size: 32px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt h2.large,
  .content-block .content-block-cnt h3.tab-child.large {
    font-size: 28px;
    line-height: 34px;
  }
}

.content-block .content-block-cnt h2.large+p,
.content-block .content-block-cnt h3.tab-child.large+p {
  margin-top: 30px;
}

.content-block .content-block-cnt h2.green,
.content-block .content-block-cnt h3.tab-child.green {
  font-size: 20px;
  line-height: 24px;
  color: #00806F;
}

.content-block .content-block-cnt h2.green+p,
.content-block .content-block-cnt h3.tab-child.green+p {
  margin-top: 15px;
}

.content-block .content-block-cnt h2.green+p+ul,
.content-block .content-block-cnt h3.tab-child.green+p+ul {
  max-width: 654px;
  list-style: none;
  max-width: 750px;
  margin: 40px auto;
}

.content-block .content-block-cnt h2.green+p+ul li,
.content-block .content-block-cnt h3.tab-child.green+p+ul li {
  position: relative;
  margin-top: 25px;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon {
  position: absolute;
  top: 4px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #FFC425;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt h2.green+p+ul li .hexagon,
  .content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon {
    top: 2px;
  }
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon.blue,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon.blue {
  background-color: #0092C7;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon.green,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon.green {
  background-color: #009E89;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon:before,
.content-block .content-block-cnt h2.green+p+ul li .hexagon:after,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon:before,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon:before,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #FFC425;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon.blue:before,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon.blue:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon.green:before,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon.green:before {
  bottom: 100%;
  border-bottom: 2.89px solid #009E89;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon:after,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #FFC425;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon.blue:after,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon.blue:after {
  bottom: 100%;
  border-top: 2.89px solid #0092C7;
}

.content-block .content-block-cnt h2.green+p+ul li .hexagon.green:after,
.content-block .content-block-cnt h3.tab-child.green+p+ul li .hexagon.green:after {
  bottom: 100%;
  border-top: 2.89px solid #009E89;
}

.content-block .content-block-cnt h2.green+p+ul li p,
.content-block .content-block-cnt h3.tab-child.green+p+ul li p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt h2.green+p+ul li p,
  .content-block .content-block-cnt h3.tab-child.green+p+ul li p {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

.content-block .content-block-cnt h3.tab-child {
  margin-top: 50px;
}

.content-block .content-block-cnt P+h3 {
  margin-top: 50px;
}

.content-block .content-block-cnt p+.linkbox {
  margin-top: 25px;
  max-width: 700px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt p+.linkbox {
    margin-top: 10px;
  }
}

.content-block .content-block-cnt p+.linkbox .linkbox-links>.row>.col-xs-12 {
  margin-top: 0;
}

.content-block .content-block-cnt p+.linkbox .linkbox-links>.row>.col-xs-12 .link {
  margin-top: 25px;
}

.content-block .content-block-cnt .linkbox+h3 {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .linkbox+h3 {
    margin-top: 25px;
  }
}

.content-block .content-block-cnt h3 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #00806F;
}

.content-block .content-block-cnt p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt p {
    font-size: 14px;
    line-height: 20px;
  }
}

.content-block .content-block-cnt p span.green {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #00806F;
}

.content-block .content-block-cnt p.state-row,
.content-block .content-block-cnt p.year-row {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 13px !important;
  color: #5a5d5e;
  letter-spacing: 0.5px;
  line-height: normal !important;
  margin: 0 0 15px !important;
}

.content-block .content-block-cnt .text-with-linkbox .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .row .col-xs-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content-block .content-block-cnt .text-with-linkbox+.subsection>h2 {
  padding-top: 50px;
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container {
  margin-top: 75px;
  margin-left: 50px;
  margin-bottom: 50px;
  padding: 25px 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  float: right;
  background: #F0F7FC;
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container a {
  border-bottom: none;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container {
    margin-top: 35px;
    padding: 4px 24px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container {
    padding: 25px 16px;
  }
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container ul {
  padding: 0 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0 auto;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li {
    margin: 20px 50px 20px 0;
  }

  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li {
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li:first-child {
    margin: 0;
  }
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li:last-child {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li:last-child {
    margin-bottom: 0;
  }
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #242423;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li a {
    font-weight: 700;
  }
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li a:hover+img {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  -webkit-transform: rotate(-90deg) translateY(5px);
       -o-transform: rotate(-90deg) translateY(5px);
          transform: rotate(-90deg) translateY(5px);
}

.content-block .content-block-cnt .text-with-linkbox .linkbox-container ul li img {
  margin-left: 10px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  max-width: 12px;
}

.content-block .content-block-cnt .text-with-image-list {
  margin-top: 40px;
}

.content-block .content-block-cnt .text-with-image-list .row:not(:first-child) {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-image-list .row:not(:first-child) {
    margin-top: 25px;
  }
}

.content-block .content-block-cnt .text-with-image-list .row .col-xs-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-image-list .row .col-xs-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-image-list .row .col-xs-8 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.content-block .content-block-cnt .text-with-image-list .image-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-image-list .image-list-container {
    max-width: 45%;
  }
}

.content-block .content-block-cnt .text-with-image-list .image-list-container img {
  -o-object-fit: contain;
     object-fit: contain;
}

.content-block .content-block-cnt .text-with-image-list .image-list-text {
  max-width: 528px;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-image-list .image-list-text {
    margin-top: 10px;
    margin-left: 0;
  }
}

.content-block .content-block-cnt .text-with-image-list .image-list-text h3>p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px !important;
  line-height: 24px !important;
  color: #006C64 !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-image-list .image-list-text h3>p {
    font-size: 16px;
    line-height: 18px;
  }
}

.content-block .content-block-cnt .text-with-image-list .image-list-text p {
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .text-with-image-list .image-list-text p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 16px;
  }
}

.content-block .content-block-cnt .map-block h2 {
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
  color: #242423;
}

.content-block .content-block-cnt .map-block h2.green {
  font-size: 20px;
  line-height: 24px;
  color: #00806F;
}

.content-block .content-block-cnt .map-block h3 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #006C64;
}

.content-block .content-block-cnt .map-block .map-container {
  position: relative;
  padding: 15px 24px 10px 24px;
  margin: 0 0px 30px 68px;
  height: auto;
  width: 312px;
  float: right;
  background: #F7F8FA;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container {
    min-width: 315px;
    margin: 0 0px 15px 15px;
    position: relative;
    left: 10px;
  }
}

@media only screen and (max-width: 414px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container {
    min-width: 425px;
    left: 18px;
    margin: 0 0px 30px 68px;
  }
}

@media only screen and (max-width: 411px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container {
    min-width: 425px;
    left: 23px;
  }
}

@media only screen and (max-width: 375px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container {
    min-width: 390px;
    left: 24px;
  }
}

@media only screen and (max-width: 360px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container {
    min-width: 390px;
    left: 33px;
  }
}

@media only screen and (max-width: 320px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container {
    min-width: 330px;
    left: 16px;
  }
}

.content-block .content-block-cnt .map-block .map-container .map-expand-icon {
  position: absolute;
  top: 7px;
  right: 13px;
}

.content-block .content-block-cnt .map-block .map-container .map-expand-icon a {
  border-bottom: none;
}

.content-block .content-block-cnt .map-block .map-container .map-header {
  max-width: 94%;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container .map-header {
    max-width: 100%;
  }
}

.content-block .content-block-cnt .map-block .map-container .map-header span.map-header-figure {
  margin-bottom: 50px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #00806F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.content-block .content-block-cnt .map-block .map-container .map-header h2 {
  margin-top: 2px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #242423;
}

.content-block .content-block-cnt .map-block .map-container .map-header+.map-content {
  margin-top: -15px;
}

.content-block .content-block-cnt .map-block .map-container .map svg {
  width: 100%;
  height: auto;
}

.content-block .content-block-cnt .map-block .map-container .map svg text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container .map img {
    width: 100%;
  }
}

.content-block .content-block-cnt .map-block .map-container .map-expand {
  margin-top: 23px;
  padding-top: 15px;
  border-top: 1px solid #BEC4C7;
  text-align: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container .map-expand {
    display: none;
  }
}

.content-block .content-block-cnt .map-block .map-container .map-expand a {
  border-bottom: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #006FAB;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile {
  position: relative;
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile {
    display: block;
    position: absolute;
    top: 5px;
    right: 30px;
  }

  .content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile a.dropdown-trigger {
    padding: 0 20px;
    border-bottom: none;
  }

  .content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile a.dropdown-trigger img {
    pointer-events: none;
  }
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile {
  position: absolute;
  height: auto;
  width: 200px;
  top: 60px;
  left: -175px;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  background: #fff;
  -webkit-box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
  opacity: 0;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile.open {
  opacity: 1;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile ul li {
  position: relative;
  margin: 0;
  padding: 10px 0;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile ul li:hover>a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #006FAB;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile ul li:hover>a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #006FAB;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile ul li a {
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #242423;
  margin-left: 20px;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-download {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-download {
    display: block;
  }
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-download ul {
  margin: 0;
  border-bottom: 1px solid #D7DDE0;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-download .dropdown-item {
  display: block;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item {
  width: 100% !important;
  height: 100% !important;
  background: none !important;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 0px 0 0px !important;
  padding: 10px 0 !important;
  position: relative;
  text-align: left !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  color: #232424;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
  text-indent: 10px;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn:last-child,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item:last-child {
  margin-right: 0 !important;
  text-indent: 20px;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn:hover,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item:hover {
  opacity: 1;
  -webkit-transform: none !important;
       -o-transform: none !important;
          transform: none !important;
  color: #006fab;
  font-weight: bold;
  top: 0 !important;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn:hover:after,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item:hover:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #006fab;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn img,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item img {
  opacity: 0;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="twitter"],
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="twitter"] {
  display: block !important;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="twitter"]:before,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="twitter"]:before {
  content: "Twitter";
  display: inline-block;
  vertical-align: middle;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="sharethis"]:before,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="sharethis"]:before {
  content: "Copy";
  display: inline-block;
  vertical-align: middle;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="facebook"],
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="facebook"] {
  display: block !important;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="facebook"]:before,
.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="facebook"]:before {
  content: "Facebook";
  display: inline-block;
  vertical-align: middle;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-copy {
  padding: 18px 18px 18px 43px;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-copy p {
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: #242423;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-copy p:after {
  position: absolute;
  top: 0;
  left: -30px;
  height: 24px;
  width: 24px;
  content: "";
  background-image: url(../images/info-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.content-block .content-block-cnt .map-block .map-container .map-options-sharing-mobile a img {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.content-block .content-block-cnt .map-block+.table {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-block+.table {
    margin-top: 50px;
  }
}

.content-block .content-block-cnt .map-content>:not(.map-container) {
  pointer-events: none;
}

.content-block .content-block-cnt .map-content ul li {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .map-content ul li {
    font-size: 12px;
  }
}

.content-block .content-block-cnt .map-content ul li .hexagon {
  top: 8px;
}

.content-block .content-block-cnt .map-content p a {
  pointer-events: all !important;
}

.content-block .content-block-cnt ul {
  list-style: none;
  max-width: 750px;
  margin: 40px auto;
}

.content-block .content-block-cnt ul li {
  position: relative;
  margin-top: 25px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #242423;
}

.content-block .content-block-cnt ul li .hexagon {
  position: absolute;
  top: 4px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #FFC425;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt ul li .hexagon {
    top: 2px;
  }
}

.content-block .content-block-cnt ul li .hexagon.blue {
  background-color: #0092C7;
}

.content-block .content-block-cnt ul li .hexagon.green {
  background-color: #009E89;
}

.content-block .content-block-cnt ul li .hexagon:before,
.content-block .content-block-cnt ul li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.content-block .content-block-cnt ul li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #FFC425;
}

.content-block .content-block-cnt ul li .hexagon.blue:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.content-block .content-block-cnt ul li .hexagon.green:before {
  bottom: 100%;
  border-bottom: 2.89px solid #009E89;
}

.content-block .content-block-cnt ul li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #FFC425;
}

.content-block .content-block-cnt ul li .hexagon.blue:after {
  bottom: 100%;
  border-top: 2.89px solid #0092C7;
}

.content-block .content-block-cnt ul li .hexagon.green:after {
  bottom: 100%;
  border-top: 2.89px solid #009E89;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt ul li {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

.content-block .content-block-cnt ul li p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt ul li p {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

.content-block .content-block-cnt .graph-embed-container {
  margin: 56px 0 0 0;
  padding: 32px 40px;
  background: #F7F8FA;
  height: auto;
  min-width: 109.5%;
  height: auto;
  position: relative;
  left: -40px;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-embed-container {
    min-width: 108.5%;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-embed-container {
    min-width: 111.5%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-embed-container {
    min-width: 109%;
    position: relative;
    left: -15px;
  }
}

@media only screen and (max-width: 414px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-embed-container {
    min-width: 109%;
    left: -15px;
  }
}

@media only screen and (max-width: 320px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-embed-container {
    min-width: 109%;
    left: -10px;
  }
}

.content-block .content-block-cnt .graph-embed-container+p {
  margin-top: 50px;
  max-width: 100%;
  margin: 50px auto;
}

.content-block .content-block-cnt .graph-embed-container+p+ul {
  max-width: 654px;
  list-style: none;
  max-width: 750px;
  margin: 40px auto;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li {
  position: relative;
  margin-top: 25px;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon {
  position: absolute;
  top: 4px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #FFC425;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon {
    top: 2px;
  }
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon.blue {
  background-color: #0092C7;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon.green {
  background-color: #009E89;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon:before,
.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #FFC425;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon.blue:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon.green:before {
  bottom: 100%;
  border-bottom: 2.89px solid #009E89;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #FFC425;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon.blue:after {
  bottom: 100%;
  border-top: 2.89px solid #0092C7;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li .hexagon.green:after {
  bottom: 100%;
  border-top: 2.89px solid #009E89;
}

.content-block .content-block-cnt .graph-embed-container+p+ul li p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-embed-container+p+ul li p {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

.content-block .content-block-cnt .graph-embed-container+h2.green {
  margin: 50px auto 15px auto;
}

.content-block .content-block-cnt .graph-embed-container+h2.green+p {
  margin: 0 auto;
}

.content-block .content-block-cnt .graph-embed-container+h2.green+p+p {
  margin: 20px auto 0 auto;
}

.content-block .content-block-cnt .graph-embed-container+h2.green+p+p+h2.green {
  margin: 50px auto 15px auto;
}

.content-block .content-block-cnt .graph-embed-container+h2.green+p+p+h2.green+p {
  margin: 0 auto;
}

.content-block .content-block-cnt .graph-embed-container+h2.green+p+p+h2.green+p+p {
  margin: 20px auto 0 auto;
}

.content-block .content-block-cnt .graph-embed-container+hr {
  margin: 60px 0 50px 0;
}

.content-block .content-block-cnt .graph-embed-container .graph-body {
  border-bottom: 1px solid #bec4c7;
  padding-bottom: 16px;
}

.content-block .content-block-cnt .graph-embed-container .table-notes {
  background: #f7f8fa;
  display: none;
  margin-top: 0;
}

.content-block .content-block-cnt .graph-body {
  position: relative;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-body .svg-el {
    overflow: auto;
  }

  .content-block .content-block-cnt .graph-body svg {
    width: auto !important;
    min-width: 100% !important;
  }
}

.content-block .content-block-cnt .graph-body svg {
  width: 100%;
  min-width: 650px;
  height: auto;
  overflow: visible;
}

.content-block .content-block-cnt .graph-body svg text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}

.content-block .content-block-cnt .graph-body svg text.axis-label,
.content-block .content-block-cnt .graph-body svg text.placeholder-tick-text {
  font-size: 12px;
  color: #5a5d5e;
  letter-spacing: 0;
}

.content-block .content-block-cnt .graph-body svg text.bar-hover-text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #242423;
  letter-spacing: 0;
  text-align: center;
  line-height: 10px;
}

.content-block .content-block-cnt .graph-body svg text.bar-hover-text.visible {
  opacity: 1 !important;
}

.content-block .content-block-cnt .graph-body svg .legend-group text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #232424;
  letter-spacing: 0;
}

.content-block .content-block-cnt .graph-body svg .axis .tick text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #5a5d5e;
  letter-spacing: 0;
}

.content-block .content-block-cnt .graph-body svg .data-label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  line-height: 16px;
}

.content-block .content-block-cnt .graph-body svg .data-label.visible {
  opacity: 1 !important;
}

.content-block .content-block-cnt .graph-body svg.Figure2_3 .data-label {
  font-size: 12px !important;
}

.content-block .content-block-cnt .graph-body .legend-tooltip {
  display: block;
  position: absolute;
  top: 44px;
  left: 0;
  width: 250px;
  max-width: 250px;
  opacity: 0;
  -webkit-transition: 200ms 100ms opacity;
  -o-transition: 200ms 100ms opacity;
  transition: 200ms 100ms opacity;
}

.content-block .content-block-cnt .graph-body .legend-tooltip .tooltip-inner {
  width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  padding: 16px;
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 500;
}

.content-block .content-block-cnt .graph-body .legend-tooltip .tooltip-inner:after {
  content: "";
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-end.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-body .legend-tooltip .tooltip-inner:after {
    display: none;
  }
}

.content-block .content-block-cnt .graph-body .legend-tooltip .tooltip-inner p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 500;
}

.content-block .content-block-cnt .graph-header {
  padding-bottom: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #BEC4C7;
  position: relative;
}

.content-block .content-block-cnt .graph-header a {
  border-bottom: none;
  width: 100%;
}

.content-block .content-block-cnt .graph-header-title {
  max-width: 70%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-title {
    max-width: 100%;
  }
}

.content-block .content-block-cnt .graph-header-title span.graph-header-figure {
  margin-bottom: 7px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #00806F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.content-block .content-block-cnt .graph-header-title h2 {
  margin: 0 16px 0 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  color: #242423;
}

.content-block .content-block-cnt .graph-header-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-filtering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options .graph-header-options-filtering {
    margin-right: 25px;
  }
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-filtering a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 5px 10px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-filtering a:hover {
  background: rgba(90,93,94,0.15);
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-filtering a span {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #242423;
  font-size: 12px;
  line-height: 100%;
  margin-left: 8px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-right: 10px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options .graph-header-options-sharing {
    display: none;
  }
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 5px 10px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing a.open+.sharing-dropdown {
  opacity: 1;
  top: 30px;
  left: auto;
  right: 0;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  pointer-events: all;
  z-index: 9;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing a img {
  pointer-events: none;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing a:hover {
  background: rgba(90,93,94,0.15);
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing a span {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #242423;
  font-size: 12px;
  line-height: 100%;
  margin-left: 8px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 60px;
  left: -50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  width: 150px;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  -webkit-box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
  pointer-events: none;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown p {
  margin: 0 8px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 22px !important;
  color: #242423 !important;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container {
  width: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .sharethis-inline-share-buttons {
  width: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 10px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item {
  width: 100% !important;
  height: auto !important;
  background: none !important;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  position: relative;
  text-align: left !important;
  top: 0;
  -webkit-transition: top 0.2s ease-in;
  -o-transition: top 0.2s ease-in;
  transition: top 0.2s ease-in;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #232424;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn a,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #232424 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
  width: 100%;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn:last-child,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item:last-child {
  margin-right: 0 !important;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn:hover,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item:hover {
  opacity: 1;
  top: -4px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn img,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item img {
  opacity: 0;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn[data-network="twitter"]:before,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item[data-network="twitter"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/twitter.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn[data-network="twitter"]:after,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item[data-network="twitter"]:after {
  content: attr(data-network);
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn[data-network="sharethis"]:before,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item[data-network="sharethis"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn[data-url="copy"]:before,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item[data-url="copy"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn[data-network="facebook"]:before,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item[data-network="facebook"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/facebook.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .st-btn[data-network="facebook"]:after,
.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown .share-buttons-container .dropdown-item[data-network="facebook"]:after {
  content: attr(data-network);
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown ul {
  margin: 0px auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-sharing .sharing-dropdown ul li {
  margin: 0 15px 0 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #242423;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 55px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options .graph-header-options-save {
    display: none;
  }
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 5px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save a:hover {
  background: rgba(90,93,94,0.15);
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save a img {
  pointer-events: none;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save a span {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #242423;
  font-size: 12px;
  line-height: 100%;
  margin-left: 8px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options .graph-header-options-save a span {
    display: none;
  }
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown {
  position: absolute;
  height: auto;
  width: 175px;
  top: 60px;
  left: -50%;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  -webkit-box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
  opacity: 0;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li {
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #bec4c7;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li:last-child {
    display: none;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li:last-child {
    display: none;
  }
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li:hover>a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #006FAB;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li:hover>a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #006FAB;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li a,
.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown ul li span {
  display: block;
  padding: 10px 20px !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #242423;
}

.content-block .content-block-cnt .graph-header-options .graph-header-options-save .saving-dropdown.open {
  opacity: 1;
  top: 30px;
  pointer-events: all;
  z-index: 9;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile {
  position: relative;
  display: none;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options-sharing-mobile {
    display: block;
    position: absolute;
    top: 0;
    right: 0px;
    width: 30px;
    height: 30px;
  }
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile>a img {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile>a:focus+.sharing-dropdown-mobile {
  display: block;
  opacity: 1;
  top: 30px;
  pointer-events: all;
  z-index: 9;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile>a.open+.sharing-dropdown-mobile {
  display: block;
  opacity: 1;
  top: 30px;
  pointer-events: all;
  z-index: 9;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile {
  display: none;
  position: absolute;
  height: auto;
  width: 200px;
  top: 60px;
  left: -175px;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  background: #fff;
  -webkit-box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
  opacity: 0;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile ul li {
  position: relative;
  margin: 0;
  padding: 10px 0;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile ul li:hover>a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #006FAB;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile ul li:hover>a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #006FAB;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile ul li a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #242423;
  margin-left: 20px;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-download {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-download {
    display: block;
  }
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-download ul {
  margin: 0;
  border-bottom: 1px solid #D7DDE0;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item {
  width: 100% !important;
  height: 100% !important;
  background: none !important;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  line-height: 20px !important;
  margin: 0 0px 0 0px !important;
  padding: 10px 0 !important;
  position: relative;
  text-align: left !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  color: #232424;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
  text-indent: 10px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn,
  .content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item {
    text-indent: 0;
    padding-left: 20px !important;
    width: 100%;
  }
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn a,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #232424 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn:last-child,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item:last-child {
  margin-right: 0 !important;
  text-indent: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn:last-child,
  .content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item:last-child {
    text-indent: 0;
  }
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn:hover,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item:hover {
  opacity: 1;
  -webkit-transform: none !important;
       -o-transform: none !important;
          transform: none !important;
  color: #006fab;
  font-weight: bold;
  top: 0 !important;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn:hover:after,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item:hover:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #006fab;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn img,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item img {
  opacity: 0;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="twitter"],
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="twitter"] {
  display: block !important;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="twitter"]:before,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="twitter"]:before {
  content: "Twitter";
  display: inline-block;
  vertical-align: middle;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="sharethis"]:before,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="sharethis"]:before {
  content: "Copy";
  display: inline-block;
  vertical-align: middle;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="facebook"],
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="facebook"] {
  display: block !important;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .st-btn[data-network="facebook"]:before,
.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-share .share-buttons-container .dropdown-item[data-network="facebook"]:before {
  content: "Facebook";
  display: inline-block;
  vertical-align: middle;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-copy {
  padding: 18px 18px 18px 43px;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-copy p {
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: #242423;
}

.content-block .content-block-cnt .graph-header-options-sharing-mobile .sharing-dropdown-mobile .sharing-dropdown-container .mobile-copy p:after {
  position: absolute;
  top: 0;
  left: -30px;
  height: 24px;
  width: 24px;
  content: "";
  background-image: url(../images/info-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.content-block hr {
  margin: 50px 0;
  position: relative;
  margin: 50px 0;
  left: -40px;
  min-width: calc(100% + 80px);
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .content-block hr {
    left: 0;
    min-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block hr {
    margin: 26px 0;
  }
}

.content-block hr.short {
  min-width: 50%;
  max-width: 50%;
  left: 0;
  margin: 50px auto;
}

.content-block hr+h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block hr+h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.content-block p+h3 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #242423;
}

.content-block p+h3.green {
  color: #00806F;
}

.content-block p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #242423 !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block p {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

.content-block .pullquote {
  margin: 40px auto 60px auto;
  height: auto;
  width: 100%;
  max-width: 744px;
  padding: 20px 40px 20px 40px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .pullquote {
    padding: 16px;
  }
}

.content-block .pullquote .pullquote-cnt p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px !important;
  line-height: 34px !important;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .pullquote .pullquote-cnt p {
    font-size: 16px !important;
    line-height: 28px !important;
  }
}

.content-block .pullquote.green {
  background: #EBFAF3;
  border-bottom: 6px solid #009E89;
}

.content-block .pullquote.green .pullquote-cnt p a {
  border-bottom: 2px solid #009E89;
}

.content-block .pullquote.blue {
  background: #F0F7FC;
  border-bottom: 6px solid #0092C7;
}

.content-block .pullquote.blue .pullquote-cnt p a {
  border-bottom: 2px solid #0092C7;
}

.content-block .pullquote.small {
  width: 50%;
}

.content-block .pullquote.small .pullquote-cnt p {
  font-size: 16px !important;
  line-height: 28px !important;
}

.content-block .pullquote.long .pullquote-cnt p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px !important;
  line-height: 20px !important;
  color: #242423;
}

.content-block .pullquote.long .pullquote-cnt p a {
  font-weight: 600;
  text-decoration: none;
}

.content-block .pullquote.long .pullquote-cnt ul li {
  font-size: 14px !important;
  line-height: 20px !important;
}

.content-block .spotlight-anchor {
  width: 100%;
  height: 10px;
  margin-top: -200px;
  padding: 0;
  z-index: -1;
}

.content-block .spotlight {
  margin: 230px auto 60px auto;
  height: auto;
  width: 100%;
  padding: 50px 50px 25px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .spotlight {
    padding: 16px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .spotlight .row .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .spotlight .row .col-xs-5 {
    margin-top: 20px;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.content-block .spotlight .row .col-xs-5 .spotlight-image {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.content-block .spotlight .spotlight-cnt .spotlight-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .share a {
  border-bottom: none;
}

.content-block .spotlight .spotlight-cnt .spotlight-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .spotlight .spotlight-cnt .spotlight-title h2 {
    max-width: 200px;
    font-size: 16px;
    line-height: 20px;
  }
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon {
  position: relative;
  bottom: 2px;
  width: 35px;
  height: 20.21px;
  background-color: #006FAB;
  margin: 0px 0 0 20px;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon span {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateX(50%) translateY(-50%);
       -o-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 10px;
  line-height: 12px;
  color: #fff;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon.green {
  background-color: #009E89;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon:before,
.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 17.5px solid transparent;
  border-right: 17.5px solid transparent;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon:before {
  bottom: 100%;
  border-bottom: 10.1px solid #006FAB;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 10.1px solid #006FAB;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon.green:before {
  bottom: 100%;
  border-bottom: 10.1px solid #009E89;
}

.content-block .spotlight .spotlight-cnt .spotlight-title .hexagon.green:after {
  bottom: 100%;
  border-top: 10.1px solid #009E89;
}

.content-block .spotlight .spotlight-cnt .spotlight-copy p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px !important;
  line-height: 20px !important;
  color: #242423;
}

.content-block .spotlight .spotlight-cnt .spotlight-copy p a {
  font-weight: 600;
  text-decoration: none;
}

.content-block .spotlight .spotlight-cnt .spotlight-copy p img.alignright {
  margin-top: 0;
}

@media only screen and (max-width: 500px) {
  .content-block .spotlight .spotlight-cnt .spotlight-copy p img.alignright {
    float: none;
    margin: 0 0 20px 0;
    display: block;
  }
}

.content-block .spotlight .spotlight-cnt .spotlight-copy a.btn-arrow {
  margin-top: 20px;
  text-decoration: none;
}

.content-block .spotlight .spotlight-cnt .spotlight-copy ul {
  margin: 20px auto;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .spotlight .spotlight-cnt .spotlight-copy ul {
    margin: 15px auto;
  }
}

.content-block .spotlight .spotlight-cnt .spotlight-copy ul li {
  margin-top: 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .spotlight .spotlight-cnt .spotlight-copy ul li {
    font-size: 12px;
  }
}

.content-block .spotlight .spotlight-cnt .spotlight-copy ul li .hexagon {
  top: 8px;
}

.content-block .spotlight .spotlight-image {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-block .spotlight.green {
  background: #EBFAF3;
  border-bottom: 6px solid #009E89;
}

.content-block .spotlight.blue {
  background: #F0F7FC;
  border-bottom: 6px solid #0092C7;
}

.content-block .spotlight .sharing-spotlight-block {
  position: relative;
}

.content-block .spotlight .sharing-spotlight-block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 5px 10px;
}

.content-block .spotlight .sharing-spotlight-block a.open+.sharing-dropdown {
  opacity: 1;
  top: 30px;
  left: auto;
  right: 0;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  pointer-events: all;
  z-index: 9;
}

.content-block .spotlight .sharing-spotlight-block a img {
  pointer-events: none;
}

.content-block .spotlight .sharing-spotlight-block a:hover {
  background: rgba(90,93,94,0.15);
}

.content-block .spotlight .sharing-spotlight-block a span {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #242423;
  font-size: 12px;
  line-height: 100%;
  margin-left: 8px;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 60px;
  left: -50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  width: 150px;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  -webkit-box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 13px 0 rgba(0,0,0,0.16);
  pointer-events: none;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown p {
  margin: 0 8px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 22px !important;
  color: #242423 !important;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container {
  width: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .sharethis-inline-share-buttons {
  width: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 10px;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item {
  width: 100% !important;
  height: auto !important;
  background: none !important;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  position: relative;
  text-align: left !important;
  top: 0;
  -webkit-transition: top 0.2s ease-in;
  -o-transition: top 0.2s ease-in;
  transition: top 0.2s ease-in;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #232424;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn a,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #232424 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
  width: 100%;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn:last-child,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item:last-child {
  margin-right: 0 !important;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn:hover,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item:hover {
  opacity: 1;
  top: -4px;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn img,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item img {
  opacity: 0;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn[data-network="twitter"]:before,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item[data-network="twitter"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/twitter.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn[data-network="twitter"]:after,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item[data-network="twitter"]:after {
  content: attr(data-network);
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn[data-network="sharethis"]:before,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item[data-network="sharethis"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn[data-url="copy"]:before,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item[data-url="copy"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn[data-network="facebook"]:before,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item[data-network="facebook"]:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/facebook.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .st-btn[data-network="facebook"]:after,
.content-block .spotlight .sharing-spotlight-block .sharing-dropdown .share-buttons-container .dropdown-item[data-network="facebook"]:after {
  content: attr(data-network);
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown ul {
  margin: 0px auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.content-block .spotlight .sharing-spotlight-block .sharing-dropdown ul li {
  margin: 0 15px 0 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #242423;
}

.content-block .cta-styles {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .cta-styles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .content-block .cta-styles a {
    margin-top: 20px;
  }

  .content-block .cta-styles a:first-child {
    margin-top: 0;
  }
}

.footnote,
.data-definition {
  position: relative;
  top: -7px;
  left: 0px;
  text-indent: 0px;
  height: 16px;
  width: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #006FAB;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none !important;
  padding-top: 3.5px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  line-height: 20px;
  color: #fff !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote,
  .data-definition {
    top: -3px;
  }
}

.data-definition {
  background: #00806F;
  border-color: #00806F;
}

.footnote-unique-container,
.data-definition-unique-container {
  display: inline;
  pointer-events: all;
}

.data-definition-container {
  padding: 20px 20px 32px 56px;
}

.footnote-container,
.data-definition-container {
  display: block;
  background: #F0F7FC;
  height: auto;
  width: 390px;
  position: fixed;
  z-index: 9999;
  top: 50%;
  right: 0;
  border: 1px solid #d8d8d8;
  border-radius: 2px 0 0 2px;
  -webkit-transition: 300ms ease-in all;
  -o-transition: 300ms ease-in all;
  transition: 300ms ease-in all;
  -webkit-transform: translateX(150%) translateY(-50%);
       -o-transform: translateX(150%) translateY(-50%);
          transform: translateX(150%) translateY(-50%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container,
  .data-definition-container {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: translateX(150%) translateY(-50%);
         -o-transform: translateX(150%) translateY(-50%);
            transform: translateX(150%) translateY(-50%);
  }
}

.footnote-container a:not(.btn),
.data-definition-container a:not(.btn) {
  font-weight: bold !important;
  border-bottom: 1px solid #000 !important;
  padding-bottom: 2px !important;
}

.footnote-container .footnote-content,
.data-definition-container .footnote-content {
  padding: 20px 0px 32px 56px;
}

.footnote-container .footnote-text,
.data-definition-container .footnote-text {
  margin-top: 30px;
  max-width: 98%;
}

.footnote-container .footnote-text a,
.data-definition-container .footnote-text a {
  text-decoration: none !important;
  text-transform: none !important;
}

.footnote-container .footnote-content,
.footnote-container .data-definition-content,
.data-definition-container .footnote-content,
.data-definition-container .data-definition-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.footnote-container .footnote-content p,
.footnote-container .data-definition-content p,
.data-definition-container .footnote-content p,
.data-definition-container .data-definition-content p {
  max-width: 290px;
  margin-top: 20px;
  font-size: 15px !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content p,
  .footnote-container .data-definition-content p,
  .data-definition-container .footnote-content p,
  .data-definition-container .data-definition-content p {
    margin-top: 30px;
    max-width: 90% !important;
  }
}

.footnote-container .footnote-content a,
.footnote-container .data-definition-content a,
.data-definition-container .footnote-content a,
.data-definition-container .data-definition-content a {
  margin-top: 40px;
  font-size: 13px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none !important;
}

.footnote-container .footnote-content a.close:after,
.footnote-container .data-definition-content a.close:after,
.data-definition-container .footnote-content a.close:after,
.data-definition-container .data-definition-content a.close:after {
  right: -22px;
}

.footnote-container .footnote-content a:hover:after,
.footnote-container .data-definition-content a:hover:after,
.data-definition-container .footnote-content a:hover:after,
.data-definition-container .data-definition-content a:hover:after {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  right: -30px;
}

.footnote-container .footnote-content a.btn,
.footnote-container .data-definition-content a.btn,
.data-definition-container .footnote-content a.btn,
.data-definition-container .data-definition-content a.btn {
  width: 100%;
  max-width: 220px;
  -webkit-transform: translateX(-5%);
       -o-transform: translateX(-5%);
          transform: translateX(-5%);
}

.footnote-container .footnote-content a.btn-arrow,
.footnote-container .data-definition-content a.btn-arrow,
.data-definition-container .footnote-content a.btn-arrow,
.data-definition-container .data-definition-content a.btn-arrow {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
}

.footnote-container .footnote-content a.btn-arrow:after,
.footnote-container .data-definition-content a.btn-arrow:after,
.data-definition-container .footnote-content a.btn-arrow:after,
.data-definition-container .data-definition-content a.btn-arrow:after {
  height: 10px;
  width: 10px;
  right: -20px;
}

.footnote-container .footnote-content a.btn-arrow:hover:after,
.footnote-container .data-definition-content a.btn-arrow:hover:after,
.data-definition-container .footnote-content a.btn-arrow:hover:after,
.data-definition-container .data-definition-content a.btn-arrow:hover:after {
  right: -25px;
}

.footnote-container .footnote-content .data-definition-header,
.footnote-container .data-definition-content .data-definition-header,
.data-definition-container .footnote-content .data-definition-header,
.data-definition-container .data-definition-content .data-definition-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content .data-definition-header,
  .footnote-container .data-definition-content .data-definition-header,
  .data-definition-container .footnote-content .data-definition-header,
  .data-definition-container .data-definition-content .data-definition-header {
    margin-top: 30px;
  }
}

.footnote-container .footnote-content .data-definition-header .data-definition-icon,
.footnote-container .data-definition-content .data-definition-header .data-definition-icon,
.data-definition-container .footnote-content .data-definition-header .data-definition-icon,
.data-definition-container .data-definition-content .data-definition-header .data-definition-icon {
  position: absolute;
  top: 24px;
  left: -25px;
  height: 16px;
  width: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00806F;
  border-radius: 50%;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 10px !important;
  line-height: 20px !important;
  color: #fff;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content .data-definition-header .data-definition-icon,
  .footnote-container .data-definition-content .data-definition-header .data-definition-icon,
  .data-definition-container .footnote-content .data-definition-header .data-definition-icon,
  .data-definition-container .data-definition-content .data-definition-header .data-definition-icon {
    top: 0;
  }
}

.footnote-container .footnote-content .data-definition-header .data-definition-word,
.footnote-container .data-definition-content .data-definition-header .data-definition-word,
.data-definition-container .footnote-content .data-definition-header .data-definition-word,
.data-definition-container .data-definition-content .data-definition-header .data-definition-word {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content .data-definition-header .data-definition-word,
  .footnote-container .data-definition-content .data-definition-header .data-definition-word,
  .data-definition-container .footnote-content .data-definition-header .data-definition-word,
  .data-definition-container .data-definition-content .data-definition-header .data-definition-word {
    max-width: 90%;
  }
}

.footnote-container .footnote-icon,
.data-definition-container .footnote-icon {
  position: absolute;
  top: 53px;
  left: 25px;
  height: 16px;
  width: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #006FAB;
  border-radius: 50%;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 10px !important;
  line-height: 20px !important;
  color: #fff;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-icon,
  .data-definition-container .footnote-icon {
    left: 15px;
  }
}

.footnote-container.footnote-show,
.footnote-container.data-definition-show,
.data-definition-container.footnote-show,
.data-definition-container.data-definition-show {
  -webkit-transform: translateY(-50%) translateX(0%);
       -o-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.footnote-show,
  .footnote-container.data-definition-show,
  .data-definition-container.footnote-show,
  .data-definition-container.data-definition-show {
    max-width: 100%;
    top: initial;
    bottom: 0;
    right: 50%;
    width: 100%;
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.footnote-container.footnote-show .footnote-content,
.footnote-container.data-definition-show .footnote-content,
.data-definition-container.footnote-show .footnote-content,
.data-definition-container.data-definition-show .footnote-content {
  max-width: 390px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.footnote-show .footnote-content,
  .footnote-container.data-definition-show .footnote-content,
  .data-definition-container.footnote-show .footnote-content,
  .data-definition-container.data-definition-show .footnote-content {
    max-width: 100%;
    padding-left: 40px;
  }
}

.footnote-container.footnote-show .footnote-content a.btn,
.footnote-container.data-definition-show .footnote-content a.btn,
.data-definition-container.footnote-show .footnote-content a.btn,
.data-definition-container.data-definition-show .footnote-content a.btn {
  margin: 30px auto 0 auto;
}

.footnote-container.footnote-show.footnote-animate,
.footnote-container.footnote-animate.data-definition-show,
.data-definition-container.footnote-show.footnote-animate,
.data-definition-container.footnote-animate.data-definition-show {
  -webkit-transform: translateY(-50%) translateX(0%);
       -o-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.footnote-show.footnote-animate,
  .footnote-container.footnote-animate.data-definition-show,
  .data-definition-container.footnote-show.footnote-animate,
  .data-definition-container.footnote-animate.data-definition-show {
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
  }
}

.footnote-container.data-definition-show,
.data-definition-container.data-definition-show {
  background: #EBFAF3;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.data-definition-show,
  .data-definition-container.data-definition-show {
    padding-right: 0;
    padding-left: 40px;
    top: initial;
    bottom: 0;
    right: 50%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
  }
}

@supports (-webkit-touch-callout: none) {
@media only screen and (max-width: 767px) and (min-width: 1px) {
    .footnote-container.data-definition-show,
    .data-definition-container.data-definition-show {
      padding-bottom: 10px;
    }
}
}

.footnote-container.data-definition-show .data-definition-content p,
.data-definition-container.data-definition-show .data-definition-content p {
  max-width: 290px;
  margin-top: 5px;
  font-size: 15px !important;
}

.footnote-container.data-definition-show .data-definition-content p a,
.data-definition-container.data-definition-show .data-definition-content p a {
  text-decoration: none !important;
  text-transform: none !important;
}

.footnote-container.data-definition-show .data-definition-content a.btn,
.data-definition-container.data-definition-show .data-definition-content a.btn {
  width: 113%;
  max-width: 113%;
  -webkit-transform: translateX(-10%);
       -o-transform: translateX(-10%);
          transform: translateX(-10%);
  white-space: nowrap;
}

.footnote-container.data-definition-show.data-definition-animate,
.data-definition-container.data-definition-show.data-definition-animate {
  -webkit-transform: translateY(-50%) translateX(0%);
       -o-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.data-definition-show.data-definition-animate,
  .data-definition-container.data-definition-show.data-definition-animate {
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
  }
}

span.open {
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  color: #242423;
  -webkit-font-smoothing: antialiased;
}

span.data-definition-word {
  font-weight: 500 !important;
}

.report-modal-close {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  background-image: url(../images/close-icon-gray.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.data-definition-content .report-modal-close {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0px;
  background-image: url(../images/close-icon-gray.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.report-modal-overlay {
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: transparent;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}

.report-modal-overlay.open {
  -webkit-transform: translateX(0%);
       -o-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 0.8;
  background: transparent;
  pointer-events: all;
}

ul+.graph-embed-container {
  margin: 65px 0 0 0 !important;
}

.table+p+h2.green {
  margin-top: 60px;
}

.tip-bar {
  width: 100%;
  padding: 0px 26px;
  margin: 50px 0 25px 0;
  background: #f1faf5;
  border: 1px solid #006C64;
  border-radius: 2px;
  -webkit-transition: 250ms all;
  -o-transition: 250ms all;
  transition: 250ms all;
}

.tip-bar .tip-bar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.tip-bar .tip-bar-content p {
  margin-left: 8px;
  font-size: 16px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
}

.tip-bar .close-icon {
  margin-left: auto;
}

.tip-bar .close-icon button {
  background: none;
  border: none;
  cursor: pointer;
}

.tip-bar .close-icon button img {
  pointer-events: none;
  width: 15px;
}

.tip-bar.close {
  height: 0;
  margin: 0;
  opacity: 0;
}

.aligncenter,
.alignleft,
.alignright {
  display: block;
  padding: 0;
}

.aligncenter {
  float: none;
  margin: 0.5em auto 1em;
}

.alignright {
  float: right;
  margin: 0.5em 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 0.5em 1em 1em 0;
}

.margin-top-40 {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .margin-top-40 {
    margin-top: 30px;
  }
}

.negative-margin-top-5 {
  margin-top: -5px;
}

table.expandable-table.tablesorter tfoot tr:first-child {
  border-top: 2px solid #006c64;
}

.report-table-container {
  margin-bottom: 42px;
}

.report-table-container.expandable-table .table {
  display: grid;
}

@media only screen and (max-width: 1500px) and (min-width: 1px) {
  .report-table-container.expandable-table .table {
    overflow-x: auto;
  }
}

.td-bold {
  font-weight: bold;
}

.td-net-tuition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -1px !important;
}

.td-not-bold {
  font-weight: 400;
}

.td-align-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.table-data-def-tooltip {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  min-width: 250px;
  max-width: 250px;
  opacity: 0;
  -webkit-transition: 200ms 100ms all;
  -o-transition: 200ms 100ms all;
  transition: 200ms 100ms all;
  pointer-events: none !important;
}

.table-data-def-tooltip .table-data-def-tooltip-inner p {
  opacity: 0;
}

.table-data-def-tooltip.last-tooltip {
  left: -135px;
  right: 0;
}

tr>td:not(:first-child) {
  text-align: right !important;
}

th:hover>.table-data-def-tooltip {
  opacity: 1;
  z-index: 100;
}

th:hover>.table-data-def-tooltip .table-data-def-tooltip-inner {
  min-width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  padding: 16px;
  position: relative;
  text-align: left;
}

th:hover>.table-data-def-tooltip .table-data-def-tooltip-inner:after {
  content: "";
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-bottom.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -7px;
  left: 35px;
  z-index: 9;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  th:hover>.table-data-def-tooltip .table-data-def-tooltip-inner:after {
    display: none;
  }
}

th:hover>.table-data-def-tooltip .table-data-def-tooltip-inner p {
  opacity: 1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 500;
}

.tablesorter-header-inner:hover>.table-data-def-tooltip.last-tooltip {
  opacity: 1;
  z-index: 100;
  left: -135px;
  right: 0;
}

.tablesorter-header-inner:hover>.table-data-def-tooltip.last-tooltip .table-data-def-tooltip-inner {
  min-width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  padding: 16px;
  position: relative;
  text-align: left;
}

.tablesorter-header-inner:hover>.table-data-def-tooltip.last-tooltip .table-data-def-tooltip-inner:after {
  content: "";
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-bottom.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -7px;
  left: initial;
  right: 35px;
  z-index: 9;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .tablesorter-header-inner:hover>.table-data-def-tooltip.last-tooltip .table-data-def-tooltip-inner:after {
    display: none;
  }
}

.tablesorter-header-inner:hover>.table-data-def-tooltip.last-tooltip .table-data-def-tooltip-inner p {
  opacity: 1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 500;
}

.tablesorter-header-inner:hover>.table-data-def-tooltip {
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  opacity: 1;
  min-width: 250px;
  max-width: 250px;
  z-index: 100;
}

.tablesorter-header-inner:hover>.table-data-def-tooltip .table-data-def-tooltip-inner {
  min-width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  padding: 16px;
  position: relative;
  text-align: left;
}

.tablesorter-header-inner:hover>.table-data-def-tooltip .table-data-def-tooltip-inner:after {
  content: "";
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-bottom.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -7px;
  left: 35px;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .tablesorter-header-inner:hover>.table-data-def-tooltip .table-data-def-tooltip-inner:after {
    display: none;
  }
}

.tablesorter-header-inner:hover>.table-data-def-tooltip .table-data-def-tooltip-inner p {
  opacity: 1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  line-height: 24px;
  font-weight: 500;
}

.table {
  border-spacing: 1px;
  margin: 50px 0 0;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .table {
    overflow-x: scroll;
  }
}

.table+p {
  margin-bottom: 40px;
}

.table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px 0;
}

.table tr.collapsed {
  display: none;
}

.table tr.show {
  display: table-row;
}

.table .table-header {
  margin-bottom: 25px;
}

.table .table-header span.table-header-figure {
  margin-bottom: 7px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #00806F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.table .table-header h2 {
  margin-top: 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .table .table-header h2 {
    max-width: 350px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .table.basic {
    display: grid;
  }
}

.table.basic .table-container {
  width: 100%;
}

.table.basic .table-container.long {
  overflow-x: auto;
}

@media only screen and (min-width: 1900px) {
  .table.basic .table-container.long {
    overflow: visible;
  }
}

.table.basic table {
  border-collapse: collapse;
}

.table.basic table td.last-of-group {
  border-right: 1px solid #fff;
}

.table.basic table thead.grouped-headers {
  pointer-events: none !important;
}

.table.basic table thead.grouped-headers tr th {
  height: 25px;
  padding-top: 5px;
}

@media screen and (max-width: 717px) {
  .table.basic table thead.grouped-headers tr th {
    border-bottom: 0;
  }
}

.table.basic table thead tr th {
  padding: 0 10px 0 20px;
  position: relative;
  height: 40px;
  text-align: left;
  background: #00806f;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  background: #00806F;
}

.table.basic table thead tr th.left {
  text-align: left;
}

.table.basic table thead tr th.center {
  text-align: center;
}

.table.basic table thead tr th.right {
  text-align: right;
}

.table.basic table thead tr th.indent-20 {
  text-indent: 20px;
}

.table.basic table thead tr th.last-of-group {
  border-right: 1px solid #fff;
  position: relative;
}

.table.basic table thead tr th.ignore-sort:after {
  display: none;
}

.table.basic table thead tr th:after {
  border-color: #ffffff transparent;
  float: none;
  margin-top: 0;
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.table.basic table thead tr th.tablesorter-header {
  padding-left: 10px;
  padding-right: 16px;
}

.table.basic table thead tr th:not(:first-child) {
  text-align: right;
}

.table.basic table thead tr th.long {
  min-width: 85px;
  max-width: 85px;
}

@media screen and (max-width: 717px) {
  .table.basic table thead tr th {
    border-bottom: 1px solid #fff;
  }
}

.table.basic tbody tr:nth-child(odd),
.table.basic tfoot tr:nth-child(odd) {
  background: #f0f7fc;
}

.table.basic tbody tr:nth-child(even),
.table.basic tfoot tr:nth-child(even) {
  background: #dff1fa;
}

.table.basic tbody.grouped-body,
.table.basic tfoot.grouped-body {
  border-top: 4px solid #ffffff;
}

.table.basic tbody.grouped-body+tbody,
.table.basic tfoot.grouped-body+tbody {
  border-top: 4px solid #ffffff;
}

.table.basic tbody.grouped-body tr.group-parent,
.table.basic tfoot.grouped-body tr.group-parent {
  background: #f0f7fc !important;
}

.table.basic tbody tr,
.table.basic tfoot tr {
  padding: 4px 0;
  border-bottom: 1px solid #fff;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: #242423;
  font-weight: 400;
}

.table.basic tbody tr:last-child,
.table.basic tbody tr:first-child,
.table.basic tfoot tr:last-child,
.table.basic tfoot tr:first-child {
  border-bottom: 0;
}

.table.basic tbody tr.toggle-row,
.table.basic tfoot tr.toggle-row {
  display: none;
}

.table.basic tbody tr.toggle-row.show,
.table.basic tfoot tr.toggle-row.show {
  display: table-row;
}

.table.basic tbody tr td,
.table.basic tfoot tr td {
  height: 22px;
  padding: 0 10px 0 10px;
  white-space: pre;
}

.table.basic tbody tr td.left,
.table.basic tfoot tr td.left {
  text-align: left;
}

.table.basic tbody tr td.bold,
.table.basic tfoot tr td.bold {
  font-weight: 500;
}

.table.basic tbody tr td.center,
.table.basic tfoot tr td.center {
  text-align: center;
}

.table.basic tbody tr td.right,
.table.basic tfoot tr td.right {
  text-align: right;
}

.table.basic tbody tr td.indent-20,
.table.basic tfoot tr td.indent-20 {
  text-indent: 20px;
}

.table.basic tbody tr td.indent,
.table.basic tfoot tr td.indent {
  padding-left: 20px;
}

.table.basic tbody tr td.empty-td:first-child,
.table.basic tfoot tr td.empty-td:first-child {
  text-align: left !important;
}

.table.basic tbody tr td.empty-td:first-child+td,
.table.basic tfoot tr td.empty-td:first-child+td {
  text-align: left !important;
}

.table.basic tbody tr.blue00 td,
.table.basic tfoot tr.blue00 td {
  background: #F0F7FC;
}

.table.basic tbody tr.blue001 td,
.table.basic tfoot tr.blue001 td {
  background: #E1F0FA;
}

.table.basic tbody tr.blue002 td,
.table.basic tfoot tr.blue002 td {
  background: #C2E2F2;
}

.table.basic tbody tr.blue003 td,
.table.basic tfoot tr.blue003 td {
  background: #ABD7ED;
}

.table.basic tbody tr.grey00 td,
.table.basic tfoot tr.grey00 td {
  background: #f7f8fa;
}

.table.basic tbody tr.grey001 td,
.table.basic tfoot tr.grey001 td {
  background: #ebeef0;
}

.table.multi-3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table.multi-3 {
    display: grid;
    overflow: scroll;
  }
}

.table.multi-3 .row {
  height: 40px;
  margin: 0 auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: calc(100% - 3px);
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}

.table.multi-3 .row .col-xs-2 {
  height: 100%;
  margin-right: 1px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #006C64;
  min-width: 91px;
  max-width: 91px;
}

.table.multi-3 .row .col-xs-5 {
  height: 100%;
  margin-right: 1px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #006C64;
  min-width: 389px;
  max-width: 389px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table.multi-3 .row .col-xs-5 {
    min-width: 562px;
    max-width: 562px;
  }
}

.table.multi-3 .row .col-xs-5:last-child {
  margin-right: 0;
  min-width: 389px;
  max-width: 389px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table.multi-3 .row .col-xs-5:last-child {
    min-width: 569px;
    max-width: 569px;
  }
}

.table.multi-3 table thead tr th {
  padding: 0 10px 0 20px;
  height: 78px;
  text-align: left;
  background: #00806f;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  background: #00806F;
}

.table.multi-3 table thead tr th.left {
  text-align: left;
}

.table.multi-3 table thead tr th.center {
  text-align: center;
}

.table.multi-3 table thead tr th.right {
  text-align: right;
}

.table.multi-3 table thead tr th.indent-20 {
  text-indent: 20px;
}

.table.multi-3 tbody tr {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: #242423;
}

.table.multi-3 tbody tr td {
  height: 30px;
  padding: 0 10px 0 10px;
  min-width: 92px;
  max-width: 92px;
}

.table.multi-3 tbody tr td.left {
  text-align: left;
}

.table.multi-3 tbody tr td.center {
  text-align: center;
}

.table.multi-3 tbody tr td.right {
  text-align: right;
}

.table.multi-3 tbody tr td.indent-20 {
  text-indent: 20px;
}

.table.multi-3 tbody tr.blue00 td {
  background: #F0F7FC;
}

.table.multi-3 tbody tr.blue001 td {
  background: #E1F0FA;
}

.table.multi-3 tbody tr.blue002 td {
  background: #C2E2F2;
}

.table.multi-3 tbody tr.blue003 td {
  background: #ABD7ED;
}

.table.multi-3 tbody tr.grey00 td {
  background: #f7f8fa;
}

.table.multi-3 tbody tr.grey001 td {
  background: #ebeef0;
}

.table.multi-4 {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table.multi-4 {
    overflow: scroll;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .table.multi-4 {
    display: grid;
  }
}

.table.multi-4 .row {
  height: 50px;
  margin: 0 auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: calc(100% - 3px);
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}

.table.multi-4 .row .col-xs-3 {
  height: 100%;
  margin-right: 1px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #006C64;
}

.table.multi-4 .row .col-xs-3:first-child {
  min-width: 102px;
  max-width: 102px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:first-child {
    min-width: 91px;
    max-width: 91px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:first-child {
    min-width: 91px;
    max-width: 91px;
  }
}

.table.multi-4 .row .col-xs-3:nth-child(2) {
  min-width: 245px;
  max-width: 245px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:nth-child(2) {
    min-width: 219px;
    max-width: 219px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:nth-child(2) {
    min-width: 217px;
    max-width: 217px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:nth-child(2) {
    min-width: 205px;
    max-width: 205px;
  }
}

.table.multi-4 .row .col-xs-3:nth-child(3) {
  min-width: 246px;
  max-width: 246px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:nth-child(3) {
    min-width: 217px;
    max-width: 217px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:nth-child(3) {
    min-width: 202px;
    max-width: 202px;
  }
}

.table.multi-4 .row .col-xs-3:nth-child(4) {
  min-width: 249px;
  max-width: 249px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:nth-child(4) {
    min-width: 219px;
    max-width: 219px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .table.multi-4 .row .col-xs-3:nth-child(4) {
    min-width: 192px;
    max-width: 192px;
  }
}

.table.multi-4 table thead tr th {
  padding: 0 10px 0 20px;
  height: 78px;
  text-align: left;
  background: #00806f;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  background: #00806F;
}

.table.multi-4 table thead tr th.left {
  text-align: left;
}

.table.multi-4 table thead tr th.center {
  text-align: center;
}

.table.multi-4 table thead tr th.right {
  text-align: right;
}

.table.multi-4 table thead tr th.indent-20 {
  text-indent: 20px;
}

.table.multi-4 tbody tr {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: #242423;
}

.table.multi-4 tbody tr td {
  height: 30px;
  padding: 0 10px 0 10px;
  min-width: 92px;
  max-width: 92px;
}

.table.multi-4 tbody tr td.left {
  text-align: left;
}

.table.multi-4 tbody tr td.center {
  text-align: center;
}

.table.multi-4 tbody tr td.right {
  text-align: right;
}

.table.multi-4 tbody tr td.indent-20 {
  text-indent: 20px;
}

.table.multi-4 tbody tr.blue00 td {
  background: #F0F7FC;
}

.table.multi-4 tbody tr.blue001 td {
  background: #E1F0FA;
}

.table.multi-4 tbody tr.blue002 td {
  background: #C2E2F2;
}

.table.multi-4 tbody tr.blue003 td {
  background: #ABD7ED;
}

.table.multi-4 tbody tr.grey00 td {
  background: #f7f8fa;
}

.table.multi-4 tbody tr.grey001 td {
  background: #ebeef0;
}

.table .table-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  margin-top: 5px;
  background: #006FAB;
}

.table .table-toggle:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00bce4;
  outline-offset: 0px;
}

.table .table-toggle img.opened {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.table.collapsed .table-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table-width-container {
    overflow: scroll;
    max-width: 100%;
  }
}

.table+.graph-embed-container {
  margin: 106px 0 0 0 !important;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .table+.graph-embed-container {
    margin: 56px 0 0 0 !important;
  }
}

.notes-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  -webkit-appearance: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #5a5d5e;
  letter-spacing: 0;
  text-align: center;
  line-height: 20px;
}

.notes-btn span,
.notes-btn img {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.notes-btn span {
  margin-right: 8px;
}

.notes-btn img {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: -o-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out, -o-transform 0.25s ease-in-out;
}

.notes-btn.show-notes img {
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}

.table-notes {
  display: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #3c4048;
}

.table-notes span {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  color: #3c4048;
  font-weight: 700;
}

.table-notes ol,
.table-notes ul {
  margin-top: 0px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  color: #3c4048;
}

.table-notes ol li,
.table-notes ul li {
  padding-left: 10px;
  margin-bottom: 3px;
  line-height: 16px;
  font-weight: 400;
  display: none;
}

.table-notes ol li.show,
.table-notes ul li.show {
  display: list-item;
}

.table-notes ul.sources {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}

.table-notes ul.sources li {
  margin-top: -4px;
  padding-left: 0px;
  position: relative;
  display: block;
  font-size: 11px !important;
  color: #3c4048 !important;
  line-height: 16px !important;
}

.table-notes ul.sources li:first-child {
  display: inline;
  margin-top: 0px;
  margin-bottom: 0px;
}

.viz-tooltip {
  opacity: 0;
  position: absolute;
  top: 40px;
  left: 0;
  -webkit-transform: translate(-100vw, 0);
       -o-transform: translate(-100vw, 0);
          transform: translate(-100vw, 0);
  z-index: -1;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-tooltip.stacked-tooltip,
  .viz-tooltip.mixed-tooltip,
  .viz-tooltip.line-tooltip,
  .viz-tooltip.sector-split-bar-tooltip {
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none !important;
         -o-transform: none !important;
            transform: none !important;
  }

  .viz-tooltip.stacked-tooltip .tooltip-close,
  .viz-tooltip.mixed-tooltip .tooltip-close,
  .viz-tooltip.line-tooltip .tooltip-close,
  .viz-tooltip.sector-split-bar-tooltip .tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    z-index: 1;
    cursor: pointer;
  }

  .viz-tooltip.stacked-tooltip .tooltip-close img,
  .viz-tooltip.mixed-tooltip .tooltip-close img,
  .viz-tooltip.line-tooltip .tooltip-close img,
  .viz-tooltip.sector-split-bar-tooltip .tooltip-close img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.viz-tooltip .tooltip-inner {
  width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  padding: 16px;
  position: relative;
}

.viz-tooltip .tooltip-inner:after {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-end.svg) 50% no-repeat;
  background-position-y: -1px;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-tooltip .tooltip-inner {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 190px;
  }

  .viz-tooltip .tooltip-inner:after {
    display: none;
  }
}

.viz-tooltip .line {
  width: 1px;
  border-left: 1px dashed #909699;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.viz-tooltip h2,
.viz-tooltip h4,
.viz-tooltip .state-row,
.viz-tooltip .year-row {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 13px !important;
  color: #5A5D5E;
  letter-spacing: 0.5px;
  line-height: normal !important;
  margin: 0 0 8px !important;
}

.viz-tooltip .data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6px;
}

.viz-tooltip .data-row:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-tooltip .data-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
}

.viz-tooltip .data-row p {
  margin-right: 16px;
}

.viz-tooltip .data-row p:last-child {
  margin-right: 0;
}

.viz-tooltip .left {
  margin-right: 16px;
}

.viz-tooltip .left p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.viz-tooltip .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-tooltip .right {
    margin-top: 4px;
  }
}

.viz-tooltip .right p {
  margin-right: 4px;
}

.viz-tooltip .right p.percent,
.viz-tooltip .right p:first-child {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  margin-right: 4px;
}

.viz-tooltip .right p:last-child {
  margin-right: 0;
}

.viz-tooltip .right p.additional-info {
  color: #7D8285 !important;
}

.viz-tooltip p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  line-height: 16px !important;
  margin: 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  color: #232424;
  letter-spacing: 0;
}

.viz-tooltip .color {
  width: 12px;
  height: 10px;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin: auto 5px auto 0;
  min-width: 12px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .viz-tooltip .color {
    margin: 3px 5px 0 0;
  }
}

.viz-tooltip.left .tooltip-inner:after {
  top: 50%;
  left: auto !important;
  right: -10px;
  -webkit-transform: translatey(-50%) rotate(-90deg) !important;
       -o-transform: translatey(-50%) rotate(-90deg) !important;
          transform: translatey(-50%) rotate(-90deg) !important;
  -webkit-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.viz-tooltip.left p {
  line-height: 1.4;
}

.viz-tooltip.mobile-visible {
  width: 100vw;
  height: 100vh;
  background: rgba(144,150,153,0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
}

.stacked-viz-el+.viz-tooltip .tooltip-inner:after,
.mixed-viz-el+.viz-tooltip .tooltip-inner:after,
.bar-viz-el+.viz-tooltip .tooltip-inner:after,
.sector-split-bar-viz-el+.viz-tooltip .tooltip-inner:after {
  top: 50%;
  left: -10px;
  -webkit-transform: translatey(-50%) rotate(90deg);
       -o-transform: translatey(-50%) rotate(90deg);
          transform: translatey(-50%) rotate(90deg);
  -webkit-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.bar-viz-el+.viz-tooltip {
  width: auto;
  min-width: 240px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .bar-viz-el+.viz-tooltip {
    min-width: 0;
  }
}

.map-modal .viz-tooltip .tooltip-inner:after {
  top: auto;
  bottom: calc(100% - 1px);
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

.map-modal .viz-tooltip .data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.map-modal .viz-tooltip .data-row .value {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
}

header.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #fff;
  border-bottom: 1px solid #EDF1F7;
}

header.header .row {
  height: 100%;
  margin-top: 0;
}

header.header .row .col-xs-12 {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-right: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  header.header .row .col-xs-12 {
    padding-left: 0;
  }
}

header.header .logo {
  display: inline-block;
  width: 175px;
  height: 70px;
  margin: 0;
  overflow: hidden;
}

header.header .logo a {
  display: inline-block;
  width: 100%;
  height: 70px;
  text-indent: -9999px;
  background-image: url("/images/shef-logo-new.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: none;
}

header.header .logo a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
  outline-offset: -2px;
}

header.header .hamburger {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  header.header .hamburger {
    display: block;
    z-index: 9999;
    position: absolute;
    right: 0px;
  }
}

.topnav {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .topnav {
    margin-left: 0;
  }
}

.topnav a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #006C64;
  text-transform: uppercase;
  border-bottom: none;
}

.topnav a[href*="insights-and-briefs"] ~ ul.submenu {
  left: -118px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .topnav a[href*="insights-and-briefs"] ~ ul.submenu {
    left: 0;
  }
}

.topnav ul li:nth-child(2) ul.submenu {
  width: 326px;
  left: -186px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .topnav ul li:nth-child(2) ul.submenu {
    left: 0;
  }
}

.topnav>ul {
  list-style: none;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .topnav>ul {
    margin-top: 0;
    overflow-x: hidden;
  }
}

.topnav>ul>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  width: auto;
  margin: 0 0 0 20px;
  vertical-align: top;
}

.topnav>ul>li.parent>.submenu {
  opacity: 0;
  -webkit-transition: 150ms all ease-in;
  -o-transition: 150ms all ease-in;
  transition: 150ms all ease-in;
  -webkit-transform: translateY(-10%);
       -o-transform: translateY(-10%);
          transform: translateY(-10%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .topnav>ul>li.parent>.submenu {
    opacity: 1;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

@media only screen and (min-width: 768px) {
  .topnav>ul>li.parent:hover>.submenu {
    max-height: none;
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media only screen and (min-width: 768px) {
  .topnav>ul>li.parent.open>.submenu {
    max-height: none;
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .topnav>ul>li {
    margin: 0 8px;
  }
}

.topnav>ul>li>a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topnav>ul>li>a+img {
  padding: 10px;
}

.topnav>ul>li ul.submenu {
  position: absolute;
  top: 71px;
  left: -160px;
  z-index: 999;
  width: 300px;
  list-style: none;
  padding: 0;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 350ms all;
  -o-transition: 350ms all;
  transition: 350ms all;
  -webkit-box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
  pointer-events: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .topnav>ul>li ul.submenu {
    left: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.topnav>ul>li ul.submenu.open {
  max-height: none;
  pointer-events: all;
}

.topnav>ul>li ul.submenu li {
  width: 100%;
  border-bottom: 1px solid #edf1f7;
}

.topnav>ul>li ul.submenu li:last-child {
  border-bottom: none;
}

.topnav>ul>li ul.submenu li a {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #242423;
  line-height: 22px;
  text-indent: 20px;
  text-transform: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .topnav>ul>li ul.submenu li a {
    text-indent: 0;
  }
}

.topnav>ul>li ul.submenu li a:hover {
  font-weight: 700;
  color: #009E89;
  background: #f7f8fa;
}

.topnav>ul>li ul.submenu li a:hover:hover:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #009E89;
}

.topnav>ul>li ul.submenu li a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00bce4;
  outline-offset: -6px;
}

.topnav>ul>li:hover>a:after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f4c426;
}

.topnav.menu-open {
  -webkit-transform: translateX(50%);
       -o-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 1;
}

.topnav.menu-open:before {
  left: -100%;
  -webkit-transition: 600ms 200ms all;
  -o-transition: 600ms 200ms all;
  transition: 600ms 200ms all;
  opacity: 1;
}

.mobile-nav-footer {
  display: none;
  margin: 25px 16px 0 16px;
  padding: 0px;
  border-top: 1px solid #D7DDE0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mobile-nav-footer {
    display: block;
  }
}

.mobile-nav-footer ul.mobile-list {
  display: none;
  list-style: none;
  padding: 20px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mobile-nav-footer ul.mobile-list {
    display: block;
  }
}

.mobile-nav-footer ul.mobile-list li a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #006FAB;
  line-height: 22px;
  text-indent: 20px;
  text-transform: none;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.mobile-nav-footer ul.mobile-list li a:focus {
  outline: none;
  outline-offset: 0;
}

.mobile-nav-footer ul.mobile-list li:first-child a {
  color: #000;
}

.mobile-copyright {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  color: #555859;
}

@media only screen and (max-width: 767px) and (min-width: 421px) {
  .topnav {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 999;
    margin-left: 0;
    background-color: #fff;
    font-size: 16px;
    width: 115% !important;
    opacity: 0;
    -webkit-transition: 500ms all;
    -o-transition: 500ms all;
    transition: 500ms all;
    -webkit-transform: translate(200%);
         -o-transform: translate(200%);
            transform: translate(200%);
  }

  .topnav:before {
    content: "";
    opacity: 0;
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(144,150,153,0.7);
    pointer-events: none;
  }

  .topnav>ul {
    display: block;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 421px) and (max-width: 767px) and (min-width: 1px) {
  .topnav>ul {
    padding: 0 16px;
    margin-top: 50px;
    height: auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 421px) {
  .topnav>ul>li {
    display: inline-block;
    width: 100%;
    margin: 0;
    height: auto;
  }

  .topnav>ul>li>a {
    display: inline;
    width: 100%;
    text-align: left;
    line-height: 40px;
  }

  .topnav>ul>li>a:focus {
    outline: none;
    outline-offset: 0;
  }

  .topnav>ul>li>a:after {
    display: none;
  }

  .topnav>ul>li>a:hover>img {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  .topnav>ul>li img {
    -webkit-transform: rotate(0deg) !important;
         -o-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
  }

  .topnav>ul>li img.open {
    display: inline-block !important;
    -webkit-transform: rotate(180deg) !important;
         -o-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }

  .topnav>ul>li:last-child a {
    border-bottom: none;
  }

  .topnav>ul>li ul.submenu {
    top: 5px;
    width: 100%;
    position: relative;
    max-height: auto;
  }

  .topnav>ul>li ul.submenu li {
    border-bottom: none;
  }

  .topnav>ul>li ul.submenu li a {
    font-size: 14px;
    padding: 5px 0;
  }

  .topnav>ul>li ul.submenu li a:hover {
    background: #fff;
  }

  .topnav>ul>li ul.submenu li a:hover:after {
    display: none;
  }

  .topnav>ul>li ul.submenu.open {
    max-height: none;
    overflow-x: hidden;
  }

  .topnav>ul>li.parent.open>ul.submenu {
    max-height: none;
    overflow-x: hidden;
    pointer-events: all;
  }
}

@media only screen and (max-width: 420px) and (min-width: 1px) {
  .topnav {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 999;
    margin-left: 0;
    background-color: #fff;
    font-size: 16px;
    width: 75% !important;
    opacity: 0;
    -webkit-transition: 500ms all;
    -o-transition: 500ms all;
    transition: 500ms all;
    -webkit-transform: translate(200%);
         -o-transform: translate(200%);
            transform: translate(200%);
  }

  .topnav:before {
    content: "";
    opacity: 0;
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(144,150,153,0.7);
    pointer-events: none;
  }

  .topnav>ul {
    display: block;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 420px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .topnav>ul {
    padding: 0 16px;
    margin-top: 50px;
    height: auto;
  }
}

@media only screen and (max-width: 420px) and (min-width: 1px) {
  .topnav>ul>li {
    display: inline-block;
    width: 100%;
    margin: 0;
    height: auto;
  }

  .topnav>ul>li>a {
    display: inline;
    width: 100%;
    text-align: left;
    line-height: 40px;
  }

  .topnav>ul>li>a:focus {
    outline: none;
    outline-offset: 0;
  }

  .topnav>ul>li>a:after {
    display: none;
  }

  .topnav>ul>li>a:hover>img {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  .topnav>ul>li img {
    -webkit-transform: rotate(0deg) !important;
         -o-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
  }

  .topnav>ul>li img.open {
    display: inline-block !important;
    -webkit-transform: rotate(180deg) !important;
         -o-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }

  .topnav>ul>li:last-child a {
    border-bottom: none;
  }

  .topnav>ul>li ul.submenu {
    top: 5px;
    width: 100%;
    position: relative;
    max-height: auto;
  }

  .topnav>ul>li ul.submenu li {
    border-bottom: none;
  }

  .topnav>ul>li ul.submenu li a {
    font-size: 14px;
    padding: 5px 0;
  }

  .topnav>ul>li ul.submenu li a:hover {
    background: #fff;
  }

  .topnav>ul>li ul.submenu li a:hover:after {
    display: none;
  }

  .topnav>ul>li ul.submenu.open {
    max-height: none;
    overflow-x: hidden;
  }

  .topnav>ul>li.parent.open>ul.submenu {
    max-height: none;
    overflow-x: hidden;
    pointer-events: all;
  }
}

.mobile-state-menu {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mobile-state-menu {
    display: block;
    max-width: 234px;
    overflow-y: scroll;
    max-height: 200px;
    -webkit-overflow-scrolling: auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .mobile-state-menu {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mobile-state-menu::-webkit-scrollbar {
    height: 16px;
    overflow: visible;
    width: 8px;
  }

  .mobile-state-menu::-webkit-scrollbar-button {
    height: 0;
    width: 0;
  }

  .mobile-state-menu::-webkit-scrollbar-track:hover {
    background-color: #f3f3f3;
    -webkit-box-shadow: inset 1px 0 0 #e6e6e6;
            box-shadow: inset 1px 0 0 #e6e6e6;
  }

  .mobile-state-menu::-webkit-scrollbar-track:active {
    background-color: #f3f3f3;
    -webkit-box-shadow: inset 1px 0 0 #dcdcdc,inset -1px 0 0 #00806F;
            box-shadow: inset 1px 0 0 #dcdcdc,inset -1px 0 0 #00806F;
  }

  .mobile-state-menu::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    background-clip: padding-box;
    border: solid transparent;
    border-width: 1px 1px 1px 0px;
    min-height: 28px;
    padding: 100px 0 0;
    -webkit-box-shadow: inset 1px 1px 0 #e6e6e6, inset 0 -1px 0 #eeeeee;
            box-shadow: inset 1px 1px 0 #e6e6e6, inset 0 -1px 0 #eeeeee;
  }

  .mobile-state-menu::-webkit-scrollbar-thumb:hover {
    background-color: #999999;
    -webkit-box-shadow: inset 1px 1px 1px #c0c0c0;
            box-shadow: inset 1px 1px 1px #c0c0c0;
  }

  .mobile-state-menu::-webkit-scrollbar-thumb:active {
    background-color: #808080;
    -webkit-box-shadow: inset 1px 1px 3px #a6a6a6;
            box-shadow: inset 1px 1px 3px #a6a6a6;
  }

  .mobile-state-menu ul.mobile-list {
    list-style: none;
    padding: 0 0 0 16px;
    text-indent: 3px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .mobile-state-menu ul.mobile-list {
    text-indent: 0;
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .mobile-state-menu ul.mobile-list li a {
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #242423;
    line-height: 22px;
    text-indent: 0px;
    text-transform: none;
  }

  .mobile-state-menu ul.mobile-list li a:hover {
    color: #009E89;
    font-weight: 700;
  }
}

@media only screen and (min-width: 768px) {
  .state-parent:hover>.state-menu-hidden {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateX(-50%) translateY(0%);
         -o-transform: translateX(-50%) translateY(0%);
            transform: translateX(-50%) translateY(0%);
  }
}

.state-parent a.open img {
  -webkit-transform: rotate(180deg) !important;
       -o-transform: rotate(180deg) !important;
          transform: rotate(180deg) !important;
}

.state-parent img {
  margin-left: 10px;
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .state-parent img {
    display: inline-block;
  }
}

.state-menu-hidden.open-keyboard {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateX(-50%) translateY(0%);
       -o-transform: translateX(-50%) translateY(0%);
          transform: translateX(-50%) translateY(0%);
}

.state-menu-hidden.open {
  display: block;
  visibility: visible;
}

.state-menu-hidden {
  width: 32vw;
  min-width: 460px;
  display: block;
  visibility: hidden;
  position: absolute;
  height: auto !important;
  margin: 0 auto;
  top: 100% !important;
  left: 50%;
  -webkit-transition: 150ms all ease-in;
  -o-transition: 150ms all ease-in;
  transition: 150ms all ease-in;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .state-menu-hidden {
    left: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .state-menu-hidden {
    width: 100%;
    display: none;
    visibility: hidden;
    padding-top: 0;
    position: relative;
    top: 0 !important;
    left: 0;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    opacity: 1;
    pointer-events: all;
    margin: -10px 0 20px;
  }
}

.state-menu-hidden .col-xs-12 {
  padding: 0;
}

.state-menu-hidden .col-xs-12 .state-menu-container {
  position: relative;
  z-index: 999;
  padding: 25px;
  background: #fff;
  -webkit-box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
  border-top: 1px solid #d7dde0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .state-menu-hidden .col-xs-12 .state-menu-container {
    height: 55vh;
    background: none;
    border-top: none;
    padding: 0 0 20px 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    max-height: 200px;
    overflow: auto;
  }
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu {
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .state-menu-hidden .col-xs-12 .state-menu-container .state-menu {
    display: none;
  }
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu .mobile-state-menu {
  display: none !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .state-menu-hidden .col-xs-12 .state-menu-container .state-menu .mobile-state-menu {
    display: block;
    max-height: 200px;
    overflow: auto;
    left: auto;
  }
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu .state-menu-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #242423;
  text-align: center;
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu svg {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu svg a:hover polygon,
.state-menu-hidden .col-xs-12 .state-menu-container .state-menu svg a:focus polygon {
  fill: #ffffff;
  stroke: #009e89;
  stroke-width: 2px;
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu svg a:hover text,
.state-menu-hidden .col-xs-12 .state-menu-container .state-menu svg a:focus text {
  fill: #009e89;
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu svg a text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.state-menu-hidden .col-xs-12 .state-menu-container .state-menu img {
  width: 100%;
  opacity: 0.4;
}

.skip-link.hidden {
  position: absolute;
  right: 9999px;
}

.footer {
  background: #3878AE;
  height: 45px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer {
    min-height: 215px;
  }
}

.footer.no-results {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.footer a {
  border-bottom: none;
}

.footer-branding {
  margin-right: 15px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}

.footer-branding:hover {
  color: #fff;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-links a {
  width: 100px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links a {
    margin: 10px 0;
  }
}

.footer-links a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00bce4;
  outline-offset: -2px;
}

.footer-links-col-1>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links-col-1>ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links-col-1>ul li {
    margin-bottom: 5px;
  }
}

.footer-links-col-1>ul>li>a {
  margin-right: 50px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .footer-links-col-1>ul>li>a {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .footer-links-col-1>ul>li>a {
    font-size: 14px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links-col-1>ul>li>a {
    margin-right: 0;
  }
}

.footer-links-col-1>ul>li>a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00bce4;
  outline-offset: 5px;
}

.footer-links-col-2 {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links-col-2 {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-links-col-2>ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links-col-2>ul {
    padding: 0;
    display: block;
  }
}

.copyright {
  margin-right: 15px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .copyright {
    margin-right: 0px;
    font-size: 10px;
    line-height: 16px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .copyright {
    margin: 10px 0 0 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.footer-links-col-2>ul>li {
  margin-right: 15px;
}

.footer-links-col-2>ul>li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footer-links-col-2>ul>li {
    display: block;
    margin: 0;
    text-align: center;
  }
}

.footer-links-col-2>ul>li>a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.footer-links-col-2>ul>li>a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00bce4;
  outline-offset: 5px;
}

.utility-nav-container {
  background: #3878AE;
  height: 45px;
}

.utility-nav-container a {
  border-bottom: none;
}

.utility-nav-container a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
  outline-offset: 3px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .utility-nav-container {
    display: none;
  }
}

.utility-nav-links-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.utility-nav-links-container a {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
}

.utility-nav-links-container a span {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}

.utility-nav-links-container a span:after {
  position: absolute;
  bottom: 1px;
  left: 0px;
  content: '';
  height: 1px;
  width: 80px;
  background: #f4c426;
}

.utility-nav-container>.row {
  height: 100%;
}

.utility-nav-container>.row>.col-xs-12 {
  height: 100%;
}

.utility-nav-links {
  margin-right: 10px;
}

.utility-nav-links>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.utility-nav-links>ul>li:first-child {
  margin-right: 35px;
}

.utility-nav-links>ul>li>a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border-bottom: none;
}

.utility-nav-links>ul>li>a:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
  outline-offset: 5px;
}

.home #graph-text-section,
.page-template-template-home #graph-text-section {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home #graph-text-section,
  .page-template-template-home #graph-text-section {
    background: #fff;
  }
}

@-webkit-keyframes scrollBounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes scrollBounce {
  0% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  50% {
    -o-transform: translateY(-20px);
       transform: translateY(-20px);
  }

  100% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-20px);
         -o-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

.home #slide-scroll-indicator,
.page-template-template-home #slide-scroll-indicator {
  z-index: 9999999;
}

.home #slide-scroll-indicator.scroll-animate,
.page-template-template-home #slide-scroll-indicator.scroll-animate {
  -webkit-animation: 1s linear infinite running scrollBounce;
       -o-animation: 1s linear infinite running scrollBounce;
          animation: 1s linear infinite running scrollBounce;
}

.home #slide-scroll-indicator.paused,
.page-template-template-home #slide-scroll-indicator.paused {
  -webkit-animation: none !important;
       -o-animation: none !important;
          animation: none !important;
}

.home .open.btn-arrow.blue,
.page-template-template-home .open.btn-arrow.blue {
  display: none;
}

.home .open.btn-arrow.green,
.page-template-template-home .open.btn-arrow.green {
  display: none;
}

.home #tablet-graph-bg,
.page-template-template-home #tablet-graph-bg {
  display: none;
  height: 100vh;
  width: 100%;
  -ms-flex-preferred-size: 37.66667%;
      flex-basis: 37.66667%;
  max-width: 37.66667%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  background: -webkit-linear-gradient(315deg, #eaf9f1 0%, #daecff 100%);
  background: -o-linear-gradient(315deg, #eaf9f1 0%, #daecff 100%);
  background: linear-gradient(135deg, #eaf9f1 0%, #daecff 100%);
  background-size: 400% 400%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home #tablet-graph-bg,
  .page-template-template-home #tablet-graph-bg {
    display: block;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home #tablet-graph-bg,
  .page-template-template-home #tablet-graph-bg {
    display: none;
  }
}

.home main,
.page-template-template-home main {
  padding-top: 0;
  overflow: visible;
}

.home section.intro,
.page-template-template-home section.intro {
  width: 100vw;
  min-height: 100vh;
  z-index: 0;
  overflow: hidden;
  padding: 80px 0 0;
  background: #e6f5f5;
  background-size: 400% 400%;
  opacity: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.intro,
  .page-template-template-home section.intro {
    top: 0;
    position: relative;
    padding: 80px 0 50px !important;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.intro,
  .page-template-template-home section.intro {
    min-height: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro,
  .page-template-template-home section.intro {
    overflow: hidden;
    padding: 0 0 0 16px !important;
    height: 100vh;
  }
}

.home section.intro .col-xs-6:first-child,
.page-template-template-home section.intro .col-xs-6:first-child {
  padding-left: 10.4vw;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro .col-xs-6:first-child,
  .page-template-template-home section.intro .col-xs-6:first-child {
    padding-left: 10px;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro #intro-graph-animation,
  .page-template-template-home section.intro #intro-graph-animation {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.home section.intro .graph-responsive,
.page-template-template-home section.intro .graph-responsive {
  opacity: 0;
  visibility: hidden;
  display: none;
}

@media only screen and (max-width: 1190px) and (min-width: 1px) {
  .home section.intro .graph-responsive,
  .page-template-template-home section.intro .graph-responsive {
    display: block;
    visibility: visible;
    opacity: 1;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro .graph-responsive,
  .page-template-template-home section.intro .graph-responsive {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 50px;
  }

  .home section.intro .graph-responsive img,
  .page-template-template-home section.intro .graph-responsive img {
    max-width: 50%;
  }
}

.home section.intro .intro-header,
.page-template-template-home section.intro .intro-header {
  margin-top: 83px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro .intro-header,
  .page-template-template-home section.intro .intro-header {
    margin-top: 90px;
  }
}

.home section.intro .intro-header-title h2,
.page-template-template-home section.intro .intro-header-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  color: #006C64;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.intro .intro-header-title h2,
  .page-template-template-home section.intro .intro-header-title h2 {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1.5px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro .intro-header-title h2,
  .page-template-template-home section.intro .intro-header-title h2 {
    font-size: 14px;
  }
}

.home section.intro .intro-header-cnt,
.page-template-template-home section.intro .intro-header-cnt {
  margin-top: 25px;
}

.home section.intro .intro-header-cnt .intro-header-cnt-bold,
.page-template-template-home section.intro .intro-header-cnt .intro-header-cnt-bold {
  max-width: 650px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.intro .intro-header-cnt .intro-header-cnt-bold,
  .page-template-template-home section.intro .intro-header-cnt .intro-header-cnt-bold {
    max-width: 516px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro .intro-header-cnt .intro-header-cnt-bold,
  .page-template-template-home section.intro .intro-header-cnt .intro-header-cnt-bold {
    max-width: 336px;
  }
}

.home section.intro .intro-header-cnt .intro-header-cnt-bold p,
.page-template-template-home section.intro .intro-header-cnt .intro-header-cnt-bold p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 50px;
  color: #242423;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.intro .intro-header-cnt .intro-header-cnt-bold p,
  .page-template-template-home section.intro .intro-header-cnt .intro-header-cnt-bold p {
    font-size: 32px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro .intro-header-cnt .intro-header-cnt-bold p,
  .page-template-template-home section.intro .intro-header-cnt .intro-header-cnt-bold p {
    font-size: 20px;
    line-height: 24px;
  }
}

.home section.intro .intro-header-cnt .intro-header-sub-cnt,
.page-template-template-home section.intro .intro-header-cnt .intro-header-sub-cnt {
  margin-top: 25px;
  max-width: 585px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.intro .intro-header-cnt .intro-header-sub-cnt,
  .page-template-template-home section.intro .intro-header-cnt .intro-header-sub-cnt {
    max-width: 336px;
  }
}

.home section.intro .intro-header-cnt .intro-header-sub-cnt p,
.page-template-template-home section.intro .intro-header-cnt .intro-header-sub-cnt p {
  margin: 25px 0 50px 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.intro .intro-header-cnt .intro-header-sub-cnt p,
  .page-template-template-home section.intro .intro-header-cnt .intro-header-sub-cnt p {
    margin: 25px 0 25px 0;
  }
}

.home section.intro .intro-header-cnt .intro-header-sub-cnt a,
.page-template-template-home section.intro .intro-header-cnt .intro-header-sub-cnt a {
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
  text-transform: uppercase;
  border-bottom: none;
}

.home section.intro .intro-header-cnt .intro-header-sub-cnt a:after,
.page-template-template-home section.intro .intro-header-cnt .intro-header-sub-cnt a:after {
  position: absolute;
  content: '';
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0092C7;
}

.home section.intro .intro-header-cnt .intro-header-sub-cnt a:hover+img,
.page-template-template-home section.intro .intro-header-cnt .intro-header-sub-cnt a:hover+img {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  -webkit-transform: rotate(-90deg) translateY(5px);
       -o-transform: rotate(-90deg) translateY(5px);
          transform: rotate(-90deg) translateY(5px);
}

.home section.intro .intro-header-cnt .into-link,
.page-template-template-home section.intro .intro-header-cnt .into-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home section.intro .intro-header-cnt .into-link img,
.page-template-template-home section.intro .intro-header-cnt .into-link img {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: 15px;
}

.home section.intro.active,
.page-template-template-home section.intro.active {
  z-index: 99;
}

.home section.text-section,
.page-template-template-home section.text-section {
  width: 100%;
  height: auto;
  min-height: 80vh;
  background: #e6f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.text-section,
  .page-template-template-home section.text-section {
    min-height: 0;
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.text-section,
  .page-template-template-home section.text-section {
    display: block;
    padding: 0 16px 0 16px;
  }
}

.home section.text-section.scroll-past:before,
.page-template-template-home section.text-section.scroll-past:before {
  width: 37.66667vw;
}

.home section.text-section.scroll-past .row,
.page-template-template-home section.text-section.scroll-past .row {
  opacity: 0;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.text-section.scroll-past:before,
  .page-template-template-home section.text-section.scroll-past:before {
    width: 41.66667vw;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.text-section.scroll-past:before,
  .page-template-template-home section.text-section.scroll-past:before {
    width: 100vw;
  }

  .home section.text-section.scroll-past .row,
  .page-template-template-home section.text-section.scroll-past .row {
    opacity: 1;
  }
}

.home section.text-section .row,
.page-template-template-home section.text-section .row {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  position: relative;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  z-index: 1;
}

.home section.text-section .row .col-xs-12,
.page-template-template-home section.text-section .row .col-xs-12 {
  height: 100%;
}

.home section.text-section .row .col-xs-12 .text-container,
.page-template-template-home section.text-section .row .col-xs-12 .text-container {
  display: block;
  position: relative;
  padding-left: 40px;
  max-width: 768px;
  min-width: 768px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.text-section .row .col-xs-12 .text-container,
  .page-template-template-home section.text-section .row .col-xs-12 .text-container {
    max-width: 518px;
    min-width: 518px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.text-section .row .col-xs-12 .text-container,
  .page-template-template-home section.text-section .row .col-xs-12 .text-container {
    padding-left: 0;
    max-width: 100%;
    min-width: 100%;
  }
}

.home section.text-section .row .col-xs-12 .text-container:after,
.page-template-template-home section.text-section .row .col-xs-12 .text-container:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #f4c426;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.text-section .row .col-xs-12 .text-container:after,
  .page-template-template-home section.text-section .row .col-xs-12 .text-container:after {
    display: none;
  }
}

.home section.text-section .row .col-xs-12 .text-container .text-container-cnt p,
.page-template-template-home section.text-section .row .col-xs-12 .text-container .text-container-cnt p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 38px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.text-section .row .col-xs-12 .text-container .text-container-cnt p,
  .page-template-template-home section.text-section .row .col-xs-12 .text-container .text-container-cnt p {
    font-size: 16px;
    line-height: 26px;
  }
}

.home section.text-section .row .col-xs-12 .text-container .text-container-cnt p span.bold,
.page-template-template-home section.text-section .row .col-xs-12 .text-container .text-container-cnt p span.bold {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 38px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.text-section .row .col-xs-12 .text-container .text-container-cnt p span.bold,
  .page-template-template-home section.text-section .row .col-xs-12 .text-container .text-container-cnt p span.bold {
    font-size: 16px;
    line-height: 26px;
  }
}

.home section.text-section .row .col-xs-12 .text-container .text-container-cnt p span.bold.green,
.page-template-template-home section.text-section .row .col-xs-12 .text-container .text-container-cnt p span.bold.green {
  color: #006C64;
}

.home section.text-section.active,
.page-template-template-home section.text-section.active {
  z-index: 99;
}

.home section.graph-section.no-title,
.page-template-template-home section.graph-section.no-title {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 0;
  overflow: hidden;
  z-index: inherit;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.graph-section.no-title,
  .page-template-template-home section.graph-section.no-title {
    position: relative;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.graph-section.no-title,
  .page-template-template-home section.graph-section.no-title {
    min-height: 0;
    padding: 160px 0;
    overflow: visible;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section.no-title,
  .page-template-template-home section.graph-section.no-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}

.home section.graph-section.no-title .text-cnt,
.page-template-template-home section.graph-section.no-title .text-cnt {
  height: 100%;
  min-height: 100vh;
  padding: 0px 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e6f5f5;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.graph-section.no-title .text-cnt,
  .page-template-template-home section.graph-section.no-title .text-cnt {
    padding: 10px 36px 10px 46px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.graph-section.no-title .text-cnt,
  .page-template-template-home section.graph-section.no-title .text-cnt {
    min-height: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section.no-title .text-cnt,
  .page-template-template-home section.graph-section.no-title .text-cnt {
    padding: 0 23px;
    background: #fff;
    height: auto !important;
  }
}

.home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy,
.page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy {
  max-width: 400px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy,
  .page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy {
    max-width: 217px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy,
  .page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy {
    max-width: 100%;
  }
}

.home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p,
.page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 38px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p,
  .page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p {
    font-size: 16px;
    line-height: 26px;
  }
}

.home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p span.bold,
.page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p span.bold {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 38px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p span.bold,
  .page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p span.bold {
    font-size: 16px;
    line-height: 26px;
  }
}

.home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p span.bold.green,
.page-template-template-home section.graph-section.no-title .text-cnt .graph-text .graph-text-copy p span.bold.green {
  color: #006C64;
}

.home section.graph-section.no-title.active,
.page-template-template-home section.graph-section.no-title.active {
  z-index: 99;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.graph-section.no-title.active,
  .page-template-template-home section.graph-section.no-title.active {
    opacity: 1 !important;
  }
}

.home section.graph-section,
.page-template-template-home section.graph-section {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 0;
  -webkit-transition: 1300ms 0ms all;
  -o-transition: 1300ms 0ms all;
  transition: 1300ms 0ms all;
  overflow: hidden;
  z-index: inherit;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.graph-section,
  .page-template-template-home section.graph-section {
    position: relative;
    background: #e6f5f5;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.graph-section,
  .page-template-template-home section.graph-section {
    min-height: 0;
    overflow: visible;
    padding: 160px 0;
    z-index: auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section,
  .page-template-template-home section.graph-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    position: static;
  }
}

.home section.graph-section .text-cnt,
.page-template-template-home section.graph-section .text-cnt {
  height: 100%;
  min-height: 100vh;
  width: 100%;
  padding: 0px 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e6f5f5;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.graph-section .text-cnt,
  .page-template-template-home section.graph-section .text-cnt {
    padding: 10px 36px 10px 46px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.graph-section .text-cnt,
  .page-template-template-home section.graph-section .text-cnt {
    min-height: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section .text-cnt,
  .page-template-template-home section.graph-section .text-cnt {
    padding: 50px 23px 0 23px;
    background: #fff;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.home section.graph-section .text-cnt .graph-text .graph-text-title,
.page-template-template-home section.graph-section .text-cnt .graph-text .graph-text-title {
  margin-bottom: 20px;
}

.home section.graph-section .text-cnt .graph-text .graph-text-title h2,
.page-template-template-home section.graph-section .text-cnt .graph-text .graph-text-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.graph-section .text-cnt .graph-text .graph-text-title h2,
  .page-template-template-home section.graph-section .text-cnt .graph-text .graph-text-title h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.home section.graph-section .text-cnt .graph-text .graph-text-copy p,
.page-template-template-home section.graph-section .text-cnt .graph-text .graph-text-copy p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

.home section.graph-section .text-cnt .graph-text .graph-text-copy p span.bold,
.page-template-template-home section.graph-section .text-cnt .graph-text .graph-text-copy p span.bold {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

.home section.graph-section .text-cnt .graph-text .graph-text-copy p span.bold.green,
.page-template-template-home section.graph-section .text-cnt .graph-text .graph-text-copy p span.bold.green {
  color: #006C64;
}

.home section.graph-section.active,
.page-template-template-home section.graph-section.active {
  opacity: 1;
}

.home section.graph-section.active .scroll-indicator,
.home section.graph-section.active .row>.col-xs-5,
.home section.graph-section.active .col-xs-7,
.page-template-template-home section.graph-section.active .scroll-indicator,
.page-template-template-home section.graph-section.active .row>.col-xs-5,
.page-template-template-home section.graph-section.active .col-xs-7 {
  -webkit-transform: translateY(0) !important;
       -o-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
}

.home section.graph-section.active .skip-button,
.page-template-template-home section.graph-section.active .skip-button {
  opacity: 1 !important;
}

.home section.graph-section.active,
.page-template-template-home section.graph-section.active {
  z-index: 99;
}

.home section.ending,
.page-template-template-home section.ending {
  width: 100%;
  height: auto;
  min-height: 100vh;
  z-index: 0;
  padding: 0 0 0 150px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.ending,
  .page-template-template-home section.ending {
    position: relative;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending,
  .page-template-template-home section.ending {
    min-height: 0;
    padding: 24px;
  }
}

.home section.ending #slide16-background,
.page-template-template-home section.ending #slide16-background {
  width: 100%;
  height: 100%;
  background: #e6f5f5;
  position: absolute;
  top: 0;
  left: 0;
}

.home section.ending .row,
.page-template-template-home section.ending .row {
  min-height: 100vh;
  height: 100%;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row,
  .page-template-template-home section.ending .row {
    min-height: 0;
  }
}

.home section.ending .row .col-xs-5,
.page-template-template-home section.ending .row .col-xs-5 {
  height: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 37.66667%;
      flex-basis: 37.66667%;
  max-width: 37.66667%;
  opacity: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5,
  .page-template-template-home section.ending .row .col-xs-5 {
    padding: 0px 36px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5,
  .page-template-template-home section.ending .row .col-xs-5 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5,
  .page-template-template-home section.ending .row .col-xs-5 {
    min-height: 0;
    padding: 20px 23px;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.home section.ending .row .col-xs-5 .ending-header,
.page-template-template-home section.ending .row .col-xs-5 .ending-header {
  margin-bottom: 45px;
  max-width: 448px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5 .ending-header,
  .page-template-template-home section.ending .row .col-xs-5 .ending-header {
    margin-bottom: 24px;
  }
}

.home section.ending .row .col-xs-5 .ending-header h2,
.page-template-template-home section.ending .row .col-xs-5 .ending-header h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  line-height: 46px;
  color: #242423;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5 .ending-header h2,
  .page-template-template-home section.ending .row .col-xs-5 .ending-header h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5 .ending-header h2,
  .page-template-template-home section.ending .row .col-xs-5 .ending-header h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.home section.ending .row .col-xs-5 .ending-content a.btn,
.page-template-template-home section.ending .row .col-xs-5 .ending-content a.btn {
  margin-bottom: 40px;
}

.home section.ending .row .col-xs-5 .ending-content a.btn:hover,
.page-template-template-home section.ending .row .col-xs-5 .ending-content a.btn:hover {
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5 .ending-content a.btn,
  .page-template-template-home section.ending .row .col-xs-5 .ending-content a.btn {
    margin-bottom: 16px;
  }
}

.home section.ending .row .col-xs-5 .ending-content ul,
.page-template-template-home section.ending .row .col-xs-5 .ending-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5 .ending-content ul,
  .page-template-template-home section.ending .row .col-xs-5 .ending-content ul {
    padding-left: 0;
  }
}

.home section.ending .row .col-xs-5 .ending-content ul li,
.page-template-template-home section.ending .row .col-xs-5 .ending-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.home section.ending .row .col-xs-5 .ending-content ul li:last-child,
.page-template-template-home section.ending .row .col-xs-5 .ending-content ul li:last-child {
  margin-bottom: 0;
}

.home section.ending .row .col-xs-5 .ending-content ul li a,
.page-template-template-home section.ending .row .col-xs-5 .ending-content ul li a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #242423;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row .col-xs-5 .ending-content ul li a,
  .page-template-template-home section.ending .row .col-xs-5 .ending-content ul li a {
    font-size: 14px;
  }
}

.home section.ending .row .col-xs-5 .ending-content ul li a:hover+img,
.page-template-template-home section.ending .row .col-xs-5 .ending-content ul li a:hover+img {
  -webkit-transition: 250ms all;
  -o-transition: 250ms all;
  transition: 250ms all;
  -webkit-transform: rotate(-90deg) translatey(5px);
       -o-transform: rotate(-90deg) translatey(5px);
          transform: rotate(-90deg) translatey(5px);
}

.home section.ending .row .col-xs-5 .ending-content ul li img,
.page-template-template-home section.ending .row .col-xs-5 .ending-content ul li img {
  margin-left: 15px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.home section.ending .row .col-xs-7,
.page-template-template-home section.ending .row .col-xs-7 {
  padding: 0 64px;
  -ms-flex-preferred-size: 61.66667%;
      flex-basis: 61.66667%;
  max-width: 61.66667%;
  opacity: 1;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.ending .row .col-xs-7,
  .page-template-template-home section.ending .row .col-xs-7 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .row .col-xs-7,
  .page-template-template-home section.ending .row .col-xs-7 {
    display: none;
  }
}

.home section.ending .row .col-xs-7 .graph-container,
.page-template-template-home section.ending .row .col-xs-7 .graph-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.ending .row .col-xs-7 .graph-container,
  .page-template-template-home section.ending .row .col-xs-7 .graph-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.home section.ending .row .col-xs-7 .graph-container img,
.page-template-template-home section.ending .row .col-xs-7 .graph-container img {
  max-width: 450px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.ending .row .col-xs-7 .graph-container img,
  .page-template-template-home section.ending .row .col-xs-7 .graph-container img {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home section.ending .row .col-xs-7 .graph-container img,
  .page-template-template-home section.ending .row .col-xs-7 .graph-container img {
    max-width: 350px;
  }
}

.home section.ending .scroll-indicator,
.page-template-template-home section.ending .scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 1;
  z-index: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home section.ending .scroll-indicator,
  .page-template-template-home section.ending .scroll-indicator {
    left: 5px;
    z-index: 99999;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home section.ending .scroll-indicator,
  .page-template-template-home section.ending .scroll-indicator {
    display: none;
  }
}

.home section.ending .scroll-indicator a,
.page-template-template-home section.ending .scroll-indicator a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  border-bottom: none;
  -ms-flex-item-align: center;
      align-self: center;
  cursor: none;
  pointer-events: none;
}

.home section.ending .scroll-indicator img,
.page-template-template-home section.ending .scroll-indicator img {
  margin-top: 10px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.home section.ending.active,
.page-template-template-home section.ending.active {
  z-index: 99;
}

.home .desktop-graph-animation,
.page-template-template-home .desktop-graph-animation {
  display: none;
  overflow: visible;
  margin: 0;
  height: 100vh;
  -webkit-perspective: 65em;
          perspective: 65em;
  -webkit-perspective-origin: 50% calc(50% - 43em);
          perspective-origin: 50% calc(50% - 43em);
}

.home .desktop-graph-animation.show,
.page-template-template-home .desktop-graph-animation.show {
  display: block;
}

@media only screen and (max-width: 1190px) and (min-width: 1px) {
  .home .desktop-graph-animation,
  .page-template-template-home .desktop-graph-animation {
    display: none !important;
  }
}

.home .desktop-graph-animation .graph-animation,
.page-template-template-home .desktop-graph-animation .graph-animation {
  height: auto;
  margin: -50px 0 0 0px;
  height: 100%;
  position: inherit;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .home .desktop-graph-animation .graph-animation,
  .page-template-template-home .desktop-graph-animation .graph-animation {
    display: none;
  }
}

.home .desktop-graph-animation .graph-animation div,
.page-template-template-home .desktop-graph-animation .graph-animation div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.home .desktop-graph-animation .graph-animation .assembly,
.page-template-template-home .desktop-graph-animation .graph-animation .assembly {
  -webkit-transform: rotateY(-90deg) translate3d(0, 0, 5em);
          transform: rotateY(-90deg) translate3d(0, 0, 5em);
  -webkit-animation: move 4s linear forwards;
       -o-animation: move 4s linear forwards;
          animation: move 4s linear forwards;
}

.home .desktop-graph-animation .graph-animation .assembly,
.page-template-template-home .desktop-graph-animation .graph-animation .assembly {
  -webkit-transform: rotateY(45deg) translate3d(0, 5em, 0);
          transform: rotateY(45deg) translate3d(0, 5em, 0);
}

.home .desktop-graph-animation .graph-animation .bar,
.page-template-template-home .desktop-graph-animation .graph-animation .bar {
  -webkit-transform-origin: 0 2.5em 0;
       -o-transform-origin: 0 2.5em 0;
          transform-origin: 0 2.5em 0;
  -webkit-animation: grow 8s cubic-bezier(0.19, 1, 0.23, 1) forwards;
       -o-animation: grow 8s cubic-bezier(0.19, 1, 0.23, 1) forwards;
          animation: grow 8s cubic-bezier(0.19, 1, 0.23, 1) forwards;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(1) {
  margin-left: -15em;
  -webkit-transform: scaleY(1);
       -o-transform: scaleY(1);
          transform: scaleY(1);
  color: #7ed6be;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(2) {
  margin-left: -7.5em;
  -webkit-transform: scaleY(2);
       -o-transform: scaleY(2);
          transform: scaleY(2);
  color: #ecf081;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(3) {
  margin-left: 0em;
  -webkit-transform: scaleY(2.3);
       -o-transform: scaleY(2.3);
          transform: scaleY(2.3);
  color: #ffbe40;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(4) {
  margin-left: 7.5em;
  -webkit-transform: scaleY(2.5);
       -o-transform: scaleY(2.5);
          transform: scaleY(2.5);
  color: #ef746f;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(5),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(5) {
  margin-left: 15em;
  -webkit-transform: scaleY(2.9);
       -o-transform: scaleY(2.9);
          transform: scaleY(2.9);
  color: #bc8696;
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@-o-keyframes grow {
  0% {
    -o-transform: scaleY(0);
       transform: scaleY(0);
  }
}

@keyframes grow {
  0% {
    -webkit-transform: scaleY(0);
         -o-transform: scaleY(0);
            transform: scaleY(0);
  }
}

.home .desktop-graph-animation .graph-animation .face,
.page-template-template-home .desktop-graph-animation .graph-animation .face {
  margin: -2.5em;
  width: 5em;
  height: 5em;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(82%, #00bce4), color-stop(82%, #009e89));
  background: -webkit-linear-gradient(bottom, #00bce4 82%, #009e89 82%);
  background: -o-linear-gradient(bottom, #00bce4 82%, #009e89 82%);
  background: linear-gradient(0deg, #00bce4 82%, #009e89 82%);
}

.home .desktop-graph-animation .graph-animation .face:nth-child(n+2):before,
.page-template-template-home .desktop-graph-animation .graph-animation .face:nth-child(n+2):before {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: inherit;
  opacity: .0;
  background: inherit;
  content: '';
}

.home .desktop-graph-animation .graph-animation .face:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .face:nth-child(1) {
  -webkit-transform: rotate3d(1, 0, 0, 90deg) translateZ(2.5em);
          transform: rotate3d(1, 0, 0, 90deg) translateZ(2.5em);
}

.home .desktop-graph-animation .graph-animation .face:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .face:nth-child(2) {
  -webkit-transform: rotate3d(0, 1, 0, -90deg) translateZ(2.5em);
          transform: rotate3d(0, 1, 0, -90deg) translateZ(2.5em);
}

.home .desktop-graph-animation .graph-animation .face:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .face:nth-child(3) {
  -webkit-transform: rotate3d(0, 1, 0, 0deg) translateZ(2.5em);
          transform: rotate3d(0, 1, 0, 0deg) translateZ(2.5em);
}

.home .desktop-graph-animation .graph-animation .face:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .face:nth-child(4) {
  -webkit-transform: rotate3d(0, 1, 0, 90deg) translateZ(2.5em);
          transform: rotate3d(0, 1, 0, 90deg) translateZ(2.5em);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(1) {
  -webkit-transform: scaleY(2.5) scaleX(1);
       -o-transform: scaleY(2.5) scaleX(1);
          transform: scaleY(2.5) scaleX(1);
  margin-left: -14rem;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(2) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #0077ae), color-stop(80%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 80%, #006b64 80%);
  background: -o-linear-gradient(bottom, #0077ae 80%, #006b64 80%);
  background: linear-gradient(0deg, #0077ae 80%, #006b64 80%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #04bce4), color-stop(80%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 80%, #01958f 80%);
  background: -o-linear-gradient(bottom, #04bce4 80%, #01958f 80%);
  background: linear-gradient(0deg, #04bce4 80%, #01958f 80%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(1) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #0077ae), color-stop(80%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 80%, #006b64 80%);
  background: -o-linear-gradient(bottom, #0077ae 80%, #006b64 80%);
  background: linear-gradient(0deg, #0077ae 80%, #006b64 80%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(2) {
  -webkit-transform: scaleY(3.9) scaleX(1);
       -o-transform: scaleY(3.9) scaleX(1);
          transform: scaleY(3.9) scaleX(1);
  margin-left: -7.5rem;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(2) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(67%, #0077ae), color-stop(67%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 67%, #006b64 67%);
  background: -o-linear-gradient(bottom, #0077ae 67%, #006b64 67%);
  background: linear-gradient(0deg, #0077ae 67%, #006b64 67%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(67%, #04bce4), color-stop(67%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 67%, #01958f 67%);
  background: -o-linear-gradient(bottom, #04bce4 67%, #01958f 67%);
  background: linear-gradient(0deg, #04bce4 67%, #01958f 67%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(2) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(67%, #0077ae), color-stop(67%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 67%, #006b64 67%);
  background: -o-linear-gradient(bottom, #0077ae 67%, #006b64 67%);
  background: linear-gradient(0deg, #0077ae 67%, #006b64 67%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(3) {
  -webkit-transform: scaleY(2.9) scaleX(1);
       -o-transform: scaleY(2.9) scaleX(1);
          transform: scaleY(2.9) scaleX(1);
  margin-left: -0.7rem;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(2) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(75%, #0077ae), color-stop(75%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 75%, #006b64 75%);
  background: -o-linear-gradient(bottom, #0077ae 75%, #006b64 75%);
  background: linear-gradient(0deg, #0077ae 75%, #006b64 75%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(75%, #04bce4), color-stop(75%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 75%, #01958f 75%);
  background: -o-linear-gradient(bottom, #04bce4 75%, #01958f 75%);
  background: linear-gradient(0deg, #04bce4 75%, #01958f 75%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(3) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(75%, #0077ae), color-stop(75%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 75%, #006b64 75%);
  background: -o-linear-gradient(bottom, #0077ae 75%, #006b64 75%);
  background: linear-gradient(0deg, #0077ae 75%, #006b64 75%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(4) {
  -webkit-transform: scaleY(3) scaleX(1);
       -o-transform: scaleY(3) scaleX(1);
          transform: scaleY(3) scaleX(1);
  margin-left: 6.5rem;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(2) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #0077ae), color-stop(65%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: -o-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: linear-gradient(0deg, #0077ae 65%, #006b64 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #04bce4), color-stop(65%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 65%, #01958f 65%);
  background: -o-linear-gradient(bottom, #04bce4 65%, #01958f 65%);
  background: linear-gradient(0deg, #04bce4 65%, #01958f 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(4) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #0077ae), color-stop(65%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: -o-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: linear-gradient(0deg, #0077ae 65%, #006b64 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(5),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(5) {
  -webkit-transform: scaleY(3.6) scaleX(1);
       -o-transform: scaleY(3.6) scaleX(1);
          transform: scaleY(3.6) scaleX(1);
  margin-left: 13.5rem;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(1),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(2),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(2) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #0077ae), color-stop(65%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: -o-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: linear-gradient(0deg, #0077ae 65%, #006b64 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(3),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #04bce4), color-stop(65%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 65%, #01958f 65%);
  background: -o-linear-gradient(bottom, #04bce4 65%, #01958f 65%);
  background: linear-gradient(0deg, #04bce4 65%, #01958f 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(4),
.page-template-template-home .desktop-graph-animation .graph-animation .bar:nth-child(5) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #0077ae), color-stop(65%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: -o-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: linear-gradient(0deg, #0077ae 65%, #006b64 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.home footer,
.page-template-template-home footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999999999;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home footer,
  .page-template-template-home footer {
    position: static;
  }
}

.home #graph-sections,
.page-template-template-home #graph-sections {
  position: relative;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home #graph-sections,
  .page-template-template-home #graph-sections {
    z-index: 100;
  }
}

.home #graph-sections.start:before,
.page-template-template-home #graph-sections.start:before {
  width: 37.66667vw;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home #graph-sections.start:before,
  .page-template-template-home #graph-sections.start:before {
    width: 41.66667vw;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home #graph-sections.start:before,
  .page-template-template-home #graph-sections.start:before {
    display: none;
  }
}

.home #graph-sections .row,
.page-template-template-home #graph-sections .row {
  margin: 0;
  background: #fff;
}

.home #graph-sections .row .col-xs-5,
.page-template-template-home #graph-sections .row .col-xs-5 {
  display: block;
  width: 100%;
  max-width: none;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home #graph-sections .row .col-xs-5,
  .page-template-template-home #graph-sections .row .col-xs-5 {
    -ms-flex-preferred-size: 37.66667%;
        flex-basis: 37.66667%;
    max-width: 37.66667%;
    padding: 0;
  }
}

.home #graph-sections .row .col-xs-5 .mobile-figure,
.page-template-template-home #graph-sections .row .col-xs-5 .mobile-figure {
  width: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .home #graph-sections .row .col-xs-5,
  .page-template-template-home #graph-sections .row .col-xs-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home #graph-sections .row .col-xs-5,
  .page-template-template-home #graph-sections .row .col-xs-5 {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  .home #graph-sections .row .col-xs-5 .mobile-figure,
  .page-template-template-home #graph-sections .row .col-xs-5 .mobile-figure {
    opacity: 1;
    position: static;
    margin: 16px;
    z-index: 0;
  }

  .home #graph-sections .row .col-xs-5 .mobile-figure svg,
  .page-template-template-home #graph-sections .row .col-xs-5 .mobile-figure svg {
    width: 100%;
    height: auto;
  }

  .home #graph-sections .row .col-xs-5 .mobile-figure .root-svg-group,
  .page-template-template-home #graph-sections .row .col-xs-5 .mobile-figure .root-svg-group {
    opacity: 1 !important;
  }
}

.home #graph-sections .row .col-xs-7,
.page-template-template-home #graph-sections .row .col-xs-7 {
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .home #graph-sections .row .col-xs-7,
  .page-template-template-home #graph-sections .row .col-xs-7 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100vw;
    z-index: -1;
  }
}

.home #graph-sections #graph-container,
.page-template-template-home #graph-sections #graph-container {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: sticky;
  top: 32px;
  right: 0;
}

.home #graph-sections #graph-container svg,
.page-template-template-home #graph-sections #graph-container svg {
  width: auto;
  height: auto;
  max-height: 95%;
}

.home #graph-sections #graph-container svg .root-svg-group,
.page-template-template-home #graph-sections #graph-container svg .root-svg-group {
  display: block;
}

.home #graph-sections #graph-container svg text,
.page-template-template-home #graph-sections #graph-container svg text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #5A5D5E;
}

.home #graph-sections #graph-container svg text.data-label,
.page-template-template-home #graph-sections #graph-container svg text.data-label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #FFFFFF;
}

.home #graph-sections #graph-container svg text.data-label-small,
.page-template-template-home #graph-sections #graph-container svg text.data-label-small {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #565656;
}

.home #graph-sections #graph-container svg text.data-label-text,
.page-template-template-home #graph-sections #graph-container svg text.data-label-text {
  font-size: 20px;
  color: #FFFFFF;
}

.home #graph-sections #graph-container svg text.data-label-text-small,
.page-template-template-home #graph-sections #graph-container svg text.data-label-text-small {
  font-size: 18px;
  color: #565656;
}

.home #graph-sections #graph-container svg text.line-label,
.page-template-template-home #graph-sections #graph-container svg text.line-label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
}

.home #graph-sections #graph-container svg text.bar-data-label,
.page-template-template-home #graph-sections #graph-container svg text.bar-data-label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
}

.scroll-indicator {
  position: fixed;
  bottom: 55px;
  left: 23px;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 1;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  z-index: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .scroll-indicator {
    left: 5px;
    z-index: 99999;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-indicator a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  border-bottom: none;
  -ms-flex-item-align: center;
      align-self: center;
  cursor: none;
  pointer-events: none;
}

.scroll-indicator img {
  margin-top: 10px;
}

.scroll-indicator.hide {
  opacity: 0;
  z-index: -1 !important;
}

.scroll-indicator.restart {
  bottom: 45px !important;
  pointer-events: all;
  cursor: pointer;
  z-index: 99999999;
}

.scroll-indicator.restart img {
  margin: 0 0 7px 0;
  -webkit-transform: rotate(0) !important;
       -o-transform: rotate(0) !important;
          transform: rotate(0) !important;
}

.skip-button {
  position: fixed;
  bottom: 55px;
  right: 23px;
  z-index: 99;
  opacity: 1;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .skip-button {
    display: none;
  }
}

.skip-button a {
  background: none;
  border: 2px solid #909699;
  border-radius: 4px;
  padding: 1px 13px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

.skip-button.hide {
  opacity: 0;
}

.footnote,
.data-definition {
  position: relative;
  top: -7px;
  left: 0px;
  text-indent: 0px;
  height: 16px;
  width: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #006FAB;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none !important;
  padding-top: 3.5px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  line-height: 20px;
  color: #fff !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote,
  .data-definition {
    top: -3px;
  }
}

.data-definition {
  background: #00806F;
  border-color: #00806F;
}

.footnote-unique-container,
.data-definition-unique-container {
  display: inline;
  pointer-events: all;
}

.data-definition-container {
  padding: 20px 20px 32px 56px;
}

.footnote-container,
.data-definition-container {
  display: block;
  background: #F0F7FC;
  height: auto;
  width: 390px;
  position: fixed;
  z-index: 9999;
  top: 50%;
  right: 0;
  border: 1px solid #d8d8d8;
  border-radius: 2px 0 0 2px;
  -webkit-transition: 300ms ease-in all;
  -o-transition: 300ms ease-in all;
  transition: 300ms ease-in all;
  -webkit-transform: translateX(150%) translateY(-50%);
       -o-transform: translateX(150%) translateY(-50%);
          transform: translateX(150%) translateY(-50%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container,
  .data-definition-container {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: translateX(150%) translateY(-50%);
         -o-transform: translateX(150%) translateY(-50%);
            transform: translateX(150%) translateY(-50%);
  }
}

.footnote-container a:not(.btn),
.data-definition-container a:not(.btn) {
  font-weight: bold !important;
  border-bottom: 1px solid #000 !important;
  padding-bottom: 2px !important;
}

.footnote-container .footnote-content,
.data-definition-container .footnote-content {
  padding: 20px 0px 32px 56px;
}

.footnote-container .footnote-text,
.data-definition-container .footnote-text {
  margin-top: 30px;
  max-width: 98%;
}

.footnote-container .footnote-text a,
.data-definition-container .footnote-text a {
  text-decoration: none !important;
  text-transform: none !important;
}

.footnote-container .footnote-content,
.footnote-container .data-definition-content,
.data-definition-container .footnote-content,
.data-definition-container .data-definition-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.footnote-container .footnote-content p,
.footnote-container .data-definition-content p,
.data-definition-container .footnote-content p,
.data-definition-container .data-definition-content p {
  max-width: 290px;
  margin-top: 20px;
  font-size: 15px !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content p,
  .footnote-container .data-definition-content p,
  .data-definition-container .footnote-content p,
  .data-definition-container .data-definition-content p {
    margin-top: 30px;
    max-width: 90% !important;
  }
}

.footnote-container .footnote-content a,
.footnote-container .data-definition-content a,
.data-definition-container .footnote-content a,
.data-definition-container .data-definition-content a {
  word-break: break-word;
  margin-top: 40px;
  font-size: 13px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none !important;
}

.footnote-container .footnote-content a.close:after,
.footnote-container .data-definition-content a.close:after,
.data-definition-container .footnote-content a.close:after,
.data-definition-container .data-definition-content a.close:after {
  right: -22px;
}

.footnote-container .footnote-content a:hover:after,
.footnote-container .data-definition-content a:hover:after,
.data-definition-container .footnote-content a:hover:after,
.data-definition-container .data-definition-content a:hover:after {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  right: -30px;
}

.footnote-container .footnote-content a.btn,
.footnote-container .data-definition-content a.btn,
.data-definition-container .footnote-content a.btn,
.data-definition-container .data-definition-content a.btn {
  width: 100%;
  max-width: 220px;
  -webkit-transform: translateX(-5%);
       -o-transform: translateX(-5%);
          transform: translateX(-5%);
}

.footnote-container .footnote-content a.btn-arrow,
.footnote-container .data-definition-content a.btn-arrow,
.data-definition-container .footnote-content a.btn-arrow,
.data-definition-container .data-definition-content a.btn-arrow {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
}

.footnote-container .footnote-content a.btn-arrow:after,
.footnote-container .data-definition-content a.btn-arrow:after,
.data-definition-container .footnote-content a.btn-arrow:after,
.data-definition-container .data-definition-content a.btn-arrow:after {
  height: 10px;
  width: 10px;
  right: -20px;
}

.footnote-container .footnote-content a.btn-arrow:hover:after,
.footnote-container .data-definition-content a.btn-arrow:hover:after,
.data-definition-container .footnote-content a.btn-arrow:hover:after,
.data-definition-container .data-definition-content a.btn-arrow:hover:after {
  right: -25px;
}

.footnote-container .footnote-content .data-definition-header,
.footnote-container .data-definition-content .data-definition-header,
.data-definition-container .footnote-content .data-definition-header,
.data-definition-container .data-definition-content .data-definition-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content .data-definition-header,
  .footnote-container .data-definition-content .data-definition-header,
  .data-definition-container .footnote-content .data-definition-header,
  .data-definition-container .data-definition-content .data-definition-header {
    margin-top: 30px;
  }
}

.footnote-container .footnote-content .data-definition-header .data-definition-icon,
.footnote-container .data-definition-content .data-definition-header .data-definition-icon,
.data-definition-container .footnote-content .data-definition-header .data-definition-icon,
.data-definition-container .data-definition-content .data-definition-header .data-definition-icon {
  position: absolute;
  top: 24px;
  left: -25px;
  height: 16px;
  width: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00806F;
  border-radius: 50%;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 10px !important;
  line-height: 20px !important;
  color: #fff;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content .data-definition-header .data-definition-icon,
  .footnote-container .data-definition-content .data-definition-header .data-definition-icon,
  .data-definition-container .footnote-content .data-definition-header .data-definition-icon,
  .data-definition-container .data-definition-content .data-definition-header .data-definition-icon {
    top: 0;
  }
}

.footnote-container .footnote-content .data-definition-header .data-definition-word,
.footnote-container .data-definition-content .data-definition-header .data-definition-word,
.data-definition-container .footnote-content .data-definition-header .data-definition-word,
.data-definition-container .data-definition-content .data-definition-header .data-definition-word {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-content .data-definition-header .data-definition-word,
  .footnote-container .data-definition-content .data-definition-header .data-definition-word,
  .data-definition-container .footnote-content .data-definition-header .data-definition-word,
  .data-definition-container .data-definition-content .data-definition-header .data-definition-word {
    max-width: 90%;
  }
}

.footnote-container .footnote-icon,
.data-definition-container .footnote-icon {
  position: absolute;
  top: 53px;
  left: 25px;
  height: 16px;
  width: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #006FAB;
  border-radius: 50%;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 10px !important;
  line-height: 20px !important;
  color: #fff;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container .footnote-icon,
  .data-definition-container .footnote-icon {
    left: 15px;
  }
}

.footnote-container.footnote-show,
.footnote-container.data-definition-show,
.data-definition-container.footnote-show,
.data-definition-container.data-definition-show {
  -webkit-transform: translateY(-50%) translateX(0%);
       -o-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.footnote-show,
  .footnote-container.data-definition-show,
  .data-definition-container.footnote-show,
  .data-definition-container.data-definition-show {
    max-width: 100%;
    top: initial;
    bottom: 0;
    right: 50%;
    width: 100%;
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.footnote-container.footnote-show .footnote-content,
.footnote-container.data-definition-show .footnote-content,
.data-definition-container.footnote-show .footnote-content,
.data-definition-container.data-definition-show .footnote-content {
  max-width: 390px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.footnote-show .footnote-content,
  .footnote-container.data-definition-show .footnote-content,
  .data-definition-container.footnote-show .footnote-content,
  .data-definition-container.data-definition-show .footnote-content {
    max-width: 100%;
    padding-left: 40px;
  }
}

.footnote-container.footnote-show .footnote-content a.btn,
.footnote-container.data-definition-show .footnote-content a.btn,
.data-definition-container.footnote-show .footnote-content a.btn,
.data-definition-container.data-definition-show .footnote-content a.btn {
  margin: 30px auto 0 auto;
}

.footnote-container.footnote-show.footnote-animate,
.footnote-container.footnote-animate.data-definition-show,
.data-definition-container.footnote-show.footnote-animate,
.data-definition-container.footnote-animate.data-definition-show {
  -webkit-transform: translateY(-50%) translateX(0%);
       -o-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.footnote-show.footnote-animate,
  .footnote-container.footnote-animate.data-definition-show,
  .data-definition-container.footnote-show.footnote-animate,
  .data-definition-container.footnote-animate.data-definition-show {
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
  }
}

.footnote-container.data-definition-show,
.data-definition-container.data-definition-show {
  background: #EBFAF3;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.data-definition-show,
  .data-definition-container.data-definition-show {
    padding-right: 0;
    padding-left: 40px;
    top: initial;
    bottom: 0;
    right: 50%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
  }
}

@supports (-webkit-touch-callout: none) {
@media only screen and (max-width: 767px) and (min-width: 1px) {
    .footnote-container.data-definition-show,
    .data-definition-container.data-definition-show {
      padding-bottom: 10px;
    }
}
}

.footnote-container.data-definition-show .data-definition-content p,
.data-definition-container.data-definition-show .data-definition-content p {
  max-width: 290px;
  margin-top: 5px;
  font-size: 15px !important;
}

.footnote-container.data-definition-show .data-definition-content p a,
.data-definition-container.data-definition-show .data-definition-content p a {
  text-decoration: none !important;
  text-transform: none !important;
}

.footnote-container.data-definition-show .data-definition-content a.btn,
.data-definition-container.data-definition-show .data-definition-content a.btn {
  width: 113%;
  max-width: 113%;
  -webkit-transform: translateX(-10%);
       -o-transform: translateX(-10%);
          transform: translateX(-10%);
  white-space: nowrap;
}

.footnote-container.data-definition-show.data-definition-animate,
.data-definition-container.data-definition-show.data-definition-animate {
  -webkit-transform: translateY(-50%) translateX(0%);
       -o-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .footnote-container.data-definition-show.data-definition-animate,
  .data-definition-container.data-definition-show.data-definition-animate {
    -webkit-transform: translateY(0%) translateX(50%);
         -o-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
  }
}

span.open {
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  color: #242423;
  -webkit-font-smoothing: antialiased;
}

span.data-definition-word {
  font-weight: 500 !important;
}

.report-modal-close {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  background-image: url(../images/close-icon-gray.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.data-definition-content .report-modal-close {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0px;
  background-image: url(../images/close-icon-gray.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.report-modal-overlay {
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: transparent;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .report-modal-overlay {
    display: block;
  }
}

.report-modal-overlay.open {
  -webkit-transform: translateX(0%);
       -o-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 0.8;
  background: transparent;
  pointer-events: all;
}

.page-template-template-about section {
  margin-top: 60px;
  padding-left: 250px;
  padding-right: 350px;
  background: #fff;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-about section {
    margin-top: 50px;
    padding: 0 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about section {
    margin-top: 25px;
    padding: 0 16px;
  }
}

.page-template-template-about .row+.row {
  margin-top: 87px;
}

.page-template-template-about .about-text-block img {
  max-width: 150px;
}

.page-template-template-about .about-text-block p {
  margin-top: 36px;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-text-block p {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-text-block p {
    font-size: 16px;
    line-height: 24px;
  }
}

.page-template-template-about .about-text-block p strong {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

.page-template-template-about .about-text-block p strong a {
  color: #006FAB;
  border-bottom: 2px solid #006FAB;
}

.page-template-template-about .about-text-block .btn {
  margin-top: 35px;
}

.page-template-template-about .about-text-block:nth-of-type(2) {
  margin-top: 87px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-text-block:nth-of-type(2) {
    margin-top: 50px;
  }
}

.page-template-template-about .accordion-container {
  margin: 60px 0;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-about .accordion-container {
    margin: 50px 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .accordion-container {
    margin: 40px 0;
  }
}

.page-template-template-about .accordion-slide-content p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .accordion-slide-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

.page-template-template-about .accordion-slide-content ul {
  list-style: none;
}

.page-template-template-about .accordion-slide-content ul li {
  position: relative;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  max-width: 600px;
  margin: 25px auto 25px auto;
  font-size: 18px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .accordion-slide-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
}

.page-template-template-about .accordion-slide-content ul li .hexagon {
  position: absolute;
  top: 7px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #0092C7;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .accordion-slide-content ul li .hexagon {
    top: 4px;
  }
}

.page-template-template-about .accordion-slide-content ul li .hexagon:before,
.page-template-template-about .accordion-slide-content ul li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.page-template-template-about .accordion-slide-content ul li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.page-template-template-about .accordion-slide-content ul li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #0092C7;
}

.page-template-template-about .about-cta-block h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-cta-block h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.page-template-template-about .about-cta-block .about-cta-block-content p {
  margin-top: 30px;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-cta-block .about-cta-block-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

.page-template-template-about .about-cta-block .about-cta-block-content p a {
  font-weight: bold;
  color: #006FAB;
  border-bottom: 2px solid #006FAB;
}

.page-template-template-about .about-info-block {
  margin-top: 50px;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-info-block {
    font-size: 16px;
    line-height: 24px;
  }
}

.page-template-template-about .about-info-block a {
  font-weight: bold;
  color: #006FAB;
  border-bottom: 2px solid #006FAB;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-info-block {
    margin-top: 25px;
  }
}

.page-template-template-about .about-info-block h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #006C64;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-info-block h2 {
    font-size: 16px;
    line-height: 18px;
  }
}

.page-template-template-about .about-info-block hr {
  border-top: 2px solid #D7DDE0;
  min-width: 50%;
  left: 0;
  max-width: 50%;
  margin: 50px auto;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-info-block hr {
    margin: 25px auto;
  }
}

.page-template-template-about .about-info-block ul,
.page-template-template-about .about-info-block ol {
  list-style: none;
}

.page-template-template-about .about-info-block ul li,
.page-template-template-about .about-info-block ol li {
  position: relative;
  max-width: 600px;
  margin: 25px auto;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-info-block ul li,
  .page-template-template-about .about-info-block ol li {
    font-size: 14px;
    line-height: 24px;
  }
}

.page-template-template-about .about-info-block ul li .hexagon,
.page-template-template-about .about-info-block ol li .hexagon {
  position: absolute;
  top: 7px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #0092C7;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-info-block ul li .hexagon,
  .page-template-template-about .about-info-block ol li .hexagon {
    top: 4px;
  }
}

.page-template-template-about .about-info-block ul li .hexagon:before,
.page-template-template-about .about-info-block ul li .hexagon:after,
.page-template-template-about .about-info-block ol li .hexagon:before,
.page-template-template-about .about-info-block ol li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.page-template-template-about .about-info-block ul li .hexagon:before,
.page-template-template-about .about-info-block ol li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.page-template-template-about .about-info-block ul li .hexagon:after,
.page-template-template-about .about-info-block ol li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #0092C7;
}

.page-template-template-about .about-info-block ul li p,
.page-template-template-about .about-info-block ol li p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .about-info-block ul li p,
  .page-template-template-about .about-info-block ol li p {
    font-size: 14px;
    line-height: 20px;
  }
}

.page-template-template-about .about-info-block ol {
  list-style: none;
}

.page-template-template-about .additional-resources-container {
  padding: 40px 0 40px 0;
  margin: 40px 0;
  border-top: 1px solid #D7DDE0;
  border-bottom: 1px solid #D7DDE0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .additional-resources-container {
    padding: 25px 0;
  }
}

.page-template-template-about .additional-resources-container .about-additional-resources h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .additional-resources-container .about-additional-resources h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.page-template-template-about .additional-resources-container .about-additional-resources .additional-resource .additional-resource-title {
  margin-top: 35px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-about .additional-resources-container .about-additional-resources .additional-resource .additional-resource-title {
    margin-top: 29px;
  }
}

.page-template-template-about .additional-resources-container .about-additional-resources .additional-resource .additional-resource-title img {
  margin-left: 15px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.page-template-template-about .additional-resources-container .about-additional-resources .additional-resource .additional-resource-title h3 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: underline;
}

.page-template-template-about .additional-resources-container .about-additional-resources .additional-resource .additional-resource-title h3:hover+img {
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: rotate(-90deg) translateY(5px);
       -o-transform: rotate(-90deg) translateY(5px);
          transform: rotate(-90deg) translateY(5px);
}

.page-template-template-about .additional-resources-container .about-additional-resources .additional-resource .additional-resource-title h3 a {
  color: #00806F;
  border-bottom: #00806F;
  text-decoration: none;
}

.page-template-template-about .additional-resources-container .about-additional-resources .additional-resource .additional-resource-title h3 a strong u {
  text-decoration: none;
}

.page-template-template-about .additional-resources-container .about-additional-resources .additional-resource p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: #242423;
}

.page-template-template-faq .main-content,
.page-template-template-data-definitions .main-content,
.page-template-template-data-definitions-pdf .main-content,
.page-template-template-data-definitions .main-content,
.page-template-template-data-definitions-pdf .main-content,
.page-template-template-footnotes .main-content,
.page-template-template-footnotes-pdf .main-content,
.page-template-template-data-definitions-pdf .main-content {
  position: relative;
  overflow: hidden;
}

.page-template-template-faq .pdf-iframe,
.page-template-template-data-definitions .pdf-iframe,
.page-template-template-data-definitions-pdf .pdf-iframe,
.page-template-template-data-definitions .pdf-iframe,
.page-template-template-data-definitions-pdf .pdf-iframe,
.page-template-template-footnotes .pdf-iframe,
.page-template-template-footnotes-pdf .pdf-iframe,
.page-template-template-data-definitions-pdf .pdf-iframe {
  display: none;
}

.page-template-template-faq mark,
.page-template-template-data-definitions mark,
.page-template-template-data-definitions-pdf mark,
.page-template-template-data-definitions mark,
.page-template-template-data-definitions-pdf mark,
.page-template-template-footnotes mark,
.page-template-template-footnotes-pdf mark,
.page-template-template-data-definitions-pdf mark {
  background: #00806F;
  color: #fff;
}

.page-template-template-faq .sidebar,
.page-template-template-data-definitions .sidebar,
.page-template-template-data-definitions-pdf .sidebar,
.page-template-template-data-definitions .sidebar,
.page-template-template-data-definitions-pdf .sidebar,
.page-template-template-footnotes .sidebar,
.page-template-template-footnotes-pdf .sidebar,
.page-template-template-data-definitions-pdf .sidebar {
  position: sticky;
  top: 275px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .sidebar,
  .page-template-template-data-definitions .sidebar,
  .page-template-template-data-definitions-pdf .sidebar,
  .page-template-template-data-definitions .sidebar,
  .page-template-template-data-definitions-pdf .sidebar,
  .page-template-template-footnotes .sidebar,
  .page-template-template-footnotes-pdf .sidebar,
  .page-template-template-data-definitions-pdf .sidebar {
    position: static;
  }
}

.page-template-template-faq .error-search,
.page-template-template-data-definitions .error-search,
.page-template-template-data-definitions-pdf .error-search,
.page-template-template-data-definitions .error-search,
.page-template-template-data-definitions-pdf .error-search,
.page-template-template-footnotes .error-search,
.page-template-template-footnotes-pdf .error-search,
.page-template-template-data-definitions-pdf .error-search {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0;
  position: absolute;
  background: #EBFAF3;
  width: 100%;
  height: 500%;
}

.page-template-template-faq .error-search p.bold,
.page-template-template-data-definitions .error-search p.bold,
.page-template-template-data-definitions-pdf .error-search p.bold,
.page-template-template-data-definitions .error-search p.bold,
.page-template-template-data-definitions-pdf .error-search p.bold,
.page-template-template-footnotes .error-search p.bold,
.page-template-template-footnotes-pdf .error-search p.bold,
.page-template-template-data-definitions-pdf .error-search p.bold {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px !important;
  line-height: 24px !important;
  color: #006C64 !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .error-search p.desktop,
  .page-template-template-data-definitions .error-search p.desktop,
  .page-template-template-data-definitions-pdf .error-search p.desktop,
  .page-template-template-data-definitions .error-search p.desktop,
  .page-template-template-data-definitions-pdf .error-search p.desktop,
  .page-template-template-footnotes .error-search p.desktop,
  .page-template-template-footnotes-pdf .error-search p.desktop,
  .page-template-template-data-definitions-pdf .error-search p.desktop {
    display: none;
  }
}

.page-template-template-faq .error-search p.mobile,
.page-template-template-data-definitions .error-search p.mobile,
.page-template-template-data-definitions-pdf .error-search p.mobile,
.page-template-template-data-definitions .error-search p.mobile,
.page-template-template-data-definitions-pdf .error-search p.mobile,
.page-template-template-footnotes .error-search p.mobile,
.page-template-template-footnotes-pdf .error-search p.mobile,
.page-template-template-data-definitions-pdf .error-search p.mobile {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .error-search p.mobile,
  .page-template-template-data-definitions .error-search p.mobile,
  .page-template-template-data-definitions-pdf .error-search p.mobile,
  .page-template-template-data-definitions .error-search p.mobile,
  .page-template-template-data-definitions-pdf .error-search p.mobile,
  .page-template-template-footnotes .error-search p.mobile,
  .page-template-template-footnotes-pdf .error-search p.mobile,
  .page-template-template-data-definitions-pdf .error-search p.mobile {
    display: block;
  }
}

.page-template-template-faq .error-search p,
.page-template-template-data-definitions .error-search p,
.page-template-template-data-definitions-pdf .error-search p,
.page-template-template-data-definitions .error-search p,
.page-template-template-data-definitions-pdf .error-search p,
.page-template-template-footnotes .error-search p,
.page-template-template-footnotes-pdf .error-search p,
.page-template-template-data-definitions-pdf .error-search p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #242423;
}

.page-template-template-faq .error-search.show,
.page-template-template-data-definitions .error-search.show,
.page-template-template-data-definitions-pdf .error-search.show,
.page-template-template-data-definitions .error-search.show,
.page-template-template-data-definitions-pdf .error-search.show,
.page-template-template-footnotes .error-search.show,
.page-template-template-footnotes-pdf .error-search.show,
.page-template-template-data-definitions-pdf .error-search.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .error-search,
  .page-template-template-data-definitions .error-search,
  .page-template-template-data-definitions-pdf .error-search,
  .page-template-template-data-definitions .error-search,
  .page-template-template-data-definitions-pdf .error-search,
  .page-template-template-footnotes .error-search,
  .page-template-template-footnotes-pdf .error-search,
  .page-template-template-data-definitions-pdf .error-search {
    padding-top: 50px;
  }
}

.page-template-template-faq section.accordion-section-container.blue,
.page-template-template-data-definitions section.accordion-section-container.blue,
.page-template-template-data-definitions-pdf section.accordion-section-container.blue,
.page-template-template-data-definitions section.accordion-section-container.blue,
.page-template-template-data-definitions-pdf section.accordion-section-container.blue,
.page-template-template-footnotes section.accordion-section-container.blue,
.page-template-template-footnotes-pdf section.accordion-section-container.blue,
.page-template-template-data-definitions-pdf section.accordion-section-container.blue {
  background: #F0F7FC;
}

.page-template-template-faq section.accordion-section-container.blue h2.accordion-category-title,
.page-template-template-data-definitions section.accordion-section-container.blue h2.accordion-category-title,
.page-template-template-data-definitions-pdf section.accordion-section-container.blue h2.accordion-category-title,
.page-template-template-data-definitions section.accordion-section-container.blue h2.accordion-category-title,
.page-template-template-data-definitions-pdf section.accordion-section-container.blue h2.accordion-category-title,
.page-template-template-footnotes section.accordion-section-container.blue h2.accordion-category-title,
.page-template-template-footnotes-pdf section.accordion-section-container.blue h2.accordion-category-title,
.page-template-template-data-definitions-pdf section.accordion-section-container.blue h2.accordion-category-title {
  color: #006FAB;
}

.page-template-template-faq section.accordion-section-container.green,
.page-template-template-data-definitions section.accordion-section-container.green,
.page-template-template-data-definitions-pdf section.accordion-section-container.green,
.page-template-template-data-definitions section.accordion-section-container.green,
.page-template-template-data-definitions-pdf section.accordion-section-container.green,
.page-template-template-footnotes section.accordion-section-container.green,
.page-template-template-footnotes-pdf section.accordion-section-container.green,
.page-template-template-data-definitions-pdf section.accordion-section-container.green {
  background: #EBFAF3;
  padding-bottom: 150px;
}

.page-template-template-faq section.accordion-section-container.green ul.tabs__list>li>a.active,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a.active,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a.active,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a.active,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a.active,
.page-template-template-footnotes section.accordion-section-container.green ul.tabs__list>li>a.active,
.page-template-template-footnotes-pdf section.accordion-section-container.green ul.tabs__list>li>a.active,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a.active {
  color: #006C64 !important;
}

.page-template-template-faq section.accordion-section-container.green ul.tabs__list>li>a:focus:after,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a:focus:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a:focus:after,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a:focus:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a:focus:after,
.page-template-template-footnotes section.accordion-section-container.green ul.tabs__list>li>a:focus:after,
.page-template-template-footnotes-pdf section.accordion-section-container.green ul.tabs__list>li>a:focus:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a:focus:after {
  background: #009E89;
}

.page-template-template-faq section.accordion-section-container.green ul.tabs__list>li>a.active:after,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a.active:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a.active:after,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a.active:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a.active:after,
.page-template-template-footnotes section.accordion-section-container.green ul.tabs__list>li>a.active:after,
.page-template-template-footnotes-pdf section.accordion-section-container.green ul.tabs__list>li>a.active:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a.active:after {
  background: #009E89;
}

.page-template-template-faq section.accordion-section-container.green ul.tabs__list>li>a:after,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a:after,
.page-template-template-data-definitions section.accordion-section-container.green ul.tabs__list>li>a:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a:after,
.page-template-template-footnotes section.accordion-section-container.green ul.tabs__list>li>a:after,
.page-template-template-footnotes-pdf section.accordion-section-container.green ul.tabs__list>li>a:after,
.page-template-template-data-definitions-pdf section.accordion-section-container.green ul.tabs__list>li>a:after {
  background: #009E89;
}

.page-template-template-faq section.accordion-section-container.green h2.accordion-category-title,
.page-template-template-data-definitions section.accordion-section-container.green h2.accordion-category-title,
.page-template-template-data-definitions-pdf section.accordion-section-container.green h2.accordion-category-title,
.page-template-template-data-definitions section.accordion-section-container.green h2.accordion-category-title,
.page-template-template-data-definitions-pdf section.accordion-section-container.green h2.accordion-category-title,
.page-template-template-footnotes section.accordion-section-container.green h2.accordion-category-title,
.page-template-template-footnotes-pdf section.accordion-section-container.green h2.accordion-category-title,
.page-template-template-data-definitions-pdf section.accordion-section-container.green h2.accordion-category-title {
  color: #006C64;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-faq .col-xs-3,
  .page-template-template-data-definitions .col-xs-3,
  .page-template-template-data-definitions-pdf .col-xs-3,
  .page-template-template-data-definitions .col-xs-3,
  .page-template-template-data-definitions-pdf .col-xs-3,
  .page-template-template-footnotes .col-xs-3,
  .page-template-template-footnotes-pdf .col-xs-3,
  .page-template-template-data-definitions-pdf .col-xs-3 {
    -ms-flex-preferred-size: 25% !important;
        flex-basis: 25% !important;
    max-width: 25% !important;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .col-xs-3,
  .page-template-template-data-definitions .col-xs-3,
  .page-template-template-data-definitions-pdf .col-xs-3,
  .page-template-template-data-definitions .col-xs-3,
  .page-template-template-data-definitions-pdf .col-xs-3,
  .page-template-template-footnotes .col-xs-3,
  .page-template-template-footnotes-pdf .col-xs-3,
  .page-template-template-data-definitions-pdf .col-xs-3 {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-faq .col-xs-9,
  .page-template-template-data-definitions .col-xs-9,
  .page-template-template-data-definitions-pdf .col-xs-9,
  .page-template-template-data-definitions .col-xs-9,
  .page-template-template-data-definitions-pdf .col-xs-9,
  .page-template-template-footnotes .col-xs-9,
  .page-template-template-footnotes-pdf .col-xs-9,
  .page-template-template-data-definitions-pdf .col-xs-9 {
    -ms-flex-preferred-size: 75% !important;
        flex-basis: 75% !important;
    max-width: 75% !important;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .col-xs-9,
  .page-template-template-data-definitions .col-xs-9,
  .page-template-template-data-definitions-pdf .col-xs-9,
  .page-template-template-data-definitions .col-xs-9,
  .page-template-template-data-definitions-pdf .col-xs-9,
  .page-template-template-footnotes .col-xs-9,
  .page-template-template-footnotes-pdf .col-xs-9,
  .page-template-template-data-definitions-pdf .col-xs-9 {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .accordion-control-container,
  .page-template-template-data-definitions .accordion-control-container,
  .page-template-template-data-definitions-pdf .accordion-control-container,
  .page-template-template-data-definitions .accordion-control-container,
  .page-template-template-data-definitions-pdf .accordion-control-container,
  .page-template-template-footnotes .accordion-control-container,
  .page-template-template-footnotes-pdf .accordion-control-container,
  .page-template-template-data-definitions-pdf .accordion-control-container {
    margin-bottom: 25px;
  }
}

.page-template-template-faq .accordion-page-header,
.page-template-template-data-definitions .accordion-page-header,
.page-template-template-data-definitions-pdf .accordion-page-header,
.page-template-template-data-definitions .accordion-page-header,
.page-template-template-data-definitions-pdf .accordion-page-header,
.page-template-template-footnotes .accordion-page-header,
.page-template-template-footnotes-pdf .accordion-page-header,
.page-template-template-data-definitions-pdf .accordion-page-header {
  padding-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .accordion-page-header,
  .page-template-template-data-definitions .accordion-page-header,
  .page-template-template-data-definitions-pdf .accordion-page-header,
  .page-template-template-data-definitions .accordion-page-header,
  .page-template-template-data-definitions-pdf .accordion-page-header,
  .page-template-template-footnotes .accordion-page-header,
  .page-template-template-footnotes-pdf .accordion-page-header,
  .page-template-template-data-definitions-pdf .accordion-page-header {
    height: auto;
  }
}

.page-template-template-faq .accordion-page-header .accordion-page-title,
.page-template-template-data-definitions .accordion-page-header .accordion-page-title,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title,
.page-template-template-data-definitions .accordion-page-header .accordion-page-title,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title,
.page-template-template-footnotes .accordion-page-header .accordion-page-title,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-title,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title {
  margin-top: 0;
  margin-bottom: 54px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .accordion-page-header .accordion-page-title,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-title,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-title,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title,
  .page-template-template-footnotes .accordion-page-header .accordion-page-title,
  .page-template-template-footnotes-pdf .accordion-page-header .accordion-page-title,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title {
    margin-top: -0.5rem;
    margin-bottom: 0;
  }
}

.page-template-template-faq .accordion-page-header .accordion-page-title h2,
.page-template-template-data-definitions .accordion-page-header .accordion-page-title h2,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title h2,
.page-template-template-data-definitions .accordion-page-header .accordion-page-title h2,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title h2,
.page-template-template-footnotes .accordion-page-header .accordion-page-title h2,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-title h2,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  line-height: 62px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .accordion-page-header .accordion-page-title h2,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-title h2,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title h2,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-title h2,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title h2,
  .page-template-template-footnotes .accordion-page-header .accordion-page-title h2,
  .page-template-template-footnotes-pdf .accordion-page-header .accordion-page-title h2,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-title h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

.page-template-template-faq .accordion-page-header .accordion-page-side-links,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links,
.page-template-template-footnotes .accordion-page-header .accordion-page-side-links,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links {
  width: 100%;
}

.page-template-template-faq .accordion-page-header .accordion-page-side-links ul,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul,
.page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  text-align: right;
}

.page-template-template-faq .accordion-page-header .accordion-page-side-links ul li,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li,
.page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul li,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul li,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .accordion-page-header .accordion-page-side-links ul li,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li,
  .page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul li,
  .page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul li,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li {
    margin-bottom: 10px;
  }
}

.page-template-template-faq .accordion-page-header .accordion-page-side-links ul li:last-child,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li:last-child,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li:last-child,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li:last-child,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li:last-child,
.page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul li:last-child,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul li:last-child,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li:last-child {
  margin-bottom: 0;
}

.page-template-template-faq .accordion-page-header .accordion-page-side-links ul li a,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li a,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li a,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a,
.page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul li a,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul li a,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #242423;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .accordion-page-header .accordion-page-side-links ul li a,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li a,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a,
  .page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li a,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a,
  .page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul li a,
  .page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul li a,
  .page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a {
    font-size: 10px;
  }
}

.page-template-template-faq .accordion-page-header .accordion-page-side-links ul li a:hover+img,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li a:hover+img,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a:hover+img,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li a:hover+img,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a:hover+img,
.page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul li a:hover+img,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul li a:hover+img,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li a:hover+img {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  -webkit-transform: rotate(-90deg) translateY(5px);
       -o-transform: rotate(-90deg) translateY(5px);
          transform: rotate(-90deg) translateY(5px);
}

.page-template-template-faq .accordion-page-header .accordion-page-side-links ul li img,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li img,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li img,
.page-template-template-data-definitions .accordion-page-header .accordion-page-side-links ul li img,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li img,
.page-template-template-footnotes .accordion-page-header .accordion-page-side-links ul li img,
.page-template-template-footnotes-pdf .accordion-page-header .accordion-page-side-links ul li img,
.page-template-template-data-definitions-pdf .accordion-page-header .accordion-page-side-links ul li img {
  margin-left: 15px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  max-width: 12px;
}

.page-template-template-faq ul.tabs__list,
.page-template-template-data-definitions ul.tabs__list,
.page-template-template-data-definitions-pdf ul.tabs__list,
.page-template-template-data-definitions ul.tabs__list,
.page-template-template-data-definitions-pdf ul.tabs__list,
.page-template-template-footnotes ul.tabs__list,
.page-template-template-footnotes-pdf ul.tabs__list,
.page-template-template-data-definitions-pdf ul.tabs__list {
  padding: 0;
  list-style: none;
}

.page-template-template-faq ul.tabs__list li,
.page-template-template-data-definitions ul.tabs__list li,
.page-template-template-data-definitions-pdf ul.tabs__list li,
.page-template-template-data-definitions ul.tabs__list li,
.page-template-template-data-definitions-pdf ul.tabs__list li,
.page-template-template-footnotes ul.tabs__list li,
.page-template-template-footnotes-pdf ul.tabs__list li,
.page-template-template-data-definitions-pdf ul.tabs__list li {
  margin-bottom: 17px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq ul.tabs__list li:first-child,
  .page-template-template-data-definitions ul.tabs__list li:first-child,
  .page-template-template-data-definitions-pdf ul.tabs__list li:first-child,
  .page-template-template-data-definitions ul.tabs__list li:first-child,
  .page-template-template-data-definitions-pdf ul.tabs__list li:first-child,
  .page-template-template-footnotes ul.tabs__list li:first-child,
  .page-template-template-footnotes-pdf ul.tabs__list li:first-child,
  .page-template-template-data-definitions-pdf ul.tabs__list li:first-child {
    margin-top: 3px;
  }
}

.page-template-template-faq ul.tabs__list li:last-child,
.page-template-template-data-definitions ul.tabs__list li:last-child,
.page-template-template-data-definitions-pdf ul.tabs__list li:last-child,
.page-template-template-data-definitions ul.tabs__list li:last-child,
.page-template-template-data-definitions-pdf ul.tabs__list li:last-child,
.page-template-template-footnotes ul.tabs__list li:last-child,
.page-template-template-footnotes-pdf ul.tabs__list li:last-child,
.page-template-template-data-definitions-pdf ul.tabs__list li:last-child {
  margin-bottom: 0;
}

.page-template-template-faq ul.tabs__list li a,
.page-template-template-data-definitions ul.tabs__list li a,
.page-template-template-data-definitions-pdf ul.tabs__list li a,
.page-template-template-data-definitions ul.tabs__list li a,
.page-template-template-data-definitions-pdf ul.tabs__list li a,
.page-template-template-footnotes ul.tabs__list li a,
.page-template-template-footnotes-pdf ul.tabs__list li a,
.page-template-template-data-definitions-pdf ul.tabs__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #242423;
}

.page-template-template-faq ul.tabs__list li a.active,
.page-template-template-data-definitions ul.tabs__list li a.active,
.page-template-template-data-definitions-pdf ul.tabs__list li a.active,
.page-template-template-data-definitions ul.tabs__list li a.active,
.page-template-template-data-definitions-pdf ul.tabs__list li a.active,
.page-template-template-footnotes ul.tabs__list li a.active,
.page-template-template-footnotes-pdf ul.tabs__list li a.active,
.page-template-template-data-definitions-pdf ul.tabs__list li a.active {
  display: inline;
  width: auto;
  color: #006FAB !important;
}

.page-template-template-faq ul.tabs__list li a.active:after,
.page-template-template-data-definitions ul.tabs__list li a.active:after,
.page-template-template-data-definitions-pdf ul.tabs__list li a.active:after,
.page-template-template-data-definitions ul.tabs__list li a.active:after,
.page-template-template-data-definitions-pdf ul.tabs__list li a.active:after,
.page-template-template-footnotes ul.tabs__list li a.active:after,
.page-template-template-footnotes-pdf ul.tabs__list li a.active:after,
.page-template-template-data-definitions-pdf ul.tabs__list li a.active:after {
  position: absolute;
  content: '';
  top: 0;
  left: -15px;
  width: 4px;
  height: 18px;
  background: #0092C7;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-faq form,
  .page-template-template-data-definitions form,
  .page-template-template-data-definitions-pdf form,
  .page-template-template-data-definitions form,
  .page-template-template-data-definitions-pdf form,
  .page-template-template-footnotes form,
  .page-template-template-footnotes-pdf form,
  .page-template-template-data-definitions-pdf form {
    position: relative;
  }
}

.page-template-template-faq .search-container,
.page-template-template-data-definitions .search-container,
.page-template-template-data-definitions-pdf .search-container,
.page-template-template-data-definitions .search-container,
.page-template-template-data-definitions-pdf .search-container,
.page-template-template-footnotes .search-container,
.page-template-template-footnotes-pdf .search-container,
.page-template-template-data-definitions-pdf .search-container {
  position: relative;
  margin-top: 17px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-faq .search-container,
  .page-template-template-data-definitions .search-container,
  .page-template-template-data-definitions-pdf .search-container,
  .page-template-template-data-definitions .search-container,
  .page-template-template-data-definitions-pdf .search-container,
  .page-template-template-footnotes .search-container,
  .page-template-template-footnotes-pdf .search-container,
  .page-template-template-data-definitions-pdf .search-container {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .search-container,
  .page-template-template-data-definitions .search-container,
  .page-template-template-data-definitions-pdf .search-container,
  .page-template-template-data-definitions .search-container,
  .page-template-template-data-definitions-pdf .search-container,
  .page-template-template-footnotes .search-container,
  .page-template-template-footnotes-pdf .search-container,
  .page-template-template-data-definitions-pdf .search-container {
    margin-top: 25px;
  }
}

.page-template-template-faq .search-container:after,
.page-template-template-data-definitions .search-container:after,
.page-template-template-data-definitions-pdf .search-container:after,
.page-template-template-data-definitions .search-container:after,
.page-template-template-data-definitions-pdf .search-container:after,
.page-template-template-footnotes .search-container:after,
.page-template-template-footnotes-pdf .search-container:after,
.page-template-template-data-definitions-pdf .search-container:after {
  position: absolute;
  content: '';
  top: 20px;
  left: 8px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("/images/search.svg");
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
}

.page-template-template-faq .search-container #search,
.page-template-template-data-definitions .search-container #search,
.page-template-template-data-definitions-pdf .search-container #search,
.page-template-template-data-definitions .search-container #search,
.page-template-template-data-definitions-pdf .search-container #search,
.page-template-template-footnotes .search-container #search,
.page-template-template-footnotes-pdf .search-container #search,
.page-template-template-data-definitions-pdf .search-container #search {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  padding-left: 28px;
  max-width: 190px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-faq .search-container #search,
  .page-template-template-data-definitions .search-container #search,
  .page-template-template-data-definitions-pdf .search-container #search,
  .page-template-template-data-definitions .search-container #search,
  .page-template-template-data-definitions-pdf .search-container #search,
  .page-template-template-footnotes .search-container #search,
  .page-template-template-footnotes-pdf .search-container #search,
  .page-template-template-data-definitions-pdf .search-container #search {
    max-width: 140px;
    font-size: 14px;
  }

  .page-template-template-faq .search-container #search::-webkit-input-placeholder,
  .page-template-template-data-definitions .search-container #search::-webkit-input-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-webkit-input-placeholder,
  .page-template-template-data-definitions .search-container #search::-webkit-input-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-webkit-input-placeholder,
  .page-template-template-footnotes .search-container #search::-webkit-input-placeholder,
  .page-template-template-footnotes-pdf .search-container #search::-webkit-input-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-webkit-input-placeholder {
    font-size: 12px;
  }

  .page-template-template-faq .search-container #search::-moz-placeholder,
  .page-template-template-data-definitions .search-container #search::-moz-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-moz-placeholder,
  .page-template-template-data-definitions .search-container #search::-moz-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-moz-placeholder,
  .page-template-template-footnotes .search-container #search::-moz-placeholder,
  .page-template-template-footnotes-pdf .search-container #search::-moz-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-moz-placeholder {
    font-size: 12px;
  }

  .page-template-template-faq .search-container #search::-ms-input-placeholder,
  .page-template-template-data-definitions .search-container #search::-ms-input-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-ms-input-placeholder,
  .page-template-template-data-definitions .search-container #search::-ms-input-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-ms-input-placeholder,
  .page-template-template-footnotes .search-container #search::-ms-input-placeholder,
  .page-template-template-footnotes-pdf .search-container #search::-ms-input-placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::-ms-input-placeholder {
    font-size: 12px;
  }

  .page-template-template-faq .search-container #search::placeholder,
  .page-template-template-data-definitions .search-container #search::placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::placeholder,
  .page-template-template-data-definitions .search-container #search::placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::placeholder,
  .page-template-template-footnotes .search-container #search::placeholder,
  .page-template-template-footnotes-pdf .search-container #search::placeholder,
  .page-template-template-data-definitions-pdf .search-container #search::placeholder {
    font-size: 12px;
  }

  .page-template-template-faq .search-container #search:focus,
  .page-template-template-data-definitions .search-container #search:focus,
  .page-template-template-data-definitions-pdf .search-container #search:focus,
  .page-template-template-data-definitions .search-container #search:focus,
  .page-template-template-data-definitions-pdf .search-container #search:focus,
  .page-template-template-footnotes .search-container #search:focus,
  .page-template-template-footnotes-pdf .search-container #search:focus,
  .page-template-template-data-definitions-pdf .search-container #search:focus {
    max-width: 190px;
    outline: none !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .search-container #search:focus,
  .page-template-template-data-definitions .search-container #search:focus,
  .page-template-template-data-definitions-pdf .search-container #search:focus,
  .page-template-template-data-definitions .search-container #search:focus,
  .page-template-template-data-definitions-pdf .search-container #search:focus,
  .page-template-template-footnotes .search-container #search:focus,
  .page-template-template-footnotes-pdf .search-container #search:focus,
  .page-template-template-data-definitions-pdf .search-container #search:focus {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .search-container #search,
  .page-template-template-data-definitions .search-container #search,
  .page-template-template-data-definitions-pdf .search-container #search,
  .page-template-template-data-definitions .search-container #search,
  .page-template-template-data-definitions-pdf .search-container #search,
  .page-template-template-footnotes .search-container #search,
  .page-template-template-footnotes-pdf .search-container #search,
  .page-template-template-data-definitions-pdf .search-container #search {
    max-width: 100%;
  }
}

.page-template-template-faq .search-container .search-btn,
.page-template-template-data-definitions .search-container .search-btn,
.page-template-template-data-definitions-pdf .search-container .search-btn,
.page-template-template-data-definitions .search-container .search-btn,
.page-template-template-data-definitions-pdf .search-container .search-btn,
.page-template-template-footnotes .search-container .search-btn,
.page-template-template-footnotes-pdf .search-container .search-btn,
.page-template-template-data-definitions-pdf .search-container .search-btn {
  outline: none !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .js-tabs>.js-tablist:first-of-type,
  .page-template-template-data-definitions .js-tabs>.js-tablist:first-of-type,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist:first-of-type,
  .page-template-template-data-definitions .js-tabs>.js-tablist:first-of-type,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist:first-of-type,
  .page-template-template-footnotes .js-tabs>.js-tablist:first-of-type,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist:first-of-type,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist:first-of-type {
    display: none;
  }
}

.page-template-template-faq .js-tabs>.js-tablist.mobile,
.page-template-template-data-definitions .js-tabs>.js-tablist.mobile,
.page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile,
.page-template-template-data-definitions .js-tabs>.js-tablist.mobile,
.page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile,
.page-template-template-footnotes .js-tabs>.js-tablist.mobile,
.page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile,
.page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-faq .js-tabs>.js-tablist.mobile,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile {
    position: relative;
    display: block;
    list-style: none;
    background: #fff;
    border-radius: 4px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    pointer-events: all;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile:after,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile:after,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile:after {
    position: absolute;
    content: '';
    top: 15px;
    right: 10px;
    height: 20px;
    width: 20px;
    background-image: url(../images/grey-arrow-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile.open,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile.open,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile.open,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile.open,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile.open,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open {
    overflow: auto;
    height: auto;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open:after {
    position: absolute;
    content: '';
    top: 7px;
    right: 10px;
    -webkit-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
    height: 20px;
    width: 20px;
    background-image: url(../images/grey-arrow-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile li,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile li,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile li,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li {
    padding: 5px 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active) {
    border-bottom: 1px solid #EDF1F7;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile li a,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile li a,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile li a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a {
    font-family: "Roboto", sans-serif !important;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    color: #555859;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a.active:after {
    display: none;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li.active {
    border: 2px solid #006FAB;
    border-radius: 4px;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #0092C7;
  }

  .page-template-template-faq .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-footnotes .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-footnotes-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover a {
    color: #006FAB;
  }
}

.page-template-template-faq .accordion-container,
.page-template-template-data-definitions .accordion-container,
.page-template-template-data-definitions-pdf .accordion-container,
.page-template-template-data-definitions .accordion-container,
.page-template-template-data-definitions-pdf .accordion-container,
.page-template-template-footnotes .accordion-container,
.page-template-template-footnotes-pdf .accordion-container,
.page-template-template-data-definitions-pdf .accordion-container {
  -webkit-transition: 300ms all 100ms;
  -o-transition: 300ms all 100ms;
  transition: 300ms all 100ms;
  margin-top: 40px;
}

.page-template-template-faq .accordion-container:first-child,
.page-template-template-data-definitions .accordion-container:first-child,
.page-template-template-data-definitions-pdf .accordion-container:first-child,
.page-template-template-data-definitions .accordion-container:first-child,
.page-template-template-data-definitions-pdf .accordion-container:first-child,
.page-template-template-footnotes .accordion-container:first-child,
.page-template-template-footnotes-pdf .accordion-container:first-child,
.page-template-template-data-definitions-pdf .accordion-container:first-child {
  margin-top: 0;
}

.page-template-template-faq .accordion-title>button>h2,
.page-template-template-data-definitions .accordion-title>button>h2,
.page-template-template-data-definitions-pdf .accordion-title>button>h2,
.page-template-template-faq .accordion-title>button>h3,
.page-template-template-data-definitions .accordion-title>button>h3,
.page-template-template-data-definitions-pdf .accordion-title>button>h3,
.page-template-template-data-definitions .accordion-title>button>h2,
.page-template-template-data-definitions-pdf .accordion-title>button>h2,
.page-template-template-data-definitions .accordion-title>button>h3,
.page-template-template-data-definitions-pdf .accordion-title>button>h3,
.page-template-template-footnotes .accordion-title>button>h2,
.page-template-template-footnotes-pdf .accordion-title>button>h2,
.page-template-template-footnotes .accordion-title>button>h3,
.page-template-template-footnotes-pdf .accordion-title>button>h3,
.page-template-template-data-definitions-pdf .accordion-title>button>h2,
.page-template-template-data-definitions-pdf .accordion-title>button>h3 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #242423;
}

.page-template-template-faq h2.accordion-category-title,
.page-template-template-data-definitions h2.accordion-category-title,
.page-template-template-data-definitions-pdf h2.accordion-category-title,
.page-template-template-data-definitions h2.accordion-category-title,
.page-template-template-data-definitions-pdf h2.accordion-category-title,
.page-template-template-footnotes h2.accordion-category-title,
.page-template-template-footnotes-pdf h2.accordion-category-title,
.page-template-template-data-definitions-pdf h2.accordion-category-title {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
}

.page-template-template-faq .accordion-slide-content a,
.page-template-template-data-definitions .accordion-slide-content a,
.page-template-template-data-definitions-pdf .accordion-slide-content a,
.page-template-template-data-definitions .accordion-slide-content a,
.page-template-template-data-definitions-pdf .accordion-slide-content a,
.page-template-template-footnotes .accordion-slide-content a,
.page-template-template-footnotes-pdf .accordion-slide-content a,
.page-template-template-data-definitions-pdf .accordion-slide-content a {
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.page-template-template-faq .accordion-slide-content ul li,
.page-template-template-data-definitions .accordion-slide-content ul li,
.page-template-template-data-definitions-pdf .accordion-slide-content ul li,
.page-template-template-faq .accordion-slide-content ol li,
.page-template-template-data-definitions .accordion-slide-content ol li,
.page-template-template-data-definitions-pdf .accordion-slide-content ol li,
.page-template-template-data-definitions .accordion-slide-content ul li,
.page-template-template-data-definitions-pdf .accordion-slide-content ul li,
.page-template-template-data-definitions .accordion-slide-content ol li,
.page-template-template-data-definitions-pdf .accordion-slide-content ol li,
.page-template-template-footnotes .accordion-slide-content ul li,
.page-template-template-footnotes-pdf .accordion-slide-content ul li,
.page-template-template-footnotes .accordion-slide-content ol li,
.page-template-template-footnotes-pdf .accordion-slide-content ol li,
.page-template-template-data-definitions-pdf .accordion-slide-content ul li,
.page-template-template-data-definitions-pdf .accordion-slide-content ol li {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
}

.page-template-template-faq .question-cta,
.page-template-template-data-definitions .question-cta,
.page-template-template-data-definitions-pdf .question-cta,
.page-template-template-data-definitions .question-cta,
.page-template-template-data-definitions-pdf .question-cta,
.page-template-template-footnotes .question-cta,
.page-template-template-footnotes-pdf .question-cta,
.page-template-template-data-definitions-pdf .question-cta {
  margin-top: 70px;
}

.page-template-template-footnotes,
.page-template-template-footnotes-pdf {
  height: 100%;
  width: 100%;
  position: inherit;
}

.page-template-template-footnotes #js-modal-page,
.page-template-template-footnotes-pdf #js-modal-page,
.page-template-template-footnotes .main,
.page-template-template-footnotes-pdf .main,
.page-template-template-footnotes section,
.page-template-template-footnotes-pdf section {
  height: 100%;
}

.page-template-template-footnotes #search,
.page-template-template-footnotes-pdf #search {
  border: 2px solid #006FAB !important;
  outline: none !important;
}

.page-template-template-footnotes label.search-label,
.page-template-template-footnotes-pdf label.search-label {
  position: absolute;
  left: 9999px;
}

.page-template-template-footnotes .accordion-section-container,
.page-template-template-footnotes-pdf .accordion-section-container {
  padding-bottom: 100px;
}

.page-template-template-data-definitions,
.page-template-template-data-definitions-pdf {
  position: static !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-definitions .main,
  .page-template-template-data-definitions-pdf .main {
    overflow-x: hidden;
  }
}

.page-template-template-data-definitions .accordion-page-title,
.page-template-template-data-definitions-pdf .accordion-page-title {
  width: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-definitions .accordion-page-title,
  .page-template-template-data-definitions-pdf .accordion-page-title {
    margin-top: 0 !important;
  }
}

.page-template-template-data-definitions .search-container,
.page-template-template-data-definitions-pdf .search-container {
  max-width: 190px;
}

.page-template-template-data-definitions .search-container label.search-label,
.page-template-template-data-definitions-pdf .search-container label.search-label {
  position: absolute;
  left: 9999px;
}

.page-template-template-data-definitions .search-container a.btn,
.page-template-template-data-definitions-pdf .search-container a.btn {
  height: 40px;
  margin-top: 2px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-data-definitions .search-container a.btn,
  .page-template-template-data-definitions-pdf .search-container a.btn {
    min-width: 140px;
    max-width: 140px;
    height: 40px;
  }
}

.page-template-template-data-definitions .js-tabs>.js-tablist.mobile,
.page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile {
    position: relative;
    display: block;
    list-style: none;
    background: #fff;
    border-radius: 4px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    pointer-events: all;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile:after {
    position: absolute;
    content: '';
    top: 15px;
    right: 10px;
    height: 20px;
    width: 20px;
    background-image: url(../images/grey-arrow-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile.open,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open {
    overflow: auto;
    height: auto;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile.open:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile.open:after {
    position: absolute;
    content: '';
    top: 7px;
    right: 10px;
    -webkit-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
    height: 20px;
    width: 20px;
    background-image: url(../images/grey-arrow-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li {
    padding: 5px 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active),
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active) {
    border-bottom: 1px solid #EDF1F7;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 30px;
    border-bottom: none;
    width: 100%;
    font-family: "Roboto", sans-serif !important;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    color: #555859;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li a.active,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a.active {
    display: inline;
    width: auto;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li a.active:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li a.active:after {
    display: none;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li.active,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li.active {
    border: 2px solid #00806F;
    border-radius: 4px;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active):hover:after,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #009E89;
  }

  .page-template-template-data-definitions .js-tabs>.js-tablist.mobile li:not(.active):hover a,
  .page-template-template-data-definitions-pdf .js-tabs>.js-tablist.mobile li:not(.active):hover a {
    color: #006C64;
  }
}

.page-template-template-data-definitions #search,
.page-template-template-data-definitions-pdf #search {
  outline: none !important;
}

.page-template-template-data-definitions .search-btn,
.page-template-template-data-definitions-pdf .search-btn {
  outline: none !important;
}

.page-template-template-data-definitions-pdf main {
  padding: 100px 150px !important;
  background: #EBFAF3 !important;
}

.page-template-template-data-definitions-pdf .definition-container {
  margin-top: 50px;
}

.page-template-template-data-definitions-pdf .definition-title h2 {
  color: #242423 !important;
}

.page-template-template-footnotes-pdf main {
  padding: 100px 150px !important;
  background: #F0F7FC !important;
}

.page-template-template-footnotes-pdf .definition-container {
  margin-top: 50px;
}

.page-template-template-footnotes-pdf .definition-title h2 {
  color: #242423 !important;
}

.page-template-template-faq,
.page-template-template-data-definitions,
.page-template-template-data-definitions-pdf {
  height: 100%;
  width: 100%;
  position: static !important;
}

.page-template-template-faq #js-modal-page,
.page-template-template-data-definitions #js-modal-page,
.page-template-template-data-definitions-pdf #js-modal-page,
.page-template-template-faq .main,
.page-template-template-data-definitions .main,
.page-template-template-data-definitions-pdf .main,
.page-template-template-faq section,
.page-template-template-data-definitions section,
.page-template-template-data-definitions-pdf section {
  height: 100%;
}

.page-template-template-data-provider-resources section {
  margin-top: 60px;
}

.page-template-template-data-provider-resources .text-container {
  padding: 0px 0px 0px 0px;
  margin-top: 25px;
}

.page-template-template-data-provider-resources .text-container .text-container-cnt {
  max-width: 840px;
}

.page-template-template-data-provider-resources .text-container .text-container-cnt p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 30px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-provider-resources .text-container .text-container-cnt p {
    font-size: 16px;
    line-height: 28px;
  }
}

.page-template-template-data-provider-resources .text-container .text-container-cnt p a {
  color: #00806f !important;
  border-bottom: 1px solid #00806f !important;
}

.page-template-template-data-provider-resources .text-container .text-container-cnt h2,
.page-template-template-data-provider-resources .text-container .text-container-cnt h3 {
  margin: 75px 0px 25px 0px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-data-provider-resources .text-container .text-container-cnt h2,
  .page-template-template-data-provider-resources .text-container .text-container-cnt h3 {
    margin: 25px 0px 25px 0px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-provider-resources .text-container .text-container-cnt h2,
  .page-template-template-data-provider-resources .text-container .text-container-cnt h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

.page-template-template-data-provider-resources .text-container .text-container-cnt ul,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol {
  list-style: none;
}

.page-template-template-data-provider-resources .text-container .text-container-cnt ul li,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol li {
  position: relative;
  max-width: 600px;
  margin: 25px auto;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-provider-resources .text-container .text-container-cnt ul li,
  .page-template-template-data-provider-resources .text-container .text-container-cnt ol li {
    font-size: 14px;
    line-height: 24px;
  }
}

.page-template-template-data-provider-resources .text-container .text-container-cnt ul li .hexagon,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol li .hexagon {
  position: absolute;
  top: 7px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #0092C7;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-provider-resources .text-container .text-container-cnt ul li .hexagon,
  .page-template-template-data-provider-resources .text-container .text-container-cnt ol li .hexagon {
    top: 4px;
  }
}

.page-template-template-data-provider-resources .text-container .text-container-cnt ul li .hexagon:before,
.page-template-template-data-provider-resources .text-container .text-container-cnt ul li .hexagon:after,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol li .hexagon:before,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.page-template-template-data-provider-resources .text-container .text-container-cnt ul li .hexagon:before,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.page-template-template-data-provider-resources .text-container .text-container-cnt ul li .hexagon:after,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #0092C7;
}

.page-template-template-data-provider-resources .text-container .text-container-cnt ul li p,
.page-template-template-data-provider-resources .text-container .text-container-cnt ol li p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-provider-resources .text-container .text-container-cnt ul li p,
  .page-template-template-data-provider-resources .text-container .text-container-cnt ol li p {
    font-size: 14px;
    line-height: 20px;
  }
}

.page-template-template-data-provider-resources hr {
  border-top: none;
  border-bottom: 2px solid #D7DDE0;
  margin: 75px 0 0 0;
}

.page-template-template-data-provider-resources hr.short {
  min-width: 50%;
  max-width: 50%;
  margin: 75px auto;
}

.page-template-template-data-provider-resources .linkbox.with-description {
  margin-top: 75px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-data-provider-resources .linkbox.with-description {
    margin-top: 25px;
  }
}

.page-template-template-data-provider-resources .link>h3>a {
  color: #00806f !important;
  border-bottom: 1px solid #00806f !important;
  text-decoration: none !important;
}

.page-template-template-data-provider-resources footer.footer {
  margin-top: 145px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-provider-resources footer.footer {
    margin-top: 75px;
  }
}

.page-template-template-contact {
  height: 100%;
  width: 100%;
  position: absolute;
}

@media only screen and (max-width: 1440px) and (min-width: 1px) {
  .page-template-template-contact {
    position: static;
  }
}

.page-template-template-contact #js-modal-page,
.page-template-template-contact .main,
.page-template-template-contact section {
  height: 100%;
}

@media only screen and (max-width: 1440px) and (min-width: 1px) {
  .page-template-template-contact #js-modal-page,
  .page-template-template-contact .main,
  .page-template-template-contact section {
    height: auto;
  }
}

.page-template-template-contact section {
  overflow-x: hidden;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact section {
    overflow-x: visible;
  }
}

.page-template-template-contact section .row {
  height: 100%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact section .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .page-template-template-contact section .row .col-xs-5 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  .page-template-template-contact section .row .col-xs-7 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact section .row .col-xs-7 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact section .row .col-xs-7 {
    margin-bottom: -40px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.page-template-template-contact .contact-sidebar-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-template-template-contact .contact-sidebar-block {
  padding: 25px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block {
    padding: 20px 34px 20px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-template-template-contact .contact-sidebar-block .contact-sidebar-title {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block .contact-sidebar-title {
    max-width: 100px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block .contact-sidebar-title {
    max-width: 100%;
  }
}

.page-template-template-contact .contact-sidebar-block .contact-sidebar-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt {
    margin-right: 90px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt {
    max-width: 320px;
    margin-right: 23px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt {
    max-width: auto;
  }
}

.page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt ul {
  position: relative;
  padding: 0;
  list-style: none;
}

.page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt ul:before {
  position: absolute;
  content: '';
  top: 0;
  left: -30px;
  width: 4px;
  height: 100%;
  background: #0092C7;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt ul:before {
    left: -25px;
  }
}

.page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt ul li {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt ul li {
    font-size: 14px;
    line-height: 20px;
  }
}

.page-template-template-contact .contact-sidebar-block.address .contact-sidebar-cnt ul a {
  text-decoration: underline;
  border-bottom: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt {
    max-width: auto;
    margin: 0;
  }
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt span.name {
  display: block;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt span.title {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #242423;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul {
  padding: 0;
  list-style: none;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li {
  margin-bottom: 5px;
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li {
    font-size: 14px;
    line-height: 20px;
  }
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li span {
  font-weight: bold;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li a {
  margin-left: 15px;
  text-decoration: underline;
  border-bottom: none;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #242423;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li.email {
  position: relative;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li.email:before {
  position: absolute;
  content: '';
  top: 4px;
  left: -30px;
  height: 14px;
  width: 15px;
  background-image: url(../images/mail-icon.svg);
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li.email:before {
    left: -30px;
  }
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li.phone {
  position: relative;
}

.page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li.phone:before {
  position: absolute;
  content: '';
  top: 4px;
  left: -30px;
  height: 14px;
  width: 15px;
  background-image: url(../images/phone-icon.svg);
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-sidebar-block.media .contact-sidebar-cnt ul li.phone:before {
    left: -30px;
  }
}

.page-template-template-contact .contact-sidebar-block.blue {
  background: #F0F7FC;
}

.page-template-template-contact .contact-sidebar-block.green {
  background: #EBFAF3;
}

.page-template-template-contact .contact-sidebar-block.yellow {
  background: #FEF8EA;
}

.page-template-template-contact .contact-form-container {
  padding: 25px 0 35px 0;
  margin: 0 auto 0 110px;
  max-width: 490px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact .contact-form-container {
    max-width: 100%;
    margin: 0;
    padding: 25px 36px 0px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-form-container {
    padding: 13px 16px 25px 16px;
  }
}

.page-template-template-contact .contact-form-container .contact-form-title {
  max-width: 490px;
}

.page-template-template-contact .contact-form-container .contact-form-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 54px;
  line-height: 70px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-form-container .contact-form-title h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

.page-template-template-contact .contact-form-container .contact-form-title p {
  margin: 10px 0 20px 0;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .contact-form-container .contact-form-title p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-contact .gform_fields li.half {
    width: 49%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 999px) and (min-width: 1px) {
  .page-template-template-contact .gform_fields li.half {
    width: 48.5%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-contact .gform_fields li.half {
    width: 100%;
  }
}

.page-template-template-contact .prettydropdown.classic {
  width: 100% !important;
}

.page-template-template-contact .prettydropdown {
  position: relative;
  min-width: 72px;
  display: inline-block;
}

.page-template-template-contact .prettydropdown.loading {
  min-width: 0;
}

.page-template-template-contact .prettydropdown>ul {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border: 2px solid #00806F;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  color: #000;
  width: 100%;
  max-height: 38px !important;
  cursor: pointer;
  font: normal 18px Calibri, sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}

.page-template-template-contact .prettydropdown>ul:after {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 8px;
  width: 12px;
  background: url(../images/blue-arrow-down.svg);
  background-repeat: no-repeat;
}

.page-template-template-contact .prettydropdown.loading>ul {
  visibility: hidden;
  white-space: nowrap;
}

.page-template-template-contact .prettydropdown>ul:focus,
.page-template-template-contact .prettydropdown:not(.disabled)>ul:hover {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
  outline-offset: 5px;
}

.page-template-template-contact .prettydropdown:not(.disabled)>ul.active {
  width: 100%;
  height: auto;
  max-height: none !important;
  border-color: 2px solid red;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99;
  padding-bottom: 10px;
}

.page-template-template-contact .prettydropdown:not(.disabled)>ul.active:after {
  content: '';
  position: absolute;
  right: 30px;
  top: 15px;
  height: 8px;
  width: 12px;
  background: url(../images/blue-arrow-down.svg);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.page-template-template-contact .prettydropdown>ul.active:focus {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid  #00BCE4;
  outline-offset: 5px;
}

.page-template-template-contact .prettydropdown>ul.active.reverse {
  top: auto;
  bottom: 0;
}

.page-template-template-contact .prettydropdown>ul>li {
  position: relative;
  width: auto !important;
  height: 66px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
  line-height: 46px;
  margin: 0;
}

.page-template-template-contact .prettydropdown.loading>ul>li {
  min-width: 0;
  display: block;
  padding-right: 0.8rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 32px;
  color: red;
}

.page-template-template-contact .prettydropdown>ul:not(.active)>li:not(.selected):first-child {
  visibility: hidden;
}

.page-template-template-contact .prettydropdown>ul>li:first-child,
.page-template-template-contact .prettydropdown>ul.active>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 auto !important;
  padding-left: 20px;
  height: 38px;
  width: 100%;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  color: #555859;
}

.page-template-template-contact .prettydropdown>ul>li:first-child.hover,
.page-template-template-contact .prettydropdown>ul.active>li.hover {
  background: #eceeea;
}

.page-template-template-contact .prettydropdown>ul.active>li.nohover {
  background: inherit !important;
  color: inherit !important;
}

.page-template-template-contact .prettydropdown.arrow>ul>li.selected:before,
.page-template-template-contact .prettydropdown.arrow>ul>li.selected:after {
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: '';
  display: block;
  margin: auto;
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
}

.page-template-template-contact .prettydropdown.arrow.triangle>ul>li.selected:after {
  content: none;
}

.page-template-template-contact .prettydropdown>ul:hover>li.selected:before {
  border-top-color: #7f7f7f;
}

.page-template-template-contact .prettydropdown>ul:not(.active)>li>span.checked {
  display: none;
}

.page-template-template-contact .prettydropdown.multiple>ul>li.selected {
  overflow: hidden;
  border-bottom: 2px solid red;
  padding-right: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-template-template-contact .prettydropdown>ul>li>span.checked {
  display: none;
}

.page-template-template-contact .prettydropdown>ul>li.label {
  cursor: default;
  font-weight: bold;
}

.page-template-template-contact .prettydropdown>ul>li.label:first-child,
.page-template-template-contact .prettydropdown.classic>ul>li.label ~ li.selected {
  border-top: none;
}

.page-template-template-contact .prettydropdown>ul>li.label ~ li:not(.label):not(.selected),
.page-template-template-contact .prettydropdown.classic>ul.active>li.label ~ li:not(.label) {
  padding-left: 1.6rem;
}

.page-template-template-contact .prettydropdown.classic>ul:not(.active)>li.selected:not(:first-child) {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 38px;
  width: 100%;
  padding-left: 20px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  color: #555859;
}

.page-template-template-contact .prettydropdown.disabled,
.page-template-template-contact .prettydropdown>ul>li.disabled {
  opacity: 0.3;
}

.page-template-template-contact .prettydropdown.disabled>ul>li,
.page-template-template-contact .prettydropdown>ul>li.disabled {
  cursor: not-allowed;
}

.page-template-template-contact .gform_footer {
  margin-top: -10px !important;
}

.page-template-template-in-the-news .copy-block,
.page-template-template-insights-briefs .copy-block {
  margin: 50px 0;
}

.page-template-template-in-the-news .copy-block p,
.page-template-template-insights-briefs .copy-block p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 24px;
  color: #242423;
}

.page-template-template-in-the-news .mailing-list-cta-container .row,
.page-template-template-insights-briefs .mailing-list-cta-container .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-template-template-in-the-news .mailing-header,
.page-template-template-insights-briefs .mailing-header {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  max-width: 45%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .mailing-header,
  .page-template-template-insights-briefs .mailing-header {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 1px) {
  .page-template-template-in-the-news .item,
  .page-template-template-insights-briefs .item {
    -ms-flex-preferred-size: 50% !important;
        flex-basis: 50% !important;
    max-width: 50% !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .item,
  .page-template-template-insights-briefs .item {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

.page-template-template-in-the-news .news-results-header,
.page-template-template-insights-briefs .news-results-header {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .news-results-header,
  .page-template-template-insights-briefs .news-results-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.page-template-template-in-the-news .news-results-title h2,
.page-template-template-insights-briefs .news-results-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 48px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .news-results-title h2,
  .page-template-template-insights-briefs .news-results-title h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.page-template-template-in-the-news .news-results-filter,
.page-template-template-insights-briefs .news-results-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .news-results-filter,
  .page-template-template-insights-briefs .news-results-filter {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    display: block;
  }
}

.page-template-template-in-the-news .news-results-filter h3,
.page-template-template-insights-briefs .news-results-filter h3 {
  margin-top: -10px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 14px;
  color: #242423;
  letter-spacing: 1px;
}

.page-template-template-in-the-news .news-results-filter select,
.page-template-template-insights-briefs .news-results-filter select {
  margin-left: 10px;
  width: 100%;
  max-width: 139px;
}

.page-template-template-in-the-news .results,
.page-template-template-insights-briefs .results {
  margin: 30px 0 50px 0;
}

.page-template-template-in-the-news .article,
.page-template-template-insights-briefs .article {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  padding: 35px 15px;
  min-height: 330px;
  max-height: auto;
  background: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
          box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
}

.page-template-template-in-the-news .article.national::after,
.page-template-template-insights-briefs .article.national::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #009E89;
}

.page-template-template-in-the-news .article.state::after,
.page-template-template-insights-briefs .article.state::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #0092C7;
}

.page-template-template-in-the-news .article .article-icon-block,
.page-template-template-insights-briefs .article .article-icon-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-template-template-in-the-news .article .article-icon,
.page-template-template-insights-briefs .article .article-icon {
  margin-bottom: 15px;
}

.page-template-template-in-the-news .article .article-icon img,
.page-template-template-insights-briefs .article .article-icon img {
  max-height: 70px;
  max-width: 100px;
  width: auto;
  height: auto;
}

.page-template-template-in-the-news .article .article-title,
.page-template-template-insights-briefs .article .article-title {
  margin-bottom: 0px;
}

.page-template-template-in-the-news .article .article-title h2,
.page-template-template-insights-briefs .article .article-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  color: #242423;
}

.page-template-template-in-the-news .article .article-date,
.page-template-template-insights-briefs .article .article-date {
  position: absolute;
  top: 15px;
  right: 15px;
}

.page-template-template-in-the-news .article .article-excerpt,
.page-template-template-insights-briefs .article .article-excerpt {
  font-size: 15px;
  line-height: 1.4;
}

.page-template-template-in-the-news .article .article-excerpt p,
.page-template-template-insights-briefs .article .article-excerpt p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 1.4;
  color: #242423;
}

.page-template-template-in-the-news .article .read-more,
.page-template-template-insights-briefs .article .read-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-template-in-the-news .article .read-more a,
.page-template-template-insights-briefs .article .read-more a {
  border-bottom: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #242423;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-template-template-in-the-news .article .read-more a:focus:not(.active-click),
.page-template-template-insights-briefs .article .read-more a:focus:not(.active-click) {
  -webkit-transition: 100ms 100ms all;
  -o-transition: 100ms 100ms all;
  transition: 100ms 100ms all;
  outline: 2px solid #00bce4 !important;
  outline-offset: 5px;
}

.page-template-template-in-the-news .article .read-more a:hover+img,
.page-template-template-insights-briefs .article .read-more a:hover+img {
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  -webkit-transform: rotate(-90deg) translateY(5px);
       -o-transform: rotate(-90deg) translateY(5px);
          transform: rotate(-90deg) translateY(5px);
}

.page-template-template-in-the-news .article .read-more img,
.page-template-template-insights-briefs .article .read-more img {
  margin-left: 5px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.page-template-template-in-the-news hr,
.page-template-template-insights-briefs hr {
  border-top: none;
  border-bottom: 2px solid #D7DDE0;
}

.page-template-template-in-the-news .prettydropdown.classic,
.page-template-template-insights-briefs .prettydropdown.classic {
  width: 100% !important;
  max-width: 150px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .prettydropdown.classic,
  .page-template-template-insights-briefs .prettydropdown.classic {
    max-width: 100%;
  }
}

.page-template-template-in-the-news .prettydropdown,
.page-template-template-insights-briefs .prettydropdown {
  position: relative;
  min-width: 72px;
  display: inline-block;
}

.page-template-template-in-the-news .prettydropdown.loading,
.page-template-template-insights-briefs .prettydropdown.loading {
  min-width: 0;
}

.page-template-template-in-the-news .prettydropdown>ul,
.page-template-template-insights-briefs .prettydropdown>ul {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 4px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  color: #000;
  width: 100%;
  max-height: 38px !important;
  cursor: pointer;
  font: normal 18px Calibri, sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .prettydropdown>ul,
  .page-template-template-insights-briefs .prettydropdown>ul {
    margin: 10px 0 !important;
  }
}

.page-template-template-in-the-news .prettydropdown>ul:after,
.page-template-template-insights-briefs .prettydropdown>ul:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  height: 38px;
  width: 100%;
  border: 2px solid #006C64;
  background: url(../images/grey-arrow-down.svg) 92% center no-repeat !important;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .prettydropdown>ul:after,
  .page-template-template-insights-briefs .prettydropdown>ul:after {
    border: 2px solid #555859 !important;
  }
}

.page-template-template-in-the-news .prettydropdown.loading>ul,
.page-template-template-insights-briefs .prettydropdown.loading>ul {
  visibility: hidden;
  white-space: nowrap;
}

.page-template-template-in-the-news .prettydropdown>ul:focus,
.page-template-template-in-the-news .prettydropdown:not(.disabled)>ul:hover,
.page-template-template-insights-briefs .prettydropdown>ul:focus,
.page-template-template-insights-briefs .prettydropdown:not(.disabled)>ul:hover {
  outline: none;
  outline-offset: 1px;
}

.page-template-template-in-the-news .prettydropdown:not(.disabled)>ul.active,
.page-template-template-insights-briefs .prettydropdown:not(.disabled)>ul.active {
  width: 100%;
  height: auto;
  max-height: none !important;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99;
  -webkit-box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.75);
  box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.75);
}

.page-template-template-in-the-news .prettydropdown:not(.disabled)>ul.active:after,
.page-template-template-insights-briefs .prettydropdown:not(.disabled)>ul.active:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  height: 38px;
  width: 100%;
}

.page-template-template-in-the-news .prettydropdown>ul.active:focus,
.page-template-template-insights-briefs .prettydropdown>ul.active:focus {
  outline-offset: 5px;
}

.page-template-template-in-the-news .prettydropdown>ul.active.reverse,
.page-template-template-insights-briefs .prettydropdown>ul.active.reverse {
  top: auto;
  bottom: 0;
}

.page-template-template-in-the-news .prettydropdown>ul>li,
.page-template-template-insights-briefs .prettydropdown>ul>li {
  position: relative;
  width: auto !important;
  height: 66px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
  line-height: 46px;
  margin: 0;
}

.page-template-template-in-the-news .prettydropdown.loading>ul>li,
.page-template-template-insights-briefs .prettydropdown.loading>ul>li {
  min-width: 0;
  display: block;
  padding-right: 0.8rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 32px;
  color: red;
}

.page-template-template-in-the-news .prettydropdown>ul:not(.active)>li:not(.selected):first-child,
.page-template-template-insights-briefs .prettydropdown>ul:not(.active)>li:not(.selected):first-child {
  visibility: hidden;
}

.page-template-template-in-the-news .prettydropdown>ul>li.selected,
.page-template-template-insights-briefs .prettydropdown>ul>li.selected {
  width: 100% !important;
}

.page-template-template-in-the-news .prettydropdown>ul>li:not(:first-child),
.page-template-template-insights-briefs .prettydropdown>ul>li:not(:first-child) {
  border-bottom: 1px solid #edf1f7;
}

.page-template-template-in-the-news .prettydropdown>ul>li:first-child:hover,
.page-template-template-in-the-news .prettydropdown>ul.active>li:first-child:hover,
.page-template-template-insights-briefs .prettydropdown>ul>li:first-child:hover,
.page-template-template-insights-briefs .prettydropdown>ul.active>li:first-child:hover {
  background-color: none;
}

.page-template-template-in-the-news .prettydropdown>ul>li:first-child,
.page-template-template-in-the-news .prettydropdown>ul.active>li.selected,
.page-template-template-insights-briefs .prettydropdown>ul>li:first-child,
.page-template-template-insights-briefs .prettydropdown>ul.active>li.selected {
  border: none !important;
  background-color: none;
}

.page-template-template-in-the-news .prettydropdown>ul>li:first-child,
.page-template-template-in-the-news .prettydropdown>ul.active>li,
.page-template-template-insights-briefs .prettydropdown>ul>li:first-child,
.page-template-template-insights-briefs .prettydropdown>ul.active>li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 auto !important;
  padding: 5px 20px;
  height: 38px;
  width: 100%;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  color: #555859;
}

.page-template-template-in-the-news .prettydropdown>ul>li:first-child:not(:first-child):hover:after,
.page-template-template-in-the-news .prettydropdown>ul.active>li:not(:first-child):hover:after,
.page-template-template-insights-briefs .prettydropdown>ul>li:first-child:not(:first-child):hover:after,
.page-template-template-insights-briefs .prettydropdown>ul.active>li:not(:first-child):hover:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
}

.page-template-template-in-the-news .prettydropdown>ul.active>li.hover,
.page-template-template-insights-briefs .prettydropdown>ul.active>li.hover {
  background: #D7DDE0 !important;
  color: white !important;
}

.page-template-template-in-the-news .prettydropdown>ul.active>li.nohover,
.page-template-template-insights-briefs .prettydropdown>ul.active>li.nohover {
  background: white !important;
  color: inherit !important;
}

.page-template-template-in-the-news .prettydropdown.arrow.triangle>ul>li.selected:after,
.page-template-template-insights-briefs .prettydropdown.arrow.triangle>ul>li.selected:after {
  content: none;
}

.page-template-template-in-the-news .prettydropdown>ul:hover>li.selected:before,
.page-template-template-insights-briefs .prettydropdown>ul:hover>li.selected:before {
  border-top-color: #7f7f7f;
}

.page-template-template-in-the-news .prettydropdown>ul:not(.active)>li>span.checked,
.page-template-template-insights-briefs .prettydropdown>ul:not(.active)>li>span.checked {
  display: none;
}

.page-template-template-in-the-news .prettydropdown.multiple>ul>li.selected,
.page-template-template-insights-briefs .prettydropdown.multiple>ul>li.selected {
  overflow: hidden;
  border-bottom: 2px solid red;
  padding-right: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-template-template-in-the-news .prettydropdown>ul>li>span.checked,
.page-template-template-insights-briefs .prettydropdown>ul>li>span.checked {
  display: none;
}

.page-template-template-in-the-news .prettydropdown>ul>li.label,
.page-template-template-insights-briefs .prettydropdown>ul>li.label {
  cursor: default;
  font-weight: bold;
}

.page-template-template-in-the-news .prettydropdown>ul>li.label:first-child,
.page-template-template-in-the-news .prettydropdown.classic>ul>li.label ~ li.selected,
.page-template-template-insights-briefs .prettydropdown>ul>li.label:first-child,
.page-template-template-insights-briefs .prettydropdown.classic>ul>li.label ~ li.selected {
  border-top: none;
}

.page-template-template-in-the-news .prettydropdown>ul>li.label ~ li:not(.label):not(.selected),
.page-template-template-in-the-news .prettydropdown.classic>ul.active>li.label ~ li:not(.label),
.page-template-template-insights-briefs .prettydropdown>ul>li.label ~ li:not(.label):not(.selected),
.page-template-template-insights-briefs .prettydropdown.classic>ul.active>li.label ~ li:not(.label) {
  padding-left: 1.6rem;
}

.page-template-template-in-the-news .prettydropdown.classic>ul:not(.active)>li.selected:not(:first-child),
.page-template-template-insights-briefs .prettydropdown.classic>ul:not(.active)>li.selected:not(:first-child) {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 38px;
  width: 100%;
  padding-left: 20px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  color: #555859;
}

.page-template-template-in-the-news .prettydropdown.disabled,
.page-template-template-in-the-news .prettydropdown>ul>li.disabled,
.page-template-template-insights-briefs .prettydropdown.disabled,
.page-template-template-insights-briefs .prettydropdown>ul>li.disabled {
  opacity: 0.3;
}

.page-template-template-in-the-news .prettydropdown.disabled>ul>li,
.page-template-template-in-the-news .prettydropdown>ul>li.disabled,
.page-template-template-insights-briefs .prettydropdown.disabled>ul>li,
.page-template-template-insights-briefs .prettydropdown>ul>li.disabled {
  cursor: not-allowed;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-in-the-news .gform_fields li.half,
  .page-template-template-insights-briefs .gform_fields li.half {
    margin-right: 0;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-in-the-news .col-xs-12.col-md-6 .gform_wrapper,
  .page-template-template-insights-briefs .col-xs-12.col-md-6 .gform_wrapper {
    margin-top: 25px;
  }
}

.page-template-template-in-the-news .article {
  min-height: 330px;
}

@media only screen and (max-width: 1600px) and (min-width: 1px) {
  .page-template-template-in-the-news .article {
    min-height: 364px;
  }
}

@media only screen and (max-width: 1423px) and (min-width: 1400px) {
  .page-template-template-insights-briefs .article {
    min-height: 342px;
  }
}

.page-template-template-insights-briefs .news-results-block {
  margin-top: -100px;
  padding-top: 100px;
}

.page-template-template-data-downloads section {
  padding-bottom: 75px;
}

.page-template-template-data-downloads .text-container {
  padding: 50px 0px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .text-container {
    padding: 25px 0;
  }
}

.page-template-template-data-downloads .text-container .text-container-cnt {
  max-width: 100%;
}

.page-template-template-data-downloads .text-container .text-container-cnt p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 30px;
  color: #242423;
}

.page-template-template-data-downloads .text-container .text-container-cnt p:first-child {
  margin-bottom: -20px;
}

.page-template-template-data-downloads .accordion-container:not(:first-child) .accordion-large .accordion-slide-container:first-child {
  border-top: none;
}

.page-template-template-data-downloads .accordion-slide-content {
  margin: 40px 0 30px 0px;
}

.page-template-template-data-downloads .accordion-title>button>h2 {
  font-size: 20px;
  line-height: 24px;
}

.page-template-template-data-downloads .datasets-container {
  padding: 0px 18px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-2,
  .page-template-template-data-downloads .datasets-container .row .col-xs-6 {
    margin-bottom: 10px;
  }
}

.page-template-template-data-downloads .datasets-container .row .accordion-subheader {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-weight: bold;
}

.page-template-template-data-downloads .datasets-container .row.accordion-subheader-container {
  padding: 0;
  border-bottom: none;
}

.page-template-template-data-downloads .datasets-container.blue {
  border-top: 10px solid #ABD7ED;
  border-bottom: 10px solid #ABD7ED;
}

.page-template-template-data-downloads .datasets-container.yellow {
  border-top: 10px solid #FEF8EA;
  border-bottom: 10px solid #FEF8EA;
}

.page-template-template-data-downloads .datasets-container.green {
  border-top: 10px solid #EBFAF3;
  border-bottom: 10px solid #EBFAF3;
}

.page-template-template-data-downloads .datasets-container .row {
  padding: 13px 0;
  border-bottom: 1px solid #BEC4C7;
}

.page-template-template-data-downloads .datasets-container .row:last-child {
  border-bottom: none;
}

.page-template-template-data-downloads .datasets-container .row .download-col a {
  border-bottom: none;
}

.page-template-template-data-downloads .datasets-container .row .figure-modal {
  border-bottom: none;
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2.datasets-figure {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-preferred-size: 20.66667% !important;
      flex-basis: 20.66667% !important;
  max-width: 20.66667% !important;
  min-height: 30px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #242423;
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2.datasets-figure a {
  height: 22px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-2.datasets-figure {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2.datasets-figure a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0;
  text-indent: 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #006FAB;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-2.datasets-figure a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.page-template-template-data-downloads .datasets-container .row .col-xs-6 {
  -ms-flex-preferred-size: 46% !important;
      flex-basis: 46% !important;
  max-width: 46% !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-6 {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-6 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-6 {
    padding: 0;
  }
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 20px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #006FAB;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-2 {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2 a {
  white-space: nowrap;
  border-bottom: none;
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2.customize-figure {
  margin-top: 5px;
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2.customize-figure a img {
  margin-left: 5px;
  margin-top: -4px;
  max-width: 13px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .datasets-container .row .col-xs-2.customize-figure {
    display: none;
  }
}

.page-template-template-data-downloads .datasets-container .row .col-xs-2.download-figure a img {
  margin-left: 10px;
}

.page-template-template-data-downloads .download-figure a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: none !important;
  font-size: 14px;
}

.page-template-template-data-downloads .download-figure a img {
  margin-left: 7px !important;
  margin-top: -3px;
  max-width: 13px;
}

.page-template-template-data-downloads .download-figure a.mobile-btn {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .download-figure a.desktop-btn {
    display: none;
  }

  .page-template-template-data-downloads .download-figure a.mobile-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .mobile-hide {
    display: none;
  }
}

.page-template-template-data-downloads .mobile-message {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .mobile-message {
    margin-top: 0;
    display: block;
    margin-top: 50px;
    margin-bottom: -20px;
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-data-downloads .download-figure.col-xs-12 {
    padding: 0;
  }
}

.page-template-template-data-downloads hr {
  border-top: none;
  border-bottom: 2px solid #D7DDE0;
}

.page-template-template-data-downloads .linkbox {
  margin-top: 50px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-data-downloads .linkbox {
    margin-top: 40px;
  }
}

.page-template-template-data-downloads .section-subheader {
  border-bottom: 4px solid #ABD7ED;
  margin-right: -.5rem;
  margin-left: -.5rem;
  padding: 13px 0;
}

.page-template-template-report mark,
.page-template-template-new-report mark {
  background-color: #006b64;
  color: #Fff;
  font-weight: 600;
  padding: 2px 6px;
}

.page-template-template-report .header-animate-container,
.page-template-template-new-report .header-animate-container {
  position: fixed;
  z-index: 9999;
  width: 100%;
  -webkit-transition: 300ms all ease-out;
  -o-transition: 300ms all ease-out;
  transition: 300ms all ease-out;
  -webkit-transform: translateY(-300px);
       -o-transform: translateY(-300px);
          transform: translateY(-300px);
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .header-animate-container.scrolled,
  .page-template-template-new-report .header-animate-container.scrolled {
    position: fixed;
    z-index: 999;
    width: 100%;
    -webkit-transition: 600ms all;
    -o-transition: 600ms all;
    transition: 600ms all;
    -webkit-transform: translateY(-178px);
         -o-transform: translateY(-178px);
            transform: translateY(-178px);
  }
}

@media only screen and (max-width: 1245px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .header-animate-container.scrolled,
  .page-template-template-new-report .header-animate-container.scrolled {
    -webkit-transform: translateY(-116px);
         -o-transform: translateY(-116px);
            transform: translateY(-116px);
  }
}

.page-template-template-report .header-animate-container.hide-nav,
.page-template-template-new-report .header-animate-container.hide-nav {
  width: 100% !important;
  -webkit-transition: 300ms all ease-out !important;
  -o-transition: 300ms all ease-out !important;
  transition: 300ms all ease-out !important;
  -webkit-transform: translateY(-300px) !important;
       -o-transform: translateY(-300px) !important;
          transform: translateY(-300px) !important;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .header-animate-container.hide-nav,
  .page-template-template-new-report .header-animate-container.hide-nav {
    z-index: 99999 !important;
    position: fixed !important;
    z-index: 999 !important;
    width: 100% !important;
    -webkit-transition: 300ms all ease-out !important;
    -o-transition: 300ms all ease-out !important;
    transition: 300ms all ease-out !important;
    -webkit-transform: translateY(-117px) !important;
         -o-transform: translateY(-117px) !important;
            transform: translateY(-117px) !important;
  }
}

.page-template-template-report .header-animate-container.show-nav,
.page-template-template-new-report .header-animate-container.show-nav {
  width: 100%;
  -webkit-transition: 300ms all ease-out;
  -o-transition: 300ms all ease-out;
  transition: 300ms all ease-out;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .header-animate-container.show-nav,
  .page-template-template-new-report .header-animate-container.show-nav {
    z-index: 99999;
    position: fixed;
    z-index: 999;
    width: 100%;
    -webkit-transition: 300ms all ease-out;
    -o-transition: 300ms all ease-out;
    transition: 300ms all ease-out;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-report .header-animate-container.section-nav-open,
  .page-template-template-new-report .header-animate-container.section-nav-open {
    -webkit-transform: none !important;
         -o-transform: none !important;
            transform: none !important;
  }
}

.page-template-template-report .sidebar__inner,
.page-template-template-new-report .sidebar__inner {
  max-height: 520px !important;
  min-width: 350px !important;
  max-width: 350px !important;
  padding: 20px 0px 20px 0px;
  z-index: 1;
  overflow-y: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .sidebar__inner,
  .page-template-template-new-report .sidebar__inner {
    display: none;
  }
}

.page-template-template-report .sidebar,
.page-template-template-new-report .sidebar {
  position: fixed;
  top: 245px;
  left: 0px;
  width: 350px;
  z-index: 99999999999;
}

.page-template-template-report .side-bar-col.responsive,
.page-template-template-new-report .side-bar-col.responsive {
  display: none !important;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .side-bar-col.responsive,
  .page-template-template-new-report .side-bar-col.responsive {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    position: fixed;
    z-index: 9;
    left: 0px;
    top: 176px;
    padding: 0;
    background: #fff;
    height: 52px;
    overflow: hidden;
  }
}

@media only screen and (max-width: 1245px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .side-bar-col.responsive,
  .page-template-template-new-report .side-bar-col.responsive {
    top: 116px;
  }
}

.page-template-template-report .side-bar-col.responsive .sidebar-responsive,
.page-template-template-new-report .side-bar-col.responsive .sidebar-responsive {
  width: 100%;
}

.page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive,
.page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive {
  z-index: 1;
}

.page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links a,
.page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links a {
  border-bottom: none;
}

.page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li,
.page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li {
  margin-bottom: -1px;
  padding: 10px 0 10px 35px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li,
  .page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li {
    padding: 10px 0 10px 15px;
  }
}

.page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li.parent-tab,
.page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li.parent-tab {
  background: #fff;
}

.page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li.child-tab,
.page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li.child-tab {
  padding-left: 15px;
  background: #fff;
}

.page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li img,
.page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li img {
  margin-right: 45px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li img,
  .page-template-template-new-report .side-bar-col.responsive .sidebar-responsive .sidebar__inner-responsive .side-nav-tabs .side-nav-tabs-links li img {
    margin-right: 20px;
  }
}

.page-template-template-report .side-bar-col.responsive.open,
.page-template-template-new-report .side-bar-col.responsive.open {
  overflow: visible;
}

.page-template-template-report .side-bar-col.responsive.open .side-nav-tabs-toggle,
.page-template-template-new-report .side-bar-col.responsive.open .side-nav-tabs-toggle {
  background-color: #EBEEF0;
}

.page-template-template-report .side-bar-col.responsive.open .side-nav-tabs-toggle:after,
.page-template-template-new-report .side-bar-col.responsive.open .side-nav-tabs-toggle:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #00806F;
}

.page-template-template-report .side-bar-col.responsive.open:after,
.page-template-template-new-report .side-bar-col.responsive.open:after {
  content: '';
  position: absolute;
  bottom: initial;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
  background: #909699;
}

.page-template-template-report .main-content,
.page-template-template-new-report .main-content {
  margin-bottom: 50px;
}

.page-template-template-report .main-content.hide,
.page-template-template-new-report .main-content.hide {
  display: none;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .main-content,
  .page-template-template-new-report .main-content {
    margin-bottom: 0;
  }
}

.page-template-template-report .main-content .row .col-xs-4.side-bar-col.desktop,
.page-template-template-new-report .main-content .row .col-xs-4.side-bar-col.desktop {
  -ms-flex-preferred-size: 31.33333%;
      flex-basis: 31.33333%;
  max-width: 31.33333%;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .main-content .row .col-xs-4.side-bar-col.desktop,
  .page-template-template-new-report .main-content .row .col-xs-4.side-bar-col.desktop {
    opacity: 0;
  }
}

@media only screen and (max-width: 1245px) and (min-width: 1px) and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .main-content .row .col-xs-4.side-bar-col.desktop.scrolled,
  .page-template-template-new-report .main-content .row .col-xs-4.side-bar-col.desktop.scrolled {
    -webkit-transition: 600ms all;
    -o-transition: 600ms all;
    transition: 600ms all;
    -webkit-transform: translateY(-108%);
         -o-transform: translateY(-108%);
            transform: translateY(-108%);
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .main-content .row .col-xs-4.side-bar-col.desktop,
  .page-template-template-new-report .main-content .row .col-xs-4.side-bar-col.desktop {
    top: 116px;
  }
}

.page-template-template-report .main-content .row .col-xs-8.content-col.hide,
.page-template-template-new-report .main-content .row .col-xs-8.content-col.hide {
  display: none;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .main-content .row .col-xs-8.content-col,
  .page-template-template-new-report .main-content .row .col-xs-8.content-col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .main-content .row .col-xs-8.content-col,
  .page-template-template-new-report .main-content .row .col-xs-8.content-col {
    padding-right: 0;
  }
}

.page-template-template-report .reloading-message,
.page-template-template-new-report .reloading-message {
  display: none;
}

.page-template-template-report .reloading-message.show,
.page-template-template-new-report .reloading-message.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  width: 100%;
}

.page-template-template-report .reloading-message p,
.page-template-template-new-report .reloading-message p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  line-height: 50px;
  color: #006FAB;
  font-weight: 700;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .reloading-message p,
  .page-template-template-new-report .reloading-message p {
    font-size: 28px;
    line-height: 34px;
  }
}

.page-template-template-report .reloading-message .load-indicator,
.page-template-template-new-report .reloading-message .load-indicator {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
       -o-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform-origin: 50%;
       -o-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: load5 2s linear infinite;
       -o-animation: load5 2s linear infinite;
          animation: load5 2s linear infinite;
}

.page-template-template-report .reloading-message .load-indicator.show,
.page-template-template-new-report .reloading-message .load-indicator.show {
  opacity: 1;
}

.page-template-template-report main,
.page-template-template-new-report main {
  overflow-y: hidden;
  overflow-x: hidden;
  padding-top: 190px;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report main,
  .page-template-template-new-report main {
    padding-top: 250px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report main,
  .page-template-template-new-report main {
    padding-top: 175px;
    overflow-x: hidden;
  }
}

.page-template-template-report hr,
.page-template-template-new-report hr {
  border-top: 2px solid #D7DDE0;
}

.page-template-template-report hr.half,
.page-template-template-new-report hr.half {
  width: 50%;
  margin: 0 auto;
}

.page-template-template-report ul.side-nav-tabs-links,
.page-template-template-new-report ul.side-nav-tabs-links {
  padding: 0;
  list-style: none;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-template-template-report ul.side-nav-tabs-links a,
.page-template-template-new-report ul.side-nav-tabs-links a {
  border-bottom: none;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report ul.side-nav-tabs-links,
  .page-template-template-new-report ul.side-nav-tabs-links {
    max-width: 100%;
    height: 0;
  }
}

.page-template-template-report ul.side-nav-tabs-links.opened,
.page-template-template-new-report ul.side-nav-tabs-links.opened {
  height: auto;
}

.page-template-template-report ul.side-nav-tabs-links li.side-nav-tabs-toggle,
.page-template-template-new-report ul.side-nav-tabs-links li.side-nav-tabs-toggle {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  border-top: 1px solid #BEC4C7;
  border-bottom: 1px solid #BEC4C7;
  background-color: #fff;
}

.page-template-template-report ul.side-nav-tabs-links li.side-nav-tabs-toggle:hover,
.page-template-template-new-report ul.side-nav-tabs-links li.side-nav-tabs-toggle:hover {
  background-color: #EBEEF0;
}

.page-template-template-report ul.side-nav-tabs-links li.side-nav-tabs-toggle a.side-nav-tabs-toggle-text,
.page-template-template-new-report ul.side-nav-tabs-links li.side-nav-tabs-toggle a.side-nav-tabs-toggle-text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: #242423;
  position: relative;
  display: block;
}

.page-template-template-report ul.side-nav-tabs-links li.side-nav-tabs-toggle img,
.page-template-template-new-report ul.side-nav-tabs-links li.side-nav-tabs-toggle img {
  position: absolute;
  z-index: 99;
  right: 0;
  top: 10px;
  margin: 0;
  padding: 12px;
  cursor: pointer;
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab {
  position: relative;
  margin-bottom: 17px;
  padding: 0 20px;
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow {
  position: absolute;
  z-index: 99;
  right: 0;
  top: 0;
  margin: 0;
  padding: 12px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  cursor: pointer;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow,
  .page-template-template-new-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow {
    -webkit-transform: translateY(0) rotate(0deg);
         -o-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow,
  .page-template-template-new-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow {
    top: 10px;
  }
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow.open,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab img.toggle-arrow.open {
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab.open .child,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab.open .child {
  display: block;
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab:last-child,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab:last-child {
  margin-bottom: 0;
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab a.parent-link,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab a.parent-link {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: #242423;
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab a.parent-link.active,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab a.parent-link.active {
  font-weight: 700;
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab:hover,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab:hover {
  background: rgba(90,93,94,0.15);
}

.page-template-template-report ul.side-nav-tabs-links li.parent-tab.no-hover,
.page-template-template-new-report ul.side-nav-tabs-links li.parent-tab.no-hover {
  background: none;
}

.page-template-template-report ul.child-list,
.page-template-template-new-report ul.child-list {
  list-style: none;
  display: none;
  position: relative;
  padding-left: 10px;
}

.page-template-template-report ul.child-list.open,
.page-template-template-new-report ul.child-list.open {
  display: block;
}

.page-template-template-report ul.child-list:after,
.page-template-template-new-report ul.child-list:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0px;
  height: 100%;
  width: 3px;
  background: #D7DDE0;
}

.page-template-template-report ul.child-list li,
.page-template-template-new-report ul.child-list li {
  margin-bottom: 10px;
  line-height: 15px;
}

.page-template-template-report ul.child-list li a.child-link,
.page-template-template-new-report ul.child-list li a.child-link {
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  color: #242423;
  position: relative;
}

.page-template-template-report ul.child-list li a.child-link.active,
.page-template-template-new-report ul.child-list li a.child-link.active {
  color: #242423;
  font-weight: bold;
}

.page-template-template-report ul.child-list li a.child-link.active:after,
.page-template-template-new-report ul.child-list li a.child-link.active:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  z-index: 9;
  content: '';
  height: 20px;
  width: 3px;
  background: #909699;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-report ul.child-list li a.child-link.active:after,
  .page-template-template-new-report ul.child-list li a.child-link.active:after {
    left: -25px;
  }
}

.page-template-template-report .content,
.page-template-template-new-report .content {
  margin: 25px auto 0 0;
  max-width: 900px;
  min-height: 100vh;
  background: #fff;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .content,
  .page-template-template-new-report .content {
    max-width: 100%;
  }
}

.page-template-template-report .navigation-buttons,
.page-template-template-new-report .navigation-buttons {
  background: #EBFAF3;
  height: 134px;
  width: 100%;
  max-width: 840px;
  overflow: hidden;
  margin-top: 66px;
  margin-bottom: 15px;
}

.page-template-template-report .navigation-buttons a,
.page-template-template-new-report .navigation-buttons a {
  border-bottom: none;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons,
  .page-template-template-new-report .navigation-buttons {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons,
  .page-template-template-new-report .navigation-buttons {
    margin-top: 20px;
  }
}

.page-template-template-report .navigation-buttons .row,
.page-template-template-new-report .navigation-buttons .row {
  height: 100%;
  margin: 0;
}

.page-template-template-report .navigation-buttons .row .col-xs-6,
.page-template-template-new-report .navigation-buttons .row .col-xs-6 {
  position: relative;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6,
  .page-template-template-new-report .navigation-buttons .row .col-xs-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.page-template-template-report .navigation-buttons .row .col-xs-6:first-child,
.page-template-template-new-report .navigation-buttons .row .col-xs-6:first-child {
  border-right: 2px solid #009E89;
  padding: 50px 25px 85px 45px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6:first-child,
  .page-template-template-new-report .navigation-buttons .row .col-xs-6:first-child {
    padding: 50px 10px 85px 10px;
  }
}

.page-template-template-report .navigation-buttons .row .col-xs-6:not(:first-child),
.page-template-template-new-report .navigation-buttons .row .col-xs-6:not(:first-child) {
  border-left: 2px solid #009E89;
  padding: 50px 25px 85px 45px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6:not(:first-child),
  .page-template-template-new-report .navigation-buttons .row .col-xs-6:not(:first-child) {
    padding: 50px 20px 85px 10px;
  }
}

.page-template-template-report .navigation-buttons .row .col-xs-6 span,
.page-template-template-new-report .navigation-buttons .row .col-xs-6 span {
  position: absolute;
  top: 30px;
  left: 45px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #00806F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6 span,
  .page-template-template-new-report .navigation-buttons .row .col-xs-6 span {
    font-size: 12px;
    line-height: 16px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6 span,
  .page-template-template-new-report .navigation-buttons .row .col-xs-6 span {
    position: static;
    margin-top: -20px;
  }
}

.page-template-template-report .navigation-buttons .row .col-xs-6 a,
.page-template-template-new-report .navigation-buttons .row .col-xs-6 a {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding-left: 45px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6 a,
  .page-template-template-new-report .navigation-buttons .row .col-xs-6 a {
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6 a,
  .page-template-template-new-report .navigation-buttons .row .col-xs-6 a {
    max-width: 275px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .navigation-buttons .row .col-xs-6 a,
  .page-template-template-new-report .navigation-buttons .row .col-xs-6 a {
    padding-left: 10px;
  }
}

.page-template-template-report .navigation-buttons .row .col-xs-6 a:hover,
.page-template-template-new-report .navigation-buttons .row .col-xs-6 a:hover {
  background: rgba(8,199,167,0.15);
}

.page-template-template-report .navigation-buttons .row .col-xs-6.hide,
.page-template-template-new-report .navigation-buttons .row .col-xs-6.hide {
  background: #fff;
  pointer-events: none;
}

.page-template-template-report .search-results-section,
.page-template-template-new-report .search-results-section {
  padding-left: 31.33333%;
}

@media screen and (max-width: 1245px) and (min-width: 1px) {
  .page-template-template-report .search-results-section,
  .page-template-template-new-report .search-results-section {
    padding-left: 150px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-report .search-results-section,
  .page-template-template-new-report .search-results-section {
    padding-left: 16px;
  }
}

.page-template-template-state-profile-report main {
  padding: 116px 0;
  overflow: visible;
}

.page-template-template-state-profile-report .state-report-bar {
  height: 48px;
  background: #F0F7FC;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-report-bar {
    height: auto;
  }
}

.page-template-template-state-profile-report .state-report-bar .row {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul li {
  margin-right: 40px;
}

.page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul li:last-child {
  margin-right: 0;
}

.page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul li a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #5A5D5E;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul li a {
    font-size: 12px;
  }
}

.page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul li a:hover+img {
  -webkit-transition: 250ms all;
  -o-transition: 250ms all;
  transition: 250ms all;
  -webkit-transform: rotate(-90deg) translateY(5px);
       -o-transform: rotate(-90deg) translateY(5px);
          transform: rotate(-90deg) translateY(5px);
}

.page-template-template-state-profile-report .state-report-bar .row .col-xs-12 ul li img {
  margin-left: 10px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.page-template-template-state-profile-report .state-profile-report-container {
  margin-top: 55px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-profile-report-container {
    margin-top: 0;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-profile-report-container .row .col-lg-8 {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.page-template-template-state-profile-report .side-nav-col {
  -ms-flex-preferred-size: 21.33333%;
      flex-basis: 21.33333%;
  max-width: 21.33333%;
  min-width: 296px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .side-nav-col {
    height: 70px;
    overflow: hidden;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  .page-template-template-state-profile-report .side-nav-col.open {
    height: auto;
    overflow: visible;
  }
}

.page-template-template-state-profile-report main.main .state-menu-container {
  position: relative;
  z-index: 999;
  padding: 25px 0;
  height: 100vh;
  background: #fff;
  border-top: 1px solid #d7dde0;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report main.main .state-menu-container {
    height: 55vh;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report main.main .state-menu-container {
    height: auto;
    border-top: none;
    padding: 0 0 20px 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-template-template-state-profile-report main.main .state-menu-container .mobile-state-menu {
  max-width: none;
  max-height: none;
  padding-left: 10vw;
  padding-right: 10vw;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report main.main .state-menu-container .mobile-state-menu {
    margin-left: 0;
  }
}

.page-template-template-state-profile-report main.main .state-menu-container .mobile-state-menu a {
  border: none;
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu-title {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report main.main .state-menu-container .state-menu-title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 0 10vw 16px;
    position: static;
  }
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  line-height: 30px;
  color: #242423;
  text-align: center;
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 768px;
  position: relative;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report main.main .state-menu-container .state-menu {
    display: none;
  }
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu .mobile-state-menu {
  display: none !important;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .page-template-template-state-profile-report main.main .state-menu-container .state-menu .mobile-state-menu {
    max-height: none;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report main.main .state-menu-container .state-menu .mobile-state-menu {
    display: block;
    overflow: auto;
  }
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu .mobile-state-menu ul li a {
  border: none;
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu svg {
  max-width: 90%;
  margin: 0 auto;
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu svg a text {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu svg a:hover polygon,
.page-template-template-state-profile-report main.main .state-menu-container .state-menu svg a:focus polygon {
  fill: #FFFFFF;
  stroke: #009E89;
  stroke-width: 2px;
}

.page-template-template-state-profile-report main.main .state-menu-container .state-menu svg a:hover text,
.page-template-template-state-profile-report main.main .state-menu-container .state-menu svg a:focus text {
  fill: #009E89;
}

.page-template-template-state-profile-report .tablet-toggle {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .tablet-toggle {
    display: block;
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
  }

  .page-template-template-state-profile-report .tablet-toggle button {
    background: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    font-family: "Roboto", sans-serif !important;
    font-weight: 700;
    font-style: normal;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    color: #525351 !important;
  }

  .page-template-template-state-profile-report .tablet-toggle button img {
    margin-left: 10px;
  }

  .page-template-template-state-profile-report .tablet-toggle button.open img {
    -webkit-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.page-template-template-state-profile-report .sidenav-container {
  position: sticky;
  top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  -webkit-box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
}

.page-template-template-state-profile-report .sidenav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-height: 466px;
  overflow: scroll;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .sidenav {
    max-height: none;
    overflow: visible;
  }
}

.page-template-template-state-profile-report .sidenav-head {
  width: 100%;
}

.page-template-template-state-profile-report .sidenav-head hr {
  border-top: 2px solid rgba(90,93,94,0.15) !important;
  max-width: 233px;
  margin: 10px auto 10px auto;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .sidenav-head hr {
    max-width: 95%;
  }
}

.page-template-template-state-profile-report .sidenav-map {
  max-width: 250px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .sidenav-map {
    display: none;
  }
}

.page-template-template-state-profile-report .sidenav-state-dropdown {
  max-width: 233px;
  margin: 20px auto 0 auto;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .sidenav-state-dropdown {
    max-width: 95%;
  }
}

.page-template-template-state-profile-report label.sidenav-label {
  max-width: 233px;
  min-width: 100%;
  margin: 0 auto !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  color: #525351 !important;
}

.page-template-template-state-profile-report label.sidenav-label.cusotmization-label {
  letter-spacing: 0px !important;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report label.sidenav-label {
    max-width: 95%;
  }
}

.page-template-template-state-profile-report .select2-dropdown {
  width: 232px !important;
  background: #fff;
  border: 1px solid rgba(85,88,89,0.2);
  -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
  border-radius: 2px;
  left: 0px !important;
  top: 35px;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .select2-dropdown {
    width: 95% !important;
  }
}

.page-template-template-state-profile-report .select2-container .select2-selection {
  height: auto;
  border: 2px solid #006C64 !important;
}

.page-template-template-state-profile-report .select2-container .select2-selection .select2-selection__arrow:after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/blue-arrow-down.svg) !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: 9px 6px !important;
  color: transparent;
  display: inline-block;
}

.page-template-template-state-profile-report .sidenav-additional-customization {
  margin-top: 20px;
  padding: 5px 0;
}

.page-template-template-state-profile-report .sidenav-additional-customization.hover-state:hover {
  background: rgba(90,93,94,0.15);
}

.page-template-template-state-profile-report #additional-customization-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 233px;
  width: 100%;
  margin: 0 auto;
  border-bottom: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #525351;
}

.page-template-template-state-profile-report #additional-customization-toggle img {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.page-template-template-state-profile-report #additional-customization-toggle.open img {
  -webkit-transform: rotate(0);
       -o-transform: rotate(0);
          transform: rotate(0);
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report #additional-customization-toggle {
    max-width: 95%;
  }
}

.page-template-template-state-profile-report .additional-options {
  max-width: 233px;
  margin: 0px auto 0 auto;
}

.page-template-template-state-profile-report .additional-options.hide {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .additional-options {
    max-width: 95%;
  }
}

.page-template-template-state-profile-report fieldset {
  margin-top: 15px;
}

.page-template-template-state-profile-report fieldset:first-child {
  margin-top: 0;
}

.page-template-template-state-profile-report fieldset:last-child {
  margin-top: 0;
}

.page-template-template-state-profile-report .radio-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.page-template-template-state-profile-report .radio-container label {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.page-template-template-state-profile-report .radio-container input[type="radio"] {
  position: relative;
  left: -3000px;
  margin-right: 20px;
}

.page-template-template-state-profile-report .radio-container input[type="radio"]:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  border: 2px solid #525351;
  border-radius: 50%;
}

.page-template-template-state-profile-report .radio-container input[type="radio"]:checked:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  background: url(../images/radio-selected.png);
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-template-state-profile-report .checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.page-template-template-state-profile-report .checkbox-container label {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.page-template-template-state-profile-report .checkbox-container input[type="checkbox"] {
  position: relative;
  left: -3000px;
  margin-right: 20px;
}

.page-template-template-state-profile-report .checkbox-container input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  border: 2px solid #525351;
  border-radius: 2px;
}

.page-template-template-state-profile-report .checkbox-container input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  background: url(../images/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.page-template-template-state-profile-report ul.links {
  list-style: none;
  padding: 0;
}

.page-template-template-state-profile-report ul.links li.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 0;
}

.page-template-template-state-profile-report ul.links li.link:hover {
  background: rgba(90,93,94,0.15);
}

.page-template-template-state-profile-report ul.links li.link a {
  max-width: 233px;
  width: 100%;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 22px !important;
  color: #525351 !important;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report ul.links li.link a {
    max-width: 95%;
  }
}

.page-template-template-state-profile-report ul.links li.link a.active {
  position: relative;
  font-weight: 700 !important;
  color: #0092C7 !important;
}

.page-template-template-state-profile-report ul.links li.link a.active:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -31px;
  width: 6px;
  height: 31px;
  background: #0092C7;
}

.page-template-template-state-profile-report .state-report-content-container {
  margin-left: 100px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-report-content-container {
    margin-left: 0;
    padding: 0 26px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-report-content-container {
    padding: 0 19px;
  }
}

.page-template-template-state-profile-report .state-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: #006FAB;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-title h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .state-title h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

.page-template-template-state-profile-report .text-block {
  margin: 35px 0 0 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

.page-template-template-state-profile-report .text-block h3 {
  margin-top: 35px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #00806F;
}

.page-template-template-state-profile-report .stat-block .row .col-xs-12,
.page-template-template-state-profile-report .stat-block .row .col-lg-4 {
  padding: 0;
}

.page-template-template-state-profile-report .stat-block .row .col-xs-12 .stat-container,
.page-template-template-state-profile-report .stat-block .row .col-lg-4 .stat-container {
  margin: 35px 0 0 0;
  padding: 25px 30px;
}

.page-template-template-state-profile-report .stat-block .row .col-xs-12 .stat-container h2,
.page-template-template-state-profile-report .stat-block .row .col-lg-4 .stat-container h2 {
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}

.page-template-template-state-profile-report .stat-block .row .col-xs-12 .stat-container h3,
.page-template-template-state-profile-report .stat-block .row .col-lg-4 .stat-container h3 {
  margin-top: 0 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  line-height: 47px;
}

.page-template-template-state-profile-report .stat-block .row .col-xs-12 .stat-container.blue,
.page-template-template-state-profile-report .stat-block .row .col-lg-4 .stat-container.blue {
  background: #F0F7FC;
  border-left: 4px solid #006FAB;
}

.page-template-template-state-profile-report .stat-block .row .col-xs-12 .stat-container.yellow,
.page-template-template-state-profile-report .stat-block .row .col-lg-4 .stat-container.yellow {
  background: #FEF8EA;
  border-left: 4px solid #f4c426;
}

.page-template-template-state-profile-report .stat-block .row .col-xs-12 .stat-container.green,
.page-template-template-state-profile-report .stat-block .row .col-lg-4 .stat-container.green {
  background: #EBFAF3;
  border-left: 4px solid #00806F;
}

.page-template-template-state-profile-report .section-block {
  margin-top: 50px;
}

.page-template-template-state-profile-report .section-block:first-child {
  margin-top: 0;
}

.page-template-template-state-profile-report .section-block .section-title {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
  color: #000;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .section-block .section-title {
    font-size: 20px;
    line-height: 24px;
  }
}

.page-template-template-state-profile-report hr:not(.sidenav-separator) {
  border-top: 2px solid #D7DDE0;
  min-width: 110%;
  max-width: 110%;
  margin-top: 50px;
  position: relative;
  left: -50px;
}

.page-template-template-state-profile-report hr:not(.sidenav-separator).short {
  min-width: 50%;
  max-width: 50%;
  left: 0;
  margin: 50px auto 0 auto;
}

.page-template-template-state-profile-report .graph-block {
  margin-top: 50px;
}

.page-template-template-state-profile-report .graph-block .graph-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template-template-state-profile-report .accordion-slide-container {
  border-top: none;
  border-bottom: 2px solid #D7DDE0;
}

.page-template-template-state-profile-report .accordion-slide-container:last-child {
  border-bottom: none;
}

.page-template-template-state-profile-report .accordion-title button h2 {
  font-size: 24px;
  line-height: 32px;
}

.page-template-template-state-profile-report .accordion-container {
  margin: 35px 0;
}

.page-template-template-state-profile-report .accordion-slide-content p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

.page-template-template-state-profile-report .accordion-slide-content ul {
  list-style: none;
}

.page-template-template-state-profile-report .accordion-slide-content ul li {
  position: relative;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  max-width: 600px;
  margin: 25px auto 25px auto;
  font-size: 18px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .accordion-slide-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
}

.page-template-template-state-profile-report .accordion-slide-content ul li .hexagon {
  position: absolute;
  top: 7px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #0092C7;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-state-profile-report .accordion-slide-content ul li .hexagon {
    top: 4px;
  }
}

.page-template-template-state-profile-report .accordion-slide-content ul li .hexagon:before,
.page-template-template-state-profile-report .accordion-slide-content ul li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.page-template-template-state-profile-report .accordion-slide-content ul li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.page-template-template-state-profile-report .accordion-slide-content ul li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #0092C7;
}

.page-template-template-past-shef-reports.no-scroll {
  overflow: hidden;
}

.page-template-template-past-shef-reports .tablet-toggle {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .tablet-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
  }
}

.page-template-template-past-shef-reports .tablet-toggle button {
  background: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  color: #0092c7 !important;
}

.page-template-template-past-shef-reports .tablet-toggle button img {
  margin-left: 10px;
}

.page-template-template-past-shef-reports .tablet-toggle button.open+img {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports section {
    padding: 0 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-past-shef-reports section {
    padding: 0 16px;
  }
}

.page-template-template-past-shef-reports main {
  padding: 116px 0 230px 0;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports main {
    padding-top: 170px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-past-shef-reports main {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .content-col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.page-template-template-past-shef-reports .col-xs-4.side-bar-col {
  -ms-flex-preferred-size: 26.33333%;
      flex-basis: 26.33333%;
  max-width: 26.33333%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .col-xs-4.side-bar-col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.page-template-template-past-shef-reports .sidebar__inner {
  max-height: 520px;
  min-width: 250px;
  max-width: 250px;
  padding: 20px 0px 20px 0px;
  z-index: 1;
  overflow-y: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .sidebar__inner {
    max-height: none;
    height: 57px;
    min-width: 100%;
    max-width: 100%;
  }

  .page-template-template-past-shef-reports .sidebar__inner.open {
    height: auto;
    overflow: visible;
  }

  .page-template-template-past-shef-reports .sidebar__inner.open:after {
    content: "";
    position: absolute;
    bottom: initial;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
    background: #909699;
  }
}

.page-template-template-past-shef-reports .sidebar {
  position: fixed;
  top: 245px;
  left: 0px;
  width: 350px;
  z-index: 99999999999;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .sidebar {
    position: fixed;
    top: 116px;
    max-height: auto;
    min-width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .sidebar {
    top: 71px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .tabs {
    padding-top: 20px;
  }
}

.page-template-template-past-shef-reports ul.tabs-list {
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.page-template-template-past-shef-reports ul.tabs-list a {
  border-bottom: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports ul.tabs-list {
    max-width: 100%;
    height: auto;
  }
}

.page-template-template-past-shef-reports ul.tabs-list li.tab-item {
  position: relative;
  margin-bottom: 17px;
  padding: 0 20px;
}

.page-template-template-past-shef-reports ul.tabs-list li.tab-item a.tab-link {
  position: relative;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #242423;
}

.page-template-template-past-shef-reports ul.tabs-list li.tab-item a.tab-link.active {
  position: relative;
  font-weight: 700;
  color: #0092C7;
}

.page-template-template-past-shef-reports ul.tabs-list li.tab-item a.tab-link.active:after {
  position: absolute;
  content: "";
  top: -5px;
  left: -20px;
  width: 6px;
  height: 31px;
  background: #0092c7;
}

.page-template-template-past-shef-reports ul.tabs-list li.tab-item:hover {
  background: rgba(90,93,94,0.15);
}

.page-template-template-past-shef-reports ul.tabs-list li.tab-item.no-hover {
  background: none;
}

.page-template-template-past-shef-reports .content {
  max-width: 95%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .content {
    max-width: 100%;
  }
}

.page-template-template-past-shef-reports .content.no-click {
  pointer-events: none;
}

.page-template-template-past-shef-reports .content-block {
  display: block;
  position: static;
  opacity: 1;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  padding: 0px 0px 0px 0px;
}

.page-template-template-past-shef-reports .content-block:first-child {
  padding: 50px 0 0 0;
}

.page-template-template-past-shef-reports .content-block:last-child hr {
  display: none;
}

.page-template-template-past-shef-reports hr {
  border-top: 2px solid #D7DDE0;
  margin: 40px 0;
  left: 0;
  min-width: initial;
}

.page-template-template-past-shef-reports .text-block {
  margin: 35px 0;
}

.page-template-template-past-shef-reports .text-block h3 {
  margin-bottom: 15px;
}

.page-template-template-past-shef-reports .linkbox {
  margin: 30px 0 60px;
}

.page-template-template-past-shef-reports .linkbox-title {
  margin-bottom: 30px;
}

.page-template-template-past-shef-reports .linkbox-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #00806F;
}

.page-template-template-past-shef-reports .linkbox .linkbox-links .col-md-6>.link {
  margin-top: 15px;
  max-width: 350px;
}

.page-template-template-past-shef-reports .linkbox .linkbox-links .col-md-6:nth-child(1)>.link,
.page-template-template-past-shef-reports .linkbox .linkbox-links .col-md-6:nth-child(2)>.link {
  margin-top: 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .page-template-template-past-shef-reports .linkbox .linkbox-links .col-md-6:nth-child(1)>.link,
  .page-template-template-past-shef-reports .linkbox .linkbox-links .col-md-6:nth-child(2)>.link {
    margin-top: 15px;
  }
}

.page-template-template-past-shef-reports .linkbox .linkbox-links .row>.col-xs-12 {
  margin-top: 0;
}

.error404 {
  margin: 0;
  height: 100vh;
  -webkit-perspective: 65em;
          perspective: 65em;
  -webkit-perspective-origin: 50% calc(50% - 43em);
          perspective-origin: 50% calc(50% - 43em);
  background: #000;
}

.error404 #js-modal-page,
.error404 .main,
.error404 section {
  height: 100%;
}

.error404 section {
  padding: 80px 36px 350px 150px;
  background: -webkit-linear-gradient(316deg, #eaf9f1, #daecff);
  background: -o-linear-gradient(316deg, #eaf9f1, #daecff);
  background: linear-gradient(134deg, #eaf9f1, #daecff);
  background-size: 400% 400%;
  -webkit-animation: background-gradient 10s ease infinite;
       -o-animation: background-gradient 10s ease infinite;
          animation: background-gradient 10s ease infinite;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .error404 section {
    height: 100%;
    padding: 80px 36px 77px 36px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 section {
    padding: 25px 23px;
  }
}

.error404 .error {
  margin-bottom: 20px;
}

.error404 .error span {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  color: #006C64;
  letter-spacing: 2px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .error404 .error span {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1.5px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .error span {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
  }
}

.error404 .title {
  margin-bottom: 20px;
}

.error404 .title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 54px;
  line-height: 70px;
  color: #242423;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .error404 .title h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .title h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

.error404 .txt-block {
  max-width: 600px;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .error404 .txt-block {
    max-width: 500px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .txt-block {
    max-width: 288px;
  }
}

.error404 .txt-block p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .txt-block p {
    font-size: 16px;
    line-height: 24px;
  }
}

.error404 .txt-block a {
  margin-top: 35px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .txt-block a {
    margin-top: 20px;
  }
}

.error404 .image-container {
  margin-top: 100px;
  max-width: 585px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 300px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .error404 .image-container {
    margin-top: 0;
    margin-left: 200px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .error404 .image-container {
    height: auto;
    display: block;
    max-width: 448px;
    margin: 0 0 0 auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .image-container {
    margin: 30px auto 0 25px;
    max-width: 214px;
  }
}

.error404 .image-container .desktop {
  max-height: 498px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .error404 .image-container .desktop {
    display: none;
  }
}

.error404 .image-container .tablet {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .error404 .image-container .tablet {
    display: block;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .image-container .tablet {
    display: none;
  }
}

.error404 .image-container .mobile {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .error404 .image-container .mobile {
    display: block;
  }
}

.error404 .graph-animation {
  height: auto;
  margin: 100px 0 0 50px;
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .error404 .graph-animation {
    display: none;
  }
}

.error404 .graph-animation div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.error404 .graph-animation .assembly {
  -webkit-transform: rotateY(-90deg) translate3d(0, 0, 5em);
          transform: rotateY(-90deg) translate3d(0, 0, 5em);
  -webkit-animation: move2 4s linear forwards;
       -o-animation: move2 4s linear forwards;
          animation: move2 4s linear forwards;
}

@-webkit-keyframes move2 {
  to {
    -webkit-transform: rotateY(-55deg) translate3d(0, 5em, 0);
            transform: rotateY(-55deg) translate3d(0, 5em, 0);
  }
}

@-o-keyframes move2 {
  to {
    transform: rotateY(-55deg) translate3d(0, 5em, 0);
  }
}

@keyframes move2 {
  to {
    -webkit-transform: rotateY(-55deg) translate3d(0, 5em, 0);
            transform: rotateY(-55deg) translate3d(0, 5em, 0);
  }
}

.error404 .graph-animation .bar {
  -webkit-transform-origin: 0 2.5em 0;
       -o-transform-origin: 0 2.5em 0;
          transform-origin: 0 2.5em 0;
  -webkit-animation: grow 8s cubic-bezier(0.19, 1, 0.23, 1) forwards;
       -o-animation: grow 8s cubic-bezier(0.19, 1, 0.23, 1) forwards;
          animation: grow 8s cubic-bezier(0.19, 1, 0.23, 1) forwards;
}

.error404 .graph-animation .bar:nth-child(1) {
  margin-left: -15em;
  -webkit-transform: scaleY(1);
       -o-transform: scaleY(1);
          transform: scaleY(1);
  color: #7ed6be;
}

.error404 .graph-animation .bar:nth-child(2) {
  margin-left: -7.5em;
  -webkit-transform: scaleY(2);
       -o-transform: scaleY(2);
          transform: scaleY(2);
  color: #ecf081;
}

.error404 .graph-animation .bar:nth-child(3) {
  margin-left: 0em;
  -webkit-transform: scaleY(2.3);
       -o-transform: scaleY(2.3);
          transform: scaleY(2.3);
  color: #ffbe40;
}

.error404 .graph-animation .bar:nth-child(4) {
  margin-left: 7.5em;
  -webkit-transform: scaleY(2.5);
       -o-transform: scaleY(2.5);
          transform: scaleY(2.5);
  color: #ef746f;
}

.error404 .graph-animation .bar:nth-child(5) {
  margin-left: 15em;
  -webkit-transform: scaleY(2.9);
       -o-transform: scaleY(2.9);
          transform: scaleY(2.9);
  color: #bc8696;
}

@keyframes grow {
  0% {
    -webkit-transform: scaleY(0);
         -o-transform: scaleY(0);
            transform: scaleY(0);
  }
}

.error404 .graph-animation .face {
  margin: -2.5em;
  width: 5em;
  height: 5em;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(82%, #00bce4), color-stop(82%, #009e89));
  background: -webkit-linear-gradient(bottom, #00bce4 82%, #009e89 82%);
  background: -o-linear-gradient(bottom, #00bce4 82%, #009e89 82%);
  background: linear-gradient(0deg, #00bce4 82%, #009e89 82%);
}

.error404 .graph-animation .face:nth-child(n+2):before {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: inherit;
  opacity: .0;
  background: inherit;
  content: '';
}

.error404 .graph-animation .face:nth-child(1) {
  -webkit-transform: rotate3d(1, 0, 0, 90deg) translateZ(2.5em);
          transform: rotate3d(1, 0, 0, 90deg) translateZ(2.5em);
}

.error404 .graph-animation .face:nth-child(2) {
  -webkit-transform: rotate3d(0, 1, 0, -90deg) translateZ(2.5em);
          transform: rotate3d(0, 1, 0, -90deg) translateZ(2.5em);
}

.error404 .graph-animation .face:nth-child(3) {
  -webkit-transform: rotate3d(0, 1, 0, 0deg) translateZ(2.5em);
          transform: rotate3d(0, 1, 0, 0deg) translateZ(2.5em);
}

.error404 .graph-animation .face:nth-child(4) {
  -webkit-transform: rotate3d(0, 1, 0, 90deg) translateZ(2.5em);
          transform: rotate3d(0, 1, 0, 90deg) translateZ(2.5em);
}

.error404 .graph-animation .bar:nth-child(1) {
  -webkit-transform: scaleY(3.2);
       -o-transform: scaleY(3.2);
          transform: scaleY(3.2);
}

.error404 .graph-animation .bar:nth-child(1) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.error404 .graph-animation .bar:nth-child(1) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #04bce4), color-stop(80%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 80%, #01958f 80%);
  background: -o-linear-gradient(bottom, #04bce4 80%, #01958f 80%);
  background: linear-gradient(0deg, #04bce4 80%, #01958f 80%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.error404 .graph-animation .bar:nth-child(1) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #0077ae), color-stop(80%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 80%, #006b64 80%);
  background: -o-linear-gradient(bottom, #0077ae 80%, #006b64 80%);
  background: linear-gradient(0deg, #0077ae 80%, #006b64 80%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.error404 .graph-animation .bar:nth-child(2) {
  -webkit-transform: scaleY(3.85);
       -o-transform: scaleY(3.85);
          transform: scaleY(3.85);
}

.error404 .graph-animation .bar:nth-child(2) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.error404 .graph-animation .bar:nth-child(2) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(67%, #04bce4), color-stop(67%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 67%, #01958f 67%);
  background: -o-linear-gradient(bottom, #04bce4 67%, #01958f 67%);
  background: linear-gradient(0deg, #04bce4 67%, #01958f 67%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.error404 .graph-animation .bar:nth-child(2) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(67%, #0077ae), color-stop(67%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 67%, #006b64 67%);
  background: -o-linear-gradient(bottom, #0077ae 67%, #006b64 67%);
  background: linear-gradient(0deg, #0077ae 67%, #006b64 67%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.error404 .graph-animation .bar:nth-child(3) {
  -webkit-transform: scaleY(3.4);
       -o-transform: scaleY(3.4);
          transform: scaleY(3.4);
}

.error404 .graph-animation .bar:nth-child(3) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.error404 .graph-animation .bar:nth-child(3) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(75%, #04bce4), color-stop(75%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 75%, #01958f 75%);
  background: -o-linear-gradient(bottom, #04bce4 75%, #01958f 75%);
  background: linear-gradient(0deg, #04bce4 75%, #01958f 75%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.error404 .graph-animation .bar:nth-child(3) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(75%, #0077ae), color-stop(75%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 75%, #006b64 75%);
  background: -o-linear-gradient(bottom, #0077ae 75%, #006b64 75%);
  background: linear-gradient(0deg, #0077ae 75%, #006b64 75%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.error404 .graph-animation .bar:nth-child(4) {
  -webkit-transform: scaleY(4.6);
       -o-transform: scaleY(4.6);
          transform: scaleY(4.6);
}

.error404 .graph-animation .bar:nth-child(4) .face:nth-child(1) {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background: #59c9c1;
}

.error404 .graph-animation .bar:nth-child(4) .face:nth-child(3) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #04bce4), color-stop(65%, #01958f));
  background: -webkit-linear-gradient(bottom, #04bce4 65%, #01958f 65%);
  background: -o-linear-gradient(bottom, #04bce4 65%, #01958f 65%);
  background: linear-gradient(0deg, #04bce4 65%, #01958f 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.error404 .graph-animation .bar:nth-child(4) .face:nth-child(4) {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(65%, #0077ae), color-stop(65%, #006b64));
  background: -webkit-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: -o-linear-gradient(bottom, #0077ae 65%, #006b64 65%);
  background: linear-gradient(0deg, #0077ae 65%, #006b64 65%);
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.search-results-section {
  position: relative;
  background: #fff;
  height: auto;
}

.search-results-section.hide {
  display: none;
}

.search-results-section .search-results-container {
  margin-top: 10px;
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .search-results-section .search-results-container {
    margin-bottom: 60px;
  }
}

.search-results-section .search-results-container .search-result {
  padding: 40px 0px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .search-results-section .search-results-container .search-result {
    padding: 20px 0;
  }
}

.search-results-section .search-results-container .search-result-breadcrumb {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .search-results-section .search-results-container .search-result-breadcrumb {
    margin-bottom: 10px;
  }
}

.search-results-section .search-results-container .search-result-breadcrumb a {
  pointer-events: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .search-results-section .search-results-container .search-result-breadcrumb a {
    font-size: 16px;
    line-height: 24px;
  }
}

.search-results-section .search-results-container .search-result-breadcrumb a:not(:first-child) {
  position: relative;
  margin-left: 40px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .search-results-section .search-results-container .search-result-breadcrumb a:not(:first-child) {
    margin-left: 30px;
  }
}

.search-results-section .search-results-container .search-result-breadcrumb a:not(:first-child):after {
  position: absolute;
  content: '';
  top: 0;
  left: -30%;
  height: 20px;
  width: 20px;
  background-image: url(../images/blue-arrow-down.svg);
  background-repeat: no-repeat;
  -webkit-transform: rotate(-90deg) translateY(30%);
       -o-transform: rotate(-90deg) translateY(30%);
          transform: rotate(-90deg) translateY(30%);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .search-results-section .search-results-container .search-result-breadcrumb a:not(:first-child):after {
    top: unset;
    left: -32%;
    -webkit-transform: rotate(-90deg) translateY(25%);
         -o-transform: rotate(-90deg) translateY(25%);
            transform: rotate(-90deg) translateY(25%);
  }
}

.search-results-section .search-results-container .search-result-excerpt p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #242423;
}

.search-results-section .search-results-container .search-result-excerpt p a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #006C64;
}

.search-results-section .search-results-container .search-result-link {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .search-results-section .search-results-container .search-result-link {
    margin-top: 10px;
  }
}

.search-results-section .search-results-container .search-result-link a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  font-style: italic;
  color: #242423;
}

.search-results-section .search-error {
  margin-top: 50px;
}

.search-results-section .search-error p.bold {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px !important;
  line-height: 24px !important;
  color: #242423;
}

.search-results-section .search-error p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #242423;
}

.search-results-section .search-error p a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #006FAB;
  border-bottom: 2px solid #006FAB;
}

.search-results-section .search-error a.btn {
  margin-top: 35px;
}

.search-results-section .mark-result:not(:first-child) {
  border-top: 2px solid #D7DDE0;
}

.page-template-template-page section,
.page-template-default section {
  margin: 60px 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.page-template-template-page section a,
.page-template-default section a {
  color: #006FAB;
  border-bottom: 2px solid #006FAB;
}

.single-state-profile .hidden {
  display: none !important;
}

.single-state-profile main {
  padding: 116px 0;
  overflow: visible;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile main {
    padding-top: 206px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .single-state-profile main {
    padding: 71px 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile main {
    width: 100vw;
    overflow: hidden;
    padding-top: 150px;
  }
}

.single-state-profile .state-report-bar {
  position: fixed;
  top: 55px;
  right: 20px;
  z-index: 10;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .state-report-bar {
    display: none;
  }
}

.single-state-profile .state-report-bar.hide {
  z-index: -1;
}

.single-state-profile .state-report-bar .links-container {
  list-style: none;
}

.single-state-profile .state-report-bar .links-container a {
  font-size: 13px !important;
  color: #232424 !important;
  border: none;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .state-report-bar .links-container a.mobile-hidden {
    display: none;
  }
}

.single-state-profile .state-report-bar .links-container>li {
  margin-bottom: 16px;
  position: relative;
}

.single-state-profile .state-report-bar .links-container>li .menu-parent-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
}

.single-state-profile .state-report-bar .links-container>li .menu-parent-link span {
  font-size: 13px;
  color: #232424;
  letter-spacing: 0;
  text-align: center;
  line-height: 16px;
  margin-top: 8px;
}

.single-state-profile .children-links-container {
  background: #FFFFFF;
  border: 1px solid rgba(85,88,89,0.2);
  -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
  display: none;
  padding: 0;
  position: absolute;
  right: calc(100% + 8px);
  top: 0;
  list-style: none;
}

.single-state-profile .children-links-container.show {
  display: block;
}

.single-state-profile .children-links-container li {
  border-bottom: 1px solid #BEC4C7;
}

.single-state-profile .children-links-container li:last-child {
  border-bottom: none;
}

.single-state-profile .children-links-container a {
  display: inline-block;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 20px !important;
  white-space: nowrap;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .children-links-container a.mobile-hidden {
    display: none;
  }
}

.single-state-profile .children-links-container .st-btn,
.single-state-profile .children-links-container .dropdown-item {
  height: auto !important;
  background: none !important;
  border-bottom: 1px solid #BEC4C7;
  cursor: pointer;
  display: block !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  position: relative;
  text-align: left !important;
  border-bottom: none;
  top: 0;
  -webkit-transition: top .2s ease-in;
  -o-transition: top .2s ease-in;
  transition: top .2s ease-in;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #232424;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.single-state-profile .children-links-container .st-btn:hover,
.single-state-profile .children-links-container .dropdown-item:hover {
  opacity: 1;
  top: -4px;
}

.single-state-profile .children-links-container .st-btn img,
.single-state-profile .children-links-container .dropdown-item img {
  opacity: 0;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
}

.single-state-profile .children-links-container .st-btn[data-network='twitter']:before,
.single-state-profile .children-links-container .dropdown-item[data-network='twitter']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/twitter.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.single-state-profile .children-links-container .st-btn[data-network='twitter']:after,
.single-state-profile .children-links-container .dropdown-item[data-network='twitter']:after {
  content: attr(data-network);
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.single-state-profile .children-links-container .st-btn[data-network='sharethis']:before,
.single-state-profile .children-links-container .dropdown-item[data-network='sharethis']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.single-state-profile .children-links-container .st-btn[data-network='sharethis']:after,
.single-state-profile .children-links-container .dropdown-item[data-network='sharethis']:after {
  content: 'copy';
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.single-state-profile .children-links-container .st-btn[data-url='copy']:before,
.single-state-profile .children-links-container .dropdown-item[data-url='copy']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/graph-link-icon.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.single-state-profile .children-links-container .st-btn[data-network='facebook']:before,
.single-state-profile .children-links-container .dropdown-item[data-network='facebook']:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/facebook.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.single-state-profile .children-links-container .st-btn[data-network='facebook']:after,
.single-state-profile .children-links-container .dropdown-item[data-network='facebook']:after {
  content: attr(data-network);
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #232424;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: capitalize;
}

.single-state-profile .state-profile-report-container {
  margin-top: 15px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .state-profile-report-container {
    margin-top: 0;
    max-width: 100%;
  }
}

.single-state-profile .state-profile-report-container .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .state-profile-report-container .row .col-lg-8 {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.single-state-profile .side-nav-col {
  -ms-flex-preferred-size: 21.33333%;
      flex-basis: 21.33333%;
  max-width: 21.33333%;
  min-width: 296px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .side-nav-col {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100vw;
    height: 50px;
    background: white;
    padding: 0;
    position: fixed;
    margin: 0;
    left: 0;
    top: 116px;
    z-index: 1000;
  }

  .single-state-profile .side-nav-col.open {
    height: auto;
    overflow: visible;
    background: #FFFFFF;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .side-nav-col {
    top: 71px;
  }
}

.single-state-profile .report-content-column {
  width: 78.66667%;
  max-width: calc(100% - 300px);
  -ms-flex-preferred-size: 78.66667%;
      flex-basis: 78.66667%;
  padding-right: 12%;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .report-content-column {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 0 2vw;
  }
}

.single-state-profile .tablet-toggle {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .tablet-toggle {
    display: block;
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
  }

  .single-state-profile .tablet-toggle button {
    background: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    font-family: "Roboto", sans-serif !important;
    font-weight: 700;
    font-style: normal;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    color: #525351 !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .tablet-toggle button {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .tablet-toggle button img {
    margin-left: 10px;
  }

  .single-state-profile .tablet-toggle button.open img {
    -webkit-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media only screen and (max-width: 1024px) and (min-width: 1px) and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .tablet-toggle button .mobile-hidden {
    display: none;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .tablet-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 16px 0;
  }
}

.single-state-profile .sidenav-container {
  position: sticky;
  top: 128px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  -webkit-box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
          box-shadow: 0 0 26px 0 rgba(0,0,0,0.16);
}

.single-state-profile .sidenav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-height: calc(100vh - 116px);
  overflow: hidden;
  padding: 20px 0;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .sidenav {
    max-height: none;
    overflow: visible;
    background: #FFFFFF;
    padding: 10px 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .sidenav {
    padding: 0;
  }
}

.single-state-profile .sidenav-head {
  width: 100%;
  overflow: auto;
  padding-right: 17px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .sidenav-head {
    background: #FFFFFF;
    display: none;
  }

  .single-state-profile .sidenav-head.open {
    display: block;
  }
}

.single-state-profile .sidenav-head hr {
  border-top: 2px solid rgba(90,93,94,0.15) !important;
  max-width: 233px;
  margin: 10px auto 10px auto;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .sidenav-head hr {
    max-width: 95%;
  }
}

.single-state-profile .sidenav-map {
  max-width: 250px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .sidenav-map {
    display: none;
  }
}

.single-state-profile .sidenav-map svg {
  width: 70%;
  height: auto;
  margin: auto;
  overflow: visible;
}

.single-state-profile .sidenav-map svg .state {
  cursor: pointer;
}

.single-state-profile .sidenav-map svg .state text {
  opacity: 0;
}

.single-state-profile .sidenav-map svg .state.active path {
  fill: #006DA8;
}

.single-state-profile .sidenav-map svg .state.active text {
  opacity: 1;
  fill: #FFFFFF;
  font-weight: bold;
}

.single-state-profile .sidenav-map svg .state.region-highlight {
  fill: #00806e;
}

.single-state-profile .sidenav-state-dropdown {
  max-width: 233px;
  margin: 12px auto 0 auto;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .sidenav-state-dropdown {
    max-width: 95%;
  }
}

.single-state-profile label.sidenav-label {
  max-width: 233px;
  min-width: 100%;
  margin: 0 auto !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 13px !important;
  color: #232424 !important;
  letter-spacing: 0 !important;
  line-height: 16px !important;
}

.single-state-profile label.sidenav-label.cusotmization-label {
  letter-spacing: 0px !important;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile label.sidenav-label {
    max-width: 95%;
  }
}

.single-state-profile .select2-dropdown {
  width: 232px !important;
  background: #fff;
  border: 1px solid rgba(85,88,89,0.2);
  -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 1px 0 rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.25);
  border-radius: 2px;
  left: 0 !important;
  top: 0;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .select2-dropdown {
    width: 95% !important;
  }
}

.single-state-profile .select2-container .select2-selection {
  height: auto;
  border: 2px solid #006C64 !important;
  outline: none !important;
}

.single-state-profile .select2-container .select2-selection:focus {
  border: 2px solid #006C64 !important;
  outline: none !important;
}

.single-state-profile .select2-container .select2-selection .select2-selection__arrow:after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/blue-arrow-down.svg) !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: 9px 6px !important;
  color: transparent;
  display: inline-block;
}

.single-state-profile .select2-container--default .select2-results__option[aria-disabled=true] {
  color: #92999C;
}

.single-state-profile .select2-container--default .select2-results__group {
  color: #92999C;
  font-weight: 400;
  padding: 0 20px;
}

.single-state-profile .select2-results__options {
  max-height: 245px;
}

.single-state-profile .select2-results__option {
  font-size: 14px;
}

.single-state-profile .select2-results__option ul {
  padding-left: 20px;
}

.single-state-profile .sidenav-additional-customization {
  margin: 12px 0;
  padding: 0;
}

.single-state-profile #additional-customization-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 233px;
  width: 100%;
  margin: 0 auto;
  border-bottom: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #525351;
}

.single-state-profile #additional-customization-toggle img {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.single-state-profile #additional-customization-toggle.open img {
  -webkit-transform: rotate(0);
       -o-transform: rotate(0);
          transform: rotate(0);
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile #additional-customization-toggle {
    max-width: 95%;
  }
}

.single-state-profile .additional-options {
  max-width: 233px;
  margin: 0px auto 0 auto;
}

.single-state-profile .additional-options.hide {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .additional-options {
    max-width: 95%;
  }
}

.single-state-profile fieldset {
  margin-top: 12px;
}

.single-state-profile fieldset:first-child {
  margin-top: 0;
}

.single-state-profile .radio-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.single-state-profile .radio-container label {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.single-state-profile .radio-container input[type="radio"] {
  position: relative;
  left: -3000px;
  margin-right: 20px;
}

.single-state-profile .radio-container input[type="radio"]:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  border: 2px solid #525351;
  border-radius: 50%;
}

.single-state-profile .radio-container input[type="radio"]:checked:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  background: url(../images/radio-selected.png);
  background-repeat: no-repeat;
  background-position: center;
}

.single-state-profile .checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.single-state-profile .checkbox-container label {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.single-state-profile .checkbox-container input[type="checkbox"] {
  position: relative;
  left: -3000px;
  margin-right: 20px;
}

.single-state-profile .checkbox-container input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  border: 2px solid #525351;
  border-radius: 2px;
}

.single-state-profile .checkbox-container input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 2995px;
  height: 20px;
  width: 20px;
  background: url(../images/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.single-state-profile ul.links {
  list-style: none;
  padding: 0;
}

.single-state-profile ul.links li.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 0;
}

.single-state-profile ul.links li.link:hover {
  background: rgba(90,93,94,0.15);
}

.single-state-profile ul.links li.link a {
  max-width: 233px;
  width: 100%;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px !important;
  line-height: 22px !important;
  color: #525351 !important;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile ul.links li.link a {
    max-width: 95%;
  }
}

.single-state-profile ul.links li.link a.active {
  position: relative;
  font-weight: 700 !important;
  color: #0092C7 !important;
}

.single-state-profile ul.links li.link a.active:after {
  position: absolute;
  content: '';
  top: -4px;
  left: -31px;
  width: 6px;
  height: 31px;
  background: #0092C7;
}

.single-state-profile .responsive-download-container,
.single-state-profile .responsive-share-container {
  width: 100%;
  background: #fff;
  padding: 20px 20px 0;
  display: none;
}

.single-state-profile .responsive-download-container.open,
.single-state-profile .responsive-share-container.open {
  display: block;
}

.single-state-profile .responsive-download-container .children-links-container,
.single-state-profile .responsive-share-container .children-links-container {
  position: static;
  display: block;
  background: #FFFFFF;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.single-state-profile .responsive-download-container .children-links-container .st-btn,
.single-state-profile .responsive-download-container .children-links-container .dropdown-item,
.single-state-profile .responsive-share-container .children-links-container .st-btn,
.single-state-profile .responsive-share-container .children-links-container .dropdown-item {
  padding: 10px 0 !important;
  border-radius: 0;
}

.single-state-profile .responsive-download-container .children-links-container .st-btn,
.single-state-profile .responsive-share-container .children-links-container .st-btn {
  border-bottom: 1px solid #BEC4C7;
}

.single-state-profile .responsive-download-container .children-links-container li a,
.single-state-profile .responsive-share-container .children-links-container li a {
  font-size: 13px !important;
  color: #232424 !important;
  border: none;
  padding: 10px 0 !important;
}

.single-state-profile .state-report-content-container {
  margin-left: 100px;
  padding-top: 40px;
  max-width: 920px;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .state-report-content-container {
    max-width: none;
    margin-left: 0;
    padding: 0 26px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .state-report-content-container {
    padding: 0 19px;
  }
}

.single-state-profile .state-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-state-profile .state-title .text-cnt {
  margin-right: 16px;
}

.single-state-profile .state-title h2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: #006FAB;
}

@media only screen and (max-width: 1024px) and (min-width: 1px) {
  .single-state-profile .state-title h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .state-title h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

.single-state-profile .state-title svg {
  width: 250px;
  height: auto;
  overflow: visible;
}

.single-state-profile .state-title svg .state {
  cursor: pointer;
}

.single-state-profile .state-title svg .state text {
  opacity: 0;
}

.single-state-profile .state-title svg .state.active path {
  fill: #006DA8;
}

.single-state-profile .state-title svg .state.active text {
  opacity: 1;
  fill: #FFFFFF;
  font-weight: bold;
}

.single-state-profile .text-block {
  margin: 35px 0 0 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

.single-state-profile .text-block h3 {
  margin-top: 35px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #00806F;
}

.single-state-profile .stat-block .row .col-xs-4 {
  padding: 0;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container {
  height: calc(100% - 35px);
  cursor: pointer;
  margin: 35px 0 0 0;
  padding: 25px 30px;
  position: relative;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .stat-block .row .col-xs-4 .stat-container {
    padding: 12px;
  }
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container h2 {
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .stat-block .row .col-xs-4 .stat-container h2 {
    font-size: 12px;
  }
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container h3 {
  margin-top: 0 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  line-height: 47px;
}

@media (max-width: 1300px) {
  .single-state-profile .stat-block .row .col-xs-4 .stat-container h3 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media (max-width: 1140px) {
  .single-state-profile .stat-block .row .col-xs-4 .stat-container h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .single-state-profile .stat-block .row .col-xs-4 .stat-container h3 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .stat-block .row .col-xs-4 .stat-container h3 {
    font-size: 18px;
    line-height: 24px;
  }
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container.blue {
  background: #F0F7FC;
  border-left: 4px solid #006FAB;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container.yellow {
  background: #FEF8EA;
  border-left: 4px solid #f4c426;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container.green {
  background: #EBFAF3;
  border-left: 4px solid #00806F;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container .stat-tooltip-container {
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container .stat-tooltip-container .tooltip-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container .stat-tooltip-container .tooltip-cnt {
  display: none;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container .stat-tooltip-container svg {
  width: 100%;
  height: auto;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container .stat-tooltip-container.left {
  left: 0;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.single-state-profile .stat-block .row .col-xs-4 .stat-container .stat-tooltip-container.right {
  left: auto;
  right: 0;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.single-state-profile .section-block {
  margin-top: 48px;
}

.single-state-profile .section-block:first-child {
  margin-top: 0;
}

.single-state-profile .section-block .section-title {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 34px;
  color: #000;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .section-block .section-title {
    font-size: 32px;
    line-height: 35px;
  }
}

.single-state-profile .secondary-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}

.single-state-profile .secondary-title-block h3 {
  margin-top: 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #00806F;
}

.single-state-profile .secondary-title-block .anchor-link-container {
  position: relative;
}

.single-state-profile .secondary-title-block .anchor-link-container.hover .anchor-tooltip {
  opacity: 1;
  z-index: 10;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .secondary-title-block .anchor-link-container.hover .anchor-tooltip {
    opacity: 0;
  }
}

.single-state-profile .secondary-title-block a {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  display: inline-block;
  margin: auto 0 auto 8px;
  padding: 0;
  position: relative;
}

.single-state-profile .secondary-title-block a span {
  width: 5px;
  height: 5px;
  font-size: 4px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.single-state-profile .secondary-title-block .copied {
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  font-size: 14px;
  line-height: initial;
  margin: 0;
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
  white-space: nowrap;
}

.single-state-profile .secondary-title-block .copied.show {
  opacity: 1;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.single-state-profile .secondary-title-block .anchor-tooltip {
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: -1;
  -webkit-transition: opacity .1s ease-in-out;
  -o-transition: opacity .1s ease-in-out;
  transition: opacity .1s ease-in-out;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  color: #232424;
  letter-spacing: 0;
  line-height: 16px;
}

.single-state-profile .secondary-title-block .anchor-tooltip:after {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-end.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .secondary-title-block .anchor-tooltip:after {
    display: none;
  }
}

.single-state-profile .secondary-title-block .anchor-tooltip.right {
  left: auto;
  right: 0;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.single-state-profile .secondary-title-block .anchor-tooltip.clicked {
  opacity: 1 !important;
  z-index: 10;
}

.single-state-profile .secondary-title-block .anchor-tooltip p {
  font-size: 14px;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .separator-block {
    overflow: hidden;
  }
}

.single-state-profile hr:not(.sidenav-separator) {
  border-top: 2px solid #D7DDE0;
  min-width: 110%;
  max-width: 110%;
  margin-top: 50px;
  position: relative;
  left: -50px;
}

.single-state-profile hr:not(.sidenav-separator).short {
  min-width: 50%;
  max-width: 50%;
  left: 0;
  margin: 50px auto 0 auto;
}

.single-state-profile .graph-block {
  margin-top: 40px;
  margin-bottom: 56px;
}

.single-state-profile .graph-block .graph-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.single-state-profile .graph-block .graph-container[data-sector-orientation] .single-state-profile .graph-block .graph-container[data-figure-type='donut'] {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.single-state-profile .graph-block .graph-container[data-sector-orientation] .single-state-profile .graph-block .graph-container[data-figure-type='donut']:after {
  content: '';
  width: 1px;
  height: 100%;
  background: #BEC4C7;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 50%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container[data-sector-orientation] .single-state-profile .graph-block .graph-container[data-figure-type='donut']:after {
    display: none;
  }
}

.single-state-profile .graph-block .graph-container[data-sector-orientation] .single-state-profile .graph-block .graph-container[data-figure-type='donut'] .figure-el .start-year-tooltip {
  top: calc(100% - 10px);
}

.single-state-profile .graph-block .graph-container .figure-el {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  position: relative;
}

.single-state-profile .graph-block .graph-container .figure-el .start-year-tooltip {
  width: 175px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 21%;
  text-align: center;
  z-index: -1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  color: #232424;
  letter-spacing: 0;
  line-height: 16px;
}

.single-state-profile .graph-block .graph-container .figure-el .start-year-tooltip:after {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-end.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container .figure-el .start-year-tooltip:after {
    display: none;
  }
}

.single-state-profile .graph-block .graph-container .figure-el .data-tooltip {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.single-state-profile .graph-block .graph-container .figure-el .data-tooltip .data-tooltip-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.single-state-profile .graph-block .graph-container .figure-el .data-tooltip.left {
  -webkit-transform: translateX(-10px);
       -o-transform: translateX(-10px);
          transform: translateX(-10px);
}

.single-state-profile .graph-block .graph-container .figure-el .data-tooltip.right {
  -webkit-transform: translateX(calc(-100% + 10px));
       -o-transform: translateX(calc(-100% + 10px));
          transform: translateX(calc(-100% + 10px));
}

.single-state-profile .graph-block .graph-container .figure-el.top {
  z-index: 1;
}

.single-state-profile .graph-block .graph-container .figure-el.donut-el {
  width: 50%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container .figure-el.donut-el {
    width: 100%;
    margin-bottom: 30px;
  }

  .single-state-profile .graph-block .graph-container .figure-el.donut-el:last-child {
    margin-bottom: 0;
  }
}

.single-state-profile .graph-block .graph-container .figure-el.donut-el .svg-container {
  width: 58%;
  margin: auto;
}

.single-state-profile .graph-block .graph-container .figure-el.donut-el .data-label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
}

.single-state-profile .graph-block .graph-container.separate .figure-el {
  width: calc(50% - 8px);
}

.single-state-profile .graph-block .graph-container.separate .figure-el:nth-child(even) {
  margin-left: 16px;
}

.single-state-profile .graph-block .graph-container.separate .figure-el:nth-child(even):after {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  height: calc(100% + 20px);
  border-left: solid 1px #D7DDE0;
}

.single-state-profile .graph-block .graph-container.separate .figure-el:nth-child(odd) {
  padding-right: 16px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container.separate .figure-el {
    width: 100%;
  }

  .single-state-profile .graph-block .graph-container.separate .figure-el:nth-child(even) {
    margin-left: 0;
  }

  .single-state-profile .graph-block .graph-container.separate .figure-el:nth-child(odd) {
    margin-bottom: 30px;
    padding-right: 0;
  }
}

.single-state-profile .graph-block .graph-container.shared .figure-el .start-year-tooltip {
  left: 0;
}

.single-state-profile .graph-block .graph-container svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container[data-figure-type='bar'] .svg-container {
    width: calc(100vw - 38px);
    overflow: auto;
    overflow-y: hidden;
  }

  .single-state-profile .graph-block .graph-container[data-figure-type='bar'] .svg-container svg {
    width: 200vw;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container[data-figure-type='line'] .figure-el[data-region='shared'] .svg-container {
    width: calc(100vw - 38px);
    overflow: auto;
    overflow-y: hidden;
  }

  .single-state-profile .graph-block .graph-container[data-figure-type='line'] .figure-el[data-region='shared'] .svg-container svg {
    width: 200vw;
  }
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'] {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el {
  width: 100%;
  margin: 0 auto;
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el:not(.legend-el) {
  width: calc(50% - 16px);
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el:not(.legend-el):nth-child(odd) {
  margin-left: 16px;
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el:not(.legend-el):nth-child(even) {
  margin-right: 16px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el:not(.legend-el) {
    width: 100%;
  }

  .single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el:not(.legend-el):nth-child(odd) {
    margin-left: 0;
  }

  .single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el:not(.legend-el):nth-child(even) {
    margin-bottom: 30px;
    margin-right: 0;
  }
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el.legend-el {
  width: 100%;
  margin-bottom: 10px;
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el.legend-el .svg-container,
.single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el.legend-el svg {
  width: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el.legend-el .svg-container {
    overflow-x: auto;
  }

  .single-state-profile .graph-block .graph-container[data-figure-type='sector'] .figure-el.legend-el .legend-figure {
    width: 200vw;
    max-width: none;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='vertical'] .figure-el:nth-child(odd) {
    margin-bottom: 50px;
  }
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='horizontal'] .figure-el:not(.legend-el) {
  width: calc(50% - 30px);
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='horizontal'] .figure-el:not(.legend-el):nth-child(odd) {
  margin-left: 30px;
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='horizontal'] .figure-el:not(.legend-el):nth-child(odd):after {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  height: calc(100% + 20px);
  border-left: solid 1px #D7DDE0;
}

.single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='horizontal'] .figure-el:not(.legend-el):nth-child(even) {
  margin-right: 30px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='horizontal'] .figure-el:not(.legend-el) {
    width: 100%;
    margin-left: 0;
  }

  .single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='horizontal'] .figure-el:not(.legend-el):nth-child(odd) {
    margin-left: 0;
    margin-right: 30px;
  }

  .single-state-profile .graph-block .graph-container[data-figure-type='sector'][data-sector-orientation='horizontal'] .figure-el:not(.legend-el):nth-child(odd):after {
    content: none;
  }
}

.single-state-profile .graph-block .note {
  margin-top: 0;
}

.single-state-profile .table-block {
  margin-top: 40px;
  margin-bottom: 64px;
  overflow: visible;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .table-block {
    overflow: auto;
  }
}

.single-state-profile .table-block table {
  width: 100%;
  border-collapse: collapse;
}

.single-state-profile .table-block table .state-name-row {
  background: #006C64;
}

.single-state-profile .table-block table .state-name-row td,
.single-state-profile .table-block table .state-name-row th {
  border: 1px solid #FFFFFF;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 15px;
  text-align: center !important;
  padding: 8px;
}

.single-state-profile .table-block table .year-row {
  background: #00806E;
}

.single-state-profile .table-block table .year-row td {
  border: 1px solid #FFFFFF;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 15px;
  padding: 8px;
}

.single-state-profile .table-block table .year-row td.start-year {
  position: relative;
}

.single-state-profile .table-block table .year-row td.start-year .start-year-tooltip {
  width: 175px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: -1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  color: #232424;
  letter-spacing: 0;
  line-height: 16px;
}

.single-state-profile .table-block table .year-row td.start-year .start-year-tooltip:after {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-end.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .table-block table .year-row td.start-year .start-year-tooltip:after {
    display: none;
  }
}

.single-state-profile .table-block table .year-row td.start-year:hover .start-year-tooltip {
  opacity: 1;
  z-index: 1;
}

.single-state-profile .table-block table .data-row:nth-child(odd) {
  background: #F0F7FC;
}

.single-state-profile .table-block table .data-row:nth-child(even) {
  background: #DFF1FA;
}

.single-state-profile .table-block table .data-row td {
  border: 1px solid #FFFFFF;
  font-size: 12px;
  padding: 2px 8px;
}

.single-state-profile .table-block table .data-row td:first-child {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  color: #232424;
}

.single-state-profile .table-block table .data-row td .column-tooltip {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
          box-shadow: 0 0 0 0 rgba(36,36,35,0.3),2px 2px 8px 0 rgba(85,88,89,0.2);
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: -1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 12px !important;
  color: #232424;
  letter-spacing: 0;
  line-height: 16px;
}

.single-state-profile .table-block table .data-row td .column-tooltip:after {
  content: '';
  width: 13px;
  height: 8px;
  background: url(../images/tooltip-end.svg) 50% no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .table-block table .data-row td .column-tooltip:after {
    display: none;
  }
}

.single-state-profile .table-block table .data-row td:hover {
  position: relative;
}

.single-state-profile .table-block table .data-row td:hover .column-tooltip {
  opacity: 1;
  z-index: 1;
}

.single-state-profile .accordion-slide-container {
  border-top: none;
  border-bottom: 2px solid #D7DDE0;
}

.single-state-profile .accordion-slide-container:last-child {
  border-bottom: none;
}

.single-state-profile .accordion-title button h2 {
  font-size: 24px;
  line-height: 32px;
}

.single-state-profile .accordion-container {
  margin: 35px 0;
}

.single-state-profile .accordion-slide-content p {
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #242423;
}

.single-state-profile .accordion-slide-content ul {
  list-style: none;
}

.single-state-profile .accordion-slide-content ul li {
  position: relative;
  font-family: "Roboto-light", sans-serif !important;
  font-weight: 300;
  font-style: normal;
  max-width: 600px;
  margin: 25px auto 25px auto;
  font-size: 18px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .accordion-slide-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
}

.single-state-profile .accordion-slide-content ul li .hexagon {
  position: absolute;
  top: 7px;
  left: -30px;
  width: 10px;
  height: 5.77px;
  background-color: #0092C7;
  margin: 2.89px 0;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .accordion-slide-content ul li .hexagon {
    top: 4px;
  }
}

.single-state-profile .accordion-slide-content ul li .hexagon:before,
.single-state-profile .accordion-slide-content ul li .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.single-state-profile .accordion-slide-content ul li .hexagon:before {
  bottom: 100%;
  border-bottom: 2.89px solid #0092C7;
}

.single-state-profile .accordion-slide-content ul li .hexagon:after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #0092C7;
}

.single-state-profile .note {
  margin-top: 20px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #3c4048;
}

.single-state-profile .navigation-buttons {
  background: #EBFAF3;
  height: 134px;
  width: 100%;
  overflow: hidden;
  margin-top: 66px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
}

.single-state-profile .navigation-buttons a {
  border-bottom: none;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons {
    margin-top: 20px;
  }
}

.single-state-profile .navigation-buttons .row {
  height: 100%;
  margin: 0;
}

.single-state-profile .navigation-buttons .row .col-xs-6 {
  position: relative;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.single-state-profile .navigation-buttons .row .col-xs-6:first-child {
  border-right: 2px solid #009E89;
  padding: 50px 25px 85px 45px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6:first-child {
    padding: 50px 10px 85px 10px;
  }
}

.single-state-profile .navigation-buttons .row .col-xs-6:not(:first-child) {
  border-left: 2px solid #009E89;
  padding: 50px 25px 85px 45px;
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6:not(:first-child) {
    padding: 50px 20px 85px 10px;
  }
}

.single-state-profile .navigation-buttons .row .col-xs-6 span {
  position: absolute;
  top: 30px;
  left: 45px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #00806F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6 span {
    font-size: 12px;
    line-height: 16px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6 span {
    position: static;
    margin-top: -20px;
  }
}

.single-state-profile .navigation-buttons .row .col-xs-6 a {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding-left: 45px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #242423;
}

@media only screen and (max-width: 1245px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6 a {
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6 a {
    max-width: 275px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 1px) {
  .single-state-profile .navigation-buttons .row .col-xs-6 a {
    padding-left: 10px;
  }
}

.single-state-profile .navigation-buttons .row .col-xs-6 a:hover {
  background: rgba(8,199,167,0.15);
}

.single-state-profile .navigation-buttons .row .col-xs-6.hide {
  background: #fff;
  pointer-events: none;
}

.region-header {
  font-size: 32px;
  font-weight: 100;
  fill: #5A5D5E;
}

.page-template-template-footnotes .accordion-slide-content-container,
.page-template-template-footnotes-pdf .accordion-slide-content-container {
  display: block !important;
}

.page-template-template-footnotes .accordion-slide-content,
.page-template-template-footnotes-pdf .accordion-slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0 !important;
}

.page-template-template-footnotes .accordion-slide-content .number,
.page-template-template-footnotes-pdf .accordion-slide-content .number {
  margin-right: 8px;
}

.page-template-template-footnotes .accordion-slide-content p,
.page-template-template-footnotes-pdf .accordion-slide-content p {
  margin-top: 0;
}


/*# sourceMappingURL=main.css.map*/