﻿@charset "UTF-8";
.form-control {
  position: relative;
  margin-bottom: 10px; }

.form-control-group {
  display: flex;
  justify-content: flex-start; }
  .form-control-group .form-control {
    flex: 1;
    padding-right: 15px; }
    .form-control-group .form-control:last-of-type {
      padding-right: 0; }
    .form-control-group .form-control.grow-1x {
      flex-grow: 1; }
    .form-control-group .form-control.grow-2x {
      flex-grow: 2; }
    .form-control-group .form-control.grow-3x {
      flex-grow: 3; }

.validation-error {
  margin-top: 2px;
  font-size: 12px;
  color: #f44336; }

label {
  font-size: 14px;
  font-weight: 400; }

input[type="text"],
input[type="password"],
select {
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: inherit;
  background: #f7f6f6;
  border-radius: 5px;
  border: 1px solid #bdbdbd; }
  input[type="text"]::placeholder,
  input[type="password"]::placeholder,
  select::placeholder {
    color: #9e9e9e; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  select:focus {
    outline: none;
    border-color: #025169; }
  input[type="text"].invalid,
  input[type="password"].invalid,
  select.invalid {
    border-color: #f44336; }

fieldset {
  margin: 15px 0;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #bdbdbd;
  border-radius: 5px; }
  fieldset legend {
    padding: 0 5px; }

input[type="checkbox"],
input[type="radio"] {
  margin-right: 10px; }

select {
  background: #f7f6f6 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#bdbdbd" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 30px; }
  select:hover {
    cursor: pointer; }
  select:disabled {
    opacity: 0.5; }
  select:focus {
    background: #f7f6f6 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#025169" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat; }

textarea {
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 15px;
  min-height: 100px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #000000;
  background-color: #f7f6f6;
  border: 1px solid #bdbdbd;
  border-radius: 5px; }
  textarea::placeholder {
    color: #9e9e9e; }
  textarea:focus {
    border-color: #025169;
    outline: none; }
  textarea.invalid {
    border-color: #ef9a9a; }

.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(97, 97, 97, 0.5);
  z-index: 10; }

.modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 540px;
  transform: translate(-50%, -50%);
  background: #f7f6f6;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(117, 117, 117, 0.5); }

.modal-head {
  padding: 10px 15px; }
  .modal-head .modal-title {
    font-size: 24px; }

.modal-body {
  flex: 1;
  padding: 30px 15px;
  background: #eeeeee; }

.modal-footer {
  padding: 15px; }
  .modal-footer > * {
    margin-bottom: 0; }

.card {
  margin: 15px;
  padding: 30px;
  background: #f7f6f6;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(224, 224, 224, 0.5); }

.card-title {
  font-size: 24px;
  margin-bottom: 5px; }

.card-actions {
  display: flex;
  align-items: center;
  margin-top: 30px;
  list-style: none;
  justify-content: space-around; }
  .card-actions > * {
    margin-bottom: 0; }

.wrapper {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto; }

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

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-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;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.first-xs {
  order: -1; }

.last-xs {
  order: 1; }

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem; }
  .col-sm {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-sm-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%; }
  .col-sm-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%; }
  .col-sm-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%; }
  .col-sm-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%; }
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-sm {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-sm {
    order: -1; }
  .last-sm {
    order: 1; } }

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem; }
  .col-md {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-md-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%; }
  .col-md-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%; }
  .col-md-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%; }
  .col-md-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%; }
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-md {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-md {
    order: -1; }
  .last-md {
    order: 1; } }

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem; }
  .col-lg {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-lg-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%; }
  .col-lg-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%; }
  .col-lg-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%; }
  .col-lg-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%; }
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-lg {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-lg {
    order: -1; }
  .last-lg {
    order: 1; } }

/* work-sans-regular - latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  src: local("Work Sans"), local("WorkSans-Regular"), url("../static/fonts/WorkSans-Regular.woff2") format("woff2"), url("../static/fonts/WorkSans-Regular.woff") format("woff"); }

/* work-sans-600 - latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: bold;
  src: local("Work Sans SemiBold"), local("WorkSans-SemiBold"), url("../static/fonts/WorkSans-SemiBold.woff2") format("woff2"), url("../static/fonts/WorkSans-SemiBold.woff") format("woff"); }

/* lekton-italic - latin */
@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 400;
  src: local("Lekton-Italic"), url("../static/fonts/lekton-v9-latin-regular.woff2") format("woff2"), url("../static/fonts/lekton-v9-latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ }

html {
  font-size: calc(17px + 1 * (100vw - 400px) / (1440 - 400)); }

body {
  color: #212121;
  font-family: "Work Sans", sans-serif, "Source Code Pro";
  font-weight: normal;
  line-height: 1.6; }

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

a {
  text-decoration: none;
  box-shadow: 0 1px 0 #0667c6; }
  a:link, a:hover, a:visited, a:active {
    color: #212121; }
  a:hover {
    color: #0667c6; }

.t-sm-right {
  text-align: left; }
  @media (min-width: 20em) {
    .t-sm-right {
      text-align: right; } }

.t-sm-left {
  text-align: left; }
  @media (min-width: 20em) {
    .t-sm-left {
      text-align: left; } }

.t-sm-center {
  text-align: left; }
  @media (min-width: 20em) {
    .t-sm-center {
      text-align: center; } }

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

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

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

.t-md-right {
  text-align: left; }
  @media (min-width: 46.25em) {
    .t-md-right {
      text-align: right; } }

.t-md-left {
  text-align: left; }
  @media (min-width: 46.25em) {
    .t-md-left {
      text-align: left; } }

.t-md-center {
  text-align: left; }
  @media (min-width: 46.25em) {
    .t-md-center {
      text-align: center; } }

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

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

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

.t-lg-right {
  text-align: left; }
  @media (min-width: 61.25em) {
    .t-lg-right {
      text-align: right; } }

.t-lg-left {
  text-align: left; }
  @media (min-width: 61.25em) {
    .t-lg-left {
      text-align: left; } }

.t-lg-center {
  text-align: left; }
  @media (min-width: 61.25em) {
    .t-lg-center {
      text-align: center; } }

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

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

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

.t-xl-right {
  text-align: left; }
  @media (min-width: 81.25em) {
    .t-xl-right {
      text-align: right; } }

.t-xl-left {
  text-align: left; }
  @media (min-width: 81.25em) {
    .t-xl-left {
      text-align: left; } }

.t-xl-center {
  text-align: left; }
  @media (min-width: 81.25em) {
    .t-xl-center {
      text-align: center; } }

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

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

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

.t--black {
  color: #212121; }

.t--white {
  color: white; }

.t--grey {
  color: #504f4f; }

.t--grey-light {
  color: #d8dada; }

.t--grey-lighter {
  color: #f7f7f7; }

.t--blue-dark {
  color: #025169; }

.t--blue {
  color: #0667c6; }

.t--blue-light {
  color: #82b3e2; }

.t--blue-lighter {
  color: #e6f3ff; }

.t--yellow-dark {
  color: #d39000; }

.t--yellow {
  color: #ffc900; }

.t--yellow-light {
  color: #fef4ce; }

.t--red-dark {
  color: #8b0a0a; }

.t--red {
  color: #d62121; }

.t--red-light {
  color: #f3bebe; }

.t--orange {
  color: #f8a83d; }

.t--green-dark {
  color: #366558; }

.t--green {
  color: #95dcca; }

.t--green-light {
  color: #d4f1d4; }

.t--purple {
  color: #e5bdf5; }

.t--purple-dark {
  color: #7c145c; }

.t--green-warning {
  color: #007a00; }

.t--yellow-warning {
  color: #f0c617; }

.t--red-warning {
  color: #ad0017; }

small {
  font-size: 0.8725rem; }

.t-body-text h1,
.t-body-text h2,
.t-body-text h3,
.t-body-text h4,
.t-body-text h5,
.t-body-text h6 {
  margin-top: 1.5em; }

.t-body-text [class^='b-'] h1,
.t-body-text [class^='b-'] h2,
.t-body-text [class^='b-'] h3,
.t-body-text [class^='b-'] h4,
.t-body-text [class^='b-'] h5,
.t-body-text [class^='b-'] h6 {
  margin-top: 0; }

.t-body-text p {
  margin: 1em 0; }

.t-body-text > :first-child {
  margin-top: 0; }

.t-body-text ul {
  margin-top: 0.5em; }

.t--small {
  font-size: 0.8725rem; }

.t--tab-left {
  display: inline-block;
  margin-left: 1.5rem; }

.t--uppercase {
  text-transform: uppercase; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: bold;
  line-height: 1.2; }

h1,
.h1 {
  font-size: 2.5rem; }

h2,
.h2 {
  font-size: 1.8rem;
  font-weight: bold; }

h3,
.h3 {
  font-size: 1.2rem; }

h4,
.h4 {
  font-size: calc(17px + 1 * (100vw - 400px) / (1440 - 400));
  font-weight: bold; }

h5,
.h5 {
  font-size: 0.8725rem;
  text-transform: uppercase;
  font-weight: normal; }
  h5--thin,
  .h5--thin {
    color: #504f4f; }

.h0--light,
.h1--light,
.h2--light,
.h3--light,
.h4--light,
.h5--light,
.h6--light {
  font-weight: lighter; }

.h0--normal,
.h1--normal,
.h2--normal,
.h3--normal,
.h4--normal,
.h5--normal,
.h6--normal {
  font-weight: normal; }

.h0--bold,
.h1--bold,
.h2--bold,
.h3--bold,
.h4--bold,
.h5--bold,
.h6--bold {
  font-weight: bold; }

.h0--brand-color,
.h1--brand-color,
.h2--brand-color,
.h3--brand-color,
.h4--brand-color,
.h5--brand-color,
.h6--brand-color {
  color: #025169; }

.h0--secondary-color,
.h1--secondary-color,
.h2--secondary-color,
.h3--secondary-color,
.h4--secondary-color,
.h5--secondary-color,
.h6--secondary-color {
  color: #0667c6; }

.h0--uppercase,
.h1--uppercase,
.h2--uppercase,
.h3--uppercase,
.h4--uppercase,
.h5--uppercase,
.h6--uppercase {
  text-transform: uppercase; }

body {
  margin: 0; }

@media (max-width: 61.24em) {
  .l-container {
    padding: 0 4vw; } }

@media (min-width: 61.25em) {
  .l-container {
    padding: 0 6vw; } }

@media (min-width: 81.25em) {
  .l-container {
    padding: 0 14vw; } }

.l-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .l-card-grid > * {
    margin-right: 1.25%;
    flex-basis: 32.5%; }
    .l-card-grid > *:nth-child(3n) {
      margin-right: 0; }
    @media (max-width: 81.24em) {
      .l-card-grid > * {
        flex-basis: 49.5%; }
        .l-card-grid > *:nth-child(2n) {
          margin-right: 0; }
        .l-card-grid > *, .l-card-grid > *:nth-child(3n) {
          margin-right: 1%; } }
    .l-card-grid > *:first-child:nth-last-child(2),
    .l-card-grid > *:first-child:nth-last-child(2) ~ * {
      flex-basis: 49.5%; }
      .l-card-grid > *:first-child:nth-last-child(2):nth-child(2n),
      .l-card-grid > *:first-child:nth-last-child(2) ~ *:nth-child(2n) {
        margin-right: 0; }
      .l-card-grid > *:first-child:nth-last-child(2), .l-card-grid > *:first-child:nth-last-child(2):nth-child(3n),
      .l-card-grid > *:first-child:nth-last-child(2) ~ *,
      .l-card-grid > *:first-child:nth-last-child(2) ~ *:nth-child(3n) {
        margin-right: 1%; }
    .l-card-grid > *:first-child:nth-last-child(4),
    .l-card-grid > *:first-child:nth-last-child(4) ~ * {
      flex-basis: 49.5%; }
      .l-card-grid > *:first-child:nth-last-child(4):nth-child(2n),
      .l-card-grid > *:first-child:nth-last-child(4) ~ *:nth-child(2n) {
        margin-right: 0; }
      .l-card-grid > *:first-child:nth-last-child(4), .l-card-grid > *:first-child:nth-last-child(4):nth-child(3n),
      .l-card-grid > *:first-child:nth-last-child(4) ~ *,
      .l-card-grid > *:first-child:nth-last-child(4) ~ *:nth-child(3n) {
        margin-right: 1%; }
    .l-card-grid > *:only-child {
      flex-basis: 49.5%; }
    @media (max-width: 46.24em) {
      .l-card-grid > * {
        flex-basis: 100% !important;
        margin-right: 0; } }

.l-mt-1 {
  margin-top: calc((5vw + 5vh) / 7.5); }
  @media (max-width: 46.24em) {
    .l-mt-1 {
      margin-top: calc(calc((5vw + 5vh) / 7.5) * 1.2); } }

.l-mt-2 {
  margin-top: calc((5vw + 5vh) / 3.3); }
  @media (max-width: 46.24em) {
    .l-mt-2 {
      margin-top: calc(calc((5vw + 5vh) / 3.3) * 1.2); } }

.l-mt-3 {
  margin-top: calc((5vw + 5vh) / 2); }
  @media (max-width: 46.24em) {
    .l-mt-3 {
      margin-top: calc(calc((5vw + 5vh) / 2) * 1.2); } }

.l-mt-4 {
  margin-top: calc((5vw + 5vh) / 1.4); }
  @media (max-width: 46.24em) {
    .l-mt-4 {
      margin-top: calc(calc((5vw + 5vh) / 1.4) * 1.2); } }

.l-mt-5 {
  margin-top: calc((5vw + 5vh) / 1); }
  @media (max-width: 46.24em) {
    .l-mt-5 {
      margin-top: calc(calc((5vw + 5vh) / 1) * 1.2); } }

.l-mr-1 {
  margin-right: calc((5vw + 5vh) / 7.5); }
  @media (max-width: 46.24em) {
    .l-mr-1 {
      margin-right: calc(calc((5vw + 5vh) / 7.5) * 1.2); } }

.l-mr-2 {
  margin-right: calc((5vw + 5vh) / 3.3); }
  @media (max-width: 46.24em) {
    .l-mr-2 {
      margin-right: calc(calc((5vw + 5vh) / 3.3) * 1.2); } }

.l-mr-3 {
  margin-right: calc((5vw + 5vh) / 2); }
  @media (max-width: 46.24em) {
    .l-mr-3 {
      margin-right: calc(calc((5vw + 5vh) / 2) * 1.2); } }

.l-mr-4 {
  margin-right: calc((5vw + 5vh) / 1.4); }
  @media (max-width: 46.24em) {
    .l-mr-4 {
      margin-right: calc(calc((5vw + 5vh) / 1.4) * 1.2); } }

.l-mr-5 {
  margin-right: calc((5vw + 5vh) / 1); }
  @media (max-width: 46.24em) {
    .l-mr-5 {
      margin-right: calc(calc((5vw + 5vh) / 1) * 1.2); } }

.l-mb-1, .xp-form-input {
  margin-bottom: calc((5vw + 5vh) / 7.5); }
  @media (max-width: 46.24em) {
    .l-mb-1, .xp-form-input {
      margin-bottom: calc(calc((5vw + 5vh) / 7.5) * 1.2); } }

.l-mb-2, .xp-formbuilder-form, .xp-formbuilder-form fieldset {
  margin-bottom: calc((5vw + 5vh) / 3.3); }
  @media (max-width: 46.24em) {
    .l-mb-2, .xp-formbuilder-form, .xp-formbuilder-form fieldset {
      margin-bottom: calc(calc((5vw + 5vh) / 3.3) * 1.2); } }

.l-mb-3 {
  margin-bottom: calc((5vw + 5vh) / 2); }
  @media (max-width: 46.24em) {
    .l-mb-3 {
      margin-bottom: calc(calc((5vw + 5vh) / 2) * 1.2); } }

.l-mb-4 {
  margin-bottom: calc((5vw + 5vh) / 1.4); }
  @media (max-width: 46.24em) {
    .l-mb-4 {
      margin-bottom: calc(calc((5vw + 5vh) / 1.4) * 1.2); } }

.l-mb-5 {
  margin-bottom: calc((5vw + 5vh) / 1); }
  @media (max-width: 46.24em) {
    .l-mb-5 {
      margin-bottom: calc(calc((5vw + 5vh) / 1) * 1.2); } }

.l-ml-1 {
  margin-left: calc((5vw + 5vh) / 7.5); }
  @media (max-width: 46.24em) {
    .l-ml-1 {
      margin-left: calc(calc((5vw + 5vh) / 7.5) * 1.2); } }

.l-ml-2 {
  margin-left: calc((5vw + 5vh) / 3.3); }
  @media (max-width: 46.24em) {
    .l-ml-2 {
      margin-left: calc(calc((5vw + 5vh) / 3.3) * 1.2); } }

.l-ml-3 {
  margin-left: calc((5vw + 5vh) / 2); }
  @media (max-width: 46.24em) {
    .l-ml-3 {
      margin-left: calc(calc((5vw + 5vh) / 2) * 1.2); } }

.l-ml-4 {
  margin-left: calc((5vw + 5vh) / 1.4); }
  @media (max-width: 46.24em) {
    .l-ml-4 {
      margin-left: calc(calc((5vw + 5vh) / 1.4) * 1.2); } }

.l-ml-5 {
  margin-left: calc((5vw + 5vh) / 1); }
  @media (max-width: 46.24em) {
    .l-ml-5 {
      margin-left: calc(calc((5vw + 5vh) / 1) * 1.2); } }

@media (max-width: 20em) {
  .l-hide-to-sm {
    display: none; } }

@media (min-width: 20em) {
  .l-hide-from-sm {
    display: none; } }

@media (max-width: 46.25em) {
  .l-hide-to-md {
    display: none; } }

@media (min-width: 46.25em) {
  .l-hide-from-md {
    display: none; } }

@media (max-width: 61.25em) {
  .l-hide-to-lg {
    display: none; } }

@media (min-width: 61.25em) {
  .l-hide-from-lg {
    display: none; } }

@media (max-width: 81.25em) {
  .l-hide-to-xl {
    display: none; } }

@media (min-width: 81.25em) {
  .l-hide-from-xl {
    display: none; } }

.l-m-0 {
  margin: 0; }

.l-inline-space {
  margin-left: 1em; }
  .l-inline-space--right {
    margin-right: 1em; }

@media (min-width: 20em) {
  .l-bleed-right {
    padding-right: 0; } }

@media (min-width: 46.25em) {
  .l-bleed-right {
    padding-right: 0; } }

@media (min-width: 61.25em) {
  .l-bleed-right {
    padding-right: 0; } }

@media (min-width: 81.25em) {
  .l-bleed-right {
    padding-right: 0; } }

@media (min-width: 20em) {
  .l-bleed-left {
    padding-left: 0; } }

@media (min-width: 46.25em) {
  .l-bleed-left {
    padding-left: 0; } }

@media (min-width: 61.25em) {
  .l-bleed-left {
    padding-left: 0; } }

@media (min-width: 81.25em) {
  .l-bleed-left {
    padding-left: 0; } }

@media (min-width: 20em) {
  .l-bleed {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 46.25em) {
  .l-bleed {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 61.25em) {
  .l-bleed {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 81.25em) {
  .l-bleed {
    padding-right: 0;
    padding-left: 0; } }

image {
  max-width: 100%; }

@keyframes fadeInUp {
  from {
    transform: translateY(1em);
    opacity: 0; }
  to {
    opacity: 1; } }

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

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

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

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

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

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

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

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

.center-xs,
.end-xs {
  text-align: left; }

.block-hint [class^='b-']:not([class*='__']) {
  position: relative; }
  .block-hint [class^='b-']:not([class*='__']):before {
    content: attr(class);
    position: absolute;
    font-size: 0.7rem;
    top: -0.25em;
    color: #991199;
    font-weight: bold;
    background: white;
    border: 1px solid grey;
    z-index: 2;
    padding: 0.25em; }

.grid-example > div {
  border: 2px solid #212121;
  margin-bottom: 0.5rem; }

.grid-example div > div {
  background-color: #ffc900;
  border: 2px solid #82b3e2;
  border-radius: 4px; }

/*
// Shows what element a heading is using. Used for testing.
h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  &:before {
    position: absolute;
    left: -3rem;
    font-size: 1rem;
    padding: 0.5em;
    background: lightgrey;
  }
}

h1:before {
  content: 'h1';
}
h2:before {
  content: 'h2';
}
h3:before {
  content: 'h3';
}
h4:before {
  content: 'h4';
}
h5:before {
  content: 'h5';
}
h6:before {
  content: 'h6';
}
*/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.videoWrapper__close {
  position: fixed;
  width: 100px;
  margin: auto;
  top: 7px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
  display: none; }

.videoWrapper__fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998; }
  .videoWrapper__fullscreen .videoWrapper__close {
    display: inline-block; }

.js-expand-list__extra-item {
  animation-name: fadeInUp;
  animation-duration: 0.3s; }

#sectionSidebar {
  height: 100%; }

.js-copy-icon {
  display: none; }
  .js-copy-icon:hover {
    text-decoration: underline; }
  @media (max-width: 61.24em) {
    .js-copy-icon {
      display: inline-block; } }

.js-show-copy-icon:hover {
  position: relative;
  cursor: pointer; }
  .js-show-copy-icon:hover .js-copy-icon {
    display: inline-block; }
  @media (min-width: 61.25em) {
    .js-show-copy-icon:hover {
      left: -22px; } }

a h2[id] {
  display: flex;
  flex-direction: row;
  margin-left: 10px; }
  a h2[id] .js-copy-icon {
    position: relative;
    top: 39px; }

.b-collapsible h2[id] {
  display: flex;
  flex-direction: row;
  margin-left: 10px; }
  @media (min-width: 61.25em) {
    .b-collapsible h2[id] {
      left: -14.75px; } }

.visually-hidden {
  /* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

[href='#main'] {
  position: absolute;
  top: 0;
  right: 100%;
  /* moves off screen */ }

[href='#main']:focus {
  right: auto; }

.b-loading {
  background-color: rgba(255, 255, 255, 0.4);
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none; }
  .b-loading.active {
    display: flex; }
  .b-loading__content {
    display: flex;
    align-items: center;
    position: absolute;
    padding: 15px;
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    z-index: 11; }
  .b-loading__spinner {
    position: relative;
    top: 3px;
    margin-right: 10px; }

.b-alert {
  padding: 1em;
  border-left: 4px solid #504f4f;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .b-alert--small {
    font-size: 0.8725rem;
    padding: 0.5em; }
  .b-alert--inline {
    display: inline-flex;
    padding-right: 1.5em; }
  .b-alert--success {
    border-color: #95dcca;
    background-color: #d4f1d4; }
  .b-alert--warning {
    border-color: #ffc900;
    background-color: #fef4ce; }
  .b-alert--danger {
    border-color: #d62121;
    background-color: #f3bebe; }
  .b-alert--info {
    border-color: #0667c6;
    background-color: #82b3e2; }
  .b-alert__icon {
    position: relative;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    background-color: #212121;
    color: white;
    margin-right: 1em;
    flex-shrink: 0; }
    .b-alert__icon--success {
      background-color: #366558; }
      .b-alert__icon--success:before {
        color: #d4f1d4; }
    .b-alert__icon--warning {
      background-color: #d39000; }
      .b-alert__icon--warning:before {
        color: #fef4ce; }
    .b-alert__icon--danger {
      background-color: #8b0a0a; }
      .b-alert__icon--danger:before {
        color: #f3bebe; }
    .b-alert__icon--info {
      background-color: #025169; }
      .b-alert__icon--info:before {
        color: #82b3e2; }
    .b-alert__icon:before {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      content: '!'; }
  .b-alert__title {
    flex-shrink: 0;
    flex-grow: 1;
    font-weight: bold;
    margin-right: 1rem;
    margin-top: 0.25em; }
  .b-alert__content {
    margin-top: 0.25em;
    text-align: left;
    flex-grow: 1; }
    .b-alert__content p {
      display: inline; }

.b-input-search__inputs {
  height: 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
  border-radius: 4px;
  border: 1px solid #025169; }

.b-input-search__label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.75em; }
  .b-input-search__label--dark {
    font-weight: normal;
    color: white; }

.b-input-search__placeholder {
  position: absolute;
  left: 1.15em;
  top: 0.75em;
  height: 1.6rem;
  overflow-y: hidden;
  color: #908f8f; }

.b-input-search__field {
  position: absolute;
  z-index: 2;
  background-color: transparent;
  width: 100%;
  min-width: 0;
  font-size: 1rem;
  flex: 1;
  height: 100%;
  box-sizing: border-box;
  color: #025169;
  padding: 0 1em;
  border: 0;
  text-overflow: ellipsis; }
  .b-input-search__field::-ms-clear {
    display: none; }
  .b-input-search__field:focus {
    outline: 0;
    border: 2px solid #0667c6;
    padding: 0 calc(1em - 2px); }
  .b-input-search__field--dark {
    box-shadow: none; }
    .b-input-search__field--dark:focus {
      outline: 0;
      border: 2px solid #ffc900;
      padding: 0 calc(1em - 1px); }

.b-input-search__button {
  position: absolute;
  z-index: 3;
  right: 2px;
  top: 2px;
  bottom: 2px;
  font-size: 0.8725rem;
  padding: 0 1rem;
  background-color: white;
  border: 0;
  border-radius: 0 4px 4px 0;
  cursor: pointer; }
  .b-input-search__button:hover {
    background: #fef4ce; }
  .b-input-search__button:after {
    display: block;
    width: 1.2em;
    height: 1.2em;
    content: ' ';
    float: right;
    background-size: 1.2em;
    background-position: center;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='26px' height='26px' viewBox='0 0 26 26' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 53.1 (72631) - https://sketchapp.com --%3E%3Ctitle%3Esearch%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='search' transform='translate(1.000000, 1.000000)' stroke='%23025169'%3E%3Cg id='Interface-Essential__x2F__Search__x2F__search' stroke-width='1.0434'%3E%3Cg id='Group_372'%3E%3Cg id='search'%3E%3Cpath d='M8.3,16.7 C12.9,16.7 16.6,13 16.6,8.4 C16.6,3.8 13,0 8.3,0 C3.7,0 0,3.7 0,8.3 C0,12.9 3.7,16.7 8.3,16.7 Z' id='Oval_288'%3E%3C/path%3E%3Cpath d='M14.2,14.3 L24,24' id='Shape_1872'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M8.5,3 C5.5,3 3,5.5 3,8.5' id='Oval_288_2_'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat; }

.react-autosuggest__suggestions-container {
  position: relative; }

.react-autosuggest__suggestions-list {
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #0667c6;
  border-radius: 4px;
  margin-top: 0.25rem;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  list-style-type: none;
  z-index: 10; }

.react-autosuggest__suggestion {
  cursor: pointer;
  border-bottom: 1px solid #0667c6;
  padding: 1rem; }
  .react-autosuggest__suggestion:last-child {
    border: 0;
    background-color: #0667c6;
    color: white;
    padding: 0.5rem 1rem; }
  .react-autosuggest__suggestion--highlighted {
    border-color: #0667c6;
    background-color: #f7f7f7; }

.b-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(0.5vw + 1rem) 0;
  padding-top: calc(1.5vw + 1rem);
  border-bottom: 1px solid #d8dada;
  margin-bottom: calc(0.5vw + 1.75rem); }
  .b-main-header--qa {
    border-width: 4px;
    border-bottom-style: solid;
    border-image: repeating-linear-gradient(-10deg, #f8a83d, #f8a83d 1px, transparent 1px, transparent 2px) 1; }
  .b-main-header__logo {
    height: 2rem;
    width: 100%;
    background-image: url("../static/hdir_logo.svg");
    background-repeat: no-repeat;
    background-position-y: center;
    box-shadow: 0 1px 0 transparent; }
    .b-main-header__logo--small {
      background-image: url("../static/hdir_logo_small.svg");
      background-size: contain;
      font-size: 0; }
    .b-main-header__logo--qa {
      height: 3rem;
      background-image: url("../static/hdir_logo_qa.svg"); }
  .b-main-header__logo-link {
    flex-grow: 1; }
    .b-main-header__logo-link:link, .b-main-header__logo-link:hover, .b-main-header__logo-link:visited, .b-main-header__logo-link:active {
      color: transparent;
      box-shadow: none;
      border-bottom: 0;
      text-decoration: none; }
    @media (max-width: 46.25em) {
      .b-main-header__logo-link {
        width: 3rem; } }
  .b-main-header__nav {
    display: flex;
    align-items: center; }
  .b-main-header__link {
    text-decoration: none;
    margin-right: 1.5rem; }
    .b-main-header__link:link, .b-main-header__link:hover, .b-main-header__link:visited, .b-main-header__link:active {
      color: #0667c6;
      box-shadow: none;
      border-bottom: 0;
      text-decoration: none; }
    .b-main-header__link:hover {
      box-shadow: 0 1px 0 #0667c6; }
  .b-main-header__menu-overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    overflow-y: scroll;
    z-index: 100;
    box-sizing: border-box;
    top: 0;
    left: 0;
    padding: 0 4vw;
    width: 100vw;
    height: 100vh;
    background: white; }
  .b-main-header__menu-overlay-header {
    display: flex;
    flex-direction: row;
    min-height: 2.4rem;
    justify-content: space-between;
    padding-top: calc(0.5vw + 1.2rem); }

.b-nav-list__heading {
  border-bottom: 6px solid #212121;
  padding-bottom: 0.25rem;
  font-weight: bold;
  line-height: 1.6; }

.b-nav-list__items {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  @media (min-width: 61.25em) {
    .b-nav-list__items--columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }

.b-nav-list__item {
  border-bottom: 1px solid #0667c6; }
  @media (min-width: 61.25em) {
    .b-nav-list__item--column {
      flex: 0 47.5%;
      box-sizing: border-box; } }
  .b-nav-list__item--blue {
    border-left: 0.25em solid #82b3e2;
    padding-left: 1.5em; }
  .b-nav-list__item--green {
    border-left: 0.25em solid #95dcca;
    padding-left: 1.5em; }
  .b-nav-list__item--orange {
    border-left: 0.25em solid #f8a83d;
    padding-left: 1.5em; }
  .b-nav-list__item--yellow {
    border-left: 0.25em solid #ffc900;
    padding-left: 1.5em; }
  .b-nav-list__item:nth-child(1) .b-nav-list__link--ordered:before {
    display: block;
    content: "1";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(2) .b-nav-list__link--ordered:before {
    display: block;
    content: "2";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(3) .b-nav-list__link--ordered:before {
    display: block;
    content: "3";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(4) .b-nav-list__link--ordered:before {
    display: block;
    content: "4";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(5) .b-nav-list__link--ordered:before {
    display: block;
    content: "5";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(6) .b-nav-list__link--ordered:before {
    display: block;
    content: "6";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(7) .b-nav-list__link--ordered:before {
    display: block;
    content: "7";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(8) .b-nav-list__link--ordered:before {
    display: block;
    content: "8";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(9) .b-nav-list__link--ordered:before {
    display: block;
    content: "9";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(10) .b-nav-list__link--ordered:before {
    display: block;
    content: "10";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(11) .b-nav-list__link--ordered:before {
    display: block;
    content: "11";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(12) .b-nav-list__link--ordered:before {
    display: block;
    content: "12";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(13) .b-nav-list__link--ordered:before {
    display: block;
    content: "13";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(14) .b-nav-list__link--ordered:before {
    display: block;
    content: "14";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(15) .b-nav-list__link--ordered:before {
    display: block;
    content: "15";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(16) .b-nav-list__link--ordered:before {
    display: block;
    content: "16";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(17) .b-nav-list__link--ordered:before {
    display: block;
    content: "17";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(18) .b-nav-list__link--ordered:before {
    display: block;
    content: "18";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(19) .b-nav-list__link--ordered:before {
    display: block;
    content: "19";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(20) .b-nav-list__link--ordered:before {
    display: block;
    content: "20";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(21) .b-nav-list__link--ordered:before {
    display: block;
    content: "21";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(22) .b-nav-list__link--ordered:before {
    display: block;
    content: "22";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(23) .b-nav-list__link--ordered:before {
    display: block;
    content: "23";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(24) .b-nav-list__link--ordered:before {
    display: block;
    content: "24";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(25) .b-nav-list__link--ordered:before {
    display: block;
    content: "25";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(26) .b-nav-list__link--ordered:before {
    display: block;
    content: "26";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(27) .b-nav-list__link--ordered:before {
    display: block;
    content: "27";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(28) .b-nav-list__link--ordered:before {
    display: block;
    content: "28";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(29) .b-nav-list__link--ordered:before {
    display: block;
    content: "29";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(30) .b-nav-list__link--ordered:before {
    display: block;
    content: "30";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(31) .b-nav-list__link--ordered:before {
    display: block;
    content: "31";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(32) .b-nav-list__link--ordered:before {
    display: block;
    content: "32";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(33) .b-nav-list__link--ordered:before {
    display: block;
    content: "33";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(34) .b-nav-list__link--ordered:before {
    display: block;
    content: "34";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(35) .b-nav-list__link--ordered:before {
    display: block;
    content: "35";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(36) .b-nav-list__link--ordered:before {
    display: block;
    content: "36";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(37) .b-nav-list__link--ordered:before {
    display: block;
    content: "37";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(38) .b-nav-list__link--ordered:before {
    display: block;
    content: "38";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(39) .b-nav-list__link--ordered:before {
    display: block;
    content: "39";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(40) .b-nav-list__link--ordered:before {
    display: block;
    content: "40";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(41) .b-nav-list__link--ordered:before {
    display: block;
    content: "41";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(42) .b-nav-list__link--ordered:before {
    display: block;
    content: "42";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(43) .b-nav-list__link--ordered:before {
    display: block;
    content: "43";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(44) .b-nav-list__link--ordered:before {
    display: block;
    content: "44";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(45) .b-nav-list__link--ordered:before {
    display: block;
    content: "45";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(46) .b-nav-list__link--ordered:before {
    display: block;
    content: "46";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(47) .b-nav-list__link--ordered:before {
    display: block;
    content: "47";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(48) .b-nav-list__link--ordered:before {
    display: block;
    content: "48";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(49) .b-nav-list__link--ordered:before {
    display: block;
    content: "49";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(50) .b-nav-list__link--ordered:before {
    display: block;
    content: "50";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(51) .b-nav-list__link--ordered:before {
    display: block;
    content: "51";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(52) .b-nav-list__link--ordered:before {
    display: block;
    content: "52";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(53) .b-nav-list__link--ordered:before {
    display: block;
    content: "53";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(54) .b-nav-list__link--ordered:before {
    display: block;
    content: "54";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(55) .b-nav-list__link--ordered:before {
    display: block;
    content: "55";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(56) .b-nav-list__link--ordered:before {
    display: block;
    content: "56";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(57) .b-nav-list__link--ordered:before {
    display: block;
    content: "57";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(58) .b-nav-list__link--ordered:before {
    display: block;
    content: "58";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(59) .b-nav-list__link--ordered:before {
    display: block;
    content: "59";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(60) .b-nav-list__link--ordered:before {
    display: block;
    content: "60";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(61) .b-nav-list__link--ordered:before {
    display: block;
    content: "61";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(62) .b-nav-list__link--ordered:before {
    display: block;
    content: "62";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(63) .b-nav-list__link--ordered:before {
    display: block;
    content: "63";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(64) .b-nav-list__link--ordered:before {
    display: block;
    content: "64";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(65) .b-nav-list__link--ordered:before {
    display: block;
    content: "65";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(66) .b-nav-list__link--ordered:before {
    display: block;
    content: "66";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(67) .b-nav-list__link--ordered:before {
    display: block;
    content: "67";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(68) .b-nav-list__link--ordered:before {
    display: block;
    content: "68";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(69) .b-nav-list__link--ordered:before {
    display: block;
    content: "69";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(70) .b-nav-list__link--ordered:before {
    display: block;
    content: "70";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(71) .b-nav-list__link--ordered:before {
    display: block;
    content: "71";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(72) .b-nav-list__link--ordered:before {
    display: block;
    content: "72";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(73) .b-nav-list__link--ordered:before {
    display: block;
    content: "73";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(74) .b-nav-list__link--ordered:before {
    display: block;
    content: "74";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(75) .b-nav-list__link--ordered:before {
    display: block;
    content: "75";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(76) .b-nav-list__link--ordered:before {
    display: block;
    content: "76";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(77) .b-nav-list__link--ordered:before {
    display: block;
    content: "77";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(78) .b-nav-list__link--ordered:before {
    display: block;
    content: "78";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(79) .b-nav-list__link--ordered:before {
    display: block;
    content: "79";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(80) .b-nav-list__link--ordered:before {
    display: block;
    content: "80";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(81) .b-nav-list__link--ordered:before {
    display: block;
    content: "81";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(82) .b-nav-list__link--ordered:before {
    display: block;
    content: "82";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(83) .b-nav-list__link--ordered:before {
    display: block;
    content: "83";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(84) .b-nav-list__link--ordered:before {
    display: block;
    content: "84";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(85) .b-nav-list__link--ordered:before {
    display: block;
    content: "85";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(86) .b-nav-list__link--ordered:before {
    display: block;
    content: "86";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(87) .b-nav-list__link--ordered:before {
    display: block;
    content: "87";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(88) .b-nav-list__link--ordered:before {
    display: block;
    content: "88";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(89) .b-nav-list__link--ordered:before {
    display: block;
    content: "89";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(90) .b-nav-list__link--ordered:before {
    display: block;
    content: "90";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(91) .b-nav-list__link--ordered:before {
    display: block;
    content: "91";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(92) .b-nav-list__link--ordered:before {
    display: block;
    content: "92";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(93) .b-nav-list__link--ordered:before {
    display: block;
    content: "93";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(94) .b-nav-list__link--ordered:before {
    display: block;
    content: "94";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(95) .b-nav-list__link--ordered:before {
    display: block;
    content: "95";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(96) .b-nav-list__link--ordered:before {
    display: block;
    content: "96";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(97) .b-nav-list__link--ordered:before {
    display: block;
    content: "97";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(98) .b-nav-list__link--ordered:before {
    display: block;
    content: "98";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(99) .b-nav-list__link--ordered:before {
    display: block;
    content: "99";
    padding-right: 1em;
    color: #025169; }
  .b-nav-list__item:nth-child(100) .b-nav-list__link--ordered:before {
    display: block;
    content: "100";
    padding-right: 1em;
    color: #025169; }

.b-nav-list__item-info {
  font-size: 0.8725rem;
  padding-right: 1.5rem;
  flex-shrink: 0; }
  @media (max-width: 46.25em) {
    .b-nav-list__item-info {
      width: calc(100% - 2em);
      padding: 0; } }
  .b-nav-list__item-info--highlight {
    display: inline;
    height: 1.5em;
    background-color: #fef4ce;
    margin-right: 2em;
    margin-top: -0.25em;
    padding: 0.25em; }
  .b-nav-list__item-info--file {
    position: relative;
    color: #212121;
    padding-right: 1rem;
    padding-left: 0;
    box-shadow: 0 1px 0 #0667c6;
    height: 1.4em;
    cursor: pointer; }
    .b-nav-list__item-info--file:after {
      position: absolute;
      top: 0.4em;
      right: 0;
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_down_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat; }
      @media (max-width: 46.25em) {
        .b-nav-list__item-info--file:after {
          top: 0;
          position: relative; } }
    @media (max-width: 46.25em) {
      .b-nav-list__item-info--file {
        box-shadow: 0 1px 0 transparent; } }

.b-nav-list__item-meta {
  font-size: 0.8725rem;
  margin-right: 2rem;
  color: #504f4f; }
  .b-nav-list__item-meta--hide {
    display: none; }

.b-nav-list__link {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  cursor: pointer;
  padding: 1em; }
  @media (max-width: 46.25em) {
    .b-nav-list__link {
      flex-direction: column; } }
  .b-nav-list__link:link, .b-nav-list__link:hover, .b-nav-list__link:visited, .b-nav-list__link:active {
    color: #212121;
    box-shadow: none;
    border-bottom: 0;
    text-decoration: none; }
  .b-nav-list__link:hover[href] {
    color: #0667c6;
    background: rgba(0, 30, 0, 0.03); }
  .b-nav-list__link--active {
    cursor: default;
    background-color: rgba(255, 201, 0, 0.15) !important;
    transition: background-color 0.3s; }
    .b-nav-list__link--active:hover {
      color: #212121 !important; }
  .b-nav-list__link--no-arrow {
    padding-right: 1rem !important; }
    .b-nav-list__link--no-arrow:before {
      display: none !important; }
    .b-nav-list__link--no-arrow:after {
      display: none !important; }
  .b-nav-list__link--arrow {
    padding-right: 2rem; }
    .b-nav-list__link--arrow:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat;
      top: 1.35em;
      position: absolute;
      right: 1rem; }
  .b-nav-list__link--no-pointer {
    cursor: default; }
    .b-nav-list__link--no-pointer .b-list-item-type:after {
      display: none; }
  .b-nav-list__link--anchor {
    justify-content: flex-start; }
    .b-nav-list__link--anchor:before {
      content: '↓';
      color: #0667c6;
      display: inline-block;
      margin-left: 0;
      padding-right: 0.75rem; }
    .b-nav-list__link--anchor:after {
      content: ''; }
    @media (max-width: 46.25em) {
      .b-nav-list__link--anchor {
        margin-left: 1rem;
        position: relative; }
        .b-nav-list__link--anchor:before {
          position: absolute;
          top: 1rem;
          left: -0.5rem; } }

.b-nav-list__item-description {
  width: 30%;
  flex-shrink: 0; }
  @media (max-width: 46.25em) {
    .b-nav-list__item-description {
      width: calc(100% - 2em); } }

.b-nav-list__item-title {
  width: 100%;
  padding-right: 1rem; }
  @media (max-width: 46.25em) {
    .b-nav-list__item-title {
      padding-right: 0;
      width: calc(100% - 2em); } }

.b-nav-list--small {
  font-size: 0.8725rem; }

.b-page-meta {
  color: #504f4f;
  font-size: 0.8725rem; }
  .b-page-meta__text {
    display: inline-block;
    border-right: 1px solid #504f4f;
    padding-right: 1em;
    margin-right: 1em; }
  .b-page-meta__link {
    display: inline-block; }
    .b-page-meta__link:link, .b-page-meta__link:hover, .b-page-meta__link:visited, .b-page-meta__link:active {
      color: #212121;
      box-shadow: none;
      border-bottom: 0;
      text-decoration: none;
      box-shadow: 0 1px 0 #0667c6; }
    .b-page-meta__link:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat; }
  .b-page-meta > :last-child {
    border-right: 0; }
  @media (max-width: 46.25em) {
    .b-page-meta > * {
      margin-top: 0.5em; } }

.b-article-intro {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative; }
  @media (max-width: 46.25em) {
    .b-article-intro {
      flex-direction: column; } }
  .b-article-intro__image {
    max-width: 100%;
    height: 100%; }
    .b-article-intro__image-wrapper--feature .b-article-intro__image {
      width: 100%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 50% 50%; }
    @media (max-width: 46.25em) {
      .b-article-intro__image {
        height: 33vh; } }
  .b-article-intro__image-wrapper {
    width: calc(50% - 1.5rem);
    margin-left: 1.5rem;
    min-height: 12.5vw;
    max-height: 220px; }
    .b-article-intro__image-wrapper--feature .b-article-intro__image-wrapper {
      max-height: auto; }
    @media (max-width: 46.25em) {
      .b-article-intro__image-wrapper {
        width: 100%;
        margin-left: 0; } }
    .b-article-intro__image-wrapper--feature {
      flex-shrink: 0; }
      @media (max-width: 46.25em) {
        .b-article-intro__image-wrapper--feature {
          width: 100%;
          margin-left: 0; } }
      @media (max-width: 61.25em) {
        .b-article-intro__image-wrapper--feature {
          width: calc(100% + 4vw + 4vw);
          margin-left: -4vw; } }
      @media (min-width: 61.25em) {
        .b-article-intro__image-wrapper--feature {
          min-height: 60vh;
          width: calc(100% + 6vw + 6vw);
          margin-left: -6vw; } }
      @media (min-width: 81.25em) {
        .b-article-intro__image-wrapper--feature {
          width: calc(100% + 14vw + 14vw);
          margin-left: -14vw; } }
  .b-article-intro__image-text {
    margin: 0rem 0 1rem 0;
    font-size: 0.8725rem;
    color: #504f4f; }
  .b-article-intro__intro {
    font-size: 1.2rem;
    font-weight: bold; }
  .b-article-intro__topic {
    font-weight: normal;
    font-size: calc(17px + 1 * (100vw - 400px) / (1440 - 400));
    margin-bottom: 0.5rem;
    text-transform: uppercase; }
  .b-article-intro__text {
    width: 67%; }
    @media (max-width: 46.25em) {
      .b-article-intro__text {
        width: 100%;
        flex-shrink: 0; } }
    .b-article-intro__text--with-image {
      width: calc(50% - 1.5rem); }
      @media (max-width: 46.25em) {
        .b-article-intro__text--with-image {
          width: 100%;
          flex-shrink: 0; } }
    .b-article-intro__text--feature {
      position: absolute;
      box-sizing: border-box;
      bottom: 10%;
      width: 100%;
      padding: 2rem;
      left: 50%;
      background-color: rgba(2, 81, 105, 0.8);
      color: white;
      transform: translateX(-50%); }
      @media (max-width: 46.25em) {
        .b-article-intro__text--feature {
          width: 100vw;
          padding: 1rem;
          bottom: 2.5rem;
          position: relative;
          bottom: 0;
          background-color: #025169; } }

.b-link__icon {
  display: inline-block;
  content: ' ';
  height: 1.6em;
  width: 1.2em;
  margin-right: 0.6em;
  margin-bottom: -0.5em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 center; }

.b-link__link {
  position: relative; }
  .b-link__link--arrow {
    margin-right: 1.5em; }
    .b-link__link--arrow:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat;
      position: absolute;
      display: block;
      right: -1.5em;
      bottom: 0.15em; }
  .b-link__link--arrow-left {
    margin-left: 1.75em; }
    .b-link__link--arrow-left:before {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_left_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat;
      position: absolute;
      display: block;
      left: -1.75em;
      bottom: 0.15em; }
  .b-link__link--secondary:link, .b-link__link--secondary:hover, .b-link__link--secondary:visited, .b-link__link--secondary:active {
    color: #504f4f;
    box-shadow: none;
    border-bottom: 0;
    text-decoration: none;
    box-shadow: 0 1px 0 #504f4f; }
  .b-link__link--button, .b-link__link--button-secondary, .b-link__link--button-inherit, .b-link__link--button-wide {
    box-sizing: border-box;
    display: inline-block;
    color: white !important;
    background-color: #0667c6;
    padding: 0.5em 2em;
    border-radius: 2em;
    margin: 0;
    border: 0;
    font-size: calc(17px + 1 * (100vw - 400px) / (1440 - 400));
    cursor: pointer;
    box-shadow: 0 1px 0 transparent; }
  .b-link__link--button-secondary {
    border: 2px solid #0667c6;
    color: #0667c6 !important;
    background: white; }
  .b-link__link--button-inherit {
    border: 2px solid currentColor;
    color: inherit !important;
    background: white; }
  .b-link__link--heading:link, .b-link__link--heading:hover, .b-link__link--heading:visited, .b-link__link--heading:active {
    color: #0667c6;
    box-shadow: none;
    border-bottom: 0;
    text-decoration: none;
    box-shadow: 0 1px 0 #0667c6; }
  .b-link__link--heading:hover {
    text-decoration: underline; }
  .b-link__link--button-wide {
    width: 100%;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    border-radius: 4px; }
    .b-link__link--button-wide:after {
      position: absolute;
      right: 1em;
      top: 1.5em; }
    .b-link__link--button-wide:hover {
      text-decoration: underline; }
  .b-link__link--small {
    font-size: 0.8725rem; }
  .b-link__link--purple {
    background-color: white;
    color: #7c145c !important;
    border: 1px solid #7c145c; }
  .b-link__link--white {
    background-color: white;
    color: #0667c6 !important;
    border: 1px solid #0667c6; }
  .b-link__link--shadow {
    background-color: white;
    color: #0667c6 !important;
    box-shadow: 0 1px 5px #d8dada; }
  .b-link__link--no-underline {
    box-shadow: 0 1px 0 transparent; }

.b-footer {
  color: white; }
  .b-footer__link {
    display: inline;
    line-height: 2em; }
    .b-footer__link:link, .b-footer__link:hover, .b-footer__link:visited, .b-footer__link:active {
      color: white;
      box-shadow: none;
      border-bottom: 0;
      text-decoration: none;
      box-shadow: 0 1px 0 white; }
    .b-footer__link:focus {
      outline-color: white; }
  .b-footer__text {
    font-size: 0.8725rem; }
  .b-footer__link-list {
    display: flex;
    flex-wrap: wrap; }

.b-quote {
  display: block;
  font-size: 0.8725rem;
  padding: 1em;
  margin: 2em 0;
  background-color: #f7f7f7; }
  .b-quote p {
    margin: 1em 0 !important;
    text-indent: 2em; }
  .b-quote ul {
    list-style: none; }
  .b-quote__blockquote:after, .b-quote__blockquote:before {
    content: ''; }
  .b-quote__source {
    text-align: right;
    font-weight: bold; }
  .b-quote__footnote {
    text-indent: 0 !important; }

.b-collapsible {
  padding-left: 1.5em;
  border-top: 4px solid #212121;
  padding-top: 2em; }
  .b-collapsible--medium {
    border-width: 1px; }
  .b-collapsible--small {
    border-width: 1px;
    border: 0;
    padding-top: 0;
    margin-top: 0; }
  .b-collapsible--subtle {
    margin-left: -1.5em; }
  .b-collapsible--no-border {
    border: 0; }
  .b-collapsible__code {
    font-weight: normal;
    font-size: 0.8725rem;
    color: #504f4f;
    float: right;
    margin-top: 0; }
  .b-collapsible__category {
    margin-right: 7%;
    font-size: 0.8725rem;
    margin-bottom: 0.5em; }
  .b-collapsible__button {
    position: relative;
    display: block;
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 0;
    overflow: visible;
    font-size: 1em;
    cursor: pointer; }
    .b-collapsible__button:hover {
      color: #0667c6; }
    .b-collapsible__button:before {
      display: block;
      position: absolute;
      content: ' ';
      width: 0.75em;
      height: 0.75em;
      margin-left: -1.5em;
      transform: rotate(90deg);
      background-image: url(../static/icons/chevron.svg);
      background-repeat: no-repeat;
      background-size: contain;
      left: 0;
      top: 0.25em; }
    .b-collapsible__button:active {
      color: #212121; }
    .b-collapsible__button--subtle {
      font-size: 0.8725rem;
      box-shadow: none !important; }
      .b-collapsible__button--subtle > * {
        display: inline !important;
        border-bottom: 1px dashed #212121; }
      .b-collapsible__button--subtle:before {
        display: none; }
    .b-collapsible__button--medium:before {
      top: 0.25em;
      width: 0.66em;
      height: 0.66em; }
    .b-collapsible__button--small {
      padding-bottom: 1px; }
      .b-collapsible__button--small:before {
        margin-left: -1.5em;
        top: 0.25em;
        width: 0.66em;
        height: 0.66em; }
    .b-collapsible__button--active:before {
      top: 0;
      transform: rotate(180deg); }
  .b-collapsible__content {
    animation: fadeInUp 300ms ease;
    margin-top: 0.5rem;
    margin-left: -1.5em; }
    .b-collapsible__content--small {
      font-size: 0.8725rem;
      margin-left: 0; }
  .b-collapsible__heading:hover {
    cursor: pointer; }
  .b-collapsible__subheading {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8725rem; }
  .b-collapsible__meta-heading {
    font-size: 0.8725rem;
    margin-top: 10px; }

.b-list--no-style {
  margin: 0;
  padding: 0;
  list-style: none; }

.b-select {
  position: relative;
  display: flex;
  align-items: center; }
  .b-select:after {
    position: absolute;
    display: block;
    bottom: 1.15em;
    right: 1em;
    z-index: -1;
    height: 0.8em;
    width: 0.8em;
    margin-left: 0.33em;
    content: '';
    background-image: url("../static/icons/arrow_down_hdir.svg");
    background-size: 0.8em;
    background-repeat: no-repeat; }
  .b-select--simple {
    font-size: 0.8725rem; }
    .b-select--simple:after {
      right: 0;
      bottom: 0.6em; }
  .b-select--stacked {
    display: table; }
    .b-select--stacked:after {
      top: 2.4em; }
  .b-select__label {
    display: inline-block;
    margin-right: 1em;
    color: #025169;
    flex-shrink: 0; }
  .b-select__select {
    appearance: none;
    font-size: 0.8725rem;
    border: 1px solid #025169;
    background-color: transparent;
    padding: 1em 2.5em 1em 1em;
    width: 100%; }
    .b-select__select::-ms-expand {
      display: none; }
    .b-select__select--simple {
      border-radius: 0;
      border: 0;
      border-bottom: 1px solid #0667c6;
      padding: 0;
      padding: 0.5em 1.5em 0.2em 0.2em;
      margin-top: -0.1em;
      text-transform: uppercase; }

.b-card {
  border-radius: 4px;
  border: 1px solid #d8dada;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 0 transparent; }
  .b-card:hover * {
    color: #0667c6; }
  @media (min-width: 46.25em) {
    .b-card--horizontal {
      flex-direction: row; } }
  .b-card--horizontal .b-card__feature > * {
    display: flex;
    align-items: center;
    margin-top: -2px; }
  @media (min-width: 46.25em) {
    .b-card--horizontal .b-card__feature {
      display: flex;
      flex-grow: 0; } }
  .b-card--horizontal .b-card__link {
    flex-grow: 1;
    overflow: auto; }
    .b-card--horizontal .b-card__link p {
      margin: 1em 0 0 0; }
  .b-card__feature {
    color: white;
    flex-shrink: 0; }
    .b-card__feature > img {
      width: 100%;
      display: block; }
  .b-card__topic {
    display: inline-block;
    font-size: 0.8725rem;
    margin-top: 1rem;
    padding: 0.25em;
    background-color: #fef4ce; }
  .b-card__link {
    display: block;
    height: 100%;
    position: relative;
    background-color: white;
    padding: 1rem 3rem 1rem 1rem;
    box-shadow: none; }
    .b-card__link p {
      margin: 1em 0 0 0; }
    .b-card__link > *:only-child {
      margin-top: 0; }
    .b-card__link--right-arrow:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat;
      position: absolute;
      right: 1em;
      top: 1.25em; }
    .b-card__link--left-arrow {
      padding: 1rem 2rem 1rem 3rem; }
      .b-card__link--left-arrow:after {
        display: none; }
      .b-card__link--left-arrow:before {
        display: inline-block;
        height: 0.8em;
        width: 0.8em;
        margin-left: 0.4em;
        content: '';
        background-image: url("../static/icons/arrow_left_hdir.svg");
        background-size: 0.8em;
        background-repeat: no-repeat;
        position: absolute;
        left: 1em;
        top: 1.25em; }
  .b-card__heading {
    display: block;
    color: #212121; }
  .b-card__text {
    font-size: 0.8725rem;
    color: #504f4f;
    margin-top: 0.5em;
    width: calc(100% + 1rem); }

.b-box {
  border: 1px solid #d8dada;
  border-radius: 4px;
  padding: 2rem;
  background-color: #f7f7f7; }
  @media (max-width: 46.25em) {
    .b-box {
      padding: 1rem; } }
  .b-box--square {
    border-radius: 0;
    border: 0 !important; }
  .b-box--no-padding {
    padding: 2rem 0; }
  .b-box--green {
    background-color: #d4f1d4;
    border: 1px solid #95dcca; }
  .b-box--white {
    background-color: white;
    border: 1px solid #d8dada; }
  .b-box--blue {
    background-color: #e6f3ff;
    border: 1px solid #82b3e2; }
  .b-box--blue-dark {
    color: #e5bdf5 !important;
    background-color: #025169;
    border: 1px solid #82b3e2; }
  .b-box--yellow {
    color: #212121 !important;
    background-color: #fef4ce; }

.b-list-item-type {
  position: relative;
  width: 100%;
  width: calc(100% - 1.5rem); }
  .b-list-item-type:after {
    display: inline-block;
    height: 0.8em;
    width: 0.8em;
    margin-left: 0.4em;
    content: '';
    background-image: url("../static/icons/arrow_right_hdir.svg");
    background-size: 0.8em;
    background-repeat: no-repeat;
    position: absolute;
    right: -1rem;
    top: 0.4em; }
  .b-list-item-type--no-arrow:after {
    display: none; }
  .b-list-item-type__download {
    font-size: 0.8725rem;
    text-decoration: underline;
    color: #0667c6;
    margin-left: 1rem;
    margin-right: -1rem;
    padding-right: 1rem;
    flex-shrink: 0; }
    .b-list-item-type__download:after {
      position: absolute;
      top: 0.4em;
      right: 0;
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_down_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat;
      margin-right: -1rem; }
      @media (max-width: 46.25em) {
        .b-list-item-type__download:after {
          top: 0;
          position: relative; } }
    .b-list-item-type__download--open:after {
      position: absolute;
      top: 0.4em;
      right: 0;
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat;
      margin-right: -1rem; }
      @media (max-width: 46.25em) {
        .b-list-item-type__download--open:after {
          top: 0;
          position: relative; } }
  .b-list-item-type--link, .b-list-item-type--link:link {
    text-decoration: none;
    color: #0667c6; }
  .b-list-item-type--float {
    display: inline-block;
    float: right; }
  .b-list-item-type__email {
    display: inline-block;
    margin-top: 0.5rem; }
  .b-list-item-type__meta {
    font-size: 0.8725rem;
    color: #504f4f; }
  .b-list-item-type__topic {
    font-size: 0.8725rem;
    color: #504f4f;
    margin-top: 1em; }
  .b-list-item-type__deadline {
    font-size: 0.8725rem;
    color: #d62121 !important; }
  .b-list-item-type__deadline--open {
    font-size: 0.8725rem;
    color: #007a00 !important; }
  .b-list-item-type__flex-wrapper {
    display: flex; }
  .b-list-item-type__image {
    flex: 1;
    max-width: 8rem;
    margin-right: 1rem; }
    @media (max-width: 46.24em) {
      .b-list-item-type__image {
        display: none; } }
  .b-list-item-type__text {
    flex: 3;
    padding-right: 0.5rem; }
  .b-list-item-type__category {
    font-size: 0.8725rem;
    background-color: #fef4ce;
    display: inline-block;
    padding: 0.25em;
    margin: 1rem 0 0 0; }
  .b-list-item-type__date {
    font-size: 0.8725rem;
    margin-top: 0.5em; }
  .b-list-item-type__subheading {
    font-size: 0.8725rem;
    margin-top: 0.5em; }
    .b-list-item-type__subheading > *:first-child {
      font-weight: bold; }
    .b-list-item-type__subheading > *:only-child {
      font-weight: normal; }

.b-list-heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 4px solid #212121;
  padding-bottom: calc(calc((5vw + 5vh) / 7.5) - 7px); }
  @media (max-width: 46.24em) {
    .b-list-heading {
      flex-direction: column; } }
  .b-list-heading__heading {
    text-transform: uppercase; }

.b-statistics {
  display: flex;
  padding: 2rem;
  background-color: #025169; }
  @media (max-width: 46.25em) {
    .b-statistics {
      padding: 1rem; } }
  .b-statistics__icon {
    height: auto;
    max-width: 25%;
    width: 4rem;
    margin: 0 2rem 0 0;
    flex-shrink: 0; }
    @media (max-width: 46.25em) {
      .b-statistics__icon {
        margin: 0.5rem 1.5rem 0.5rem 0; } }
  .b-statistics__text-wrapper--flex {
    display: flex; }
    .b-statistics__text-wrapper--flex > :nth-child(2) {
      margin-left: 2rem;
      height: 100%; }
  .b-statistics__big-text {
    font-size: 2.5rem;
    color: #e5bdf5 !important; }
  .b-statistics__small-text {
    display: flex;
    align-items: center;
    font-size: 0.8725rem;
    color: #e5bdf5 !important; }
    .b-statistics__small-text:only-child {
      height: 100%; }

.b-press-release {
  display: flex;
  padding: 1rem 0; }
  .b-press-release:hover .b-press-release__title {
    color: #0667c6;
    box-shadow: 0 1px 0 #0667c6; }
  .b-press-release__image-wrapper {
    min-width: calc(33% - 1rem);
    margin-right: 1rem; }
  .b-press-release__image {
    max-width: 100%;
    max-height: 100%; }
  .b-press-release__info {
    text-transform: uppercase;
    font-size: 0.8725rem;
    color: #504f4f; }
  .b-press-release__text-wrapper {
    flex-grow: 1; }
  .b-press-release__title {
    color: #212121;
    display: inline; }
  .b-press-release__release-date {
    color: #504f4f;
    font-size: 0.8725rem; }

.b-button, .xp-formbuilder-form input[type='submit'],
.xp-formbuilder-form .btn {
  display: inline-block;
  color: white;
  background-color: #0667c6;
  border: 2px solid #0667c6;
  padding: 0.5em 2em;
  border-radius: 2em;
  font-size: calc(17px + 1 * (100vw - 400px) / (1440 - 400));
  white-space: nowrap;
  cursor: pointer; }
  .b-button--download:after {
    display: inline-block;
    height: 0.8em;
    width: 0.8em;
    margin-left: 0.4em;
    content: '';
    background-image: url("../static/icons/arrow_down_white.svg");
    background-size: 0.8em;
    background-repeat: no-repeat; }
  .b-button--arrow:after {
    display: inline-block;
    height: 0.8em;
    width: 0.8em;
    margin-left: 0.4em;
    content: '';
    background-image: url("../static/icons/arrow_right_white.svg");
    background-size: 0.8em;
    background-repeat: no-repeat; }
  .b-button--small {
    font-size: 0.8725rem; }
  .b-button--clean {
    border: 0;
    background: transparent;
    color: #212121;
    padding: 0;
    margin: 0 0 1.5em; }
  .b-button--plain,
  .xp-formbuilder-form .btn-primary {
    border: 0;
    background: transparent;
    color: #212121;
    text-decoration: underline; }
  .b-button--secondary,
  .xp-formbuilder-form .btn-secondary {
    border: 2px solid #0667c6;
    color: #0667c6 !important;
    background: white; }
    .b-button--secondary.b-button--arrow:after,
    .xp-formbuilder-form .b-button--arrow.btn-secondary:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat; }
    .b-button--secondary.b-button--download:after,
    .xp-formbuilder-form .b-button--download.btn-secondary:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_down_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat; }
  .b-button--secondary-dark {
    border: 2px solid #025169;
    color: #025169 !important;
    background: white; }
    .b-button--secondary-dark.b-button--arrow:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat; }
    .b-button--secondary-dark.b-button--download:after {
      display: inline-block;
      height: 0.8em;
      width: 0.8em;
      margin-left: 0.4em;
      content: '';
      background-image: url("../static/icons/arrow_down_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat; }
  .b-button__icon {
    display: inline-block;
    content: ' ';
    height: 1.6em;
    width: 1.2em;
    margin-right: 0.6em;
    margin-bottom: -0.5em;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 center; }
  .b-button__underline {
    text-decoration: none;
    box-shadow: 0 1px 0 #0667c6; }
  .b-button__underline:hover {
    color: #0667c6; }
  .b-button--option-primary, .b-button--option-secondary {
    text-transform: uppercase;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    color: #212121; }
  .b-button--option-primary {
    padding: 0.5em;
    background-color: #d4f1d4;
    border-bottom: 1px solid #d4f1d4; }
  .b-button--option-secondary {
    padding: 0.5em 0;
    background-color: transparent;
    border-bottom: 1px solid #212121; }

.b-square-image {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden; }
  .b-square-image__background {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    filter: blur(100px) saturate(50);
    opacity: 0.5;
    z-index: 1;
    backface-visibility: hidden;
    perspective: 1000;
    transform: translate3d(0, 0, 0);
    transform: translateZ(0); }
  .b-square-image__image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding-bottom: 90%;
    text-align: center; }
  .b-square-image__image {
    content: ' ';
    height: 90%;
    width: 90%;
    margin: 5%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center; }

.b-radio-button-group {
  display: inline-block;
  position: relative;
  border: 0;
  padding: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-end: 0;
  -webkit-padding-start: 0;
  -webkit-padding-after: 0; }
  .b-radio-button-group__legend {
    font-weight: bold;
    padding: 0;
    margin: 0;
    -webkit-padding-start: 0;
    -webkit-padding-end: 0; }
    .b-radio-button-group__legend--border {
      width: 100%;
      padding-bottom: calc(calc((5vw + 5vh) / 7.5) - 7px);
      border-bottom: 4px solid #212121;
      margin-bottom: calc(calc((5vw + 5vh) / 7.5) - 7px); }
  .b-radio-button-group__input {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    vertical-align: middle; }
    .b-radio-button-group__input:disabled + .b-radio-button-group__indicator {
      background: #d8dada;
      border-color: #504f4f !important;
      cursor: not-allowed; }
    .b-radio-button-group__input:hover + .b-radio-button-group__indicator {
      border-color: #025169; }
    .b-radio-button-group__input:checked + .b-radio-button-group__indicator {
      border-color: #025169; }
      .b-radio-button-group__input:checked + .b-radio-button-group__indicator::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background: #025169;
        transition: background 0.3s ease; }
    .b-radio-button-group__input:focus + .b-radio-button-group__indicator {
      border-color: #212121; }
      .b-radio-button-group__input:focus + .b-radio-button-group__indicator::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background: #212121; }
  .b-radio-button-group__label {
    display: flex;
    align-content: flex-start;
    margin-top: 0.5rem;
    font-size: 0.8725rem;
    cursor: pointer; }
  .b-radio-button-group__indicator {
    flex-shrink: 0;
    position: relative;
    margin-top: 0;
    margin-right: 0.5rem;
    border: 2px solid #504f4f;
    border-radius: 50%;
    background: white;
    width: 22px;
    height: 22px;
    transition: border-color 0.3s ease, max-height 0.3s ease, transform 0.3s ease; }
    .b-radio-button-group__indicator::after {
      content: '';
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      background: transparent; }

.b-chapter-heading {
  display: block;
  position: relative;
  border-top: 4px solid #212121;
  padding: 0 0 1em 0;
  box-shadow: 0 1px 0 transparent;
  color: white; }
  .b-chapter-heading--link {
    position: relative;
    padding: 1em;
    border-bottom: 1px solid #0667c6; }
    .b-chapter-heading--link:link, .b-chapter-heading--link:hover, .b-chapter-heading--link:visited, .b-chapter-heading--link:active {
      color: #212121;
      box-shadow: none;
      border-bottom: 0;
      text-decoration: none; }
    .b-chapter-heading--link:hover {
      color: #0667c6;
      background: rgba(0, 30, 0, 0.03); }
    .b-chapter-heading--link .b-chapter-heading__main-heading::after {
      visibility: visible; }
  .b-chapter-heading__main-heading {
    display: flex;
    justify-content: space-between; }
    .b-chapter-heading__main-heading:after {
      visibility: hidden;
      padding-left: 0.5em;
      margin-top: 0.15em;
      content: '';
      height: 1em;
      width: 1em;
      background-image: url("../static/icons/arrow_right_hdir.svg");
      background-size: 0.8em;
      background-repeat: no-repeat; }
  .b-chapter-heading--line-none {
    border: 0;
    padding-top: 0.5rem; }
  .b-chapter-heading--line-bottom {
    border-top: 0;
    border-bottom: 4px solid #212121 !important;
    padding-bottom: 1em; }
  .b-chapter-heading:focus {
    outline: 0;
    border-top: 4px solid #0667c6; }

.b-filter-list__list {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.b-filter-list__list-item {
  display: inline-block;
  margin-right: 1em;
  text-transform: uppercase;
  font-size: 0.8725rem; }

.b-filter-list__list-item-link {
  margin: 0.5em;
  color: #0667c6 !important; }
  .b-filter-list__list-item-link--active {
    background-color: #fef4ce;
    color: #212121 !important;
    margin: 0;
    padding: 0.5em; }
    .b-filter-list__list-item-link--active:link, .b-filter-list__list-item-link--active:hover, .b-filter-list__list-item-link--active:visited, .b-filter-list__list-item-link--active:active {
      color: #212121;
      box-shadow: none;
      border-bottom: 0;
      text-decoration: none; }

.b-checkbox-group {
  display: inline-block;
  position: relative;
  border: 0;
  padding: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-end: 0;
  -webkit-padding-start: 0;
  -webkit-padding-after: 0; }
  .b-checkbox-group__legend {
    font-weight: bold;
    padding: 0;
    margin: 0;
    -webkit-padding-start: 0;
    -webkit-padding-end: 0; }
    .b-checkbox-group__legend--border {
      width: 100%;
      padding-bottom: calc(calc((5vw + 5vh) / 7.5) - 7px);
      border-bottom: 4px solid #212121;
      margin-bottom: calc(calc((5vw + 5vh) / 7.5) - 7px); }
  .b-checkbox-group__input {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    vertical-align: middle; }
    .b-checkbox-group__input:disabled ~ .b-checkbox-group__indicator {
      background: #d8dada;
      border-color: #504f4f !important;
      cursor: not-allowed; }
    .b-checkbox-group__input:hover ~ .b-checkbox-group__indicator {
      border-color: #0667c6; }
    .b-checkbox-group__input:focus ~ .b-checkbox-group__indicator {
      outline: 3px solid black;
      border-radius: 0; }
    .b-checkbox-group__input:checked ~ .b-checkbox-group__indicator {
      border-color: #0667c6;
      background-color: #0667c6;
      transition: background 0.2s ease; }
      .b-checkbox-group__input:checked ~ .b-checkbox-group__indicator::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 14px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background-image: url("../static/icons/check.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 0 1px; }
    .b-checkbox-group__input:focus ~ .b-checkbox-group__indicator {
      border-color: #212121; }
      .b-checkbox-group__input:focus ~ .b-checkbox-group__indicator::after {
        border-color: #212121; }
  .b-checkbox-group__label {
    display: flex;
    align-content: flex-start;
    margin-top: 0.5rem;
    cursor: pointer;
    font-size: 0.8725rem; }
  .b-checkbox-group__indicator {
    flex-shrink: 0;
    position: relative;
    margin-top: 0;
    margin-right: 0.5rem;
    border-radius: 4px;
    border: 2px solid #504f4f;
    background: white;
    width: 22px;
    height: 22px;
    transition: border-color 0.2s ease, max-height 0.2s ease, transform 0.2s ease; }
    .b-checkbox-group__indicator::after {
      content: '';
      position: absolute;
      width: 14px;
      height: 14px;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      background: transparent; }

.b-alert-bar {
  border-width: 4px;
  border-style: solid;
  background-color: white;
  margin-top: calc((5vw + 5vh) / 2); }
  .b-alert-bar--high {
    border-color: #d62121;
    color: #d62121;
    padding: 10vh 0 8vh 0; }
  .b-alert-bar--medium {
    border-color: #d62121;
    color: #d62121;
    padding: 6vh 0 4vh 0; }
  .b-alert-bar--low {
    border-color: #366558;
    color: #366558;
    padding: 1rem 0; }
  .b-alert-bar__date {
    margin-top: 1em;
    font-size: 0.8725rem; }

.b-transport-block {
  display: block;
  padding: 1.5rem;
  margin: 0.1rem;
  box-shadow: 0 2px 8px #95dcca;
  border-radius: 4px;
  cursor: pointer;
  height: 100%;
  box-sizing: border-box; }
  .b-transport-block:hover {
    box-shadow: 0 7px 16px rgba(149, 220, 202, 0.8);
    padding: 1.6rem;
    margin: 0;
    transition: box-shadow 0.3s, padding 0.3s, margin 0.3s, color 0.3s; }

.b-icon--heading {
  float: left;
  margin-right: 0.5em;
  height: 1em;
  width: auto; }

.b-icon--small {
  height: 1em;
  width: auto;
  margin-bottom: -0.05em; }

.b-icon--medium {
  height: 2em;
  width: auto;
  margin-bottom: -0.6em; }

.b-icon--large {
  height: 3rem;
  width: auto; }

.b-icon--category {
  display: flex;
  align-items: center; }
  .b-icon--category a {
    text-decoration: none;
    box-shadow: none; }
  .b-icon--category__icon {
    height: 3em;
    width: auto;
    flex-shrink: 0;
    margin-right: 1em; }
  .b-icon--category__heading {
    text-transform: uppercase;
    font-weight: 600; }

.b-link-list {
  display: flex;
  flex-wrap: wrap; }
  .b-link-list__item {
    text-align: center;
    width: 45%;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid #0667c6 !important; }
    .b-link-list__item:link, .b-link-list__item:hover, .b-link-list__item:visited, .b-link-list__item:active {
      color: #0667c6;
      box-shadow: none;
      border-bottom: 0;
      text-decoration: none; }
    .b-link-list__item:hover {
      background-color: #f7f7f7; }
      .b-link-list__item:hover .b-link-list__text {
        color: #0667c6;
        box-shadow: 0 1px 0 #0667c6; }
    .b-link-list__item--active {
      color: #504f4f; }
      .b-link-list__item--active:hover {
        background-color: transparent; }
        .b-link-list__item--active:hover .b-link-list__text {
          color: #504f4f;
          box-shadow: 0 1px 0 transparent; }
    .b-link-list__item:nth-child(odd) {
      margin-right: 10%; }
    .b-link-list__item:nth-last-child(1):nth-child(odd), .b-link-list__item:nth-last-child(2):nth-child(odd), .b-link-list__item:nth-last-child(1):nth-child(even) {
      margin-bottom: 0; }
    @media (max-width: 46.25em) {
      .b-link-list__item {
        width: 100%;
        padding: 1rem; }
        .b-link-list__item:nth-child(odd) {
          margin-right: 0; } }
  .b-link-list__image {
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
    height: 64px;
    width: auto; }
  .b-link-list__text {
    font-weight: bold;
    font-size: 1.2rem; }

.b-section-sidebar {
  position: sticky;
  top: 2rem; }
  .b-section-sidebar--bottom > nav {
    max-height: 50vh !important; }
  .b-section-sidebar > nav {
    max-height: 85vh;
    overflow-y: auto; }
    .b-section-sidebar > nav::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 7px; }
    .b-section-sidebar > nav::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.5);
      -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); }
  .b-section-sidebar__heading {
    display: flex;
    font-size: 0.8725rem;
    padding-bottom: 0.75em;
    font-weight: bold; }
    .b-section-sidebar__heading a {
      box-shadow: 0 1px 0 transparent; }
    .b-section-sidebar__heading--thick {
      padding-bottom: 0.5em;
      border-bottom: 4px solid #212121; }
  .b-section-sidebar__icon {
    height: 3em;
    width: auto;
    flex-shrink: 0;
    margin-right: 1em; }
  .b-section-sidebar__link {
    display: block;
    padding: 0.75em 0.5em;
    border-top: 1px solid #0667c6;
    font-size: 0.8725rem;
    color: #0667c6 !important;
    box-shadow: 0 1px 0 transparent; }
    .b-section-sidebar__link:first-child {
      border-top: 0; }
    .b-section-sidebar__link:last-child {
      border-bottom: 1px solid #0667c6; }
    .b-section-sidebar__link:hover {
      background-color: #f7f7f7;
      color: #212121 !important; }
    .b-section-sidebar__link--small {
      border: 0; }
    .b-section-sidebar__link--active {
      color: #212121 !important; }
      .b-section-sidebar__link--active:hover {
        background-color: transparent; }
  .b-section-sidebar__meta {
    display: flex; }
  .b-section-sidebar__prefix {
    margin-right: 1em;
    flex-shrink: 0; }

.b-breadcrumbs__location {
  font-size: 14px;
  color: #504f4f; }
  @media (max-width: 61.24em) {
    .b-breadcrumbs__location {
      display: none; } }

.b-breadcrumbs__link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin-right: 1.5rem; }
  .b-breadcrumbs__link:link, .b-breadcrumbs__link:hover, .b-breadcrumbs__link:visited, .b-breadcrumbs__link:active {
    color: #504f4f;
    box-shadow: none;
    border-bottom: 0;
    text-decoration: none;
    box-shadow: 0 1px 0 #b1b5b5; }
  .b-breadcrumbs__link:after {
    position: absolute;
    display: block;
    content: ' ';
    top: 0.25rem;
    right: -0.75rem;
    height: 1.2em;
    width: 1px;
    border-right: 1px solid #b1b5b5; }
  .b-breadcrumbs__link:nth-child(1) {
    font-size: 28px;
    border-right: 2px; }
  .b-breadcrumbs__link:nth-child(2) {
    font-size: 1rem; }
  .b-breadcrumbs__link:last-child:after {
    border-right: 0; }
  @media (max-width: 61.24em) {
    .b-breadcrumbs__link {
      display: none;
      position: relative;
      margin-left: 1.5em; }
      .b-breadcrumbs__link:nth-last-child(2) {
        display: inline-block; }
        .b-breadcrumbs__link:nth-last-child(2):after {
          display: none; }
        .b-breadcrumbs__link:nth-last-child(2):before {
          position: absolute;
          display: inline-block;
          content: '';
          background-image: url("../static/icons/arrow_left_hdir.svg");
          background-size: 0.8em;
          background-repeat: no-repeat;
          left: -1.5em;
          top: 0.4em;
          height: 0.8em;
          width: 0.8em; } }

.b-multi-selector {
  position: relative; }
  .b-multi-selector__select {
    display: flex;
    background: none;
    border: 0;
    font-size: 0.8725rem;
    border-bottom: 1px solid #212121;
    padding: 0 0.4em 0.25em 0.1em;
    cursor: pointer;
    text-transform: uppercase; }
    .b-multi-selector__select:active {
      color: #212121; }
    .b-multi-selector__select:before {
      display: block;
      content: ' ';
      margin-top: 0.2em;
      margin-right: 0.5em;
      width: 0.75em;
      height: 0.75em;
      transform: rotate(90deg);
      background-image: url(../static/icons/chevron.svg);
      background-repeat: no-repeat;
      background-size: contain; }
    .b-multi-selector__select--open {
      border-color: transparent; }
      .b-multi-selector__select--open:before {
        margin-top: 0.1em;
        transform: rotate(180deg); }
  .b-multi-selector__box {
    top: 1.25em;
    position: absolute;
    z-index: 5;
    background-color: white;
    display: inline-block;
    border-top: 2px solid #0667c6;
    box-shadow: 0 3px 4px rgba(54, 101, 88, 0.4); }
  .b-multi-selector__checkboxes {
    padding: 1rem 2rem 1rem 1rem;
    max-height: 15rem;
    overflow-y: scroll; }
    .b-multi-selector__checkboxes::-webkit-scrollbar {
      -webkit-appearance: none; }
    .b-multi-selector__checkboxes::-webkit-scrollbar:vertical {
      width: 10px; }
    .b-multi-selector__checkboxes::-webkit-scrollbar:horizontal {
      height: 10px; }
    .b-multi-selector__checkboxes::-webkit-scrollbar-thumb {
      border: 2px solid white;
      background-color: rgba(0, 0, 0, 0.6); }
  .b-multi-selector__buttons {
    display: flex;
    align-content: space-around;
    padding: 1rem;
    border-top: 1px solid #d8dada; }

.b-questionnaire {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }
  .b-questionnaire__options {
    display: flex;
    flex-shrink: 0;
    width: 50%;
    justify-content: space-evenly; }

.b-long-short-heading {
  position: relative;
  width: 100%; }
  .b-long-short-heading__sub {
    font-weight: bold;
    font-size: 0.8725rem;
    margin-top: 1rem; }
  .b-long-short-heading__sub-icon {
    height: 2em;
    width: 2em;
    margin-right: 1em;
    margin-bottom: -0.6em; }
  .b-long-short-heading__link {
    font-size: 0.8725rem;
    position: absolute;
    bottom: 0;
    right: 0; }
    @media (max-width: 46.25em) {
      .b-long-short-heading__link {
        position: static;
        margin-top: 1em; } }

.b-input-text__label {
  font-size: 0.8725rem; }

.b-input-text__input {
  display: block;
  width: 25em;
  max-width: 100%;
  margin-top: 0.5em;
  font-size: calc(17px + 1 * (100vw - 400px) / (1440 - 400));
  padding: 0.5em;
  border-radius: 4px;
  border: 2px solid #025169;
  background: white; }

.b-input-text__error {
  color: #d62121;
  font-size: 0.8725rem;
  margin-bottom: 1em; }

.b-image--16-9 {
  width: 100%;
  padding-top: 56.25%;
  position: relative; }
  .b-image--16-9 img {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }

.b-hr {
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #212121; }
  .b-hr--grey-light {
    border-color: #d8dada; }
  .b-hr--grey-lighter {
    border-color: #f7f7f7; }
  .b-hr--blue {
    border-color: #0667c6; }
  .b-hr--black {
    border-color: #212121; }
  .b-hr--thick {
    border-width: 4px; }
  .b-hr--link-color {
    border-color: #0667c6; }
  .b-hr--padded {
    margin: 1rem 0; }

.b-search-tray {
  display: flex;
  justify-content: center;
  flex-flow: column;
  height: 20rem; }
  @media (max-width: 46.25em) {
    .b-search-tray {
      height: 50vh; } }
  @media (min-width: 46.25em) {
    .b-search-tray__item {
      animation: fadeInUp 300ms ease; } }
  .b-search-tray--blue {
    background-color: #025169; }

.b-table__wrapper {
  position: relative;
  overflow-x: auto;
  background-image: linear-gradient(to right, white, white), linear-gradient(to right, white, white), linear-gradient(to right, rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0)), linear-gradient(to left, rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0));
  /* Shadows */
  /* Shadow covers */
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
  background-attachment: local, local, scroll, scroll; }

.b-narrow-list {
  list-style: none;
  margin: 0;
  padding: 0; }

.b-narrow-list__item {
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.1rem;
  margin: 5px 0; }
  .b-narrow-list__item:before {
    content: '–';
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 3px; }

.suggestion-title {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 1.2rem; }

.suggestion-topic {
  font-size: 0.8725rem;
  margin: 0.5rem 0; }

.suggestion-intro {
  display: block;
  font-size: 0.8725rem;
  margin: 0.5rem 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; }

.suggestion__meta {
  font-size: 0.8725rem; }

.suggestion-category {
  display: inline-block;
  padding: 0.25em;
  margin-left: 0.5em;
  font-size: 0.8725rem;
  background-color: #fef4ce; }

.suggestion-download {
  display: inline-block;
  margin-left: 1em;
  font-size: 0.8725rem;
  box-shadow: 0 1px 0 #0667c6; }

#xp-formbuilder-successmessage p {
  color: #007a00; }

.xp-formbuilder-form {
  line-height: 2; }
  .xp-formbuilder-form fieldset {
    display: block;
    position: relative;
    border: 0;
    padding: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-before: 0;
    -webkit-padding-end: 0;
    -webkit-padding-start: 0;
    -webkit-padding-after: 0; }
  .xp-formbuilder-form input[type='submit'],
  .xp-formbuilder-form .btn {
    text-decoration: none; }

.xp-form-input {
  position: relative; }
  .xp-form-input label {
    display: block;
    margin-right: 1em;
    color: #212121; }
    .xp-form-input label span.required-star {
      margin: 0 10px 0 2px;
      color: #ad0017; }
    .xp-form-input label span + input[type='file'] {
      display: block; }
  .xp-form-input textarea,
  .xp-form-input select {
    font-size: 0.8725rem;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #025169;
    padding: 1em 2.5em 1em 1em; }
  .xp-form-input input[type='checkbox'],
  .xp-form-input input[type='radio'] {
    position: relative;
    margin-right: 10px; }
    @media (min-width: 46.25em) {
      .xp-form-input input[type='checkbox'],
      .xp-form-input input[type='radio'] {
        top: -2px; } }
  .xp-form-input input[type='email'],
  .xp-form-input input[type='text'] {
    font-size: 0.8725rem;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #025169;
    padding: 1em 2.5em 1em 1em; }
  .xp-form-input input[type='file'] {
    font-size: 0.8725rem;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px; }

figure, .editor-align-justify, .justify {
  margin: 2em 0; }
  figure img, .editor-align-justify img, .justify img {
    width: 100%;
    height: auto; }

.editor-align-left, .left {
  margin: 2em 0; }
  @media (min-width: 46.25em) {
    .editor-align-left, .left {
      max-width: 50%;
      float: left;
      margin: 2em 2em 2em 0; } }
  .editor-align-left img, .left img {
    max-width: 100%;
    height: auto; }

.editor-align-right, .right {
  margin: 2em 0; }
  @media (min-width: 46.25em) {
    .editor-align-right, .right {
      max-width: 50%;
      float: right;
      margin: 2em 0 2em 2em; } }
  .editor-align-right img, .right img {
    max-width: 100%;
    height: auto; }

.editor-align-center, .center {
  margin: 2em 0; }
  @media (min-width: 46.25em) {
    .editor-align-center, .center {
      max-width: 70%;
      margin: 2em auto 2em auto; } }
  .editor-align-center img, .center img {
    max-width: 100%;
    height: auto; }

figcaption {
  font-size: 0.8725rem; }

.background-wrapper {
  position: relative;
  height: 100%;
  padding: 3rem 0 5rem 0; }
  .background-wrapper:after {
    background-image: url("../static/icon_background.svg");
    background-size: 1120px;
    background-repeat: repeat-x;
    content: '';
    opacity: 0.15;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }

table {
  border: 1px solid #212121;
  max-width: 100%;
  border-spacing: 0;
  border-left: none;
  border-right: none; }
  table tr {
    display: table-row; }
    table tr:last-child td {
      border-bottom: none; }
    table tr:last-child th {
      border-bottom: none; }
  table th,
  table td {
    box-sizing: border-box;
    padding: 1rem;
    border-bottom: 1px solid #212121;
    display: table-cell;
    border-right: 1px solid #212121; }
    table th:first-child,
    table td:first-child {
      border-bottom: 1px solid #212121;
      border-right: 1px solid #212121; }
    table th:last-child,
    table td:last-child {
      border-right: 0; }
  table th {
    text-align: left;
    font-weight: bold; }

.b-icon-with-text {
  display: flex;
  align-items: center; }
  .b-icon-with-text__image {
    height: 2em;
    width: auto;
    margin-right: 0.75em; }
    .b-icon-with-text__image--small {
      height: 1em;
      margin-right: 0.6em; }
  .b-icon-with-text__text {
    text-transform: uppercase;
    font-size: 0.8725rem;
    font-weight: bold; }

body {
  background-color: #fcfffc; }

@media print {
  body {
    background-color: white;
    color: black; }
  a[href^="http://"],
  a[href^="https://"],
  a[href^="//"] {
    color: blue !important;
    text-decoration: underline !important; }
  .b-main-header {
    display: none; }
  .b-breadcrumbs {
    display: none; }
  .b-footer {
    display: none; }
  aside {
    display: none; }
  article {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important; }
  body {
    font-size: 16px;
    -webkit-print-color-adjust: exact; }
  .b-article-intro__image-wrapper {
    display: none; }
  .b-article-intro__text {
    width: 100%; }
  .b-search-tray ~ .b-box {
    display: none; }
  * {
    visibility: hidden; }
  main,
  main * {
    visibility: visible; }
  .b-page-meta {
    visibility: hidden;
    display: none; }
  .print-page-break {
    page-break-after: always; } }

@page :first {
  background-image: url("https://www.helsedirektoratet.no/_/asset/helsedirektoratet:1570538453/img/pdf-cover.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  padding-bottom: 580px;
  @bottom-center {
    content: ""; } }

@page {
  size: A4;
  margin: 2cm;
  counter-increment: page;
  background-attachment: inherit;
  overflow: visible;
  margin-bottom: 2cm;
  @bottom-center {
    content: "Side " counter(page) "/" counter(pages);
    margin-bottom: 1cm; } }

@media print {
  .toc a::after {
    content: leader(".") target-counter(attr(href), page); } }

.print-page-break {
  page-break-after: always;
  overflow: visible; }

.print-pdf {
  font-size: 13px; }
  .print-pdf a[href^="http://"],
  .print-pdf a[href^="https://"],
  .print-pdf a[href^="//"] {
    color: blue !important;
    text-decoration: underline !important; }
  .print-pdf .b-collapsible__content--small, .print-pdf .b-collapsible__category, .print-pdf li, .print-pdf p, .print-pdf td {
    font-size: 13px;
    line-height: 1.4; }
  .print-pdf h1, .print-pdf .h1,
  .print-pdf h2, .print-pdf .h2,
  .print-pdf h3, .print-pdf .h3,
  .print-pdf h4, .print-pdf .h4,
  .print-pdf h5, .print-pdf .h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.2em; }
  .print-pdf h1, .print-pdf .h1 {
    font-size: 2.6em;
    margin-bottom: 30px; }
  .print-pdf h2, .print-pdf .h2 {
    margin-top: 30px;
    font-size: 2.2em; }
  .print-pdf .print-section-level-1 > h2 {
    margin-bottom: 15px; }
  .print-pdf h3, .print-pdf .h3 {
    font-size: 1.6em; }
  .print-pdf h4, .print-pdf .h4 {
    font-size: 1.5em; }
  .print-pdf h5, .print-pdf .h5 {
    font-size: 1.3em; }
  .print-pdf h4 + h2 {
    margin-top: 0;
    margin-bottom: 0; }
  .print-pdf p {
    margin-bottom: 1.5em;
    margin-top: 0; }
  .print-pdf > div {
    border-bottom: 10px solid black;
    margin-bottom: 40px; }
  .print-pdf .atom-main-content {
    padding-left: 20px;
    border-left: 6px solid #ddd; }
  .print-pdf div.tabbed {
    margin-left: 20px;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid black; }
    .print-pdf div.tabbed h1 {
      font-size: 1.8em; }
    .print-pdf div.tabbed h2 {
      font-size: 1.55em; }
    .print-pdf div.tabbed h3 {
      font-size: 1.1em; }
    .print-pdf div.tabbed h4 {
      font-size: 1em; }
  .print-pdf div.tabbed-1 {
    margin-left: 20px; }
  .print-pdf div.tabbed-2 {
    margin-left: 40px; }
  .print-pdf div.tabbed-3 {
    margin-left: 60px; }
  .print-pdf div.tabbed-4 {
    margin-left: 80px; }
  .print-pdf div.tabbed-5 {
    margin-left: 100px; }
  .print-pdf .l-mb-3 {
    margin-bottom: 30px; }
  .print-pdf .b-collapsible__content {
    margin-left: 0; }
  .print-pdf .b-collapsible {
    padding-left: 0; }
  .print-pdf table {
    margin-top: 10px;
    margin-bottom: 20px; }
  .print-pdf table td {
    padding: 3px 6px; }

.toc-table {
  border: none !important;
  margin-top: 100px; }

.toc-right-column {
  border: none !important; }

.toc-right-text {
  margin-bottom: 2px; }

.toc-left-column {
  border: none !important;
  vertical-align: top;
  text-align: left; }

.toc-left-title {
  margin-top: 20px; }

.cover-table {
  border: none !important; }

.cover-right {
  border: none !important; }

.cover-left {
  border: none !important;
  vertical-align: top;
  text-align: left; }
  .cover-left h4 {
    font-size: 1.3em; }

.btn-color-success {
  background-color: #007A00 !important;
  color: white !important;
  border: 2px solid #E6F3FF;
  box-shadow: none; }
  .btn-color-success:hover {
    color: #366558 !important; }

.btn-color-error {
  box-shadow: none;
  background-color: #AD0017 !important;
  color: white !important;
  border: 2px solid #E6F3FF; }
  .btn-color-error:hover {
    color: #8B0A0A !important; }

.field-validation-error {
  color: #FF990D; }

table {
  width: 100%; }

.dashboard-card {
  text-align: center;
  min-height: 100px; }

.tt-menu {
  margin-top: 10px;
  left: unset !important;
  right: 0px;
  border-radius: 10px;
  border: 1px solid #0667c6;
  background-color: white; }

.tt-dataset {
  min-width: 321px;
  width: 30vw;
  z-index: 100;
  padding: 10px; }

ul.react-autosuggest__suggestions-list {
  border: none; }

li.react-autosuggest__suggestion {
  list-style-type: none; }
  li.react-autosuggest__suggestion:last-child {
    background-color: #FFFFFF !important;
    color: #000000; }

small {
  display: block;
  font-size: 0.6em;
  font-style: italic; }

.nav-user-div {
  font-size: 0.8em;
  width: 100%;
  display: flex;
  justify-content: flex-end; }

#qi-search input {
  width: inherit; }

.d-none {
  display: none; }

.d-block {
  display: block; }

.b-box .form-control {
  background-color: white; }

.modal-mask {
  display: none; }

.modal-close {
  /*position: absolute;
    top: 0;
    right: 0;*/
  cursor: pointer; }

.form-control {
  margin-right: 20px; }

.modal-allow-overflow {
  overflow: visible; }

.mouse-pointer {
  cursor: pointer; }

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

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

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

.link-row {
  cursor: pointer; }

a[disabled="disabled"] {
  pointer-events: none;
  background: #dddddd;
  border-color: #dddddd; }

#treeview {
  padding-left: 5px;
  font-size: 1.4em;
  color: #025169; }

.treeview-node-item > .treeview-node {
  list-style: none; }

.treeview-node-item > div.row {
  border: solid 2px #025169;
  margin-top: 7px;
  margin-bottom: 7px;
  border-radius: 25px; }

.treeview-node-item {
  padding-left: 5px;
  list-style: none;
  /*font-size: 1.2em;
    line-height: 1.5em;*/ }

.treeview-node-item-toolbar .fas {
  margin-left: 10px; }

.dragging-in-progress * {
  pointer-events: none; }

.treeview-node-item-text {
  /*margin-left: 1em;*/
  color: black; }

.treeview-node-item-toolbar {
  /*margin-right: 10px;*/
  text-align: right; }

.item-open:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  float: left;
  margin-right: 5px; }

.item-open > .treeview-node {
  display: inherit; }

.item-closed:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  float: left;
  margin-right: 5px; }

.item-closed > .treeview-node {
  display: none; }

div.treeview-dropzone {
  width: 100%;
  min-height: 1.5em;
  border: 5px dashed #025169;
  padding: 5px;
  margin-top: 5px;
  color: #e5bdf5; }
