@charset "UTF-8";

/* projects/public/src/styles.scss */
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
figure,
footer,
header,
hgroup,
nav,
section,
main {
  display: block;
}
.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  gap: 45px;
}
.row.reverse {
  flex-direction: row-reverse;
}
.row.natural-height {
  align-items: flex-start;
}
.row.flex-column {
  flex-direction: column;
}
.col {
  flex-grow: 1;
  width: 100%;
  margin-left: 0;
}
.col.reverse {
  flex-direction: column-reverse;
}
.first {
  order: -1;
}
.last {
  order: 1;
}
.align-start {
  align-self: flex-start;
}
.align-end {
  align-self: flex-end;
}
.align-center {
  align-self: center;
}
.align-baseline {
  align-self: baseline;
}
.align-stretch {
  align-self: stretch;
}
.col-xs {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-xs-1 {
  flex-basis: calc((100% - 495px) / 12);
  width: calc((100% - 495px) / 12);
}
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
.col-xs-2 {
  flex-basis: calc((100% - 225px) / 6);
  width: calc((100% - 225px) / 6);
}
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
.col-xs-3 {
  flex-basis: calc((100% - 135px) / 4);
  width: calc((100% - 135px) / 4);
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-4 {
  flex-basis: calc((100% - 90px) / 3);
  width: calc((100% - 90px) / 3);
}
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
.col-xs-5 {
  flex-basis: calc((100% - 63px) / 2.4);
  width: calc((100% - 63px) / 2.4);
}
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
.col-xs-6 {
  flex-basis: calc((100% - 45px) / 2);
  width: calc((100% - 45px) / 2);
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-7 {
  flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
  width: calc((100% - 32.1428571429px) / 1.7142857143);
}
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
.col-xs-8 {
  flex-basis: calc((100% - 22.5px) / 1.5);
  width: calc((100% - 22.5px) / 1.5);
}
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
.col-xs-9 {
  flex-basis: calc((100% - 15px) / 1.3333333333);
  width: calc((100% - 15px) / 1.3333333333);
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-10 {
  flex-basis: calc((100% - 9px) / 1.2);
  width: calc((100% - 9px) / 1.2);
}
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
.col-xs-11 {
  flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
  width: calc((100% - 4.0909090909px) / 1.0909090909);
}
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
.col-xs-12 {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.row.start-xs {
  justify-content: flex-start;
}
.row.center-xs {
  justify-content: center;
}
.row.end-xs {
  justify-content: flex-end;
}
.row.top-xs {
  align-items: flex-start;
}
.row.middle-xs {
  align-items: center;
}
.row.bottom-xs {
  align-items: flex-end;
}
.row.around-xs {
  justify-content: space-around;
}
.row.between-xs {
  justify-content: space-between;
}
.first-xs {
  order: -1;
}
.last-xs {
  order: 1;
}
@media only screen and (min-width: 577px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 769px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 961px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 1681px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 30px;
}
.row-no-gutter {
  gap: 0;
}
.col-no-gutter {
  padding: 0;
}
.full-width {
  position: relative;
  right: 50%;
  left: 50%;
  width: 100vw;
  margin-right: -50vw;
  margin-left: -50vw;
}
.container::before,
.container::after {
  display: table;
  content: " ";
}
.container::after {
  clear: both;
}
.container {
  padding: 0 1rem;
  overflow: hidden;
}
@media (min-width: 1680px) {
  .container {
    width: 1680px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.crisis-communication__wrapper,
.sidebar-right-layout,
.overview-layout,
.sidebar-layout,
aside.top,
aside.bottom,
.detail-layout,
.content-container {
  max-width: 1170px;
  margin: 0 auto;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
:root,
html {
  display: grid;
  height: 100%;
  background: #fff;
  font: 400 20px "Fira Sans", sans-serif;
  line-height: 1.78;
  box-sizing: border-box;
}
body {
  font-size: 0.9rem;
  position: relative;
  min-height: 100%;
}
body.cs--blue {
  color: #001823;
}
.cs--blue ::selection {
  background-color: #00447f;
}
.cs--blue ::selection {
  color: #ffdb5a;
}
th > * {
  margin: 0;
}
hr {
  margin: 0 auto 1.4rem;
  clear: both;
  border: solid #e6e8ea;
  border-width: 1px 0 0;
}
img {
  border: 0;
  vertical-align: top;
}
p,
ol,
ul,
dl,
table,
address,
pre {
  margin-bottom: 10px;
  font-size: inherit;
  line-height: inherit;
}
address {
  font-style: normal;
}
p,
span,
input,
label,
textarea,
button,
select,
dd,
q {
  max-width: 40rem;
}
strong {
  font-weight: 700;
}
input[type=button],
button {
  font: 400 20px "Fira Sans", sans-serif;
}
.cs--blue a[href]:focus,
.cs--blue area[href]:focus,
.cs--blue input:not([disabled]):focus,
.cs--blue select:not([disabled]):focus,
.cs--blue textarea:not([disabled]):focus,
.cs--blue button:not([disabled]):focus,
.cs--blue object:focus,
.cs--blue embed:focus,
.cs--blue iframe:focus,
.cs--blue *[tabindex]:not([tabindex="-1"]):focus,
.cs--blue *[contenteditable]:focus {
  outline-color: #001823;
}
a[href]:focus,
area[href]:focus,
input:not([disabled]):focus,
select:not([disabled]):focus,
textarea:not([disabled]):focus,
button:not([disabled]):focus,
object:focus,
embed:focus,
iframe:focus,
*[tabindex]:not([tabindex="-1"]):focus,
*[contenteditable]:focus {
  outline: 2px solid;
  outline-offset: 2px;
}
.nowrap {
  white-space: nowrap;
}
.bold {
  font-weight: 700;
}
header.header > .content-container .search label,
.checkbox-filter .checkbox-filter__count-wrapper.hidden,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.no-link-style a {
  text-decoration: none !important;
}
.mt-0 {
  margin-top: 0rem;
}
.mr-0 {
  margin-right: 0rem;
}
.mb-0 {
  margin-bottom: 0rem;
}
.ml-0 {
  margin-left: 0rem;
}
.mt-1 {
  margin-top: 0.1rem;
}
.mr-1 {
  margin-right: 0.1rem;
}
.mb-1 {
  margin-bottom: 0.1rem;
}
.ml-1 {
  margin-left: 0.1rem;
}
.mt-2 {
  margin-top: 0.2rem;
}
.mr-2 {
  margin-right: 0.2rem;
}
.mb-2 {
  margin-bottom: 0.2rem;
}
.ml-2 {
  margin-left: 0.2rem;
}
.mt-3 {
  margin-top: 0.3rem;
}
.mr-3 {
  margin-right: 0.3rem;
}
.mb-3 {
  margin-bottom: 0.3rem;
}
.ml-3 {
  margin-left: 0.3rem;
}
.mt-4 {
  margin-top: 0.4rem;
}
.mr-4 {
  margin-right: 0.4rem;
}
.mb-4 {
  margin-bottom: 0.4rem;
}
.ml-4 {
  margin-left: 0.4rem;
}
.mt-5 {
  margin-top: 0.5rem;
}
.mr-5 {
  margin-right: 0.5rem;
}
.mb-5 {
  margin-bottom: 0.5rem;
}
.ml-5 {
  margin-left: 0.5rem;
}
.mt-6 {
  margin-top: 0.6rem;
}
.mr-6 {
  margin-right: 0.6rem;
}
.mb-6 {
  margin-bottom: 0.6rem;
}
.ml-6 {
  margin-left: 0.6rem;
}
.mt-7 {
  margin-top: 0.7rem;
}
.mr-7 {
  margin-right: 0.7rem;
}
.mb-7 {
  margin-bottom: 0.7rem;
}
.ml-7 {
  margin-left: 0.7rem;
}
.mt-8 {
  margin-top: 0.8rem;
}
.mr-8 {
  margin-right: 0.8rem;
}
.mb-8 {
  margin-bottom: 0.8rem;
}
.ml-8 {
  margin-left: 0.8rem;
}
.mt-9 {
  margin-top: 0.9rem;
}
.mr-9 {
  margin-right: 0.9rem;
}
.mb-9 {
  margin-bottom: 0.9rem;
}
.ml-9 {
  margin-left: 0.9rem;
}
.mt-10 {
  margin-top: 1rem;
}
.mr-10 {
  margin-right: 1rem;
}
.mb-10 {
  margin-bottom: 1rem;
}
.ml-10 {
  margin-left: 1rem;
}
.mt-11 {
  margin-top: 1.1rem;
}
.mr-11 {
  margin-right: 1.1rem;
}
.mb-11 {
  margin-bottom: 1.1rem;
}
.ml-11 {
  margin-left: 1.1rem;
}
.mt-12 {
  margin-top: 1.2rem;
}
.mr-12 {
  margin-right: 1.2rem;
}
.mb-12 {
  margin-bottom: 1.2rem;
}
.ml-12 {
  margin-left: 1.2rem;
}
.mt-13 {
  margin-top: 1.3rem;
}
.mr-13 {
  margin-right: 1.3rem;
}
.mb-13 {
  margin-bottom: 1.3rem;
}
.ml-13 {
  margin-left: 1.3rem;
}
.mt-14 {
  margin-top: 1.4rem;
}
.mr-14 {
  margin-right: 1.4rem;
}
.mb-14 {
  margin-bottom: 1.4rem;
}
.ml-14 {
  margin-left: 1.4rem;
}
.mt-15 {
  margin-top: 1.5rem;
}
.mr-15 {
  margin-right: 1.5rem;
}
.mb-15 {
  margin-bottom: 1.5rem;
}
.ml-15 {
  margin-left: 1.5rem;
}
.mt-16 {
  margin-top: 1.6rem;
}
.mr-16 {
  margin-right: 1.6rem;
}
.mb-16 {
  margin-bottom: 1.6rem;
}
.ml-16 {
  margin-left: 1.6rem;
}
.mt-17 {
  margin-top: 1.7rem;
}
.mr-17 {
  margin-right: 1.7rem;
}
.mb-17 {
  margin-bottom: 1.7rem;
}
.ml-17 {
  margin-left: 1.7rem;
}
.mt-18 {
  margin-top: 1.8rem;
}
.mr-18 {
  margin-right: 1.8rem;
}
.mb-18 {
  margin-bottom: 1.8rem;
}
.ml-18 {
  margin-left: 1.8rem;
}
.mt-19 {
  margin-top: 1.9rem;
}
.mr-19 {
  margin-right: 1.9rem;
}
.mb-19 {
  margin-bottom: 1.9rem;
}
.ml-19 {
  margin-left: 1.9rem;
}
.mt-20 {
  margin-top: 2rem;
}
.mr-20 {
  margin-right: 2rem;
}
.mb-20 {
  margin-bottom: 2rem;
}
.ml-20 {
  margin-left: 2rem;
}
.mt-21 {
  margin-top: 2.1rem;
}
.mr-21 {
  margin-right: 2.1rem;
}
.mb-21 {
  margin-bottom: 2.1rem;
}
.ml-21 {
  margin-left: 2.1rem;
}
.mt-22 {
  margin-top: 2.2rem;
}
.mr-22 {
  margin-right: 2.2rem;
}
.mb-22 {
  margin-bottom: 2.2rem;
}
.ml-22 {
  margin-left: 2.2rem;
}
.mt-23 {
  margin-top: 2.3rem;
}
.mr-23 {
  margin-right: 2.3rem;
}
.mb-23 {
  margin-bottom: 2.3rem;
}
.ml-23 {
  margin-left: 2.3rem;
}
.mt-24 {
  margin-top: 2.4rem;
}
.mr-24 {
  margin-right: 2.4rem;
}
.mb-24 {
  margin-bottom: 2.4rem;
}
.ml-24 {
  margin-left: 2.4rem;
}
.mt-25 {
  margin-top: 2.5rem;
}
.mr-25 {
  margin-right: 2.5rem;
}
.mb-25 {
  margin-bottom: 2.5rem;
}
.ml-25 {
  margin-left: 2.5rem;
}
.mt-26 {
  margin-top: 2.6rem;
}
.mr-26 {
  margin-right: 2.6rem;
}
.mb-26 {
  margin-bottom: 2.6rem;
}
.ml-26 {
  margin-left: 2.6rem;
}
.mt-27 {
  margin-top: 2.7rem;
}
.mr-27 {
  margin-right: 2.7rem;
}
.mb-27 {
  margin-bottom: 2.7rem;
}
.ml-27 {
  margin-left: 2.7rem;
}
.mt-28 {
  margin-top: 2.8rem;
}
.mr-28 {
  margin-right: 2.8rem;
}
.mb-28 {
  margin-bottom: 2.8rem;
}
.ml-28 {
  margin-left: 2.8rem;
}
.mt-29 {
  margin-top: 2.9rem;
}
.mr-29 {
  margin-right: 2.9rem;
}
.mb-29 {
  margin-bottom: 2.9rem;
}
.ml-29 {
  margin-left: 2.9rem;
}
.mt-30 {
  margin-top: 3rem;
}
.mr-30 {
  margin-right: 3rem;
}
.mb-30 {
  margin-bottom: 3rem;
}
.ml-30 {
  margin-left: 3rem;
}
.mt-31 {
  margin-top: 3.1rem;
}
.mr-31 {
  margin-right: 3.1rem;
}
.mb-31 {
  margin-bottom: 3.1rem;
}
.ml-31 {
  margin-left: 3.1rem;
}
.mt-32 {
  margin-top: 3.2rem;
}
.mr-32 {
  margin-right: 3.2rem;
}
.mb-32 {
  margin-bottom: 3.2rem;
}
.ml-32 {
  margin-left: 3.2rem;
}
.mt-33 {
  margin-top: 3.3rem;
}
.mr-33 {
  margin-right: 3.3rem;
}
.mb-33 {
  margin-bottom: 3.3rem;
}
.ml-33 {
  margin-left: 3.3rem;
}
.mt-34 {
  margin-top: 3.4rem;
}
.mr-34 {
  margin-right: 3.4rem;
}
.mb-34 {
  margin-bottom: 3.4rem;
}
.ml-34 {
  margin-left: 3.4rem;
}
.mt-35 {
  margin-top: 3.5rem;
}
.mr-35 {
  margin-right: 3.5rem;
}
.mb-35 {
  margin-bottom: 3.5rem;
}
.ml-35 {
  margin-left: 3.5rem;
}
.mt-36 {
  margin-top: 3.6rem;
}
.mr-36 {
  margin-right: 3.6rem;
}
.mb-36 {
  margin-bottom: 3.6rem;
}
.ml-36 {
  margin-left: 3.6rem;
}
.mt-37 {
  margin-top: 3.7rem;
}
.mr-37 {
  margin-right: 3.7rem;
}
.mb-37 {
  margin-bottom: 3.7rem;
}
.ml-37 {
  margin-left: 3.7rem;
}
.mt-38 {
  margin-top: 3.8rem;
}
.mr-38 {
  margin-right: 3.8rem;
}
.mb-38 {
  margin-bottom: 3.8rem;
}
.ml-38 {
  margin-left: 3.8rem;
}
.mt-39 {
  margin-top: 3.9rem;
}
.mr-39 {
  margin-right: 3.9rem;
}
.mb-39 {
  margin-bottom: 3.9rem;
}
.ml-39 {
  margin-left: 3.9rem;
}
.mt-40 {
  margin-top: 4rem;
}
.mr-40 {
  margin-right: 4rem;
}
.mb-40 {
  margin-bottom: 4rem;
}
.ml-40 {
  margin-left: 4rem;
}
@media (min-width: 320px) {
  .hidden-mobile {
    display: none;
  }
}
@media (max-width: 319px) {
  .hidden-mobile-only {
    display: none;
  }
}
@media (min-width: 576px) {
  .hidden-phablet {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .hidden-phablet-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .hidden-tablet {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hidden-tablet-only {
    display: none;
  }
}
@media (min-width: 960px) {
  .hidden-desktop {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .hidden-desktop-only {
    display: none;
  }
}
@media (max-width: 959px) {
  .show-desktop-only {
    display: none;
  }
}
html.js .js-hide {
  display: none;
}
.element-hidden {
  display: none;
}
.element-invisible {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  height: auto;
  overflow: visible;
  clip: auto;
}
.page-container {
  padding: 1.5rem 0;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/fira-sans-v16-latin-ext_latin-regular.eot"),
    local("Fira Sans"),
    url("./media/fira-sans-v16-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"),
    url("./media/fira-sans-v16-latin-ext_latin-regular.woff2") format("woff2"),
    url("./media/fira-sans-v16-latin-ext_latin-regular.woff") format("woff"),
    url("./media/fira-sans-v16-latin-ext_latin-regular.ttf") format("truetype"),
    url("./media/fira-sans-v16-latin-ext_latin-regular.svg#FiraSans") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  src:
    url("./media/fira-sans-v16-latin-ext_latin-600.eot"),
    local("Fira Sans"),
    url("./media/fira-sans-v16-latin-ext_latin-600.eot?#iefix") format("embedded-opentype"),
    url("./media/fira-sans-v16-latin-ext_latin-600.woff2") format("woff2"),
    url("./media/fira-sans-v16-latin-ext_latin-600.woff") format("woff"),
    url("./media/fira-sans-v16-latin-ext_latin-600.ttf") format("truetype"),
    url("./media/fira-sans-v16-latin-ext_latin-600.svg#FiraSans") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  src:
    url("./media/fira-sans-v16-latin-ext_latin-700.eot"),
    local("Fira Sans"),
    url("./media/fira-sans-v16-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"),
    url("./media/fira-sans-v16-latin-ext_latin-700.woff2") format("woff2"),
    url("./media/fira-sans-v16-latin-ext_latin-700.woff") format("woff"),
    url("./media/fira-sans-v16-latin-ext_latin-700.ttf") format("truetype"),
    url("./media/fira-sans-v16-latin-ext_latin-700.svg#FiraSans") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 800;
  src:
    url("./media/fira-sans-v16-latin-ext_latin-800.eot"),
    local("Fira Sans"),
    url("./media/fira-sans-v16-latin-ext_latin-800.eot?#iefix") format("embedded-opentype"),
    url("./media/fira-sans-v16-latin-ext_latin-800.woff2") format("woff2"),
    url("./media/fira-sans-v16-latin-ext_latin-800.woff") format("woff"),
    url("./media/fira-sans-v16-latin-ext_latin-800.ttf") format("truetype"),
    url("./media/fira-sans-v16-latin-ext_latin-800.svg#FiraSans") format("svg");
  font-display: swap;
}
html.wf-loading .container {
  opacity: 0;
}
html:not(.wf-loading) .container {
  transition: 0.1s opacity ease-in;
  opacity: 1;
}
@font-face {
  font-family: "gent-icons-v6";
  src: url("./media/gent-icons-v6.eot?v=261");
  src:
    url("./media/gent-icons-v6.eot?#iefix?v=261") format("eot"),
    url("./media/gent-icons-v6.woff2?v=261") format("woff2"),
    url("./media/gent-icons-v6.woff?v=261") format("woff"),
    url("./media/gent-icons-v6.ttf?v=261") format("truetype"),
    url("./media/gent-icons-v6.svg#gent-icons-v6?v=261") format("svg");
  font-display: swap;
}
[class^=icon-]:not(.icon-list) {
  display: inline-block;
  line-height: 87.5%;
}
[class^=icon-]:not(.icon-list)::before {
  display: block;
}
.teaser .date span:before,
.messages--warning:before,
.messages--error:before,
.messages--status:before,
.messages:before,
.openinghours-widget[data-type=month] .openinghours--header button.openinghours--next:before,
.openinghours-widget[data-type=month] .openinghours--header button.openinghours--prev:before,
.modal.menu .modal-content .menu-links ul li a:after,
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"]:after,
.modal.menu .modal-content .menu-links ul li a[download]:after,
.modal.menu .modal-content .menu-links ul li a[href^="http://"]:after,
.modal.menu .modal-content .menu-links ul li a[href^="https://"]:after,
nav.menu button.close:before,
nav.menu button.toggle:before,
.note--payment:before,
.note--timebound:before,
.important-note:before,
.form-steps ol.form-steps-list li.completed:not(.active):before,
.checkbox-filter-dynamic .checkbox-accordion .accordion--button[aria-expanded=true]:before,
.checkbox-filter-dynamic .checkbox-accordion .accordion--button[aria-expanded=false]:before,
.breadcrumb ul li:after,
.breadcrumb ol li:after,
ul.accordion .accordion--button[aria-expanded=false]:before,
dl.accordion .accordion--button[aria-expanded=false]:before,
ul.accordion .accordion--button[aria-expanded=true]:before,
dl.accordion .accordion--button[aria-expanded=true]:before,
.accordion .accordion--button:before,
a.button.button-alert:not([class*=icon-]):before,
a.tag.button-alert:not([class*=icon-]):before,
.button-alert:not([class*=icon-]):before,
.openinghours-widget[data-type=day] .openinghours:first-of-type:before,
ul.label-list > li:before,
ul.checkmark-list > li:before,
.theme-footer a.button[href^="http://"]:not(.no-icon):not([href*="gent.be"]):before,
.theme-footer a.button[href^="https://"]:not(.no-icon):not([href*="gent.be"]):before,
.theme-footer a[href^="http://"]:not([href*="gent.be"]).standalone-link:not(.no-icon):after,
.theme-footer a[href^="https://"]:not([href*="gent.be"]).standalone-link:not(.no-icon):after,
.theme-footer a[href^="http://"]:not([href*="gent.be"])[download]:after,
.theme-footer a[href^="https://"]:not([href*="gent.be"])[download]:after,
a.refresh:not(.no-icon):after,
a.back:not(.no-icon):after,
a[href^="http://"]:not(.no-icon):not(.tag):not([href*="gent.be"])[download]:not(.button):not(.no-icon):after,
a[href^="https://"]:not(.no-icon):not(.tag):not([href*="gent.be"])[download]:not(.button):not(.no-icon):after,
a[href^="http://"]:not(.no-icon):not(.tag):not([href*="gent.be"]):after,
a[href^="https://"]:not(.no-icon):not(.tag):not([href*="gent.be"]):after,
a[href^="tel:"]:not(.no-icon):after,
a[href^="mailto:"]:not(.no-icon):after,
a[download]:not(.no-icon):after,
a.standalone-link:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh):after,
a.standalone-link[href*="gent.be"]:after,
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="http://"]:not([href*="gent.be"]):after,
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="https://"]:not([href*="gent.be"]):after,
a.button[download]:not(.no-icon):not(.tag):after,
a.button[download][href^="http://"]:not([href*="gent.be"]):after,
a.button[download][href^="https://"]:not([href*="gent.be"]):after,
a.tag[download]:not(.no-icon):not(.tag):after,
a.tag[download][href^="http://"]:not([href*="gent.be"]):after,
a.tag[download][href^="https://"]:not([href*="gent.be"]):after,
a.button[href^="tel:"]:not(.no-icon):after,
a.tag[href^="tel:"]:not(.no-icon):after,
a.button[href^="mailto:"]:not(.no-icon):after,
a.tag[href^="mailto:"]:not(.no-icon):after,
a.button:not([class*=icon]):after,
a.tag:not([class*=icon]):after,
.checkbox input[type=radio]:checked + label:after,
.checkbox input[type=checkbox]:checked + label:after,
.field-message.error:before,
.field-message.success:before,
.icon-youtube:before,
.icon-work:before,
.icon-wheelchair:before,
.icon-wheelchair-no:before,
.icon-whatsapp:before,
.icon-virus:before,
.icon-vimeo:before,
.icon-view-list:before,
.icon-view-grid:before,
.icon-users:before,
.icon-user:before,
.icon-url:before,
.icon-update:before,
.icon-uitpas:before,
.icon-uit-met-vlieg:before,
.icon-twitter:before,
.icon-twitter-outline:before,
.icon-trashcan:before,
.icon-tiktok:before,
.icon-threads:before,
.icon-target:before,
.icon-tag:before,
.icon-subscribe:before,
.icon-stop:before,
.icon-star-half:before,
.icon-star-full:before,
.icon-star-empty:before,
.icon-sportclub:before,
.icon-spoken-language:before,
.icon-size:before,
.icon-sign-out:before,
.icon-sign-language:before,
.icon-shopping:before,
.icon-share:before,
.icon-settings:before,
.icon-search:before,
.icon-refresh:before,
.icon-readspeaker:before,
.icon-question:before,
.icon-question-circle:before,
.icon-previous:before,
.icon-plus:before,
.icon-play:before,
.icon-pinterest:before,
.icon-phone:before,
.icon-pencil:before,
.icon-pause:before,
.icon-normalphone:before,
.icon-next:before,
.icon-music:before,
.icon-mobility:before,
.icon-minus:before,
.icon-marker:before,
.icon-map:before,
.icon-logo-sp:before,
.icon-logo-nl:before,
.icon-logo-fr:before,
.icon-logo-es:before,
.icon-logo-en:before,
.icon-lock-open:before,
.icon-lock-closed:before,
.icon-living:before,
.icon-linkedin:before,
.icon-link:before,
.icon-lightning:before,
.icon-level:before,
.icon-layers:before,
.icon-instagram:before,
.icon-info:before,
.icon-info-circle:before,
.icon-image:before,
.icon-home:before,
.icon-heart:before,
.icon-health:before,
.icon-hamburger:before,
.icon-gsport:before,
.icon-googleplus:before,
.icon-globe:before,
.icon-ghent:before,
.icon-fullscreen-exit:before,
.icon-fullscreen-enter:before,
.icon-for-children:before,
.icon-flickr:before,
.icon-filter:before,
.icon-fax:before,
.icon-favicon:before,
.icon-facebook:before,
.icon-exclamation:before,
.icon-exclamation-circle:before,
.icon-euro:before,
.icon-environment:before,
.icon-envelope:before,
.icon-education:before,
.icon-download:before,
.icon-document:before,
.icon-district09:before,
.icon-culture:before,
.icon-cross:before,
.resolutions-detail__status--false:before,
.icon-cross-circle:before,
.icon-contact:before,
.icon-clock:before,
.icon-civil-affairs:before,
.icon-chevron-up:before,
.icon-chevron-right:before,
.icon-chevron-left:before,
.icon-chevron-down:before,
.icon-checkmark:before,
.icon-checkmark-circle:before,
.resolutions-detail__status--true:before,
.icon-checkmark-checkbox:before,
.icon-chat:before,
.icon-chat-round:before,
.icon-cart:before,
.icon-calendar:before,
.icon-broken-link:before,
.icon-bluesky:before,
.icon-basket:before,
.icon-arrow-up:before,
.icon-arrow-right:before,
.icon-arrow-right-top:before,
.icon-arrow-left:before,
.icon-arrow-down:before,
.icon-age:before {
  font-family: "gent-icons-v6";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-size: 1.2rem;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-decoration: none;
  text-transform: none;
}
.icon-age:before {
  content: "\e001";
}
.icon-arrow-down:before {
  content: "\e002";
}
.icon-arrow-left:before {
  content: "\e003";
}
.icon-arrow-right-top:before {
  content: "\e004";
}
.icon-arrow-right:before {
  content: "\e005";
}
.icon-arrow-up:before {
  content: "\e006";
}
.icon-basket:before {
  content: "\e007";
}
.icon-bluesky:before {
  content: "\e008";
}
.icon-broken-link:before {
  content: "\e009";
}
.icon-calendar:before {
  content: "\e00a";
}
.icon-cart:before {
  content: "\e00b";
}
.icon-chat-round:before {
  content: "\e00c";
}
.icon-chat:before {
  content: "\e00d";
}
.icon-checkmark-checkbox:before {
  content: "\e00e";
}
.icon-checkmark-circle:before,
.resolutions-detail__status--true:before {
  content: "\e00f";
}
.icon-checkmark:before {
  content: "\e010";
}
.icon-chevron-down:before {
  content: "\e011";
}
.icon-chevron-left:before {
  content: "\e012";
}
.icon-chevron-right:before {
  content: "\e013";
}
.icon-chevron-up:before {
  content: "\e014";
}
.icon-civil-affairs:before {
  content: "\e015";
}
.icon-clock:before {
  content: "\e016";
}
.icon-contact:before {
  content: "\e017";
}
.icon-cross-circle:before {
  content: "\e018";
}
.icon-cross:before,
.resolutions-detail__status--false:before {
  content: "\e019";
}
.icon-culture:before {
  content: "\e01a";
}
.icon-district09:before {
  content: "\e01b";
}
.icon-document:before {
  content: "\e01c";
}
.icon-download:before {
  content: "\e01d";
}
.icon-education:before {
  content: "\e01e";
}
.icon-envelope:before {
  content: "\e01f";
}
.icon-environment:before {
  content: "\e020";
}
.icon-euro:before {
  content: "\e021";
}
.icon-exclamation-circle:before {
  content: "\e022";
}
.icon-exclamation:before {
  content: "\e023";
}
.icon-facebook:before {
  content: "\e024";
}
.icon-favicon:before {
  content: "\e025";
}
.icon-fax:before {
  content: "\e026";
}
.icon-filter:before {
  content: "\e027";
}
.icon-flickr:before {
  content: "\e028";
}
.icon-for-children:before {
  content: "\e029";
}
.icon-fullscreen-enter:before {
  content: "\e02a";
}
.icon-fullscreen-exit:before {
  content: "\e02b";
}
.icon-ghent:before {
  content: "\e02c";
}
.icon-globe:before {
  content: "\e02d";
}
.icon-googleplus:before {
  content: "\e02e";
}
.icon-gsport:before {
  content: "\e02f";
}
.icon-hamburger:before {
  content: "\e030";
}
.icon-health:before {
  content: "\e031";
}
.icon-heart:before {
  content: "\e032";
}
.icon-home:before {
  content: "\e033";
}
.icon-image:before {
  content: "\e034";
}
.icon-info-circle:before {
  content: "\e035";
}
.icon-info:before {
  content: "\e036";
}
.icon-instagram:before {
  content: "\e037";
}
.icon-layers:before {
  content: "\e038";
}
.icon-level:before {
  content: "\e039";
}
.icon-lightning:before {
  content: "\e03a";
}
.icon-link:before {
  content: "\e03b";
}
.icon-linkedin:before {
  content: "\e03c";
}
.icon-living:before {
  content: "\e03d";
}
.icon-lock-closed:before {
  content: "\e03e";
}
.icon-lock-open:before {
  content: "\e03f";
}
.icon-logo-en:before {
  content: "\e040";
}
.icon-logo-es:before {
  content: "\e041";
}
.icon-logo-fr:before {
  content: "\e042";
}
.icon-logo-nl:before {
  content: "\e043";
}
.icon-logo-sp:before {
  content: "\e044";
}
.icon-map:before {
  content: "\e045";
}
.icon-marker:before {
  content: "\e046";
}
.icon-minus:before {
  content: "\e047";
}
.icon-mobility:before {
  content: "\e048";
}
.icon-music:before {
  content: "\e049";
}
.icon-next:before {
  content: "\e04a";
}
.icon-normalphone:before {
  content: "\e04b";
}
.icon-pause:before {
  content: "\e04c";
}
.icon-pencil:before {
  content: "\e04d";
}
.icon-phone:before {
  content: "\e04e";
}
.icon-pinterest:before {
  content: "\e04f";
}
.icon-play:before {
  content: "\e050";
}
.icon-plus:before {
  content: "\e051";
}
.icon-previous:before {
  content: "\e052";
}
.icon-question-circle:before {
  content: "\e053";
}
.icon-question:before {
  content: "\e054";
}
.icon-readspeaker:before {
  content: "\e055";
}
.icon-refresh:before {
  content: "\e056";
}
.icon-search:before {
  content: "\e057";
}
.icon-settings:before {
  content: "\e058";
}
.icon-share:before {
  content: "\e059";
}
.icon-shopping:before {
  content: "\e05a";
}
.icon-sign-language:before {
  content: "\e05b";
}
.icon-sign-out:before {
  content: "\e05c";
}
.icon-size:before {
  content: "\e05d";
}
.icon-spoken-language:before {
  content: "\e05e";
}
.icon-sportclub:before {
  content: "\e05f";
}
.icon-star-empty:before {
  content: "\e060";
}
.icon-star-full:before {
  content: "\e061";
}
.icon-star-half:before {
  content: "\e062";
}
.icon-stop:before {
  content: "\e063";
}
.icon-subscribe:before {
  content: "\e064";
}
.icon-tag:before {
  content: "\e065";
}
.icon-target:before {
  content: "\e066";
}
.icon-threads:before {
  content: "\e067";
}
.icon-tiktok:before {
  content: "\e068";
}
.icon-trashcan:before {
  content: "\e069";
}
.icon-twitter-outline:before {
  content: "\e06a";
}
.icon-twitter:before {
  content: "\e06b";
}
.icon-uit-met-vlieg:before {
  content: "\e06c";
}
.icon-uitpas:before {
  content: "\e06d";
}
.icon-update:before {
  content: "\e06e";
}
.icon-url:before {
  content: "\e06f";
}
.icon-user:before {
  content: "\e070";
}
.icon-users:before {
  content: "\e071";
}
.icon-view-grid:before {
  content: "\e072";
}
.icon-view-list:before {
  content: "\e073";
}
.icon-vimeo:before {
  content: "\e074";
}
.icon-virus:before {
  content: "\e075";
}
.icon-whatsapp:before {
  content: "\e076";
}
.icon-wheelchair-no:before {
  content: "\e077";
}
.icon-wheelchair:before {
  content: "\e078";
}
.icon-work:before {
  content: "\e079";
}
.icon-youtube:before {
  content: "\e07a";
}
.cs--blue .form-disclaimer {
  color: rgb(63.75, 181.5, 231.75);
}
.form-disclaimer {
  margin: 24px 0;
  font-size: 0.6rem;
}
.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  gap: 45px;
}
.row.reverse {
  flex-direction: row-reverse;
}
.row.natural-height {
  align-items: flex-start;
}
.row.flex-column {
  flex-direction: column;
}
.col {
  flex-grow: 1;
  width: 100%;
  margin-left: 0;
}
.col.reverse {
  flex-direction: column-reverse;
}
.first {
  order: -1;
}
.last {
  order: 1;
}
.align-start {
  align-self: flex-start;
}
.align-end {
  align-self: flex-end;
}
.align-center {
  align-self: center;
}
.align-baseline {
  align-self: baseline;
}
.align-stretch {
  align-self: stretch;
}
.col-xs {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-xs-1 {
  flex-basis: calc((100% - 495px) / 12);
  width: calc((100% - 495px) / 12);
}
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
.col-xs-2 {
  flex-basis: calc((100% - 225px) / 6);
  width: calc((100% - 225px) / 6);
}
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
.col-xs-3 {
  flex-basis: calc((100% - 135px) / 4);
  width: calc((100% - 135px) / 4);
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-4 {
  flex-basis: calc((100% - 90px) / 3);
  width: calc((100% - 90px) / 3);
}
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
.col-xs-5 {
  flex-basis: calc((100% - 63px) / 2.4);
  width: calc((100% - 63px) / 2.4);
}
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
.col-xs-6 {
  flex-basis: calc((100% - 45px) / 2);
  width: calc((100% - 45px) / 2);
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-7 {
  flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
  width: calc((100% - 32.1428571429px) / 1.7142857143);
}
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
.col-xs-8 {
  flex-basis: calc((100% - 22.5px) / 1.5);
  width: calc((100% - 22.5px) / 1.5);
}
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
.col-xs-9 {
  flex-basis: calc((100% - 15px) / 1.3333333333);
  width: calc((100% - 15px) / 1.3333333333);
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-10 {
  flex-basis: calc((100% - 9px) / 1.2);
  width: calc((100% - 9px) / 1.2);
}
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
.col-xs-11 {
  flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
  width: calc((100% - 4.0909090909px) / 1.0909090909);
}
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
.col-xs-12 {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.row.start-xs {
  justify-content: flex-start;
}
.row.center-xs {
  justify-content: center;
}
.row.end-xs {
  justify-content: flex-end;
}
.row.top-xs {
  align-items: flex-start;
}
.row.middle-xs {
  align-items: center;
}
.row.bottom-xs {
  align-items: flex-end;
}
.row.around-xs {
  justify-content: space-around;
}
.row.between-xs {
  justify-content: space-between;
}
.first-xs {
  order: -1;
}
.last-xs {
  order: 1;
}
@media only screen and (min-width: 577px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 769px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 961px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 1681px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-1 {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex-basis: calc((100% - 63px) / 2.4);
    width: calc((100% - 63px) / 2.4);
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex-basis: calc((100% - 32.1428571429px) / 1.7142857143);
    width: calc((100% - 32.1428571429px) / 1.7142857143);
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex-basis: calc((100% - 22.5px) / 1.5);
    width: calc((100% - 22.5px) / 1.5);
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex-basis: calc((100% - 15px) / 1.3333333333);
    width: calc((100% - 15px) / 1.3333333333);
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex-basis: calc((100% - 9px) / 1.2);
    width: calc((100% - 9px) / 1.2);
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex-basis: calc((100% - 4.0909090909px) / 1.0909090909);
    width: calc((100% - 4.0909090909px) / 1.0909090909);
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 30px;
}
.row-no-gutter {
  gap: 0;
}
.col-no-gutter {
  padding: 0;
}
.cs--blue::before,
.cs--blue::after {
  display: table;
  content: " ";
}
.cs--blue::after {
  clear: both;
}
.accolade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 1170px;
  height: 1rem;
  margin: 0;
  border: 0;
  overflow: visible;
}
.accolade::before,
.accolade::after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 1rem;
  margin-top: 0;
  border-top: 2px solid;
  border-color: transparent;
  background: #fff;
  content: "";
}
.accolade::before {
  left: 0;
  width: calc(50%);
  border-right: 2px solid;
  border-top-right-radius: 1.2rem;
  border-color: transparent;
}
.accolade::after {
  right: 0;
  width: calc(100% - 50% - 2px);
  border-left: 2px solid;
  border-top-left-radius: 1.2rem;
  border-color: transparent;
}
.accolade.top-left,
.accolade.top-center,
.accolade.top-right {
  top: 0;
  transform: rotate(180deg);
}
.accolade.top-left::before,
.accolade.bottom-right::before {
  width: calc(100% - 25% - 2px);
}
.accolade.top-left::after,
.accolade.bottom-right::after {
  width: calc(25%);
}
.accolade.top-right::before,
.accolade.bottom-left::before {
  width: calc(25%);
}
.accolade.top-right::after,
.accolade.bottom-left::after {
  width: calc(100% - 25% - 2px);
}
.accolade.left-top,
.accolade.left-center,
.accolade.left-bottom,
.accolade.right-top,
.accolade.right-center,
.accolade.right-bottom {
  right: auto;
  left: 0;
  width: 1rem;
  height: 100%;
}
.accolade.left-top::before,
.accolade.left-top::after,
.accolade.left-center::before,
.accolade.left-center::after,
.accolade.left-bottom::before,
.accolade.left-bottom::after,
.accolade.right-top::before,
.accolade.right-top::after,
.accolade.right-center::before,
.accolade.right-center::after,
.accolade.right-bottom::before,
.accolade.right-bottom::after {
  position: absolute;
  top: 0;
  width: 1rem;
  height: 100%;
  margin-top: 0;
  border-left: 2px solid;
  border-color: transparent;
  background: #fff;
  content: "";
}
.accolade.left-top::before,
.accolade.left-center::before,
.accolade.left-bottom::before,
.accolade.right-top::before,
.accolade.right-center::before,
.accolade.right-bottom::before {
  left: 0;
  height: calc(50%);
  border-left: 2px solid;
  border-top-right-radius: 0;
  border-bottom-right-radius: 1.2rem;
  border-color: transparent;
}
.accolade.left-top::after,
.accolade.left-center::after,
.accolade.left-bottom::after,
.accolade.right-top::after,
.accolade.right-center::after,
.accolade.right-bottom::after {
  top: auto;
  bottom: 0;
  height: calc(100% - 50% - 2px);
  border-left: 2px solid;
  border-top-left-radius: 0;
  border-top-right-radius: 1.2rem;
  border-color: transparent;
}
.accolade.right-top,
.accolade.right-center,
.accolade.right-bottom {
  right: 0;
  left: auto;
  transform: rotate(180deg);
}
.accolade.left-top::before,
.accolade.right-bottom::before {
  height: calc(25%);
}
.accolade.left-top::after,
.accolade.right-bottom::after {
  height: calc(100% - 25% - 2px);
}
.accolade.left-bottom::before,
.accolade.right-top::before {
  height: calc(100% - 25% - 2px);
}
.accolade.left-bottom::after,
.accolade.right-top::after {
  height: calc(25%);
}
.accolade-inverse {
  position: absolute;
  width: 2rem;
  height: 1rem;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2rem' height='1rem' viewBox='0 0 36 19'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M50.0702 0C31.2247 0 26.7846 7.44663 25.2657 18H24.8745C23.3559 7.44663 18.9157 0 0.0701904 0H25.0701H50.0702Z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  content: "";
}
.accolade-inverse.bottom-left,
.accolade-inverse.bottom-center,
.accolade-inverse.bottom-right {
  bottom: 0;
}
.accolade-inverse.top-left,
.accolade-inverse.top-center,
.accolade-inverse.top-right {
  top: 0;
  transform: rotate(180deg);
}
.accolade-inverse.top-left,
.accolade-inverse.bottom-left {
  left: calc(16.6666666667%);
}
.accolade-inverse.top-center,
.accolade-inverse.bottom-center {
  right: 0;
  left: 0;
  margin: auto;
}
.accolade-inverse.top-right,
.accolade-inverse.bottom-right {
  right: calc(16.6666666667%);
}
.accolade-inverse.left-top,
.accolade-inverse.left-center,
.accolade-inverse.left-bottom {
  left: -0.5rem;
  transform: rotate(90deg);
}
.accolade-inverse.right-top,
.accolade-inverse.right-center,
.accolade-inverse.right-bottom {
  right: -0.5rem;
  transform: rotate(-90deg);
}
.accolade-inverse.right-top,
.accolade-inverse.left-top {
  top: calc(16.6666666667%);
}
.accolade-inverse.right-center,
.accolade-inverse.left-center {
  top: 0;
  bottom: 0;
  margin: auto;
}
.accolade-inverse.right-bottom,
.accolade-inverse.left-bottom {
  bottom: calc(16.6666666667%);
}
.button,
input[type=button] {
  font-size: 0.8rem;
  line-height: 175%;
  font-weight: 600;
  padding: 8px 15px;
  font-family: "Fira Sans", sans-serif;
  text-align: center;
  cursor: pointer;
}
[class*=cs--] .button:disabled,
[class*=cs--] input[type=button]:disabled {
  border: 0;
  background-color: rgb(229.5, 231.9, 233);
  background-image: none;
  color: rgb(102, 116.4, 123);
}
[class*=cs--] .button:disabled:hover,
[class*=cs--] input[type=button]:disabled:hover {
  background-color: rgb(229.5, 231.9, 233);
  color: rgb(102, 116.4, 123);
  cursor: not-allowed;
}
.button.button-small,
input[type=button].button-small {
  font-size: 0.8rem;
  padding: 4px 10px;
  line-height: 175%;
}
.button.button-medium,
input[type=button].button-medium {
  font-size: 0.8rem;
  line-height: 175%;
}
.button.button-large,
input[type=button].button-large {
  font-size: 0.9rem;
  padding: 10px 20px;
  line-height: 177.778%;
}
.button.button-large::before,
input[type=button].button-large::before {
  font-size: 1.5rem;
}
.button.button-extra-large,
input[type=button].button-extra-large {
  font-size: 0.9rem;
  padding: 25px 26px;
  line-height: 177.778%;
}
.button.button-extra-large::before,
input[type=button].button-extra-large::before {
  font-size: 1.5rem;
}
.button.button-block,
input[type=button].button-block {
  display: inline-block;
  width: 100%;
}
.button[class*=icon-],
input[type=button][class*=icon-] {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .button[class*=icon-],
  input[type=button][class*=icon-] {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
.button[class*=icon-]::before,
input[type=button][class*=icon-]::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
.button[class*=icon-].icon-left::before,
input[type=button][class*=icon-].icon-left::before {
  order: unset;
  margin-right: 8px;
  margin-left: 0;
  float: left;
}
.button,
input[type=button] {
  transition: 0.3s;
  background-repeat: no-repeat;
  background-size: 0 100%;
}
.button:hover,
input[type=button]:hover {
  background-size: 100% 100%;
}
.button,
input[type=button] {
  -webkit-appearance: none;
}
.cs--blue .field-message {
  color: #001823;
}
.cs--blue .field-message {
  background-color: #e6f8ff;
}
.cs--blue .field-message {
  border-color: #009de0;
}
.field-message {
  display: inline-block;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 800px;
  min-height: 50px;
  margin-top: 4px;
  padding: 34px 24px 14px;
  border-bottom: 3px solid;
}
.field-message :nth-last-child(2) {
  margin-bottom: 0;
}
.field-message::before {
  display: block;
  position: absolute;
  top: 30px;
  left: 14px;
  width: 30px;
  height: 30px;
  margin: auto 30px auto auto;
  font-size: 1.3rem;
  line-height: 30px;
  text-align: center;
}
.field-message,
.field-message * {
  font-size: 0.7rem;
}
.field-message .accolade {
  top: 0;
  transform: rotate(180deg);
}
.field-message .accolade::before {
  left: -1px;
  width: calc(100% - 30px + 1px);
}
.field-message .accolade::after {
  right: -1px;
  width: 31px;
}
.cs--blue .field-message a {
  color: #001823;
}
.cs--blue .field-message a {
  border-color: #001823;
}
.field-message a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .field-message a {
  background-image:
    linear-gradient(
      to bottom,
      #ccdeee 0,
      #ccdeee 100%);
}
.field-message a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.field-message a:hover,
.field-message a:focus {
  background-size: 100% 100%;
}
.field-message.success:before {
  content: "\e00f";
}
.cs--blue .field-message.success {
  background-color: #e1fde1;
}
.cs--blue .field-message.success {
  border-color: #2c8726;
}
.field-message.success {
  padding-left: 58px;
}
.cs--blue .field-message.success::before {
  color: #2c8726;
}
.cs--blue .field-message.success a {
  border-color: #001823;
}
.field-message.success a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .field-message.success a {
  background-image:
    linear-gradient(
      to bottom,
      #cbe4cb 0,
      #cbe4cb 100%);
}
.field-message.success a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.field-message.success a:hover,
.field-message.success a:focus {
  background-size: 100% 100%;
}
.field-message.error:before {
  content: "\e018";
}
.cs--blue .field-message.error {
  background-color: #ffe8ec;
}
.cs--blue .field-message.error {
  border-color: #ea0d33;
}
.field-message.error {
  padding-left: 58px;
}
.cs--blue .field-message.error::before {
  color: #ea0d33;
}
.cs--blue .field-message.error a {
  border-color: #001823;
}
.field-message.error a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .field-message.error a {
  background-image:
    linear-gradient(
      to bottom,
      #e6d1d4 0,
      #e6d1d4 100%);
}
.field-message.error a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.field-message.error a:hover,
.field-message.error a:focus {
  background-size: 100% 100%;
}
.cs--blue .fieldset-wrapper fieldset,
.cs--blue fieldset {
  border-color: #005ba9;
}
.fieldset-wrapper fieldset,
fieldset {
  max-width: 820px;
  margin-bottom: 24px;
}
.fieldset-wrapper fieldset .form-item,
fieldset .form-item {
  margin-bottom: 16px;
}
.fieldset-wrapper fieldset legend,
fieldset legend {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin-bottom: 4px;
}
.fieldset-wrapper fieldset legend::before,
fieldset legend::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  content: "";
  z-index: 1;
}
.fieldset-wrapper fieldset legend .legend-title,
fieldset legend .legend-title {
  position: relative;
  z-index: 2;
}
.cs--blue .fieldset-wrapper fieldset legend .label-optional,
.cs--blue fieldset legend .label-optional {
  color: #001823;
}
.cs--blue .fieldset-wrapper fieldset legend .label-optional,
.cs--blue fieldset legend .label-optional {
  background-color: #ffdb5a;
}
.fieldset-wrapper fieldset legend .label-optional,
fieldset legend .label-optional {
  font-weight: 400;
  padding: 2px 5px;
  float: right;
  font-size: 0.6rem;
  line-height: 150%;
  position: relative;
  z-index: 2;
}
.fieldset-wrapper fieldset legend + .field-message,
.fieldset-wrapper fieldset legend + .form-item > .field-message:first-child,
fieldset legend + .field-message,
fieldset legend + .form-item > .field-message:first-child {
  margin-bottom: 20px;
}
.fieldset-wrapper fieldset.webform-type-fieldset,
fieldset.webform-type-fieldset {
  padding: 16px 16px 8px;
  border: 2px solid;
}
@media (min-width: 768px) {
  .fieldset-wrapper fieldset.webform-type-fieldset,
  fieldset.webform-type-fieldset {
    padding: 20px 20px 12px;
  }
}
.fieldset-wrapper fieldset.webform-type-fieldset legend,
fieldset.webform-type-fieldset legend {
  max-width: none;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset legend::before,
.cs--blue fieldset.webform-type-fieldset legend::before {
  background-color: #001823;
}
.fieldset-wrapper fieldset.webform-type-fieldset legend::before,
fieldset.webform-type-fieldset legend::before {
  height: 2px;
}
.fieldset-wrapper fieldset.webform-type-fieldset legend .legend-title,
fieldset.webform-type-fieldset legend .legend-title {
  font-weight: 600;
  font-size: 0.8rem;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset legend .legend-title,
.cs--blue fieldset.webform-type-fieldset legend .legend-title {
  color: #fff;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset legend .legend-title,
.cs--blue fieldset.webform-type-fieldset legend .legend-title {
  background-color: #005ba9;
}
.fieldset-wrapper fieldset.webform-type-fieldset legend .legend-title,
fieldset.webform-type-fieldset legend .legend-title {
  padding: 1px 10px;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other),
.cs--blue .fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other),
.cs--blue fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other),
.cs--blue fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) {
  border-color: #001823;
}
.fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other),
.fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other),
fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other),
fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) {
  padding: 20px 20px 12px;
  border: 1px dashed;
}
.fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend,
.fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend,
fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend,
fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend {
  display: flex;
  align-items: center;
  max-width: none;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
.cs--blue .fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
.cs--blue fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
.cs--blue fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before {
  background-color: #fff;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
.cs--blue .fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
.cs--blue fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
.cs--blue fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before {
  border-color: #001823;
}
.fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
.fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before,
fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend::before {
  height: 1px;
  border-bottom: 1px dashed;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
.cs--blue .fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
.cs--blue fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
.cs--blue fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title {
  color: #001823;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
.cs--blue .fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
.cs--blue fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
.cs--blue fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title {
  background-color: #fff;
}
.fieldset-wrapper fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
.fieldset-wrapper fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
fieldset.webform-type-fieldset fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title,
fieldset:not(.webform-type-fieldset) fieldset:not(.webform-type-radios):not(.webform-type-checkboxes):not(.webform-type-webform-radios-other):not(.webform-type-webform-checkboxes-other) legend .legend-title {
  padding: 1px 10px;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-radios legend,
.cs--blue .fieldset-wrapper fieldset.webform-type-checkboxes legend,
.cs--blue .fieldset-wrapper fieldset.webform-type-webform-radios-other legend,
.cs--blue .fieldset-wrapper fieldset.webform-type-webform-checkboxes-other legend,
.cs--blue fieldset.webform-type-radios legend,
.cs--blue fieldset.webform-type-checkboxes legend,
.cs--blue fieldset.webform-type-webform-radios-other legend,
.cs--blue fieldset.webform-type-webform-checkboxes-other legend {
  color: #005ba9;
}
.fieldset-wrapper fieldset.webform-type-radios legend,
.fieldset-wrapper fieldset.webform-type-checkboxes legend,
.fieldset-wrapper fieldset.webform-type-webform-radios-other legend,
.fieldset-wrapper fieldset.webform-type-webform-checkboxes-other legend,
fieldset.webform-type-radios legend,
fieldset.webform-type-checkboxes legend,
fieldset.webform-type-webform-radios-other legend,
fieldset.webform-type-webform-checkboxes-other legend {
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 5px;
  font-size: 0.8rem;
  line-height: 1.4rem;
  max-width: 410px;
}
.fieldset-wrapper fieldset.webform-type-radios legend::before,
.fieldset-wrapper fieldset.webform-type-checkboxes legend::before,
.fieldset-wrapper fieldset.webform-type-webform-radios-other legend::before,
.fieldset-wrapper fieldset.webform-type-webform-checkboxes-other legend::before,
fieldset.webform-type-radios legend::before,
fieldset.webform-type-checkboxes legend::before,
fieldset.webform-type-webform-radios-other legend::before,
fieldset.webform-type-webform-checkboxes-other legend::before {
  display: none;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-radios legend .legend-title,
.cs--blue .fieldset-wrapper fieldset.webform-type-checkboxes legend .legend-title,
.cs--blue .fieldset-wrapper fieldset.webform-type-webform-radios-other legend .legend-title,
.cs--blue .fieldset-wrapper fieldset.webform-type-webform-checkboxes-other legend .legend-title,
.cs--blue fieldset.webform-type-radios legend .legend-title,
.cs--blue fieldset.webform-type-checkboxes legend .legend-title,
.cs--blue fieldset.webform-type-webform-radios-other legend .legend-title,
.cs--blue fieldset.webform-type-webform-checkboxes-other legend .legend-title {
  background-color: #fff;
}
.cs--blue .fieldset-wrapper fieldset.webform-type-radios legend .legend-title,
.cs--blue .fieldset-wrapper fieldset.webform-type-checkboxes legend .legend-title,
.cs--blue .fieldset-wrapper fieldset.webform-type-webform-radios-other legend .legend-title,
.cs--blue .fieldset-wrapper fieldset.webform-type-webform-checkboxes-other legend .legend-title,
.cs--blue fieldset.webform-type-radios legend .legend-title,
.cs--blue fieldset.webform-type-checkboxes legend .legend-title,
.cs--blue fieldset.webform-type-webform-radios-other legend .legend-title,
.cs--blue fieldset.webform-type-webform-checkboxes-other legend .legend-title {
  color: #005ba9;
}
.fieldset-wrapper fieldset.webform-type-radios legend .legend-title,
.fieldset-wrapper fieldset.webform-type-checkboxes legend .legend-title,
.fieldset-wrapper fieldset.webform-type-webform-radios-other legend .legend-title,
.fieldset-wrapper fieldset.webform-type-webform-checkboxes-other legend .legend-title,
fieldset.webform-type-radios legend .legend-title,
fieldset.webform-type-checkboxes legend .legend-title,
fieldset.webform-type-webform-radios-other legend .legend-title,
fieldset.webform-type-webform-checkboxes-other legend .legend-title {
  padding-left: 0;
}
.cs--blue figcaption {
  color: #001823;
}
.cs--blue figcaption {
  background-color: #ffdb5a;
}
figcaption {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 2px 10px;
  z-index: 1;
}
.cs--blue figcaption::before {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50px' height='18px' viewBox='0 0 36 19'%3E%3Cpath fill='%23ffdb5a' fill-rule='evenodd' d='M50.0702 0C31.2247 0 26.7846 7.44663 25.2657 18H24.8745C23.3559 7.44663 18.9157 0 0.0701904 0H25.0701H50.0702Z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100%;
}
figcaption::before {
  position: absolute;
  top: -17px;
  right: 0;
  width: 50px;
  height: 18px;
  content: "";
  transform: rotate(180deg);
}
figcaption {
  font-size: 0.8rem;
  font-weight: 400;
  margin: -16px 20px 0;
  float: right;
  line-height: 175%;
}
.file {
  display: inline-flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  margin: 0.25rem 0 0;
}
.file .file__button {
  font-size: 0.8rem;
  line-height: 175%;
  font-weight: 600;
  padding: 8px 15px;
  font-family: "Fira Sans", sans-serif;
  text-align: center;
  cursor: pointer;
}
[class*=cs--] .file .file__button:disabled {
  border: 0;
  background-color: rgb(229.5, 231.9, 233);
  background-image: none;
  color: rgb(102, 116.4, 123);
}
[class*=cs--] .file .file__button:disabled:hover {
  background-color: rgb(229.5, 231.9, 233);
  color: rgb(102, 116.4, 123);
  cursor: not-allowed;
}
.file .file__button.button-small {
  font-size: 0.8rem;
  padding: 4px 10px;
  line-height: 175%;
}
.file .file__button.button-medium {
  font-size: 0.8rem;
  line-height: 175%;
}
.file .file__button.button-large {
  font-size: 0.9rem;
  padding: 10px 20px;
  line-height: 177.778%;
}
.file .file__button.button-large::before {
  font-size: 1.5rem;
}
.file .file__button.button-extra-large {
  font-size: 0.9rem;
  padding: 25px 26px;
  line-height: 177.778%;
}
.file .file__button.button-extra-large::before {
  font-size: 1.5rem;
}
.file .file__button.button-block {
  display: inline-block;
  width: 100%;
}
.file .file__button[class*=icon-] {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .file .file__button[class*=icon-] {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
.file .file__button[class*=icon-]::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
.file .file__button[class*=icon-].icon-left::before {
  order: unset;
  margin-right: 8px;
  margin-left: 0;
  float: left;
}
.file .file__button {
  font-size: 0.8rem;
  padding: 4px 10px;
  line-height: 175%;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-size: 0 100%;
}
.file .file__button:hover {
  background-size: 100% 100%;
}
.file .file__button {
  max-width: 100%;
  margin: 0 0.75rem 0 0;
  padding: 0.4rem 0.75rem;
  content: attr(data-text);
}
.cs--blue .file::after {
  color: #001823;
}
.file::after {
  max-width: 100%;
  margin: 0.5rem 0.5rem 0;
  font-size: 0.7rem;
  font-style: italic;
  text-overflow: ellipsis;
  content: attr(data-file);
  overflow: hidden;
}
@media (min-width: 576px) {
  .file::after {
    margin: 0;
  }
}
.file input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1.4rem;
  cursor: pointer;
  opacity: 0;
}
.file input[type=file]:disabled {
  pointer-events: none;
}
[class*=cs--] .file input[type=file]:disabled + .file__button {
  border: 0;
  background-color: rgb(229.5, 231.9, 233);
  background-image: none;
  color: rgb(102, 116.4, 123);
}
[class*=cs--] .file input[type=file]:disabled + .file__button:hover {
  background-color: rgb(229.5, 231.9, 233);
  color: rgb(102, 116.4, 123);
  cursor: not-allowed;
}
.cs--blue .file input[type=file]:hover + .file__button,
.cs--blue .file input[type=file]:focus + .file__button,
.cs--blue .file input[type=file]:focus-within + .file__button {
  color: #001823;
}
.file input[type=file]:hover + .file__button,
.file input[type=file]:focus + .file__button,
.file input[type=file]:focus-within + .file__button {
  background-size: 100% 100%;
}
.cs--blue .file input[type=file]:active + .file__button {
  background-color: #1abcff;
}
.cs--blue .file input[type=file]:active + .file__button {
  color: #001823;
}
.file input[type=file]:active + .file__button {
  background-image: none;
  box-shadow: none;
}
.cs--blue .file input[type=file]:focus + .file__button {
  outline-color: #001823;
}
.file input[type=file]:focus + .file__button {
  outline: 2px solid;
  outline-offset: 2px;
}
.cs--blue .file + .help-text {
  color: #687278;
}
.file + .help-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  line-height: 1.2rem;
}
.cs--blue label {
  color: #005ba9;
}
label {
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 5px;
  font-size: 0.8rem;
  line-height: 1.4rem;
}
.cs--blue label .label-optional {
  color: #001823;
}
.cs--blue label .label-optional {
  background-color: #ffdb5a;
}
label .label-optional {
  font-weight: 400;
  padding: 2px 5px;
  float: right;
  font-size: 0.6rem;
  line-height: 150%;
  margin: 0 0 3px 5px;
}
h1,
.h1,
h2,
.h2,
h1.overview-title,
h2.overview-title,
h3.overview-title,
h4.overview-title,
h5.overview-title,
h6.overview-title,
h3,
.h3,
.crisis-communication h2,
.search label,
h4,
.h4,
.sidebar.filter-section form .form-item > label,
.sidebar.filter-section form fieldset.form-item > legend,
.sidebar.filter-section form .modal-content .form-item > label,
.sidebar.filter-section form .modal-content fieldset.form-item > legend,
.documents h3,
.document-box h3,
h5,
.h5 {
  font-weight: 700;
  margin-top: 40px;
  font-style: normal;
}
h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h6.overview-title:first-child,
h3:first-child,
.h3:first-child,
.search label:first-child,
h4:first-child,
.h4:first-child,
.sidebar.filter-section form .form-item > label:first-child,
.sidebar.filter-section form fieldset.form-item > legend:first-child,
h5:first-child,
.h5:first-child {
  margin-top: 0;
}
*:first-child:empty + h1,
*:first-child:empty + .h1,
*:first-child:empty + h2,
*:first-child:empty + .h2,
*:first-child:empty + h6.overview-title,
*:first-child:empty + h3,
*:first-child:empty + .h3,
.search *:first-child:empty + label,
*:first-child:empty + h4,
*:first-child:empty + .h4,
.sidebar.filter-section form .form-item > *:first-child:empty + label,
.sidebar.filter-section form fieldset.form-item > *:first-child:empty + legend,
*:first-child:empty + h5,
*:first-child:empty + .h5 {
  margin-top: 0;
}
h1 button,
.h1 button,
h2 button,
.h2 button,
h1.overview-title button,
h2.overview-title button,
h3.overview-title button,
h4.overview-title button,
h5.overview-title button,
h6.overview-title button,
h3 button,
.h3 button,
.crisis-communication h2 button,
.search label button,
h4 button,
.h4 button,
.sidebar.filter-section form .form-item > label button,
.sidebar.filter-section form fieldset.form-item > legend button,
.sidebar.filter-section form .modal-content .form-item > label button,
.sidebar.filter-section form .modal-content fieldset.form-item > legend button,
.documents h3 button,
.document-box h3 button,
h5 button,
.h5 button {
  display: flex;
  padding: 0;
  border: 0;
  background: none;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}
h1 button i,
.h1 button i,
h2 button i,
.h2 button i,
h1.overview-title button i,
h2.overview-title button i,
h3.overview-title button i,
h4.overview-title button i,
h5.overview-title button i,
h6.overview-title button i,
h3 button i,
.h3 button i,
.crisis-communication h2 button i,
.search label button i,
h4 button i,
.h4 button i,
.sidebar.filter-section form .form-item > label button i,
.sidebar.filter-section form fieldset.form-item > legend button i,
.sidebar.filter-section form .modal-content .form-item > label button i,
.sidebar.filter-section form .modal-content fieldset.form-item > legend button i,
.documents h3 button i,
.document-box h3 button i,
h5 button i,
.h5 button i {
  font-size: inherit;
}
h1,
.h1 {
  margin-bottom: 20px;
}
h1 + h2,
h1 + .h2,
.h1 + h2,
.h1 + .h2 {
  margin-top: 0;
}
h2,
.h2,
h1.overview-title,
h2.overview-title,
h3.overview-title,
h4.overview-title,
h5.overview-title,
h6.overview-title {
  margin-bottom: 15px;
}
@media (min-width: 320px) {
  h2,
  .h2,
  h1.overview-title,
  h2.overview-title,
  h3.overview-title,
  h4.overview-title,
  h5.overview-title,
  h6.overview-title {
    margin-bottom: 20px;
  }
}
h2 + h3,
h2 + .h3,
.h2 + h3,
.h2 + .h3,
h1.overview-title + h3,
h2.overview-title + h3,
h3.overview-title + h3,
h4.overview-title + h3,
h5.overview-title + h3,
h6.overview-title + h3,
h1.overview-title + .h3,
h3.overview-title + .h3,
h4.overview-title + .h3,
h5.overview-title + .h3,
h6.overview-title + .h3 {
  margin-top: 0;
}
h3,
.h3,
.crisis-communication h2,
.search label {
  margin-bottom: 15px;
}
h3 + h4,
h3 + .h4,
.h3 + h4,
.h3 + .h4,
.crisis-communication h2 + h4,
.search label + h4,
.crisis-communication h2 + .h4,
.search label + .h4 {
  margin-top: 0;
}
h4,
.h4,
.sidebar.filter-section form .form-item > label,
.sidebar.filter-section form fieldset.form-item > legend,
.sidebar.filter-section form .modal-content .form-item > label,
.sidebar.filter-section form .modal-content fieldset.form-item > legend,
.documents h3,
.document-box h3 {
  margin-bottom: 15px;
}
h4 + h5,
h4 + .h5,
.h4 + h5,
.h4 + .h5,
.sidebar.filter-section form .form-item > label + h5,
.sidebar.filter-section form fieldset.form-item > legend + h5,
.sidebar.filter-section form .modal-content .form-item > label + h5,
.sidebar.filter-section form .modal-content fieldset.form-item > legend + h5,
.documents h3 + h5,
.document-box h3 + h5,
.sidebar.filter-section form .form-item > label + .h5,
.sidebar.filter-section form fieldset.form-item > legend + .h5,
.documents h3 + .h5,
.document-box h3 + .h5 {
  margin-top: 0;
}
h5,
.h5 {
  margin-bottom: 15px;
}
h5 + h6,
h5 + .h6,
.h5 + h6,
.h5 + .h6 {
  margin-top: 0;
}
img {
  max-width: 100%;
  height: auto;
}
figure img {
  display: block;
  width: 100%;
}
.cs--blue .image-wrapper {
  background-color: rgb(229.5, 245.2, 251.9);
}
.image-wrapper {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}
.cs--blue .image-wrapper:empty::before {
  color: #005ba9;
}
.image-wrapper:empty::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 3rem;
  max-height: 3rem;
  margin: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 32 32'%3E%3Cpath fill='%23009de0' fill-rule='nonzero' d='M7.5 5h18A4.5 4.5 0 0 1 30 9.5v14a4.5 4.5 0 0 1-4.5 4.5h-18A4.5 4.5 0 0 1 3 23.5v-14A4.5 4.5 0 0 1 7.5 5zm0 3A1.5 1.5 0 0 0 6 9.5v14A1.5 1.5 0 0 0 7.5 25h18a1.5 1.5 0 0 0 1.5-1.5v-14A1.5 1.5 0 0 0 25.5 8h-18zm2.575 13.123a1 1 0 0 1-.918-1.397l3.023-6.976a1 1 0 0 1 1.768-.129l3.528 5.703a.998.998 0 0 0 1.293.37l2.631-1.299a1 1 0 0 1 1.323.423l.985 1.832a1 1 0 0 1-.88 1.473H10.074zm9.594-9.493c.328-.32.718-.48 1.169-.48.468 0 .86.16 1.182.48.32.32.48.714.48 1.182 0 .45-.16.84-.48 1.169a1.587 1.587 0 0 1-1.182.493c-.451 0-.841-.164-1.17-.493a1.596 1.596 0 0 1-.492-1.17c0-.467.164-.86.493-1.181z'/%3E%3C/svg%3E");
  background-size: contain;
  content: "";
}
@media (min-width: 768px) {
  .image-wrapper:empty::before {
    max-width: 5rem;
    max-height: 5rem;
  }
}
.image-wrapper[data-ratio="1:1"] {
  padding-bottom: 100%;
}
.image-wrapper[data-ratio="4:1"] {
  padding-bottom: 25%;
}
.image-wrapper[data-ratio="8:5"] {
  padding-bottom: 62.5%;
}
.image-wrapper[data-ratio="765:360"] {
  padding-bottom: 47.0588235294%;
}
.image-wrapper img {
  position: absolute;
  width: 100%;
  min-height: 100%;
}
.cs--blue .image-wrapper img::before {
  background-color: rgb(229.5, 231.9, 233);
}
.image-wrapper img::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.image-wrapper img::after {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  align-items: center;
  justify-content: center;
  padding-top: 1.4rem;
  transform: translate(-50%, -50%);
  background: url("./media/broken-link.svg") no-repeat top center;
  background-size: 1.2rem auto;
  color: rgb(63.75, 81.75, 90);
  font-size: 0.6rem;
  line-height: 1rem;
  text-align: center;
  white-space: pre;
  content: "Image could not be loaded:\a" attr(alt);
}
html[lang=nl] .image-wrapper img::after {
  content: "Afbeelding kon niet worden geladen:\a" attr(alt);
}
html[lang=fr] .image-wrapper img::after {
  content: "L'image n'a pas pu \eatre charg\e9 e:\a" attr(alt);
}
.cs--blue input[type=text],
.cs--blue input[type=number],
.cs--blue input[type=password],
.cs--blue input[type=search],
.cs--blue input[type=date],
.cs--blue input[type=time],
.cs--blue input[type=tel],
.cs--blue input[type=email],
.cs--blue input[type=url] {
  border-color: rgb(102, 116.4, 123);
}
.cs--blue input[type=text],
.cs--blue input[type=number],
.cs--blue input[type=password],
.cs--blue input[type=search],
.cs--blue input[type=date],
.cs--blue input[type=time],
.cs--blue input[type=tel],
.cs--blue input[type=email],
.cs--blue input[type=url] {
  background: #fff;
}
.cs--blue input[type=text],
.cs--blue input[type=number],
.cs--blue input[type=password],
.cs--blue input[type=search],
.cs--blue input[type=date],
.cs--blue input[type=time],
.cs--blue input[type=tel],
.cs--blue input[type=email],
.cs--blue input[type=url] {
  color: #001823;
}
.cs--blue input[type=text]:focus,
.cs--blue input[type=number]:focus,
.cs--blue input[type=password]:focus,
.cs--blue input[type=search]:focus,
.cs--blue input[type=date]:focus,
.cs--blue input[type=time]:focus,
.cs--blue input[type=tel]:focus,
.cs--blue input[type=email]:focus,
.cs--blue input[type=url]:focus {
  border-color: #001823;
}
.cs--blue input[type=text]:focus,
.cs--blue input[type=number]:focus,
.cs--blue input[type=password]:focus,
.cs--blue input[type=search]:focus,
.cs--blue input[type=date]:focus,
.cs--blue input[type=time]:focus,
.cs--blue input[type=tel]:focus,
.cs--blue input[type=email]:focus,
.cs--blue input[type=url]:focus {
  background: #fff;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=url]:focus {
  border: 1px solid;
}
input[type=text]:disabled,
input[type=number]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=date]:disabled,
input[type=time]:disabled,
input[type=tel]:disabled,
input[type=email]:disabled,
input[type=url]:disabled {
  padding-right: 50px;
  border: 0;
  background: rgb(229.5, 231.9, 233) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='rgb(102, 116.4, 123)' fill-rule='evenodd' d='M23.5 12.551c2.514.256 4.5 2.37 4.5 4.949v8c0 2.75-2.25 5-5 5H9c-2.75 0-5-2.25-5-5v-8c0-2.579 1.986-4.693 4.5-4.949V9.5C8.5 5.364 11.864 2 16 2s7.5 3.364 7.5 7.5v3.051zM25 25.5v-8c0-1.084-.916-2-2-2H9c-1.084 0-2 .916-2 2v8c0 1.084.916 2 2 2h14c1.084 0 2-.916 2-2zM16 5a4.505 4.505 0 0 0-4.5 4.5v3h9v-3C20.5 7.019 18.481 5 16 5zm0 13a1.5 1.5 0 0 1 1.5 1.5v4a1.5 1.5 0 1 1-3 0v-4A1.5 1.5 0 0 1 16 18z'/%3E %3C/svg%3E");
  cursor: not-allowed;
}
input[type=text].success,
input[type=number].success,
input[type=password].success,
input[type=search].success,
input[type=date].success,
input[type=time].success,
input[type=tel].success,
input[type=email].success,
input[type=url].success {
  padding-right: 50px;
  border: 1px solid #2c8726;
  background: rgb(226.75, 247.25, 225.25) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%232c8726' fill-rule='evenodd' d='M15.06 21.06l8-8a1.5 1.5 0 1 0-2.12-2.12L14 17.879l-2.94-2.94a1.5 1.5 0 1 0-2.12 2.122l4 4c.292.293.676.439 1.06.439.383 0 .767-.146 1.06-.44M16 2C8.267 2 2 8.269 2 16c0 7.732 6.268 14 14 14 7.731 0 14-6.268 14-14C30 8.269 23.73 2 16 2m0 3c6.065 0 11 4.935 11 11 0 6.066-4.935 11-11 11-6.066 0-11-4.934-11-11C5 9.935 9.933 5 16 5'/%3E%3C/svg%3E");
}
input[type=text].success:focus,
input[type=number].success:focus,
input[type=password].success:focus,
input[type=search].success:focus,
input[type=date].success:focus,
input[type=time].success:focus,
input[type=tel].success:focus,
input[type=email].success:focus,
input[type=url].success:focus {
  border-color: #2c8726;
  background: rgb(226.75, 247.25, 225.25) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%232c8726' fill-rule='evenodd' d='M15.06 21.06l8-8a1.5 1.5 0 1 0-2.12-2.12L14 17.879l-2.94-2.94a1.5 1.5 0 1 0-2.12 2.122l4 4c.292.293.676.439 1.06.439.383 0 .767-.146 1.06-.44M16 2C8.267 2 2 8.269 2 16c0 7.732 6.268 14 14 14 7.731 0 14-6.268 14-14C30 8.269 23.73 2 16 2m0 3c6.065 0 11 4.935 11 11 0 6.066-4.935 11-11 11-6.066 0-11-4.934-11-11C5 9.935 9.933 5 16 5'/%3E%3C/svg%3E");
}
input[type=text].error,
input[type=number].error,
input[type=password].error,
input[type=search].error,
input[type=date].error,
input[type=time].error,
input[type=tel].error,
input[type=email].error,
input[type=url].error {
  padding-right: 50px;
  border: 1px solid #ea0d33;
  background: rgb(253.74, 240.48, 242.76) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%23ea0d33' fill-rule='evenodd' d='M18 22a2 2 0 1 1-4.001-.001A2 2 0 0 1 18 22m-3.5-4.5v-9a1.5 1.5 0 1 1 3 0v9a1.5 1.5 0 1 1-3 0M16 27C9.935 27 5 22.065 5 16S9.935 5 16 5s11 4.935 11 11-4.935 11-11 11m0-25C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2'/%3E %3C/svg%3E");
}
input[type=text].error:focus,
input[type=number].error:focus,
input[type=password].error:focus,
input[type=search].error:focus,
input[type=date].error:focus,
input[type=time].error:focus,
input[type=tel].error:focus,
input[type=email].error:focus,
input[type=url].error:focus {
  border-color: #ea0d33;
  background: rgb(253.74, 240.48, 242.76) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%23ea0d33' fill-rule='evenodd' d='M18 22a2 2 0 1 1-4.001-.001A2 2 0 0 1 18 22m-3.5-4.5v-9a1.5 1.5 0 1 1 3 0v9a1.5 1.5 0 1 1-3 0M16 27C9.935 27 5 22.065 5 16S9.935 5 16 5s11 4.935 11 11-4.935 11-11 11m0-25C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2'/%3E %3C/svg%3E");
}
.cs--blue input[type=text]::-webkit-input-placeholder,
.cs--blue input[type=number]::-webkit-input-placeholder,
.cs--blue input[type=password]::-webkit-input-placeholder,
.cs--blue input[type=search]::-webkit-input-placeholder,
.cs--blue input[type=date]::-webkit-input-placeholder,
.cs--blue input[type=time]::-webkit-input-placeholder,
.cs--blue input[type=tel]::-webkit-input-placeholder,
.cs--blue input[type=email]::-webkit-input-placeholder,
.cs--blue input[type=url]::-webkit-input-placeholder {
  color: #001823;
}
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder {
  font-weight: normal;
}
.cs--blue input[type=text]:-moz-placeholder,
.cs--blue input[type=number]:-moz-placeholder,
.cs--blue input[type=password]:-moz-placeholder,
.cs--blue input[type=search]:-moz-placeholder,
.cs--blue input[type=date]:-moz-placeholder,
.cs--blue input[type=time]:-moz-placeholder,
.cs--blue input[type=tel]:-moz-placeholder,
.cs--blue input[type=email]:-moz-placeholder,
.cs--blue input[type=url]:-moz-placeholder {
  color: #001823;
}
input[type=text]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=date]:-moz-placeholder,
input[type=time]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=url]:-moz-placeholder {
  font-weight: normal;
}
.cs--blue input[type=text]::-moz-placeholder,
.cs--blue input[type=number]::-moz-placeholder,
.cs--blue input[type=password]::-moz-placeholder,
.cs--blue input[type=search]::-moz-placeholder,
.cs--blue input[type=date]::-moz-placeholder,
.cs--blue input[type=time]::-moz-placeholder,
.cs--blue input[type=tel]::-moz-placeholder,
.cs--blue input[type=email]::-moz-placeholder,
.cs--blue input[type=url]::-moz-placeholder {
  color: #001823;
}
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=url]::-moz-placeholder {
  font-weight: normal;
}
.cs--blue input[type=text]:-ms-input-placeholder,
.cs--blue input[type=number]:-ms-input-placeholder,
.cs--blue input[type=password]:-ms-input-placeholder,
.cs--blue input[type=search]:-ms-input-placeholder,
.cs--blue input[type=date]:-ms-input-placeholder,
.cs--blue input[type=time]:-ms-input-placeholder,
.cs--blue input[type=tel]:-ms-input-placeholder,
.cs--blue input[type=email]:-ms-input-placeholder,
.cs--blue input[type=url]:-ms-input-placeholder {
  color: #001823;
}
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder {
  font-weight: normal;
}
.cs--blue input[type=text]::placeholder,
.cs--blue input[type=number]::placeholder,
.cs--blue input[type=password]::placeholder,
.cs--blue input[type=search]::placeholder,
.cs--blue input[type=date]::placeholder,
.cs--blue input[type=time]::placeholder,
.cs--blue input[type=tel]::placeholder,
.cs--blue input[type=email]::placeholder,
.cs--blue input[type=url]::placeholder {
  color: #001823;
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=date]::placeholder,
input[type=time]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder {
  font-weight: normal;
}
input[type=text],
input[type=number],
input[type=password],
input[type=search],
input[type=date],
input[type=time],
input[type=tel],
input[type=email],
input[type=url] {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid;
  font-family: "Fira Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  appearance: none;
}
.cs--blue input[type=text]::placeholder,
.cs--blue input[type=number]::placeholder,
.cs--blue input[type=password]::placeholder,
.cs--blue input[type=search]::placeholder,
.cs--blue input[type=date]::placeholder,
.cs--blue input[type=time]::placeholder,
.cs--blue input[type=tel]::placeholder,
.cs--blue input[type=email]::placeholder,
.cs--blue input[type=url]::placeholder {
  color: #687278;
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=date]::placeholder,
input[type=time]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder {
  font-style: initial;
  opacity: 0.5;
}
[class*=cs--] input[type=password],
[class*=cs--] input[type=password]:focus {
  padding-right: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='%23001823' fill-rule='evenodd' d='M23.5 12.551c2.514.256 4.5 2.37 4.5 4.949v8c0 2.75-2.25 5-5 5H9c-2.75 0-5-2.25-5-5v-8c0-2.579 1.986-4.693 4.5-4.949V9.5C8.5 5.364 11.864 2 16 2s7.5 3.364 7.5 7.5v3.051zM25 25.5v-8c0-1.084-.916-2-2-2H9c-1.084 0-2 .916-2 2v8c0 1.084.916 2 2 2h14c1.084 0 2-.916 2-2zM16 5a4.505 4.505 0 0 0-4.5 4.5v3h9v-3C20.5 7.019 18.481 5 16 5zm0 13a1.5 1.5 0 0 1 1.5 1.5v4a1.5 1.5 0 1 1-3 0v-4A1.5 1.5 0 0 1 16 18z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
[class*=cs--] input[type=password]:disabled,
[class*=cs--] input[type=password]:focus:disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='rgb(102, 116.4, 123)' fill-rule='evenodd' d='M23.5 12.551c2.514.256 4.5 2.37 4.5 4.949v8c0 2.75-2.25 5-5 5H9c-2.75 0-5-2.25-5-5v-8c0-2.579 1.986-4.693 4.5-4.949V9.5C8.5 5.364 11.864 2 16 2s7.5 3.364 7.5 7.5v3.051zM25 25.5v-8c0-1.084-.916-2-2-2H9c-1.084 0-2 .916-2 2v8c0 1.084.916 2 2 2h14c1.084 0 2-.916 2-2zM16 5a4.505 4.505 0 0 0-4.5 4.5v3h9v-3C20.5 7.019 18.481 5 16 5zm0 13a1.5 1.5 0 0 1 1.5 1.5v4a1.5 1.5 0 1 1-3 0v-4A1.5 1.5 0 0 1 16 18z'/%3E %3C/svg%3E");
}
input[type=date] {
  padding-right: 0;
  line-height: 2.4rem;
}
.cs--blue input[type=date]::-webkit-calendar-picker-indicator {
  background-color: #7ed9ff;
}
input[type=date]::-webkit-calendar-picker-indicator {
  width: 1.2rem;
  height: 1.2rem;
  padding: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 32 32'%3E%3Cpath fill='%23001823' fill-rule='evenodd' d='M18 22.084a1.5 1.5 0 0 1-1.5 1.5h-5a1.5 1.5 0 1 1 0-3h5a1.5 1.5 0 0 1 1.5 1.5zM22.5 17a1.5 1.5 0 0 1-1.5 1.5h-9.5a1.5 1.5 0 1 1 0-3H21a1.5 1.5 0 0 1 1.5 1.5zm2.5 8.5H8c-.542 0-1-.459-1-1v-11h19v11c0 .541-.458 1-1 1zM7 8.5c0-.542.458-1 1-1h2a1.5 1.5 0 1 0 3 0h7.5a1.5 1.5 0 1 0 3 0H25c.542 0 1 .458 1 1v2H7v-2zm18-4h-1.5a1.5 1.5 0 1 0-3 0H13a1.5 1.5 0 1 0-3 0H8c-2.2 0-4 1.8-4 4v16c0 2.2 1.8 4 4 4h17c2.2 0 4-1.8 4-4v-16c0-2.2-1.8-4-4-4z'/%3E%3C/svg%3E");
}
.cs--blue input[type=date]::-webkit-calendar-picker-indicator:hover {
  background-color: #1abcff;
}
input[type=date]::-webkit-calendar-picker-indicator:hover {
  cursor: pointer;
}
input[type=date]::-webkit-inner-spin-button {
  margin-left: 0.5rem;
  -webkit-appearance: none;
}
.radio {
  position: relative;
  margin-bottom: 10px;
}
.radio:last-child {
  margin-bottom: 0;
}
.radio label {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 28px;
  font-weight: normal;
  line-height: 28px;
  overflow: unset;
}
.radio label::before,
.radio label::after {
  position: absolute;
  top: 3px;
  content: "";
}
.radio label::before {
  display: inline-block;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid;
}
.radio label::after {
  display: block;
}
.cs--blue .radio label::before {
  background-color: #fff;
}
.cs--blue .radio label::before {
  border-color: rgb(102, 116.4, 123);
}
.radio label::before {
  border-radius: 1.2rem;
}
.radio label::after {
  top: 9px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 1.2rem;
}
.radio input[type=radio],
.radio input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.cs--blue .radio input[type=radio] + label,
.cs--blue .radio input[type=checkbox] + label {
  color: #001823;
}
.radio input[type=radio] + label,
.radio input[type=checkbox] + label {
  position: relative;
}
.radio input[type=radio] + label::after,
.radio input[type=checkbox] + label::after {
  content: none;
}
[class*=cs--] .radio input[type=radio].success + label::before,
[class*=cs--] .radio input[type=checkbox].success + label::before {
  border-color: #2c8726;
}
[class*=cs--] .radio input[type=radio].error + label::before,
[class*=cs--] .radio input[type=checkbox].error + label::before {
  border-color: #ea0d33;
}
.radio input[type=radio]:disabled + label,
.radio input[type=checkbox]:disabled + label {
  color: rgb(127.5, 139.5, 145);
  font-weight: normal !important;
  cursor: not-allowed;
}
.radio input[type=radio]:disabled + label::before,
.radio input[type=checkbox]:disabled + label::before {
  border-color: rgb(229.5, 231.9, 233) !important;
  background: rgb(229.5, 231.9, 233) !important;
}
.radio input[type=radio]:disabled + label::after,
.radio input[type=checkbox]:disabled + label::after {
  color: rgb(102, 116.4, 123) !important;
}
.cs--blue .radio input[type=radio]:checked + label::before,
.cs--blue .radio input[type=checkbox]:checked + label::before {
  background-color: #fff;
}
.cs--blue .radio input[type=radio]:checked + label::before,
.cs--blue .radio input[type=checkbox]:checked + label::before {
  border-color: #005ba9;
}
.cs--blue .radio input[type=radio]:checked + label::after,
.cs--blue .radio input[type=checkbox]:checked + label::after {
  background-color: #005ba9;
}
.radio input[type=radio]:checked + label::after,
.radio input[type=checkbox]:checked + label::after {
  content: "";
}
.radio input[type=radio]:checked:disabled + label::after,
.radio input[type=checkbox]:checked:disabled + label::after {
  background-color: rgb(102, 116.4, 123) !important;
}
.cs--blue .radio:hover label::before {
  background-color: rgb(229.5, 231.9, 233);
}
.cs--blue .radio:hover label::before {
  border-color: rgb(102, 116.4, 123);
}
.cs--blue .radio:hover input[type=radio]:checked + label::before {
  background-color: rgb(229.5, 231.9, 233);
}
.cs--blue .radio:hover input[type=radio]:checked + label::before {
  border-color: #005ba9;
}
.cs--blue .radio:hover input[type=radio]:checked + label::before {
  color: #005ba9;
}
.cs--blue .radio:focus + label,
.cs--blue .radio input[type=radio]:focus + label {
  outline-color: #001823;
}
.radio:focus + label,
.radio input[type=radio]:focus + label {
  outline: 2px solid;
  outline-offset: 2px;
}
.checkbox {
  position: relative;
  margin-bottom: 10px;
}
.checkbox:last-child {
  margin-bottom: 0;
}
.checkbox label {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 28px;
  font-weight: normal;
  line-height: 28px;
  overflow: unset;
}
.checkbox label::before,
.checkbox label::after {
  position: absolute;
  top: 3px;
  content: "";
}
.checkbox label::before {
  display: inline-block;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid;
}
.checkbox label::after {
  display: block;
}
.cs--blue .checkbox label::before {
  background-color: #fff;
}
.cs--blue .checkbox label::before {
  border-color: rgb(102, 116.4, 123);
}
.checkbox label::after {
  top: 3px;
  left: -2px;
  width: 20px;
  height: 20px;
}
.checkbox input[type=radio],
.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.cs--blue .checkbox input[type=radio] + label,
.cs--blue .checkbox input[type=checkbox] + label {
  color: #001823;
}
.checkbox input[type=radio] + label,
.checkbox input[type=checkbox] + label {
  position: relative;
}
.checkbox input[type=radio] + label::after,
.checkbox input[type=checkbox] + label::after {
  content: none;
}
[class*=cs--] .checkbox input[type=radio].success + label::before,
[class*=cs--] .checkbox input[type=checkbox].success + label::before {
  border-color: #2c8726;
}
[class*=cs--] .checkbox input[type=radio].error + label::before,
[class*=cs--] .checkbox input[type=checkbox].error + label::before {
  border-color: #ea0d33;
}
.checkbox input[type=radio]:disabled + label,
.checkbox input[type=checkbox]:disabled + label {
  color: rgb(127.5, 139.5, 145);
  font-weight: normal !important;
  cursor: not-allowed;
}
.checkbox input[type=radio]:disabled + label::before,
.checkbox input[type=checkbox]:disabled + label::before {
  border-color: rgb(229.5, 231.9, 233) !important;
  background: rgb(229.5, 231.9, 233) !important;
}
.checkbox input[type=radio]:disabled + label::after,
.checkbox input[type=checkbox]:disabled + label::after {
  color: rgb(102, 116.4, 123) !important;
}
.checkbox input[type=radio]:checked + label:after,
.checkbox input[type=checkbox]:checked + label:after {
  content: "\e00e";
}
.checkbox input[type=radio]:checked + label::after,
.checkbox input[type=checkbox]:checked + label::after {
  padding-left: 1px;
  font-size: 1.1rem;
  line-height: 1;
}
.cs--blue .checkbox input[type=radio]:checked + label::before,
.cs--blue .checkbox input[type=checkbox]:checked + label::before {
  background-color: #fff;
}
.cs--blue .checkbox input[type=radio]:checked + label::before,
.cs--blue .checkbox input[type=checkbox]:checked + label::before {
  border-color: #005ba9;
}
.cs--blue .checkbox input[type=radio]:checked + label::after,
.cs--blue .checkbox input[type=checkbox]:checked + label::after {
  color: #005ba9;
}
.cs--blue .checkbox:hover label::before {
  background-color: rgb(229.5, 231.9, 233);
}
.cs--blue .checkbox:hover input[type=checkbox]:checked + label::before {
  background-color: rgb(229.5, 231.9, 233);
}
.cs--blue .checkbox:hover input[type=checkbox]:checked + label::before {
  border-color: #005ba9;
}
.cs--blue .checkbox:hover input[type=checkbox]:checked + label::before {
  color: #001823;
}
.cs--blue .checkbox:focus + label,
.cs--blue .checkbox input[type=checkbox]:focus + label {
  outline-color: #001823;
}
.checkbox:focus + label,
.checkbox input[type=checkbox]:focus + label {
  outline: 2px solid;
  outline-offset: 2px;
}
.cs--blue textarea {
  border-color: rgb(102, 116.4, 123);
}
.cs--blue textarea {
  background: #fff;
}
.cs--blue textarea {
  color: #001823;
}
.cs--blue textarea:focus {
  border-color: #001823;
}
.cs--blue textarea:focus {
  background: #fff;
}
textarea:focus {
  border: 1px solid;
}
textarea:disabled {
  padding-right: 50px;
  border: 0;
  background: rgb(229.5, 231.9, 233) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='rgb(102, 116.4, 123)' fill-rule='evenodd' d='M23.5 12.551c2.514.256 4.5 2.37 4.5 4.949v8c0 2.75-2.25 5-5 5H9c-2.75 0-5-2.25-5-5v-8c0-2.579 1.986-4.693 4.5-4.949V9.5C8.5 5.364 11.864 2 16 2s7.5 3.364 7.5 7.5v3.051zM25 25.5v-8c0-1.084-.916-2-2-2H9c-1.084 0-2 .916-2 2v8c0 1.084.916 2 2 2h14c1.084 0 2-.916 2-2zM16 5a4.505 4.505 0 0 0-4.5 4.5v3h9v-3C20.5 7.019 18.481 5 16 5zm0 13a1.5 1.5 0 0 1 1.5 1.5v4a1.5 1.5 0 1 1-3 0v-4A1.5 1.5 0 0 1 16 18z'/%3E %3C/svg%3E");
  cursor: not-allowed;
}
textarea.success {
  padding-right: 50px;
  border: 1px solid #2c8726;
  background: rgb(226.75, 247.25, 225.25) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%232c8726' fill-rule='evenodd' d='M15.06 21.06l8-8a1.5 1.5 0 1 0-2.12-2.12L14 17.879l-2.94-2.94a1.5 1.5 0 1 0-2.12 2.122l4 4c.292.293.676.439 1.06.439.383 0 .767-.146 1.06-.44M16 2C8.267 2 2 8.269 2 16c0 7.732 6.268 14 14 14 7.731 0 14-6.268 14-14C30 8.269 23.73 2 16 2m0 3c6.065 0 11 4.935 11 11 0 6.066-4.935 11-11 11-6.066 0-11-4.934-11-11C5 9.935 9.933 5 16 5'/%3E%3C/svg%3E");
}
textarea.success:focus {
  border-color: #2c8726;
  background: rgb(226.75, 247.25, 225.25) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%232c8726' fill-rule='evenodd' d='M15.06 21.06l8-8a1.5 1.5 0 1 0-2.12-2.12L14 17.879l-2.94-2.94a1.5 1.5 0 1 0-2.12 2.122l4 4c.292.293.676.439 1.06.439.383 0 .767-.146 1.06-.44M16 2C8.267 2 2 8.269 2 16c0 7.732 6.268 14 14 14 7.731 0 14-6.268 14-14C30 8.269 23.73 2 16 2m0 3c6.065 0 11 4.935 11 11 0 6.066-4.935 11-11 11-6.066 0-11-4.934-11-11C5 9.935 9.933 5 16 5'/%3E%3C/svg%3E");
}
textarea.error {
  padding-right: 50px;
  border: 1px solid #ea0d33;
  background: rgb(253.74, 240.48, 242.76) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%23ea0d33' fill-rule='evenodd' d='M18 22a2 2 0 1 1-4.001-.001A2 2 0 0 1 18 22m-3.5-4.5v-9a1.5 1.5 0 1 1 3 0v9a1.5 1.5 0 1 1-3 0M16 27C9.935 27 5 22.065 5 16S9.935 5 16 5s11 4.935 11 11-4.935 11-11 11m0-25C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2'/%3E %3C/svg%3E");
}
textarea.error:focus {
  border-color: #ea0d33;
  background: rgb(253.74, 240.48, 242.76) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%23ea0d33' fill-rule='evenodd' d='M18 22a2 2 0 1 1-4.001-.001A2 2 0 0 1 18 22m-3.5-4.5v-9a1.5 1.5 0 1 1 3 0v9a1.5 1.5 0 1 1-3 0M16 27C9.935 27 5 22.065 5 16S9.935 5 16 5s11 4.935 11 11-4.935 11-11 11m0-25C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2'/%3E %3C/svg%3E");
}
.cs--blue textarea::-webkit-input-placeholder {
  color: #001823;
}
textarea::-webkit-input-placeholder {
  font-weight: normal;
}
.cs--blue textarea:-moz-placeholder {
  color: #001823;
}
textarea:-moz-placeholder {
  font-weight: normal;
}
.cs--blue textarea::-moz-placeholder {
  color: #001823;
}
textarea::-moz-placeholder {
  font-weight: normal;
}
.cs--blue textarea:-ms-input-placeholder {
  color: #001823;
}
textarea:-ms-input-placeholder {
  font-weight: normal;
}
.cs--blue textarea::placeholder {
  color: #001823;
}
textarea::placeholder {
  font-weight: normal;
}
textarea {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid;
  font-family: "Fira Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  appearance: none;
  height: auto;
  min-height: 7.2rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  resize: none;
}
textarea::placeholder {
  font-style: initial;
}
.cs--blue .label {
  background-color: #fff;
}
.label {
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #001823;
  text-decoration: none;
}
.cs--blue .label.success {
  color: #2c8726;
}
.cs--blue .label.success {
  border-color: #2c8726;
}
.cs--blue .label.success {
  background-color: #e1fde1;
}
.cs--blue .label.warning {
  color: #e06c00;
}
.cs--blue .label.warning {
  border-color: #e06c00;
}
.cs--blue .label.warning {
  background-color: #fff2e5;
}
.cs--blue .label.error {
  color: #ea0d33;
}
.cs--blue .label.error {
  border-color: #ea0d33;
}
.cs--blue .label.error {
  background-color: #ffe8ec;
}
.label i {
  display: flex;
  margin-right: 5px;
  font-size: 0.8rem;
}
.label i::before {
  font-size: 0.8rem;
}
.cs--blue a {
  color: #005ba9;
}
.cs--blue a {
  border-color: #005ba9;
}
a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue a {
  background-image:
    linear-gradient(
      to bottom,
      #ccdeee 0,
      #ccdeee 100%);
}
a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
a:hover,
a:focus {
  background-size: 100% 100%;
}
a {
  font-weight: 600;
  position: relative;
  text-decoration: none;
  word-wrap: break-word;
  word-break: break-word;
}
a::before,
a::after {
  display: inline;
  margin-left: 5px;
  transition: margin 0.1s ease-in;
  border: 0;
  font-size: 1.3em;
  line-height: 1.4em;
  vertical-align: middle;
}
a.button,
a.tag {
  font-size: 0.8rem;
  line-height: 175%;
  font-weight: 600;
  padding: 8px 15px;
  font-family: "Fira Sans", sans-serif;
  text-align: center;
  cursor: pointer;
}
[class*=cs--] a.button:disabled,
[class*=cs--] a.tag:disabled {
  border: 0;
  background-color: rgb(229.5, 231.9, 233);
  background-image: none;
  color: rgb(102, 116.4, 123);
}
[class*=cs--] a.button:disabled:hover,
[class*=cs--] a.tag:disabled:hover {
  background-color: rgb(229.5, 231.9, 233);
  color: rgb(102, 116.4, 123);
  cursor: not-allowed;
}
a.button.button-small,
a.tag.button-small {
  font-size: 0.8rem;
  padding: 4px 10px;
  line-height: 175%;
}
a.button.button-medium,
a.tag.button-medium {
  font-size: 0.8rem;
  line-height: 175%;
}
a.button.button-large,
a.tag.button-large {
  font-size: 0.9rem;
  padding: 10px 20px;
  line-height: 177.778%;
}
a.button.button-large::before,
a.tag.button-large::before {
  font-size: 1.5rem;
}
a.button.button-extra-large,
a.tag.button-extra-large {
  font-size: 0.9rem;
  padding: 25px 26px;
  line-height: 177.778%;
}
a.button.button-extra-large::before,
a.tag.button-extra-large::before {
  font-size: 1.5rem;
}
a.button.button-block,
a.tag.button-block {
  display: inline-block;
  width: 100%;
}
a.button[class*=icon-],
a.tag[class*=icon-] {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button[class*=icon-],
  a.tag[class*=icon-] {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button[class*=icon-]::before,
a.tag[class*=icon-]::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button[class*=icon-].icon-left::before,
a.tag[class*=icon-].icon-left::before {
  order: unset;
  margin-right: 8px;
  margin-left: 0;
  float: left;
}
a.button,
a.tag {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button,
  a.tag {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button::before,
a.tag::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button,
a.tag {
  align-items: flex-start;
  padding-top: 0.6em;
  border-bottom: 0;
  background-image: inherit;
}
a.button:not([class*=icon]),
a.tag:not([class*=icon]) {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button:not([class*=icon]),
  a.tag:not([class*=icon]) {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button:not([class*=icon])::before,
a.tag:not([class*=icon])::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button:not([class*=icon]):after,
a.tag:not([class*=icon]):after {
  content: "\e005";
}
a.button[href^="mailto:"]:not(.no-icon),
a.tag[href^="mailto:"]:not(.no-icon) {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button[href^="mailto:"]:not(.no-icon),
  a.tag[href^="mailto:"]:not(.no-icon) {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button[href^="mailto:"]:not(.no-icon)::before,
a.tag[href^="mailto:"]:not(.no-icon)::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button[href^="mailto:"]:not(.no-icon):after,
a.tag[href^="mailto:"]:not(.no-icon):after {
  content: "\e01f";
}
a.button[href^="tel:"]:not(.no-icon),
a.tag[href^="tel:"]:not(.no-icon) {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button[href^="tel:"]:not(.no-icon),
  a.tag[href^="tel:"]:not(.no-icon) {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button[href^="tel:"]:not(.no-icon)::before,
a.tag[href^="tel:"]:not(.no-icon)::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button[href^="tel:"]:not(.no-icon):after,
a.tag[href^="tel:"]:not(.no-icon):after {
  content: "\e04e";
}
a.button[download]:not(.no-icon):not(.tag),
a.button[download][href^="http://"]:not([href*="gent.be"]),
a.button[download][href^="https://"]:not([href*="gent.be"]),
a.tag[download]:not(.no-icon):not(.tag),
a.tag[download][href^="http://"]:not([href*="gent.be"]),
a.tag[download][href^="https://"]:not([href*="gent.be"]) {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button[download]:not(.no-icon):not(.tag),
  a.button[download][href^="http://"]:not([href*="gent.be"]),
  a.button[download][href^="https://"]:not([href*="gent.be"]),
  a.tag[download]:not(.no-icon):not(.tag),
  a.tag[download][href^="http://"]:not([href*="gent.be"]),
  a.tag[download][href^="https://"]:not([href*="gent.be"]) {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button[download]:not(.no-icon):not(.tag)::before,
a.button[download][href^="http://"]:not([href*="gent.be"])::before,
a.button[download][href^="https://"]:not([href*="gent.be"])::before,
a.tag[download]:not(.no-icon):not(.tag)::before,
a.tag[download][href^="http://"]:not([href*="gent.be"])::before,
a.tag[download][href^="https://"]:not([href*="gent.be"])::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button[download]:not(.no-icon):not(.tag):after,
a.button[download][href^="http://"]:not([href*="gent.be"]):after,
a.button[download][href^="https://"]:not([href*="gent.be"]):after,
a.tag[download]:not(.no-icon):not(.tag):after,
a.tag[download][href^="http://"]:not([href*="gent.be"]):after,
a.tag[download][href^="https://"]:not([href*="gent.be"]):after {
  content: "\e01d";
}
a.button[download]:not(.no-icon):not(.tag),
a.button[download][href^="http://"]:not([href*="gent.be"]),
a.button[download][href^="https://"]:not([href*="gent.be"]),
a.tag[download]:not(.no-icon):not(.tag),
a.tag[download][href^="http://"]:not([href*="gent.be"]),
a.tag[download][href^="https://"]:not([href*="gent.be"]) {
  margin-right: 0;
}
a.button::after,
a.tag::after {
  margin-left: 8px;
}
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="http://"]:not([href*="gent.be"]),
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="https://"]:not([href*="gent.be"]) {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="http://"]:not([href*="gent.be"]),
  a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="https://"]:not([href*="gent.be"]) {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="http://"]:not([href*="gent.be"])::before,
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="https://"]:not([href*="gent.be"])::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="http://"]:not([href*="gent.be"]):after,
a.button:not(.no-icon):not([class^=icon-]):not([download])[href^="https://"]:not([href*="gent.be"]):after {
  content: "\e004";
}
a.standalone-link:not(.no-icon) {
  margin-left: 0;
  padding-left: 0;
}
.cs--blue a.standalone-link:not(.no-icon):focus,
.cs--blue a.standalone-link:not(.no-icon):hover {
  color: #005ba9;
}
a.standalone-link:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh):after,
a.standalone-link[href*="gent.be"]:after {
  content: "\e005";
}
a[download]:not(.no-icon):after {
  content: "\e01d";
}
a[href^="mailto:"]:not(.no-icon):after {
  content: "\e01f";
}
a[href^="tel:"]:not(.no-icon):after {
  content: "\e04e";
}
a[href^="http://"]:not(.no-icon):not(.tag):not([href*="gent.be"]):after,
a[href^="https://"]:not(.no-icon):not(.tag):not([href*="gent.be"]):after {
  content: "\e004";
}
a[href^="http://"]:not(.no-icon):not(.tag):not([href*="gent.be"])[download]:not(.button):not(.no-icon):after,
a[href^="https://"]:not(.no-icon):not(.tag):not([href*="gent.be"])[download]:not(.button):not(.no-icon):after {
  content: "\e01d";
}
a.refresh:not(.no-icon),
a.back:not(.no-icon) {
  margin-left: 32px;
  padding-left: 0;
}
a.refresh:not(.no-icon)::after,
a.back:not(.no-icon)::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -44px;
  height: 24px;
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 4px;
  padding-left: 8px;
}
a.back:not(.no-icon):after {
  content: "\e003";
}
a.refresh:not(.no-icon):after {
  content: "\e056";
}
.dark-background a {
  border-bottom: 0;
}
.dark-background a,
.dark-background a:focus,
.dark-background a:hover {
  background-image: none;
}
.cs--blue .dark-background a {
  border-color: #fff;
}
.dark-background a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .dark-background a {
  background-image:
    linear-gradient(
      to bottom,
      #fff 0,
      #fff 100%);
}
.dark-background a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.dark-background a:hover,
.dark-background a:focus {
  background-size: 100% 100%;
}
.cs--blue .dark-background a {
  color: #fff;
}
.cs--blue .dark-background a:hover,
.cs--blue .dark-background a:focus {
  color: #005ba9;
}
.theme-footer a.button[href^="http://"]:not(.no-icon):not([href*="gent.be"])::after,
.theme-footer a.button[href^="https://"]:not(.no-icon):not([href*="gent.be"])::after,
.theme-footer a[href^="http://"].standalone-link:not([href*="gent.be"]):not(.no-icon)::after,
.theme-footer a[href^="https://"].standalone-link:not([href*="gent.be"]):not(.no-icon)::after,
a.standalone-link:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::after,
a.button:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::after,
a.standalone-link[href*="gent.be"]::after,
a.button[href*="gent.be"]::after,
.theme-footer a.button[href^="http://"]:not(.no-icon):not([href*="gent.be"])::before,
.theme-footer a.button[href^="https://"]:not(.no-icon):not([href*="gent.be"])::before,
.theme-footer a[href^="http://"].standalone-link:not([href*="gent.be"]):not(.no-icon)::before,
.theme-footer a[href^="https://"].standalone-link:not([href*="gent.be"]):not(.no-icon)::before,
a.standalone-link:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::before,
a.button:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::before,
a.standalone-link[href*="gent.be"]::before,
a.button[href*="gent.be"]::before {
  padding-right: 4px;
  animation: arrow-reverse 0.5s 1;
  animation-fill-mode: revert;
}
.theme-footer a.button[href^="http://"]:focus:not(.no-icon):not([href*="gent.be"])::after,
.theme-footer a.button[href^="https://"]:focus:not(.no-icon):not([href*="gent.be"])::after,
.theme-footer a[href^="http://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::after,
.theme-footer a[href^="https://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::after,
a.standalone-link:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::after,
a.button:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::after,
a.standalone-link[href*="gent.be"]:focus::after,
a.button[href*="gent.be"]:focus::after,
.theme-footer a.button[href^="http://"]:focus:not(.no-icon):not([href*="gent.be"])::before,
.theme-footer a.button[href^="https://"]:focus:not(.no-icon):not([href*="gent.be"])::before,
.theme-footer a[href^="http://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::before,
.theme-footer a[href^="https://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::before,
a.standalone-link:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::before,
a.button:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::before,
a.standalone-link[href*="gent.be"]:focus::before,
a.button[href*="gent.be"]:focus::before,
.theme-footer a.button[href^="http://"]:hover:not(.no-icon):not([href*="gent.be"])::after,
.theme-footer a.button[href^="https://"]:hover:not(.no-icon):not([href*="gent.be"])::after,
.theme-footer a[href^="http://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::after,
.theme-footer a[href^="https://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::after,
a.standalone-link:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::after,
a.button:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::after,
a.standalone-link[href*="gent.be"]:hover::after,
a.button[href*="gent.be"]:hover::after,
.theme-footer a.button[href^="http://"]:hover:not(.no-icon):not([href*="gent.be"])::before,
.theme-footer a.button[href^="https://"]:hover:not(.no-icon):not([href*="gent.be"])::before,
.theme-footer a[href^="http://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::before,
.theme-footer a[href^="https://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::before,
a.standalone-link:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::before,
a.button:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::before,
a.standalone-link[href*="gent.be"]:hover::before,
a.button[href*="gent.be"]:hover::before {
  animation: arrow 0.5s 1;
  animation-fill-mode: forwards;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-footer a.button[href^="http://"]:focus:not(.no-icon):not([href*="gent.be"])::after,
  .theme-footer a.button[href^="https://"]:focus:not(.no-icon):not([href*="gent.be"])::after,
  .theme-footer a[href^="http://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::after,
  .theme-footer a[href^="https://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::after,
  a.standalone-link:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::after,
  a.button:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::after,
  a.standalone-link[href*="gent.be"]:focus::after,
  a.button[href*="gent.be"]:focus::after,
  .theme-footer a.button[href^="http://"]:focus:not(.no-icon):not([href*="gent.be"])::before,
  .theme-footer a.button[href^="https://"]:focus:not(.no-icon):not([href*="gent.be"])::before,
  .theme-footer a[href^="http://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::before,
  .theme-footer a[href^="https://"].standalone-link:focus:not([href*="gent.be"]):not(.no-icon)::before,
  a.standalone-link:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::before,
  a.button:focus:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::before,
  a.standalone-link[href*="gent.be"]:focus::before,
  a.button[href*="gent.be"]:focus::before,
  .theme-footer a.button[href^="http://"]:hover:not(.no-icon):not([href*="gent.be"])::after,
  .theme-footer a.button[href^="https://"]:hover:not(.no-icon):not([href*="gent.be"])::after,
  .theme-footer a[href^="http://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::after,
  .theme-footer a[href^="https://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::after,
  a.standalone-link:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::after,
  a.button:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::after,
  a.standalone-link[href*="gent.be"]:hover::after,
  a.button[href*="gent.be"]:hover::after,
  .theme-footer a.button[href^="http://"]:hover:not(.no-icon):not([href*="gent.be"])::before,
  .theme-footer a.button[href^="https://"]:hover:not(.no-icon):not([href*="gent.be"])::before,
  .theme-footer a[href^="http://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::before,
  .theme-footer a[href^="https://"].standalone-link:hover:not([href*="gent.be"]):not(.no-icon)::before,
  a.standalone-link:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([href*="gent.be"]):not(.back):not(.refresh)::before,
  a.button:hover:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not([class*=icon-])::before,
  a.standalone-link[href*="gent.be"]:hover::before,
  a.button[href*="gent.be"]:hover::before {
    animation: none;
  }
}
@keyframes arrow {
  0% {
    padding-right: 4px;
    padding-left: 0;
  }
  100% {
    padding-right: 0;
    padding-left: 4px;
  }
}
@keyframes arrow-reverse {
  0% {
    padding-right: 0;
    padding-left: 4px;
  }
  100% {
    padding-right: 4px;
    padding-left: 0;
  }
}
a.refresh:not(.no-icon)::after,
a.back:not(.no-icon)::after,
a.refresh:not(.no-icon)::before,
a.back:not(.no-icon)::before {
  animation: arrow-left-reverse 0.5s 1;
  animation-fill-mode: reverse;
}
a.refresh:focus:not(.no-icon)::after,
a.back:focus:not(.no-icon)::after,
a.refresh:focus:not(.no-icon)::before,
a.back:focus:not(.no-icon)::before,
a.refresh:hover:not(.no-icon)::after,
a.back:hover:not(.no-icon)::after,
a.refresh:hover:not(.no-icon)::before,
a.back:hover:not(.no-icon)::before {
  animation: arrow-left 0.5s 1;
  animation-fill-mode: forwards;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.refresh:focus:not(.no-icon)::after,
  a.back:focus:not(.no-icon)::after,
  a.refresh:focus:not(.no-icon)::before,
  a.back:focus:not(.no-icon)::before,
  a.refresh:hover:not(.no-icon)::after,
  a.back:hover:not(.no-icon)::after,
  a.refresh:hover:not(.no-icon)::before,
  a.back:hover:not(.no-icon)::before {
    animation: none;
  }
}
@keyframes arrow-left {
  0% {
    padding-right: 4px;
    padding-left: 8px;
  }
  100% {
    padding-right: 8px;
    padding-left: 4px;
  }
}
@keyframes arrow-left-reverse {
  0% {
    padding-right: 8px;
    padding-left: 4px;
  }
  100% {
    padding-right: 4px;
    padding-left: 8px;
  }
}
.theme-footer a[href^="http://"]:not([href*="gent.be"]):not([download]):not(.standalone-link),
.theme-footer a[href^="https://"]:not([href*="gent.be"]):not([download]):not(.standalone-link) {
  margin-right: 0;
}
.theme-footer a[href^="http://"]:not([href*="gent.be"]):not([download]):not(.standalone-link)::after,
.theme-footer a[href^="https://"]:not([href*="gent.be"]):not([download]):not(.standalone-link)::after {
  content: none;
}
.theme-footer a[href^="http://"]:not([href*="gent.be"])[download]:after,
.theme-footer a[href^="https://"]:not([href*="gent.be"])[download]:after {
  content: "\e01d";
}
.theme-footer a[href^="http://"]:not([href*="gent.be"]).standalone-link:not(.no-icon):after,
.theme-footer a[href^="https://"]:not([href*="gent.be"]).standalone-link:not(.no-icon):after {
  content: "\e005";
}
.theme-footer a.button[href^="http://"]:not(.no-icon):not([href*="gent.be"]):before,
.theme-footer a.button[href^="https://"]:not(.no-icon):not([href*="gent.be"]):before {
  content: "\e005";
}
.theme-footer a.button[href^="http://"]:not(.no-icon):not([href*="gent.be"])::after,
.theme-footer a.button[href^="https://"]:not(.no-icon):not([href*="gent.be"])::after {
  content: none;
}
ul,
ol {
  font-size: 0.9rem;
  position: relative;
}
ul ul,
ol ul {
  margin-left: 40px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 5px;
}
ul > li,
ol > li {
  margin: 0 0 10px;
}
ul > li:last-child,
ol > li:last-child {
  margin-right: 0;
}
ul a,
ol a {
  font-weight: 400;
}
ul a.standalone-link,
ol a.standalone-link {
  font-weight: 600;
}
ul.inline,
ol.inline {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
ul.inline > li,
ol.inline > li {
  width: auto;
  margin-right: 30px;
  margin-bottom: 0;
}
ul.no-style,
ol.no-style {
  max-width: 820px;
  margin: 0;
  list-style: none;
}
ul strong > a,
ol strong > a {
  font-weight: 600;
}
ul.comma-separated-list,
ol.comma-separated-list {
  margin: 0;
  padding: 0;
}
ul.comma-separated-list > li,
ol.comma-separated-list > li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
ul.comma-separated-list > li:not(:last-of-type)::after,
ol.comma-separated-list > li:not(:last-of-type)::after {
  display: inline;
  padding: 0 4px 0 0;
  content: ",";
}
ul.comma-separated-list div,
ol.comma-separated-list div {
  display: inline;
}
ul {
  margin-left: 20px;
  list-style-type: square;
}
ul.checkmark-list {
  margin-left: 0;
}
ul.checkmark-list > li:before {
  content: "\e010";
}
ul.checkmark-list > li {
  position: relative;
  padding-left: 32px;
}
ul.checkmark-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -4px;
  font-size: 1.6rem;
  line-height: 110%;
}
ul.icon-list {
  font-size: 0.9rem;
  margin: 0 0 40px;
  list-style-type: none;
}
ul.icon-list.inline > li {
  align-items: center;
  margin-right: 13px;
  margin-bottom: 0;
}
ul.icon-list > li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 29px;
  line-height: 1.5;
}
ul.icon-list > li:last-child {
  margin-bottom: 0;
}
ul.icon-list > li ul {
  margin: 0;
}
ul.icon-list > li ul > li {
  margin-bottom: 4px;
}
ul.icon-list > li a {
  padding: 0;
  line-height: inherit;
}
ul.icon-list > li a[href^="mailto:"]:not(.button)::after,
ul.icon-list > li a[href^="tel:"]:not(.button)::after,
ul.icon-list > li a[download]:not(.button)::after,
ul.icon-list > li a[href^="http://"]:not(.button):not([href*="gent.be"])::after,
ul.icon-list > li a[href^="https://"]:not(.button):not([href*="gent.be"])::after {
  display: none;
}
ul.icon-list > li i {
  display: block;
  position: absolute;
  left: 0;
  line-height: 1;
}
ul.dash-separated-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
ul.dash-separated-list > li:not(:last-of-type)::after {
  display: inline-block;
  padding: 0 0.2em;
  content: "\2014";
}
ul.label-list {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
  list-style: none;
}
.cs--blue ul.label-list > li {
  background-color: #fff;
}
ul.label-list > li:before {
  content: "\e065";
}
ul.label-list > li {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px;
  padding: 10px 16px;
  border: 1px solid #001823;
  font-size: 0.7rem;
  line-height: 0.7;
  text-decoration: none;
}
.cs--blue ul.label-list > li.success {
  color: #2c8726;
}
.cs--blue ul.label-list > li.success {
  border-color: #2c8726;
}
.cs--blue ul.label-list > li.success {
  background-color: rgb(226.75, 247.25, 225.25);
}
.cs--blue ul.label-list > li.warning {
  color: #e06c00;
}
.cs--blue ul.label-list > li.warning {
  border-color: #e06c00;
}
.cs--blue ul.label-list > li.warning {
  background-color: rgb(251.9, 240.3, 229.5);
}
.cs--blue ul.label-list > li.error {
  color: #ea0d33;
}
.cs--blue ul.label-list > li.error {
  border-color: #ea0d33;
}
.cs--blue ul.label-list > li.error {
  background-color: rgb(252.9, 230.8, 234.6);
}
ul.label-list > li::before {
  margin-right: 6px;
  font-size: 1rem;
}
ol {
  list-style: none;
  counter-reset: item;
}
ol > li {
  position: relative;
  padding-left: 40px;
  counter-increment: item;
}
.cs--blue ol > li::before {
  background-color: #7ed9ff;
}
ol > li::before {
  font-weight: 600;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-left: -40px;
  font-size: 0.9rem;
  line-height: 177.778%;
  text-align: center;
  content: counter(item);
}
ol[start="1"] {
  counter-reset: item 0;
}
ol[start="2"] {
  counter-reset: item 1;
}
ol[start="3"] {
  counter-reset: item 2;
}
ol[start="4"] {
  counter-reset: item 3;
}
ol[start="5"] {
  counter-reset: item 4;
}
ol[start="6"] {
  counter-reset: item 5;
}
ol[start="7"] {
  counter-reset: item 6;
}
ol[start="8"] {
  counter-reset: item 7;
}
ol[start="9"] {
  counter-reset: item 8;
}
ol[start="10"] {
  counter-reset: item 9;
}
ol[start="11"] {
  counter-reset: item 10;
}
ol[start="12"] {
  counter-reset: item 11;
}
ol[start="13"] {
  counter-reset: item 12;
}
ol[start="14"] {
  counter-reset: item 13;
}
ol[start="15"] {
  counter-reset: item 14;
}
ol[start="16"] {
  counter-reset: item 15;
}
ol[start="17"] {
  counter-reset: item 16;
}
ol[start="18"] {
  counter-reset: item 17;
}
ol[start="19"] {
  counter-reset: item 18;
}
ol[start="20"] {
  counter-reset: item 19;
}
dl dt,
dl dd {
  font-family: "Fira Sans", sans-serif;
  line-height: 1.8;
}
dl dt {
  font-weight: 600;
}
dl dd {
  margin-bottom: 8px;
}
.resolutions-list__items,
.filter .result-section ul.filter__results,
.openinghours-widget[data-type=month] .openinghours--day,
.openinghours-widget[data-type*=week] .openinghours--days,
.modal.menu .modal-content .menu-links ul,
nav.menu ul,
div.table-list ul,
ul.links,
ol.links,
ul.inline,
ol.inline,
ul.comma-separated-list,
ol.comma-separated-list,
ul.checkmark-list,
ul.dash-separated-list {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.resolutions-list__items a,
.filter .result-section ul.filter__results a,
.openinghours-widget[data-type=month] .openinghours--day a,
.openinghours-widget[data-type*=week] .openinghours--days a,
.modal.menu .modal-content .menu-links ul a,
nav.menu ul a,
div.table-list ul a,
ul.links a,
ol.links a,
ul.inline a,
ol.inline a,
ul.comma-separated-list a,
ol.comma-separated-list a,
ul.checkmark-list a,
ul.dash-separated-list a {
  font-weight: 600;
}
a.site-logo {
  border-bottom: 0;
}
a.site-logo,
a.site-logo:focus,
a.site-logo:hover {
  background-image: none;
}
.cs--blue a.site-logo {
  color: #001823;
}
a.site-logo {
  display: inline-flex;
  align-items: center;
  font-size: 0;
}
.cs--blue a.site-logo::before {
  background-image: url("./media/logo--blue.svg");
}
a.site-logo::before {
  display: block;
  width: 80px;
  height: 80px;
  background: no-repeat center center;
  background-size: 100%;
  content: "";
  width: 63.3px;
  height: 44px;
  margin-left: 0;
}
.is-frontpage a.site-logo::before {
  width: 63.3px;
  height: 44px;
}
@media (min-width: 960px) {
  .is-frontpage a.site-logo::before {
    width: 92px;
    height: 64px;
  }
}
a.site-logo:hover,
a.site-logo:focus {
  background-color: transparent;
}
@media (min-width: 768px) {
  a.site-logo.subsite {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  a.site-logo.subsite::before {
    margin-right: 14px;
  }
}
.openinghours-widget[data-type=day] {
  display: block;
  margin-bottom: 20px;
  border-radius: 0.2rem;
  overflow: hidden;
}
.openinghours-widget[data-type=day] > * {
  line-height: 1.4rem;
}
.openinghours-widget[data-type=day] .channel-label {
  font-weight: 700;
  float: left;
  font-size: 0;
}
.openinghours-widget[data-type=day] .channel-label::after {
  display: inline-block;
  content: " ";
}
.openinghours-widget[data-type=day] .channel-label:nth-of-type(n+2) {
  padding-left: 38px;
  font-size: 16px;
}
.openinghours-widget[data-type=day] .channel-label:nth-of-type(n+2) + .openinghours {
  padding-top: 0;
}
.openinghours-widget[data-type=day] .channel-label:nth-of-type(n+2) + .openinghours::before {
  display: none;
}
.openinghours-widget[data-type=day] .channel-label:nth-of-type(n+2) + .openinghours .openinghours--date,
.openinghours-widget[data-type=day] .channel-label:nth-of-type(n+2) + .openinghours .openinghours--status {
  display: none;
}
.cs--blue .openinghours-widget[data-type=day] .openinghours {
  background-color: #e1fde1;
}
.openinghours-widget[data-type=day] .openinghours {
  position: relative;
  margin-top: -0.6rem;
  padding: 8px 10px 8px 42px;
}
.openinghours-widget[data-type=day] .openinghours::before {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2rem;
  content: "";
}
.openinghours-widget[data-type=day] .openinghours:first-of-type:before {
  content: "\e016";
}
.openinghours-widget[data-type=day] .openinghours:first-of-type {
  margin-top: 0;
}
.cs--blue .openinghours-widget[data-type=day] .openinghours--day-closed {
  background-color: #ffe8ec;
}
.openinghours-widget[data-type=day] .openinghours + .openinghours--day-closed {
  display: none;
}
.openinghours-widget[data-type=day] .openinghours--date,
.openinghours-widget[data-type=day] .openinghours--content,
.openinghours-widget[data-type=day] .openinghours--times,
.openinghours-widget[data-type=day] .openinghours--times-between,
.openinghours-widget[data-type=day] .openinghours--time {
  display: inline;
}
.openinghours-widget[data-type=day] .openinghours--time:not(.all-day) time:last-of-type::before {
  content: "-";
}
.openinghours-widget[data-type=day] .openinghours--date,
.openinghours-widget[data-type=day] .openinghours--status {
  font-weight: 700;
}
.openinghours-widget[data-type=day] .openinghours--special-day > span {
  display: none;
}
.openinghours-widget[data-type=day] .openinghours--special-day > span:first-child {
  display: inline;
}
.openinghours-widget[data-type=day] .openinghours--time-prefix,
.openinghours-widget[data-type=day] .openinghours--time-separator {
  display: none;
}
p {
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 177.778%;
}
p:first-child {
  margin-top: 0;
}
.cs--blue .dark-background p {
  color: #fff;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
time[pubdate] {
  font-size: 0.7rem;
}
.cs--blue time[pubdate] {
  color: #001823;
}
time[pubdate] {
  line-height: 1.71;
}
h1 + time[pubdate] {
  display: block;
  margin-top: 30px;
}
.cs--blue .dark-background time[pubdate] {
  color: #fff;
}
.cs--blue select {
  border-color: rgb(102, 116.4, 123);
}
.cs--blue select {
  background: #fff;
}
.cs--blue select {
  color: #001823;
}
.cs--blue select:focus {
  border-color: #001823;
}
.cs--blue select:focus {
  background: #fff;
}
select:focus {
  border: 1px solid;
}
select:disabled {
  padding-right: 50px;
  border: 0;
  background: rgb(229.5, 231.9, 233) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='rgb(102, 116.4, 123)' fill-rule='evenodd' d='M23.5 12.551c2.514.256 4.5 2.37 4.5 4.949v8c0 2.75-2.25 5-5 5H9c-2.75 0-5-2.25-5-5v-8c0-2.579 1.986-4.693 4.5-4.949V9.5C8.5 5.364 11.864 2 16 2s7.5 3.364 7.5 7.5v3.051zM25 25.5v-8c0-1.084-.916-2-2-2H9c-1.084 0-2 .916-2 2v8c0 1.084.916 2 2 2h14c1.084 0 2-.916 2-2zM16 5a4.505 4.505 0 0 0-4.5 4.5v3h9v-3C20.5 7.019 18.481 5 16 5zm0 13a1.5 1.5 0 0 1 1.5 1.5v4a1.5 1.5 0 1 1-3 0v-4A1.5 1.5 0 0 1 16 18z'/%3E %3C/svg%3E");
  cursor: not-allowed;
}
select.success {
  padding-right: 50px;
  border: 1px solid #2c8726;
  background: rgb(226.75, 247.25, 225.25) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%232c8726' fill-rule='evenodd' d='M15.06 21.06l8-8a1.5 1.5 0 1 0-2.12-2.12L14 17.879l-2.94-2.94a1.5 1.5 0 1 0-2.12 2.122l4 4c.292.293.676.439 1.06.439.383 0 .767-.146 1.06-.44M16 2C8.267 2 2 8.269 2 16c0 7.732 6.268 14 14 14 7.731 0 14-6.268 14-14C30 8.269 23.73 2 16 2m0 3c6.065 0 11 4.935 11 11 0 6.066-4.935 11-11 11-6.066 0-11-4.934-11-11C5 9.935 9.933 5 16 5'/%3E%3C/svg%3E");
}
select.success:focus {
  border-color: #2c8726;
  background: rgb(226.75, 247.25, 225.25) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%232c8726' fill-rule='evenodd' d='M15.06 21.06l8-8a1.5 1.5 0 1 0-2.12-2.12L14 17.879l-2.94-2.94a1.5 1.5 0 1 0-2.12 2.122l4 4c.292.293.676.439 1.06.439.383 0 .767-.146 1.06-.44M16 2C8.267 2 2 8.269 2 16c0 7.732 6.268 14 14 14 7.731 0 14-6.268 14-14C30 8.269 23.73 2 16 2m0 3c6.065 0 11 4.935 11 11 0 6.066-4.935 11-11 11-6.066 0-11-4.934-11-11C5 9.935 9.933 5 16 5'/%3E%3C/svg%3E");
}
select.error {
  padding-right: 50px;
  border: 1px solid #ea0d33;
  background: rgb(253.74, 240.48, 242.76) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%23ea0d33' fill-rule='evenodd' d='M18 22a2 2 0 1 1-4.001-.001A2 2 0 0 1 18 22m-3.5-4.5v-9a1.5 1.5 0 1 1 3 0v9a1.5 1.5 0 1 1-3 0M16 27C9.935 27 5 22.065 5 16S9.935 5 16 5s11 4.935 11 11-4.935 11-11 11m0-25C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2'/%3E %3C/svg%3E");
}
select.error:focus {
  border-color: #ea0d33;
  background: rgb(253.74, 240.48, 242.76) no-repeat right 15px top 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 32 32'%3E%3Cpath fill='%23ea0d33' fill-rule='evenodd' d='M18 22a2 2 0 1 1-4.001-.001A2 2 0 0 1 18 22m-3.5-4.5v-9a1.5 1.5 0 1 1 3 0v9a1.5 1.5 0 1 1-3 0M16 27C9.935 27 5 22.065 5 16S9.935 5 16 5s11 4.935 11 11-4.935 11-11 11m0-25C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2'/%3E %3C/svg%3E");
}
.cs--blue select::-webkit-input-placeholder {
  color: #001823;
}
select::-webkit-input-placeholder {
  font-weight: normal;
}
.cs--blue select:-moz-placeholder {
  color: #001823;
}
select:-moz-placeholder {
  font-weight: normal;
}
.cs--blue select::-moz-placeholder {
  color: #001823;
}
select::-moz-placeholder {
  font-weight: normal;
}
.cs--blue select:-ms-input-placeholder {
  color: #001823;
}
select:-ms-input-placeholder {
  font-weight: normal;
}
.cs--blue select::placeholder {
  color: #001823;
}
select::placeholder {
  font-weight: normal;
}
select {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid;
  font-family: "Fira Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  appearance: none;
}
.cs--blue select,
.cs--blue select:focus {
  padding-right: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='%23001823' fill-rule='evenodd' d='M15.7 21.82l-8.26-8.26a1.5 1.5 0 1 1 2.12-2.12l6.14 6.138 6.14-6.139a1.5 1.5 0 1 1 2.121 2.121l-8.26 8.26z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 32 32'%3E%3Crect width='44' height='44' fill='%237ed9ff' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center, right 0 center;
}
.cs--blue select:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='%23001823' fill-rule='evenodd' d='M15.7 21.82l-8.26-8.26a1.5 1.5 0 1 1 2.12-2.12l6.14 6.138 6.14-6.139a1.5 1.5 0 1 1 2.121 2.121l-8.26 8.26z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 32 32'%3E%3Crect width='44' height='44' fill='%231abcff' /%3E%3C/svg%3E");
  cursor: pointer;
}
.cs--blue select:disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 32 32'%3E%3Cpath fill='%23687278' fill-rule='evenodd' d='M23.5 12.551c2.514.256 4.5 2.37 4.5 4.949v8c0 2.75-2.25 5-5 5H9c-2.75 0-5-2.25-5-5v-8c0-2.579 1.986-4.693 4.5-4.949V9.5C8.5 5.364 11.864 2 16 2s7.5 3.364 7.5 7.5v3.051zM25 25.5v-8c0-1.084-.916-2-2-2H9c-1.084 0-2 .916-2 2v8c0 1.084.916 2 2 2h14c1.084 0 2-.916 2-2zM16 5a4.505 4.505 0 0 0-4.5 4.5v3h9v-3C20.5 7.019 18.481 5 16 5zm0 13a1.5 1.5 0 0 1 1.5 1.5v4a1.5 1.5 0 1 1-3 0v-4A1.5 1.5 0 0 1 16 18z'/%3E %3C/svg%3E");
}
select::-ms-expand {
  display: none;
}
.cs--blue select::-ms-value {
  color: #001823;
}
select::-ms-value {
  background: none;
}
a.skiplink {
  border-bottom: 0;
}
a.skiplink,
a.skiplink:focus,
a.skiplink:hover {
  background-image: none;
}
a.skiplink {
  position: absolute;
  bottom: 100%;
  left: 0;
  padding: 0.5rem 2rem;
  background-color: #fff;
  z-index: 5;
}
a.skiplink:focus {
  top: 0;
  bottom: auto;
  background-color: #fff;
}
.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs--blue .spinner div {
  background-image: url("./media/spinner--blue.svg");
}
.spinner div {
  display: block;
  width: 3rem;
  height: 3rem;
  background: no-repeat center center;
  background-size: 100%;
  content: "";
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  animation: spin 2s cubic-bezier(0.75, 0.25, 0.25, 0.75) infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.status--warning::before {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  content: "";
  vertical-align: middle;
}
.status--warning::before {
  background-color: #ffdb5a;
}
.status--success::before {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  content: "";
  vertical-align: middle;
}
.status--success::before {
  background-color: #2c8726;
}
.status--error::before {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  content: "";
  vertical-align: middle;
}
.status--error::before {
  background-color: #ea0d33;
}
div.responsive-table,
div.table-list {
  position: relative;
  padding-bottom: 1.4rem;
}
.cs--blue div.responsive-table .list-description,
.cs--blue div.responsive-table caption,
.cs--blue div.table-list .list-description,
.cs--blue div.table-list caption {
  color: #687278;
}
div.responsive-table .list-description,
div.responsive-table caption,
div.table-list .list-description,
div.table-list caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0.4rem 0;
  font-size: 0.6rem;
  text-align: right;
}
.cs--blue div.responsive-table:focus {
  outline-color: #001823;
}
div.responsive-table:focus {
  outline: 2px solid;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  div.responsive-table {
    display: block;
    max-width: 100%;
  }
}
div.responsive-table {
  display: none;
}
div.responsive-table .table-wrapper {
  overflow-x: auto;
}
div.responsive-table table {
  border-bottom: 1px solid rgb(229.5, 231.9, 233);
  border-collapse: collapse;
  caption-side: bottom;
}
div.responsive-table table th {
  font-weight: 600;
  font-size: 0.9rem;
}
div.responsive-table table td {
  font-size: 0.8rem;
}
.cs--blue div.responsive-table table td:nth-of-type(n).success {
  border-color: rgb(202.25, 225, 200.75);
  background-color: rgb(202.25, 225, 200.75);
}
.cs--blue div.responsive-table table td:nth-of-type(n).warning {
  border-color: rgb(247.25, 218.25, 191.25);
  background-color: rgb(247.25, 218.25, 191.25);
}
.cs--blue div.responsive-table table td:nth-of-type(n).error {
  border-color: rgb(249.75, 194.5, 204);
  background-color: rgb(249.75, 194.5, 204);
}
.cs--blue div.responsive-table table tr:nth-of-type(even) th:not([scope=col]) th:not([scope=row]),
.cs--blue div.responsive-table table tr:nth-of-type(even) td {
  background-color: #fff8d4;
}
.cs--blue div.responsive-table table tr:nth-of-type(n).success td {
  border-color: rgb(202.25, 225, 200.75);
  background-color: rgb(202.25, 225, 200.75);
}
.cs--blue div.responsive-table table tr:nth-of-type(n).warning td {
  border-color: rgb(247.25, 218.25, 191.25);
  background-color: rgb(247.25, 218.25, 191.25);
}
.cs--blue div.responsive-table table tr:nth-of-type(n).error td {
  border-color: rgb(249.75, 194.5, 204);
  background-color: rgb(249.75, 194.5, 204);
}
.cs--blue div.responsive-table table tr th {
  background-color: #ffdb5a;
}
[class*=cs--] div.responsive-table table thead ~ tbody tr:nth-of-type(even) th:not([scope=col]),
[class*=cs--] div.responsive-table table thead ~ tbody tr:nth-of-type(even) td {
  background-color: transparent;
}
.cs--blue div.responsive-table table thead ~ tbody tr:nth-of-type(odd) th:not([scope=col]),
.cs--blue div.responsive-table table thead ~ tbody tr:nth-of-type(odd) td {
  background-color: #fff8d4;
}
.cs--blue div.responsive-table table th,
.cs--blue div.responsive-table table td {
  color: #001823;
}
div.responsive-table table th,
div.responsive-table table td {
  padding: 0.8rem;
  text-align: left;
}
@media (min-width: 768px) {
  div.table-list {
    display: none;
  }
}
div.table-list {
  display: block;
}
div.table-list.js-hidden {
  display: none;
}
div.table-list ul li {
  padding: 0.6rem 0.3rem;
  font-size: 0.9rem;
}
.cs--blue div.table-list ul li:nth-child(even) {
  background-color: #ffdb5a;
}
div.table-list dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
@media (min-width: 576px) {
  div.table-list dl > dt {
    flex: 0 30%;
  }
}
div.table-list dl > dt {
  flex: 0 50%;
  line-height: 2.1;
}
div.table-list dl > dt + dd {
  flex: 0 50%;
}
@media (min-width: 576px) {
  div.table-list dl > dt + dd {
    flex: 0 70%;
  }
}
div.table-list dl > dd {
  flex: 0 100%;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 2.4;
}
.cs--blue .tag {
  background-color: #ffdb5a;
}
.tag {
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  line-height: 1.1;
  text-decoration: none;
}
.cs--blue .tag.filter {
  background-color: #7ed9ff;
}
.tag.filter {
  padding-top: 3px;
  padding-bottom: 3px;
}
.cs--blue .tag.filter:hover button {
  background-color: #e6e8ea;
}
.tag.filter button {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  padding: 0;
  transition: background-color 0.2s ease-in-out;
  border: 0;
  border-radius: 100%;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 32 32'%3E%3Cpath fill='%23001823' fill-rule='evenodd' d='M18.121 16l6.44-6.439a1.5 1.5 0 0 0-2.122-2.122L16 13.879l-6.44-6.44a1.501 1.501 0 0 0-2.12 2.122L13.88 16l-6.44 6.439a1.5 1.5 0 0 0 2.12 2.122l6.44-6.44 6.44 6.44c.292.293.676.439 1.06.439s.767-.146 1.06-.439a1.5 1.5 0 0 0 0-2.122L18.121 16z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.cs--blue a.tag {
  color: #001823;
}
a.tag {
  font-weight: 400;
  padding: 8px 15px;
  border: 0;
}
a.tag:not([class*=icon])::before {
  margin-left: 5px;
}
.cs--blue a.tag:hover {
  background-color: rgb(255, 228, 131.25);
}
a.tag::after {
  margin-left: 5px;
}
span.tag {
  font-size: 0.7rem;
  height: 30px;
  padding-right: 10px;
  padding-left: 10px;
}
a.button.button-alert,
a.tag.button-alert,
.button-alert {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button.button-alert,
  a.tag.button-alert,
  .button-alert {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button.button-alert::before,
a.tag.button-alert::before,
.button-alert::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
.cs--blue a.button.button-alert,
.cs--blue a.tag.button-alert,
.cs--blue .button-alert {
  background-image:
    linear-gradient(
      0,
      #b00a26,
      #b00a26);
}
a.button.button-alert,
a.tag.button-alert,
.button-alert {
  border: 0;
  background-color: #d30c2e;
  color: #fff;
}
a.button.button-alert:not([class*=icon-]):before,
a.tag.button-alert:not([class*=icon-]):before,
.button-alert:not([class*=icon-]):before {
  content: "\e03a";
}
a.button-block.button.button-alert,
a.button-block.tag.button-alert,
.button-alert.button-block {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button-block.button.button-alert,
  a.button-block.tag.button-alert,
  .button-alert.button-block {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button-block.button.button-alert::before,
a.button-block.tag.button-alert::before,
.button-alert.button-block::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button.button-alert:focus,
a.tag.button-alert:focus,
.button-alert:focus {
  border-color: #b00a26;
  background-color: #b00a26;
  color: #fff;
}
a.button.button-alert:active,
a.tag.button-alert:active,
.button-alert:active {
  border-color: #75071a;
  background-color: #75071a;
  color: #fff;
}
.cs--blue input[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue button[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue .button-primary {
  background-color: #001823;
}
.cs--blue input[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue button[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue .button-primary {
  color: #fff;
}
.cs--blue input[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue button[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue .button-primary {
  background-image:
    linear-gradient(
      0,
      #687278,
      #687278);
}
input[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
button[type=submit]:not(.button-secondary):not(.button-success):not(.button-alert),
.button-primary {
  border: 0;
}
.cs--blue input[type=submit]:focus:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue button[type=submit]:focus:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue .button-primary:focus {
  background-color: #687278;
}
.cs--blue input[type=submit]:focus:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue button[type=submit]:focus:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue .button-primary:focus {
  color: #fff;
}
.cs--blue input[type=submit]:active:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue button[type=submit]:active:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue .button-primary:active {
  background-color: #687278;
}
.cs--blue input[type=submit]:active:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue button[type=submit]:active:not(.button-secondary):not(.button-success):not(.button-alert),
.cs--blue .button-primary:active {
  color: #fff;
}
a.button.button-alert,
a.tag.button-alert,
.button-secondary-alert {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button.button-alert,
  a.tag.button-alert,
  .button-secondary-alert {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button.button-alert::before,
a.tag.button-alert::before,
.button-secondary-alert::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
.cs--blue a.button.button-alert,
.cs--blue a.tag.button-alert,
.cs--blue .button-secondary-alert {
  background-image:
    linear-gradient(
      0,
      rgb(252.9, 230.8, 234.6),
      rgb(252.9, 230.8, 234.6));
}
a.button.button-alert,
a.tag.button-alert,
.button-secondary-alert {
  border: 2px solid rgb(242.4, 109.8, 132.6);
  background-color: #fff;
  color: #d30c2e;
}
a.button-block.button.button-alert,
a.button-block.tag.button-alert,
.button-secondary-alert.button-block {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.button-block.button.button-alert,
  a.button-block.tag.button-alert,
  .button-secondary-alert.button-block {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
a.button-block.button.button-alert::before,
a.button-block.tag.button-alert::before,
.button-secondary-alert.button-block::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
a.button.button-alert:hover,
a.tag.button-alert:hover,
a.button.button-alert:focus,
a.tag.button-alert:focus,
.button-secondary-alert:hover,
.button-secondary-alert:focus {
  border-color: rgb(239.25, 73.5, 102);
  color: #b00a26;
}
a.button.button-alert:active,
a.tag.button-alert:active,
.button-secondary-alert:active {
  border-color: rgb(239.25, 73.5, 102);
  background-color: rgb(249.75, 194.5, 204);
  background-image: none;
  color: #75071a;
}
.cs--blue .cta-block .cta-block__content li:first-of-type a,
.cta-block .cta-block__content li:first-of-type .cs--blue a,
.cs--blue input[type=submit],
.cs--blue button[type=submit],
.cs--blue .file .file__button,
.file .cs--blue .file__button,
.cs--blue .button-secondary {
  background-color: #7ed9ff;
}
.cs--blue .cta-block .cta-block__content li:first-of-type a,
.cta-block .cta-block__content li:first-of-type .cs--blue a,
.cs--blue input[type=submit],
.cs--blue button[type=submit],
.cs--blue .file .file__button,
.file .cs--blue .file__button,
.cs--blue .button-secondary {
  color: #001823;
}
.cs--blue .cta-block .cta-block__content li:first-of-type a,
.cta-block .cta-block__content li:first-of-type .cs--blue a,
.cs--blue input[type=submit],
.cs--blue button[type=submit],
.cs--blue .file .file__button,
.file .cs--blue .file__button,
.cs--blue .button-secondary {
  background-image:
    linear-gradient(
      0,
      #1abcff,
      #1abcff);
}
.cta-block .cta-block__content li:first-of-type a,
input[type=submit],
button[type=submit],
.file .file__button,
.button-secondary {
  border: 0;
}
.cs--blue .cta-block .cta-block__content li:first-of-type a:focus,
.cta-block .cta-block__content li:first-of-type .cs--blue a:focus,
.cs--blue input[type=submit]:focus,
.cs--blue button[type=submit]:focus,
.cs--blue .file .file__button:focus,
.file .cs--blue .file__button:focus,
.cs--blue .button-secondary:focus {
  background-color: #1abcff;
}
.cs--blue .cta-block .cta-block__content li:first-of-type a:focus,
.cta-block .cta-block__content li:first-of-type .cs--blue a:focus,
.cs--blue input[type=submit]:focus,
.cs--blue button[type=submit]:focus,
.cs--blue .file .file__button:focus,
.file .cs--blue .file__button:focus,
.cs--blue .button-secondary:focus {
  color: #001823;
}
.cs--blue .cta-block .cta-block__content li:first-of-type a:active,
.cta-block .cta-block__content li:first-of-type .cs--blue a:active,
.cs--blue input[type=submit]:active,
.cs--blue button[type=submit]:active,
.cs--blue .file .file__button:active,
.file .cs--blue .file__button:active,
.cs--blue .button-secondary:active {
  background-color: #1abcff;
}
.cs--blue .cta-block .cta-block__content li:first-of-type a:active,
.cta-block .cta-block__content li:first-of-type .cs--blue a:active,
.cs--blue input[type=submit]:active,
.cs--blue button[type=submit]:active,
.cs--blue .file .file__button:active,
.file .cs--blue .file__button:active,
.cs--blue .button-secondary:active {
  color: #001823;
}
.cs--blue a.button.button-success,
.cs--blue a.tag.button-success,
.cs--blue .button-success {
  background-image:
    linear-gradient(
      0,
      rgb(233.9, 243, 233.3),
      rgb(233.9, 243, 233.3));
}
a.button.button-success,
a.tag.button-success,
.button-success {
  border: 2px solid #2c8726;
  background-color: #fff;
  color: #21651d;
}
a.button.button-success:hover,
a.tag.button-success:hover,
.button-success:hover {
  border-color: #2c8726;
  color: #21651d;
}
a.button.button-success:active,
a.tag.button-success:active,
a.button.button-success:focus,
a.tag.button-success:focus,
.button-success:active,
.button-success:focus {
  border-color: #2c8726;
  background-color: rgb(202.25, 225, 200.75);
  background-image: none;
  color: #21651d;
}
h1[class*=bg-] > span,
h2[class*=bg-] > span,
h3[class*=bg-] > span,
h4[class*=bg-] > span,
h5[class*=bg-] > span,
h6[class*=bg-] > span,
.h1[class*=bg-] > span,
.h2[class*=bg-] > span,
.h3[class*=bg-] > span,
.h4[class*=bg-] > span,
.h5[class*=bg-] > span,
.h6[class*=bg-] > span {
  padding: 2.5px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.cs--blue h1.bg-primary > span,
.cs--blue h2.bg-primary > span,
.cs--blue h3.bg-primary > span,
.cs--blue h4.bg-primary > span,
.cs--blue h5.bg-primary > span,
.cs--blue h6.bg-primary > span,
.cs--blue .h1.bg-primary > span,
.cs--blue .h2.bg-primary > span,
.cs--blue .h3.bg-primary > span,
.cs--blue .h4.bg-primary > span,
.cs--blue .h5.bg-primary > span,
.cs--blue .h6.bg-primary > span {
  color: #fff;
}
.cs--blue h1.bg-primary > span,
.cs--blue h2.bg-primary > span,
.cs--blue h3.bg-primary > span,
.cs--blue h4.bg-primary > span,
.cs--blue h5.bg-primary > span,
.cs--blue h6.bg-primary > span,
.cs--blue .h1.bg-primary > span,
.cs--blue .h2.bg-primary > span,
.cs--blue .h3.bg-primary > span,
.cs--blue .h4.bg-primary > span,
.cs--blue .h5.bg-primary > span,
.cs--blue .h6.bg-primary > span {
  background-color: #005ba9;
}
.cs--blue h1.bg-none > span,
.cs--blue h2.bg-none > span,
.cs--blue h3.bg-none > span,
.cs--blue h4.bg-none > span,
.cs--blue h5.bg-none > span,
.cs--blue h6.bg-none > span,
.cs--blue .h1.bg-none > span,
.cs--blue .h2.bg-none > span,
.cs--blue .h3.bg-none > span,
.cs--blue .h4.bg-none > span,
.cs--blue .h5.bg-none > span,
.cs--blue .h6.bg-none > span {
  color: #001823;
}
.cs--blue h1.bg-none > span,
.cs--blue h2.bg-none > span,
.cs--blue h3.bg-none > span,
.cs--blue h4.bg-none > span,
.cs--blue h5.bg-none > span,
.cs--blue h6.bg-none > span,
.cs--blue .h1.bg-none > span,
.cs--blue .h2.bg-none > span,
.cs--blue .h3.bg-none > span,
.cs--blue .h4.bg-none > span,
.cs--blue .h5.bg-none > span,
.cs--blue .h6.bg-none > span {
  background-color: #fff;
}
h1[class^=bg-] > span,
.h1[class^=bg-] > span {
  padding: 3px 15px;
}
.cs--blue h1,
.cs--blue .h1 {
  color: #001823;
}
h1,
.h1 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 130%;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.25rem;
    line-height: 115.556%;
  }
}
.cs--blue .dark-background h1,
.cs--blue .dark-background .h1 {
  color: #fff;
}
.cs--blue h2,
.cs--blue .h2,
.cs--blue h1.overview-title,
.cs--blue h3.overview-title,
.cs--blue h4.overview-title,
.cs--blue h5.overview-title,
.cs--blue h6.overview-title {
  color: #005ba9;
}
h2,
.h2,
h1.overview-title,
h2.overview-title,
h3.overview-title,
h4.overview-title,
h5.overview-title,
h6.overview-title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
@media (min-width: 768px) {
  h2,
  .h2,
  h1.overview-title,
  h2.overview-title,
  h3.overview-title,
  h4.overview-title,
  h5.overview-title,
  h6.overview-title {
    font-size: 1.9rem;
    line-height: 136.842%;
  }
}
.cs--blue .dark-background h2,
.cs--blue .dark-background .h2,
.cs--blue .dark-background h1.overview-title,
.cs--blue .dark-background h3.overview-title,
.cs--blue .dark-background h4.overview-title,
.cs--blue .dark-background h5.overview-title,
.cs--blue .dark-background h6.overview-title {
  color: #fff;
}
.cs--blue h3,
.cs--blue .h3,
.cs--blue .crisis-communication h2,
.crisis-communication .cs--blue h2,
.cs--blue .search label,
.search .cs--blue label {
  color: #001823;
}
h3,
.h3,
.crisis-communication h2,
.search label {
  font-size: 1.2rem;
  line-height: 1.55rem;
}
@media (min-width: 768px) {
  h3,
  .h3,
  .crisis-communication h2,
  .search label {
    font-size: 1.5rem;
    line-height: 1.95rem;
  }
}
.cs--blue .dark-background h3,
.cs--blue .dark-background .h3,
.cs--blue .dark-background .crisis-communication h2,
.crisis-communication .cs--blue .dark-background h2,
.cs--blue .dark-background .search label,
.search .cs--blue .dark-background label {
  color: #fff;
}
.cs--blue h4,
.cs--blue .h4,
.cs--blue .sidebar.filter-section form .form-item > label,
.sidebar.filter-section form .cs--blue .form-item > label,
.cs--blue .sidebar.filter-section form fieldset.form-item > legend,
.sidebar.filter-section form .cs--blue fieldset.form-item > legend,
.cs--blue .documents h3,
.documents .cs--blue h3,
.cs--blue .document-box h3,
.document-box .cs--blue h3 {
  color: #001823;
}
h4,
.h4,
.sidebar.filter-section form .form-item > label,
.sidebar.filter-section form fieldset.form-item > legend,
.sidebar.filter-section form .modal-content .form-item > label,
.sidebar.filter-section form .modal-content fieldset.form-item > legend,
.documents h3,
.document-box h3 {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.15rem;
}
@media (min-width: 768px) {
  h4,
  .h4,
  .sidebar.filter-section form .form-item > label,
  .sidebar.filter-section form fieldset.form-item > legend,
  .sidebar.filter-section form .modal-content .form-item > label,
  .sidebar.filter-section form .modal-content fieldset.form-item > legend,
  .documents h3,
  .document-box h3 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}
.cs--blue .dark-background h4,
.cs--blue .dark-background .h4,
.cs--blue .dark-background .sidebar.filter-section form .form-item > label,
.sidebar.filter-section form .cs--blue .dark-background .form-item > label,
.cs--blue .dark-background .sidebar.filter-section form fieldset.form-item > legend,
.sidebar.filter-section form .cs--blue .dark-background fieldset.form-item > legend,
.cs--blue .dark-background .documents h3,
.documents .cs--blue .dark-background h3,
.cs--blue .dark-background .document-box h3,
.document-box .cs--blue .dark-background h3 {
  color: #fff;
}
h1.overview-title,
h2.overview-title,
h3.overview-title,
h4.overview-title,
h5.overview-title,
h6.overview-title {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 45px;
}
.accordion {
  position: relative;
  z-index: 1;
}
.accordion .accordion--button {
  font-size: 1rem;
  font-weight: 600;
}
.accordion .accordion--button:before {
  content: "\e011";
}
.accordion .accordion--button {
  position: relative;
  padding-right: 32px;
  color: inherit;
  line-height: 26px;
  text-align: left;
}
.accordion .accordion--button::before {
  position: absolute;
  right: 0;
  transition: transform 0.2s ease-out-in-out;
  font-size: 1.4rem;
  line-height: 1.2;
}
.accordion .accordion--button[aria-expanded=true]::before {
  transform: scaleY(-1);
}
.accordion .accordion--content {
  max-height: 0;
  transition: max-height 0.75s ease-out;
  overflow: hidden;
}
.accordion .accordion--content.accordion--expanded {
  max-height: 9999px;
}
.accordion .accordion--content:focus,
.accordion .accordion--content:focus-within {
  overflow: unset;
}
.accordion .accordion--content p {
  line-height: 1.75;
}
.accordion .accordion {
  z-index: 2;
}
.cs--blue ul.accordion:not(.timeline) > li,
.cs--blue dl.accordion:not(.timeline) > li {
  border-color: rgb(191.25, 214, 233.5);
}
ul.accordion:not(.timeline) > li,
dl.accordion:not(.timeline) > li {
  border-bottom: 2px solid;
}
ul.accordion li h3,
dl.accordion li h3 {
  margin: 20px 0;
}
ul.accordion li:first-child h3,
dl.accordion li:first-child h3 {
  margin-top: 0;
}
ul.accordion .accordion--button,
dl.accordion .accordion--button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  overflow: visible;
}
.cs--blue ul.accordion .accordion--button::before,
.cs--blue dl.accordion .accordion--button::before {
  background-color: #7ed9ff;
}
ul.accordion .accordion--button::before,
dl.accordion .accordion--button::before {
  position: relative;
  right: auto;
  left: 0;
  min-width: 36px;
  min-height: 36px;
  margin: 0 15px 0 0;
  padding: 2.5px 5px;
  transition: transform 0.2s ease-out-in-out;
  font-size: 1.2rem;
  text-align: left;
}
ul.accordion .accordion--button[aria-expanded=true]:before,
dl.accordion .accordion--button[aria-expanded=true]:before {
  content: "\e047";
}
ul.accordion .accordion--button[aria-expanded=true]::before,
dl.accordion .accordion--button[aria-expanded=true]::before {
  transform: none;
  line-height: 1.2;
}
ul.accordion .accordion--button[aria-expanded=false]:before,
dl.accordion .accordion--button[aria-expanded=false]:before {
  content: "\e051";
}
ul.accordion .accordion--button[aria-expanded=false]::before,
dl.accordion .accordion--button[aria-expanded=false]::before {
  line-height: 1.2;
}
ul.accordion {
  margin: 0;
}
ul.accordion > li {
  list-style: none;
}
dl.accordion dd {
  padding: 0;
}
.accordion--link {
  position: relative;
  z-index: 1;
}
.accordion--link .accordion--link--button {
  padding: 0;
  border: 0;
  outline: inherit;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.cs--blue .accordion--link .accordion--link--button {
  color: #005ba9;
}
.cs--blue .accordion--link .accordion--link--button {
  border-color: #005ba9;
}
.accordion--link .accordion--link--button {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .accordion--link .accordion--link--button {
  background-image:
    linear-gradient(
      to bottom,
      #ccdeee 0,
      #ccdeee 100%);
}
.accordion--link .accordion--link--button {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.accordion--link .accordion--link--button:hover,
.accordion--link .accordion--link--button:focus {
  background-size: 100% 100%;
}
.accordion--link .accordion--link--button {
  font-weight: 600;
  width: auto;
  margin-bottom: 20px;
  line-height: 120%;
  vertical-align: middle;
}
.accordion--link .accordion--link--button::before {
  display: none;
}
.accordion--link .accordion--link--button i {
  display: inline-block;
  margin-left: 5px;
  transform: rotate(0deg);
  transform-origin: center center;
  transition: 0.3s;
  vertical-align: middle;
}
.accordion--link .accordion--link--button[aria-expanded=true] i {
  transform: rotate(180deg);
}
.accordion--link .accordion--link--content {
  max-height: 0;
  transition: max-height 0.75s ease-out;
  overflow: hidden;
}
.accordion--link .accordion--link--content.accordion--expanded {
  max-height: 9999px;
}
.accordion--link .accordion--link--content:focus,
.accordion--link .accordion--link--content:focus-within {
  overflow: unset;
}
.accordion--link .accordion--link--content p {
  line-height: 1.75;
}
.accordion--link .accordion {
  z-index: 2;
}
.breadcrumb {
  margin: 0 0 20px;
  clear: both;
}
.breadcrumb ul,
.breadcrumb ol {
  flex-wrap: wrap;
  max-width: calc(100vw - 40px);
  margin: 0;
  list-style: none;
}
.breadcrumb ul li:after,
.breadcrumb ol li:after {
  content: "\e013";
}
.breadcrumb ul li,
.breadcrumb ol li {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  margin-bottom: 0;
  padding-left: 0;
}
.breadcrumb ul li::before,
.breadcrumb ol li::before {
  display: none;
}
.cs--blue .breadcrumb ul li::after,
.cs--blue .breadcrumb ol li::after {
  color: #005ba9;
}
.breadcrumb ul li::after,
.breadcrumb ol li::after {
  margin: 0 0 0 8px;
}
.breadcrumb ul li:last-of-type,
.breadcrumb ol li:last-of-type {
  margin-right: 0;
}
.breadcrumb ul li:last-of-type::after,
.breadcrumb ol li:last-of-type::after {
  display: none;
  content: "";
}
.breadcrumb ul li > *,
.breadcrumb ol li > * {
  font-size: 0.7rem;
}
.breadcrumb ul li a,
.breadcrumb ol li a {
  font-weight: 400;
  font-size: 0.7rem;
  line-height: initial;
}
.breadcrumb ul li a:not(.no-icon):not(.tag)::after,
.breadcrumb ul li a[href^="http://"]:not(.no-icon):not(.tag)::after,
.breadcrumb ul li a[href^="https://"]:not(.no-icon):not(.tag)::after,
.breadcrumb ol li a:not(.no-icon):not(.tag)::after,
.breadcrumb ol li a[href^="http://"]:not(.no-icon):not(.tag)::after,
.breadcrumb ol li a[href^="https://"]:not(.no-icon):not(.tag)::after {
  display: none;
}
.breadcrumb ul li a,
.breadcrumb ul li span,
.breadcrumb ol li a,
.breadcrumb ol li span {
  display: inline-block;
}
.breadcrumb ul.nav--mobile-breadcrumb,
.breadcrumb ol.nav--mobile-breadcrumb {
  display: block;
}
@media (min-width: 768px) {
  .breadcrumb ul.nav--mobile-breadcrumb,
  .breadcrumb ol.nav--mobile-breadcrumb {
    display: none;
  }
}
.breadcrumb .expandable a {
  font-weight: 700;
  padding: 0 7px;
  border-color: transparent;
  outline: 2px solid currentColor;
  line-height: 19px;
}
.cs--blue .breadcrumb .expandable a:hover,
.cs--blue .breadcrumb .expandable a:focus {
  background-color: #ccdeee;
}
.breadcrumb .expandable a,
.breadcrumb .expandable a:focus,
.breadcrumb .expandable a:hover {
  background-image: none;
}
.breadcrumb .expandable::after {
  line-height: inherit;
}
.breadcrumb[aria-expanded=false] ul li:not(.expandable):not(:nth-last-child(-n+3)):not(:nth-child(-n+2)),
.breadcrumb[aria-expanded=false] ol li:not(.expandable):not(:nth-last-child(-n+3)):not(:nth-child(-n+2)) {
  display: none;
}
@media (max-width: 767px) {
  .breadcrumb[aria-expanded=false] ul,
  .breadcrumb[aria-expanded=false] ol {
    display: flex;
    align-items: center;
  }
  .breadcrumb[aria-expanded=false] ul li:not(.expandable),
  .breadcrumb[aria-expanded=false] ol li:not(.expandable) {
    min-width: 60px;
  }
  .breadcrumb[aria-expanded=false] ul li:not(.expandable) a,
  .breadcrumb[aria-expanded=false] ul li:not(.expandable) span,
  .breadcrumb[aria-expanded=false] ol li:not(.expandable) a,
  .breadcrumb[aria-expanded=false] ol li:not(.expandable) span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .breadcrumb[aria-expanded=false] ul li:not(.expandable):not(:nth-last-child(-n+3)),
  .breadcrumb[aria-expanded=false] ol li:not(.expandable):not(:nth-last-child(-n+3)) {
    display: none;
  }
}
[class*=cs--] .breadcrumb a::after {
  content: none;
}
.card {
  margin: 1.2rem 0;
  border-radius: 0.2rem;
  line-height: 1.75;
  box-shadow: 0 0.1rem 0.6rem 0 rgba(35, 51, 58, 0.25);
}
.card > * {
  padding: 1rem;
}
.cs--blue .card .actions {
  border-color: rgb(191.25, 214, 233.5);
}
.card .actions {
  border-top: 2px solid;
}
.checkbox-filter-dynamic .modal-preview .checkbox:last-child,
.checkbox-filter-dynamic .accordion-preview .checkbox:last-child,
.checkbox-filter-dynamic .checkbox-accordion .checkbox:last-child {
  margin-bottom: 0.5rem;
}
.checkbox-filter-dynamic .checkbox-accordion .accordion--content {
  margin: -4px -4px 0;
  padding: 4px 4px 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}
.checkbox-filter-dynamic .checkbox-accordion .accordion--button[aria-expanded=false]:before {
  content: "\e011";
}
.checkbox-filter-dynamic .checkbox-accordion .accordion--button[aria-expanded=true]:before {
  content: "\e014";
}
.checkbox-filter__modal .tag-list-wrapper {
  min-height: 2.2rem;
  margin-bottom: 1.2rem;
}
.checkbox-filter__modal .tag-list .tag {
  margin: 0;
}
.checkbox-filter .checkbox-filter__count-wrapper em {
  font-style: normal;
}
.checkbox-filter .checkbox-filter__result-placeholder.hidden {
  display: none;
}
.checkbox-filter__modal .tag {
  margin: 0 0.5rem 0.5rem 0;
}
.checkbox-filter__modal .checkbox-filter__filter__search-wrapper {
  max-width: 30rem;
}
@media (min-width: 960px) {
  .checkbox-filter__modal .checkbox-filter__filter__search-wrapper {
    display: flex;
  }
}
.checkbox-filter__modal .checkbox-filter__filter__search-wrapper input,
.checkbox-filter__modal .checkbox-filter__filter__search-wrapper p {
  margin-bottom: 0;
}
.checkbox-filter__modal .checkbox-filter__filter {
  margin-bottom: 1rem;
}
.checkbox-filter__modal .checkbox-filter__result-wrapper.hidden {
  display: none;
}
.checkbox-filter__modal .checkbox-filter__result-wrapper em {
  font-style: normal;
}
@media (min-width: 960px) {
  .checkbox-filter__modal .checkbox-filter__result-wrapper {
    margin-left: 1rem;
    line-height: 2.4rem;
    white-space: nowrap;
  }
}
.checkbox-filter__modal .checkbox-filter__checkboxes {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.checkbox-filter__modal .checkbox-filter__checkboxes > .checkbox {
  flex-basis: 320px;
  padding-right: 1rem;
}
.checkbox-filter__modal .checkbox-filter__checkboxes > .checkbox.full-width,
.checkbox-filter__modal .checkbox-filter__checkboxes > .checkbox-filter__category {
  right: 0;
  left: 0;
  flex-basis: 100%;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.checkbox-filter__modal .checkbox-filter__checkboxes > [hidden] {
  display: none;
}
.checkbox-filter__modal .checkbox-filter__checkboxes + .checkbox-filter__checkboxes {
  margin-top: 1rem;
}
.checkbox-filter__modal .checkbox-filter__selected {
  margin-bottom: 0.7rem;
}
.contact-details--with-image .contact-details-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.contact-details--with-image .contact-details-column {
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-details--with-image .contact-details-column {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
    margin-right: 30px;
  }
  .contact-details--with-image .contact-details-column:last-of-type:not(:first-of-type) {
    max-width: 280px;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .contact-details--with-image .contact-details-column .image-wrapper img {
    max-width: 280px;
  }
}
.contact-details h2,
.contact-details h3 {
  margin-bottom: 30px;
}
.contact-details ul {
  font-size: 0.8rem;
  max-width: 630px;
  margin-bottom: 45px;
}
@media (min-width: 960px) {
  .contact-details ul {
    margin-bottom: 0;
  }
}
.cta-block {
  display: flex;
  position: relative;
  flex-flow: column;
  max-width: 1170px;
  margin: 60px 0;
}
@media (min-width: 576px) {
  .cta-block {
    flex-flow: row;
  }
}
.cta-block.image-none {
  max-width: 48.5rem;
  z-index: 1;
}
.cs--blue .cta-block.image-none .cta-block__content {
  position: relative;
  z-index: auto;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cs--blue .cta-block.image-none .cta-block__content {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cs--blue .cta-block.image-none .cta-block__content::after {
  bottom: -1rem;
  left: -1rem;
}
@media (min-width: 768px) {
  .cs--blue .cta-block.image-none .cta-block__content::after {
    bottom: -1.5rem;
    left: -1.5rem;
  }
}
.cs--blue .cta-block.image-none .cta-block__content::after {
  position: absolute;
  width: 260px;
  max-width: 100%;
  height: 260px;
  max-height: 100%;
  background-color: #7ed9ff;
  content: "";
  z-index: -1;
}
.cs--blue .cta-block.image-none .cta-block__content {
  margin-left: 0;
}
@media (min-width: 576px) {
  .cta-block.image-left,
  .cta-block.image-right {
    margin-bottom: 130px;
  }
}
.cta-block .cta-block__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 576px) {
  .cta-block .cta-block__image {
    flex-shrink: 0.4;
  }
}
@media (min-width: 960px) {
  .cta-block .cta-block__image {
    min-width: 470px;
    min-height: 470px;
  }
}
.cta-block .cta-block__content {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  .cta-block .cta-block__content {
    margin-top: auto;
  }
}
.cta-block .cta-block__content li {
  margin-top: 16px;
}
.cta-block .cta-block__content li a {
  font-size: 0.8rem;
}
.cta-block .cta-block__content li:first-of-type a {
  font-size: 0.8rem;
  line-height: 175%;
  font-weight: 600;
  padding: 8px 15px;
  font-family: "Fira Sans", sans-serif;
  text-align: center;
  cursor: pointer;
}
[class*=cs--] .cta-block .cta-block__content li:first-of-type a:disabled {
  border: 0;
  background-color: rgb(229.5, 231.9, 233);
  background-image: none;
  color: rgb(102, 116.4, 123);
}
[class*=cs--] .cta-block .cta-block__content li:first-of-type a:disabled:hover {
  background-color: rgb(229.5, 231.9, 233);
  color: rgb(102, 116.4, 123);
  cursor: not-allowed;
}
.cta-block .cta-block__content li:first-of-type a.button-small {
  font-size: 0.8rem;
  padding: 4px 10px;
  line-height: 175%;
}
.cta-block .cta-block__content li:first-of-type a.button-medium {
  font-size: 0.8rem;
  line-height: 175%;
}
.cta-block .cta-block__content li:first-of-type a.button-large {
  font-size: 0.9rem;
  padding: 10px 20px;
  line-height: 177.778%;
}
.cta-block .cta-block__content li:first-of-type a.button-large::before {
  font-size: 1.5rem;
}
.cta-block .cta-block__content li:first-of-type a.button-extra-large {
  font-size: 0.9rem;
  padding: 25px 26px;
  line-height: 177.778%;
}
.cta-block .cta-block__content li:first-of-type a.button-extra-large::before {
  font-size: 1.5rem;
}
.cta-block .cta-block__content li:first-of-type a.button-block {
  display: inline-block;
  width: 100%;
}
.cta-block .cta-block__content li:first-of-type a[class*=icon-] {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cta-block .cta-block__content li:first-of-type a[class*=icon-] {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
.cta-block .cta-block__content li:first-of-type a[class*=icon-]::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
.cta-block .cta-block__content li:first-of-type a[class*=icon-].icon-left::before {
  order: unset;
  margin-right: 8px;
  margin-left: 0;
  float: left;
}
.cta-block .cta-block__content li:first-of-type a {
  font-size: 0.9rem;
  padding: 10px 20px;
  line-height: 177.778%;
}
.cta-block .cta-block__content li:first-of-type a::before {
  font-size: 1.5rem;
}
.cta-block .cta-block__content li:first-of-type a {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cta-block .cta-block__content li:first-of-type a {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
.cta-block .cta-block__content li:first-of-type a::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
.cta-block.image-left .cta-block__image {
  margin-right: 20px;
}
@media (min-width: 576px) {
  .cta-block.image-left .cta-block__image {
    margin-right: inherit;
  }
}
.cta-block.image-left figcaption {
  margin-right: 80px;
}
.cta-block.image-left .cta-block__content {
  top: -20px;
  left: 20px;
}
@media (min-width: 576px) {
  .cta-block.image-left .cta-block__content {
    top: auto;
    bottom: -90px;
    left: -60px;
  }
  .cta-block.image-left .cta-block__content .feature-block {
    width: calc(100% + 60px);
    margin-right: 20px;
  }
}
@media (min-width: 576px) {
  .cta-block.image-right {
    flex-direction: row-reverse;
  }
}
.cta-block.image-right .cta-block__image {
  margin-left: 20px;
}
@media (min-width: 576px) {
  .cta-block.image-right .cta-block__image {
    margin-left: inherit;
  }
}
.cta-block.image-right figcaption {
  margin-left: 80px;
}
.cta-block.image-right .cta-block__content {
  top: -20px;
  margin-right: 20px;
}
@media (min-width: 576px) {
  .cta-block.image-right .cta-block__content {
    top: auto;
    bottom: -90px;
  }
}
.cta-block.image-right .cta-block__content .feature-block {
  margin-right: 20px;
}
@media (min-width: 576px) {
  .cta-block.image-right .cta-block__content .feature-block {
    width: calc(100% + 60px);
    margin-right: inherit;
  }
}
.cta-block--multiple {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -20px;
  margin-left: -20px;
}
.cta-block--multiple > .cta-block {
  flex: 1 0 400px;
  max-width: calc(100% - 40px);
  margin-right: 20px;
  margin-left: 20px;
}
.display-switcher {
  font-size: 0.8rem;
  align-items: center;
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .display-switcher {
    display: flex;
  }
}
.display-switcher ul {
  margin-bottom: 0;
}
.display-switcher ul.icon-list.inline li {
  font-size: 0.8rem;
  margin-right: 20px;
}
.cs--blue .display-switcher ul.icon-list.inline li:not(.active) i {
  color: #005ba9;
}
.display-switcher > span {
  display: block;
  margin-right: 20px;
}
.cs--blue .feature-block {
  color: #fff;
}
.cs--blue .feature-block {
  background-color: #005ba9;
}
.feature-block {
  font-size: 0.9rem;
  padding: 30px;
}
@media (min-width: 768px) {
  .feature-block {
    padding: 60px;
  }
}
.cs--blue .feature-block h2,
.cs--blue .feature-block h3 {
  color: #fff;
}
.feature-block h2,
.feature-block h3 {
  margin-bottom: 20px;
}
.feature-block > :first-child {
  margin-top: 0;
}
.feature-block > :last-child {
  margin-bottom: 0;
}
.cs--blue .feature-block.secondary {
  color: #001823;
}
.cs--blue .feature-block.secondary {
  background-color: #ffdb5a;
}
.cs--blue .feature-block.secondary h2,
.cs--blue .feature-block.secondary h3 {
  color: #001823;
}
.file-type {
  text-transform: uppercase;
  white-space: nowrap;
}
.file-type .file-size {
  text-transform: lowercase;
}
a + .file-type {
  margin-left: 1rem;
}
.file-upload.multiple .file::after {
  display: none;
}
.file-upload.multiple .tag-list-wrapper {
  margin-top: 0.25rem;
}
.file-upload ul.inline,
.file-upload .tag-list-wrapper {
  margin-top: 0.8rem;
}
.file-upload ul.inline li,
.file-upload .tag-list-wrapper li {
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}
.file-upload .button {
  margin-bottom: 0.8rem;
}
.file-upload .button:focus {
  background-size: 100% 100%;
}
.file-upload label {
  margin-bottom: 0;
}
.form-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -0.6rem;
}
.form-actions > input,
.form-actions > button {
  font-size: 0.8rem;
  line-height: 175%;
}
.form-actions > input,
.form-actions > button,
.form-actions > a[href] {
  margin: 0 0.75rem 0.75rem;
}
.form-actions > a[href] {
  margin-left: 1.5rem;
}
.form-actions > a.refresh,
.form-actions > a.back {
  margin-left: 45px;
}
.form-actions > a.refresh::after,
.form-actions > a.back::after {
  top: 0;
}
.form-item {
  width: 100%;
  margin-bottom: 30px;
}
.form-item > * {
  max-width: 410px;
}
@media (min-width: 960px) {
  .form-item > * {
    max-width: 820px;
  }
  .form-item > .field-message,
  .form-item > label {
    max-width: 410px;
  }
}
.form-item.webform-document-file a,
.form-item.webform-document-file .file-type,
.form-item.webform-image-file a,
.form-item.webform-image-file .file-type {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.7rem;
}
.form-item .field-prefix,
.form-item .field-suffix {
  display: block;
}
.form-item .field-message:not(.error):not(.success) {
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .form-item:not(.stacked) .form-label {
    width: 50%;
    max-width: 410px;
  }
}
.form-item:not(.stacked) .form-columns {
  margin-bottom: 0;
}
@media (min-width: 960px) {
  .form-item:not(.stacked) .form-columns {
    display: flex;
  }
  .form-item:not(.stacked) .form-columns .form-item-column {
    width: 50%;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:last-child {
    display: flex;
    align-items: flex-start;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:last-child .field-message {
    margin: 0 0 15px 6px;
    padding: 14px 24px 14px 78px;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:last-child .field-message::before {
    top: 10px;
    left: 34px;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:last-child .field-message .accolade {
    right: auto;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 100%;
    transform: rotate(0deg);
  }
  .form-item:not(.stacked) .form-columns .form-item-column:last-child .field-message .accolade::before,
  .form-item:not(.stacked) .form-columns .form-item-column:last-child .field-message .accolade::after {
    width: 20px;
    border: 0;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:last-child .field-message .accolade::before {
    top: 0;
    bottom: 24px;
    height: 24px;
    border-radius: 0 0 1.2rem;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:last-child .field-message .accolade::after {
    top: 24px;
    right: 0;
    bottom: -1px;
    height: calc(100% - 20px);
    border-radius: 0 1.2rem 0 0;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:empty {
    display: none;
  }
  .form-item:not(.stacked) .form-columns .form-item-column:not(:empty) {
    width: 100%;
  }
}
.form-item.stacked > * {
  max-width: none;
}
.form-item.stacked .form-columns {
  flex-wrap: wrap;
  margin-top: auto;
}
.form-item.stacked .form-columns .form-item-column {
  width: 100%;
  max-width: 800px;
}
.form-item.stacked .form-columns .form-item-column:empty {
  display: none;
}
.form-item.stacked .form-columns .form-item-column .field-message {
  width: 100%;
  margin-top: 4px;
  margin-left: 0;
}
.form-item-column .form-item .form-label {
  width: 100%;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 0.8rem);
  max-width: 21.3rem;
  margin-right: -0.4rem;
  margin-left: -0.4rem;
}
@media (min-width: 960px) {
  .form-row {
    width: calc(50% + 0.8rem);
  }
}
.form-row > * {
  flex-grow: 1;
  margin-right: 0.4rem;
  margin-left: 0.4rem;
}
.form-steps ol.form-steps-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 20px 20px 5px;
  counter-reset: item;
  list-style-type: none;
}
@media (max-width: 959px) {
  .form-steps ol.form-steps-list {
    align-items: center;
    padding: 20px;
  }
}
.form-steps ol.form-steps-list li {
  display: inline-block;
}
.cs--blue .form-steps ol.form-steps-list li::before {
  background-color: #e6f8ff;
}
@media (max-width: 959px) {
  .form-steps ol.form-steps-list li {
    margin-bottom: 0;
  }
}
@media (max-width: 959px) {
  .form-steps ol.form-steps-list li:not(:first-child):not(:last-child):not(.active):not(.active + li) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    visibility: hidden;
    clip: rect(0 0 0 0);
  }
}
@media (max-width: 959px) {
  .form-steps ol.form-steps-list li span > span,
  .form-steps ol.form-steps-list li a > span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
.form-steps ol.form-steps-list li a {
  border-bottom: 0;
}
.form-steps ol.form-steps-list li a,
.form-steps ol.form-steps-list li a:focus,
.form-steps ol.form-steps-list li a:hover {
  background-image: none;
}
.cs--blue .form-steps ol.form-steps-list li a {
  color: #001823;
}
.form-steps ol.form-steps-list li a {
  display: inline-block;
  line-height: 175%;
  vertical-align: middle;
}
.form-steps ol.form-steps-list li a:hover,
.form-steps ol.form-steps-list li a:focus {
  background-color: transparent;
}
.cs--blue .form-steps ol.form-steps-list li a:hover::before,
.cs--blue .form-steps ol.form-steps-list li a:focus::before {
  border-color: #005ba9;
}
.form-steps ol.form-steps-list li.active {
  font-weight: 700;
}
@media (max-width: 959px) {
  .form-steps ol.form-steps-list li.active {
    margin-bottom: 0;
  }
}
@media (max-width: 959px) {
  .cs--blue .form-steps ol.form-steps-list li.active::before,
  .cs--blue .form-steps ol.form-steps-list li.active + li::after {
    background-color: #e6f8ff;
  }
  .cs--blue .form-steps ol.form-steps-list li.active::before,
  .cs--blue .form-steps ol.form-steps-list li.active + li::after {
    color: #001823;
  }
  .form-steps ol.form-steps-list li.active::before,
  .form-steps ol.form-steps-list li.active + li::after {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
  }
}
.cs--blue .form-steps ol.form-steps-list li.active::before {
  color: #fff;
}
.cs--blue .form-steps ol.form-steps-list li.active::before {
  border-color: #005ba9;
}
.cs--blue .form-steps ol.form-steps-list li.active::before {
  background-color: #005ba9;
}
@media (max-width: 959px) {
  .form-steps ol.form-steps-list li.active + li:not(:nth-last-child(2)):not(:last-child)::after {
    content: "\2026";
  }
}
.cs--blue .form-steps ol.form-steps-list li.active > span::before {
  border-color: #005298;
}
.form-steps ol.form-steps-list li.active > span::before {
  background-color: transparent;
}
.form-steps ol.form-steps-list li.completed:not(.active):before {
  content: "\e010";
}
.cs--blue .form-steps ol.form-steps-list li.completed:not(.active)::before {
  background-color: #8ee088;
}
.form-steps ol.form-steps-list li.completed:not(.active)::before {
  display: inline-block;
  line-height: 30px;
  vertical-align: middle;
}
.form-steps ol.form-steps-list li.completed:not(.active) a:hover::before,
.form-steps ol.form-steps-list li.completed:not(.active) a:focus::before {
  border-color: #287a22;
}
@media (min-width: 960px) {
  .form-steps ol.form-steps-list li:nth-last-child(2)::after,
  .form-steps ol.form-steps-list li:last-child::after {
    content: none;
  }
}
@media (min-width: 960px) {
  .cs--blue .form-steps:not(.vertical) ol.form-steps-list li:not(:last-child)::after {
    border-color: #7ed9ff;
  }
  .form-steps:not(.vertical) ol.form-steps-list li:not(:last-child)::after {
    display: inline-block;
    width: 15px;
    margin: 0 15px;
    border-bottom: 2px solid;
    content: "";
    vertical-align: middle;
  }
}
@media (min-width: 960px) {
  .form-steps.vertical ol.form-steps-list {
    flex-direction: column;
    padding: 30px 30px 15px;
  }
  .form-steps.vertical ol.form-steps-list li {
    margin-bottom: 15px;
  }
  .cs--blue .form-steps.vertical ol.form-steps-list li:not(:last-child)::after {
    border-color: #7ed9ff;
  }
  .form-steps.vertical ol.form-steps-list li:not(:last-child)::after {
    display: block;
    width: 15px;
    height: 20px;
    margin: 15px 0 0;
    border-right: 2px solid;
    content: "";
  }
}
.cs--blue .gentinfo {
  background-color: rgb(229.5, 238.6, 246.4);
}
.gentinfo {
  margin: 3rem 0;
  padding: 2rem 1rem;
}
.cs--blue .gentinfo .gentinfo-content {
  background-color: #ffdb5a;
}
.gentinfo .gentinfo-content {
  position: relative;
  max-width: 1170px;
  min-height: 10rem;
  margin: 0 auto;
  padding: 1.2rem;
}
.cs--blue .gentinfo .gentinfo-content::before {
  background-image: url("./media/gentinfo--blue.svg");
}
.gentinfo .gentinfo-content::before {
  display: block;
  width: 8rem;
  height: 8rem;
  background: no-repeat center center;
  background-size: 100%;
  content: "";
  margin: 0 auto 1.5rem;
}
@media (min-width: 768px) {
  .gentinfo .gentinfo-content {
    padding: 2.3rem 2.3rem 2.3rem 20rem;
  }
  .gentinfo .gentinfo-content::before {
    position: absolute;
    top: 50%;
    left: 10rem;
    margin-top: -4rem;
    margin-bottom: 0;
    margin-left: -4rem;
  }
}
.gentinfo .gentinfo-title {
  font-size: 1.5rem;
  font-weight: 400;
}
.gentinfo .icon-list.inline > li {
  margin-bottom: 0.5rem;
}
.highlight {
  position: relative;
  z-index: 0;
}
.cs--blue .highlight .highlight__inner {
  background-color: #e6f8ff;
}
.cs--blue .highlight .highlight__inner {
  position: relative;
  z-index: auto;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cs--blue .highlight .highlight__inner {
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cs--blue .highlight .highlight__inner::after {
  bottom: -1rem;
  right: -1rem;
}
@media (min-width: 768px) {
  .cs--blue .highlight .highlight__inner::after {
    bottom: -1.5rem;
    right: -1.5rem;
  }
}
.cs--blue .highlight .highlight__inner::after {
  position: absolute;
  width: 190px;
  max-width: 100%;
  height: 190px;
  max-height: 100%;
  background-color: #7ed9ff;
  content: "";
  z-index: -1;
}
@media (min-width: 576px) {
  .cs--blue .highlight .highlight__inner {
    position: relative;
    z-index: auto;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 576px) and (min-width: 768px) {
  .cs--blue .highlight .highlight__inner {
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 576px) {
  .cs--blue .highlight .highlight__inner::after {
    bottom: -1rem;
    right: -1rem;
    position: absolute;
    width: 220px;
    max-width: 100%;
    height: 220px;
    max-height: 100%;
    background-color: #7ed9ff;
    content: "";
    z-index: -1;
  }
}
@media (min-width: 576px) and (min-width: 768px) {
  .cs--blue .highlight .highlight__inner::after {
    bottom: -1.5rem;
    right: -1.5rem;
  }
}
.highlight .highlight__inner {
  padding: 30px;
}
@media (min-width: 768px) {
  .highlight .highlight__inner {
    padding: 60px;
  }
}
.cs--blue .highlight .highlight__inner > i {
  color: #009de0;
}
.highlight .highlight__inner > i {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: top;
}
.highlight .highlight__inner > i::before {
  display: block;
  margin: 0 8px 0 0;
  font-size: 2rem;
}
.highlight .highlight__inner h2,
.highlight .highlight__inner h3 {
  display: inline-block;
  margin: 0 0 20px;
  vertical-align: top;
}
.highlight .highlight__inner p:first-of-type {
  margin-top: 0;
}
.highlight .highlight__inner > *:last-child {
  margin-bottom: 0;
}
.important-note:before {
  content: "\e022";
}
.cs--blue .important-note {
  color: #005ba9;
}
.important-note {
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  line-height: 177.778%;
}
.important-note::before {
  margin-right: 10px;
  color: inherit;
  font-size: 1.6rem;
}
.cs--blue .note--timebound,
.cs--blue .note--payment {
  color: #e06c00;
}
.note--timebound:before {
  content: "\e016";
}
.note--payment:before {
  content: "\e021";
}
.cs--blue .note--unmissable {
  color: #ea0d33;
}
.language-switcher {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.language-switcher .accordion--button {
  font-weight: 700;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  font-size: 0.8rem;
  cursor: pointer;
}
.language-switcher .accordion--content {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  transition: max-height 0.3s ease-in-out;
  border-radius: 0.2rem;
  background: #fff;
  z-index: 6;
}
.language-switcher .content {
  padding: 0.4rem 1.6rem 0 0.8rem;
}
nav.menu {
  margin: 0;
}
nav.menu button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  nav.menu button {
    padding: 0.3em 0.8em 0 1.2em;
  }
}
nav.menu button::before {
  order: 1;
  margin-left: 8px;
  float: right;
  font-size: 1.2rem;
}
nav.menu button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  nav.menu button {
    display: none;
  }
}
nav.menu button::before {
  order: 0;
  margin-right: 10px;
  margin-left: 0;
}
nav.menu button.toggle:before {
  content: "\e030";
}
nav.menu button.close:before {
  content: "\e019";
}
@media (max-width: 767px) {
  nav.menu ul {
    display: none;
  }
}
nav.menu ul {
  margin: 0;
}
nav.menu ul li {
  display: inline-block;
  margin-right: 20px;
}
nav.menu ul li a,
nav.menu ul li a[href^="mailto:"],
nav.menu ul li a[download],
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]),
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]) {
  border-bottom: 0;
}
nav.menu ul li a,
nav.menu ul li a:focus,
nav.menu ul li a:hover,
nav.menu ul li a[href^="mailto:"],
nav.menu ul li a[href^="mailto:"]:focus,
nav.menu ul li a[href^="mailto:"]:hover,
nav.menu ul li a[download],
nav.menu ul li a[download]:focus,
nav.menu ul li a[download]:hover,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]),
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]):focus,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]):hover,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]),
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]):focus,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]):hover {
  background-image: none;
}
.cs--blue nav.menu ul li a,
.cs--blue nav.menu ul li a[href^="mailto:"],
.cs--blue nav.menu ul li a[download],
.cs--blue nav.menu ul li a[href^="http://"]:not([href*="gent.be"]),
.cs--blue nav.menu ul li a[href^="https://"]:not([href*="gent.be"]) {
  color: #005ba9;
}
nav.menu ul li a,
nav.menu ul li a[href^="mailto:"],
nav.menu ul li a[download],
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]),
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]) {
  display: inline-block;
  font-weight: 400;
  text-decoration: none;
}
.cs--blue nav.menu ul li a::after,
.cs--blue nav.menu ul li a[href^="mailto:"]::after,
.cs--blue nav.menu ul li a[download]::after,
.cs--blue nav.menu ul li a[href^="http://"]:not([href*="gent.be"])::after,
.cs--blue nav.menu ul li a[href^="https://"]:not([href*="gent.be"])::after {
  color: #005ba9;
}
nav.menu ul li a::after,
nav.menu ul li a[href^="mailto:"]::after,
nav.menu ul li a[download]::after,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"])::after,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"])::after {
  display: block;
  position: static;
  width: 0;
  margin: 0 auto;
  transition: width 100ms;
  border-bottom: 2px solid;
  content: "";
  overflow: visible;
}
nav.menu ul li a.active,
nav.menu ul li a:hover,
nav.menu ul li a:focus,
nav.menu ul li a[href^="mailto:"].active,
nav.menu ul li a[href^="mailto:"]:hover,
nav.menu ul li a[href^="mailto:"]:focus,
nav.menu ul li a[download].active,
nav.menu ul li a[download]:hover,
nav.menu ul li a[download]:focus,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]).active,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]):hover,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]):focus,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]).active,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]):hover,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]):focus {
  background: transparent;
}
nav.menu ul li a.active::after,
nav.menu ul li a:hover::after,
nav.menu ul li a:focus::after,
nav.menu ul li a[href^="mailto:"].active::after,
nav.menu ul li a[href^="mailto:"]:hover::after,
nav.menu ul li a[href^="mailto:"]:focus::after,
nav.menu ul li a[download].active::after,
nav.menu ul li a[download]:hover::after,
nav.menu ul li a[download]:focus::after,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]).active::after,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]):hover::after,
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]):focus::after,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]).active::after,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]):hover::after,
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]):focus::after {
  width: 70%;
}
nav.menu ul li a,
nav.menu ul li a[href^="mailto:"],
nav.menu ul li a[download],
nav.menu ul li a[href^="http://"]:not([href*="gent.be"]),
nav.menu ul li a[href^="https://"]:not([href*="gent.be"]) {
  margin-bottom: 0;
  padding: 10px 0;
}
nav.menu ul li a.active {
  font-weight: 700;
}
@media (min-width: 768px) {
  .modal.menu {
    display: none;
  }
}
.modal.menu .modal-inner .modal-header {
  position: absolute;
  right: 0;
  margin-top: 20px;
  margin-right: 10px;
  z-index: 7;
}
.modal.menu .modal-content {
  flex: 1;
  padding: 0;
}
.modal.menu .modal-content .header {
  position: relative;
  margin: 12px 30px;
}
.cs--blue .modal.menu .modal-content .header::before {
  border-color: rgb(191.25, 214, 233.5);
}
.modal.menu .modal-content .header::before {
  position: absolute;
  top: 100%;
  left: -30px;
  width: 100vw;
  height: 20px;
  margin-top: 12px;
  border-top: 2px solid;
  content: "";
}
.modal.menu .modal-content .header button {
  position: absolute;
  right: 0;
  margin-top: 5px;
}
.modal.menu .modal-content .menu-links ul {
  margin: 0;
}
@media (min-width: 768px) {
  .modal.menu .modal-content .menu-links ul li {
    display: inline-block;
    margin-right: 20px;
  }
}
.cs--blue .modal.menu .modal-content .menu-links ul li {
  border-color: #ccdeee;
}
.modal.menu .modal-content .menu-links ul li {
  margin-bottom: 0;
  border-bottom: 1px solid;
}
.modal.menu .modal-content .menu-links ul li a,
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"],
.modal.menu .modal-content .menu-links ul li a[download],
.modal.menu .modal-content .menu-links ul li a[href^="http://"],
.modal.menu .modal-content .menu-links ul li a[href^="https://"] {
  border-bottom: 0;
}
.modal.menu .modal-content .menu-links ul li a,
.modal.menu .modal-content .menu-links ul li a:focus,
.modal.menu .modal-content .menu-links ul li a:hover,
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"],
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"]:focus,
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"]:hover,
.modal.menu .modal-content .menu-links ul li a[download],
.modal.menu .modal-content .menu-links ul li a[download]:focus,
.modal.menu .modal-content .menu-links ul li a[download]:hover,
.modal.menu .modal-content .menu-links ul li a[href^="http://"],
.modal.menu .modal-content .menu-links ul li a[href^="http://"]:focus,
.modal.menu .modal-content .menu-links ul li a[href^="http://"]:hover,
.modal.menu .modal-content .menu-links ul li a[href^="https://"],
.modal.menu .modal-content .menu-links ul li a[href^="https://"]:focus,
.modal.menu .modal-content .menu-links ul li a[href^="https://"]:hover {
  background-image: none;
}
.modal.menu .modal-content .menu-links ul li a:after,
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"]:after,
.modal.menu .modal-content .menu-links ul li a[download]:after,
.modal.menu .modal-content .menu-links ul li a[href^="http://"]:after,
.modal.menu .modal-content .menu-links ul li a[href^="https://"]:after {
  content: "\e013";
}
.modal.menu .modal-content .menu-links ul li a,
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"],
.modal.menu .modal-content .menu-links ul li a[download],
.modal.menu .modal-content .menu-links ul li a[href^="http://"],
.modal.menu .modal-content .menu-links ul li a[href^="https://"] {
  display: block;
  padding: 10px 20px;
  line-height: 1.4rem;
}
.cs--blue .modal.menu .modal-content .menu-links ul li a:hover,
.cs--blue .modal.menu .modal-content .menu-links ul li a[href^="mailto:"]:hover,
.cs--blue .modal.menu .modal-content .menu-links ul li a[download]:hover,
.cs--blue .modal.menu .modal-content .menu-links ul li a[href^="http://"]:hover,
.cs--blue .modal.menu .modal-content .menu-links ul li a[href^="https://"]:hover {
  background-color: #ccdeee;
}
.modal.menu .modal-content .menu-links ul li a::after,
.modal.menu .modal-content .menu-links ul li a[href^="mailto:"]::after,
.modal.menu .modal-content .menu-links ul li a[download]::after,
.modal.menu .modal-content .menu-links ul li a[href^="http://"]::after,
.modal.menu .modal-content .menu-links ul li a[href^="https://"]::after {
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -13px;
}
.modal.menu .modal-content .menu-links ul li a.active {
  font-weight: 700;
}
.modal.menu .modal-content .language-switcher {
  display: block;
  margin: 0 24px;
}
.cs--blue .modal.menu .modal-content .language-switcher:not(:last-child) {
  border-color: rgb(191.25, 214, 233.5);
}
.modal.menu .modal-content .language-switcher:not(:last-child) {
  border-bottom: 2px solid;
}
.modal.menu .modal-content .language-switcher ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 12px 0;
}
.modal.menu .modal-content .language-switcher ul li {
  padding: 12px;
}
* {
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .cs--blue .modal {
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .modal {
    animation: fade 0.2s ease-in-out;
  }
}
.modal {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 100vh;
  visibility: hidden;
  z-index: 6;
  overflow-y: auto;
}
.modal.visible {
  visibility: visible;
}
@media (min-width: 768px) {
  .modal.visible .modal-overlay {
    display: block;
  }
}
.modal.modal--fixed-height.visible > .modal-inner {
  max-height: 80vh;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .modal.modal--fixed-height.visible > .modal-inner {
    height: 80vh;
  }
}
.modal.modal--fixed-height > .modal-inner > .modal-content {
  flex-grow: 1;
  z-index: 3;
  overflow-y: auto;
}
.modal.modal--fixed-height > .modal-inner > .modal-actions {
  padding-top: 30px;
}
.modal.visible .modal-inner {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  z-index: 1;
}
@media (min-width: 768px) {
  .modal.visible .modal-inner {
    right: 0;
    width: 970px;
    max-width: calc(100% - 60px);
    height: auto;
    min-height: 0;
    margin: 10vh auto 0;
    padding-bottom: 30px;
    opacity: 0;
    animation: fade 0.2s ease-in-out forwards;
    animation-delay: 0.1s;
  }
}
.cs--blue .modal.visible .modal-inner > * {
  background-color: #fff;
}
.modal.visible .modal-inner > *:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal.visible .modal-inner > *:last-of-type {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.modal-header {
  display: block;
  flex-shrink: 0;
  text-align: right;
}
.modal-content {
  padding: 16px 20px;
}
@media (min-width: 768px) {
  .modal-content {
    padding: 16px 70px 60px;
  }
}
.modal-content figure img {
  width: auto;
}
.modal-content p:last-child {
  margin-bottom: 0;
}
.cs--blue .modal-actions {
  border-color: rgb(191.25, 214, 233.5);
}
.cs--blue .modal-actions {
  background-color: #fff;
}
.modal-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  padding: 30px 20px;
  z-index: 3;
}
@media (min-width: 768px) {
  .modal-actions {
    position: relative;
    margin-top: -15px;
    padding: 0 70px 30px;
  }
}
.modal .modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: -1;
}
.cs--blue .modal .modal-overlay,
.cs--blue .modal .modal-overlay:hover,
.cs--blue .modal .modal-overlay:focus {
  background-color: #e6f8ff;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cs--blue .openinghours-widget {
  background-color: #ffec93;
}
.openinghours-widget {
  font-size: 0.8rem;
}
@media (max-width: 360px) {
  .openinghours-widget {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.openinghours-widget[data-type*=week] .openinghours--day-open .openinghours--status,
.openinghours-widget[data-type*=week] .openinghours--time-prefix,
.openinghours-widget[data-type*=week] .openinghours--times-between {
  display: none;
}
.openinghours-widget[data-type*=week] .openinghours--time-separator {
  font-size: 0;
}
.openinghours-widget[data-type*=week] .openinghours--time-separator::before {
  font-size: 0.8rem;
  content: "-";
}
.openinghours-widget[data-type*=week] .openinghours--day {
  margin: 0;
  padding: 15px 20px;
  font-size: 0.8rem;
  line-height: 175%;
}
.cs--blue .openinghours-widget[data-type*=week] .openinghours--day:nth-child(even) {
  background: #fff8d4;
}
.openinghours-widget[data-type*=week] .openinghours--day-active {
  font-weight: 600;
}
.openinghours-widget[data-type*=week] .openinghours--details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.openinghours-widget[data-type*=week] .openinghours--date {
  min-width: 250px;
}
.openinghours-widget[data-type*=week] .openinghours--times {
  min-width: 150px;
}
.openinghours-widget[data-type*=week] .openinghours--status {
  text-transform: capitalize;
}
.openinghours-widget[data-type=month] {
  min-width: initial;
  padding-right: 0;
  padding-bottom: 140px;
}
.cs--blue .openinghours-widget[data-type=month] > .openinghours {
  border-color: #fff;
}
.openinghours-widget[data-type=month] > .openinghours {
  padding: 20px 20px 30px;
  border-bottom: 2px solid;
}
.openinghours-widget[data-type=month] .openinghours--details {
  top: calc(100% + 32px);
  left: 10px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .openinghours-widget[data-type=month] {
    padding-right: 288px;
    padding-bottom: 0;
  }
  .openinghours-widget[data-type=month] > .openinghours {
    border-right: 2px solid;
    border-bottom: 0;
  }
  .openinghours-widget[data-type=month] .openinghours--details {
    top: -40px;
    left: calc(100% + 48px);
    padding-top: 0;
  }
}
.openinghours-widget[data-type=month] {
  font-size: 0.8rem;
  line-height: 1.4rem;
}
@media (min-width: 768px) {
  .openinghours-widget[data-type=month] > .openinghours {
    display: inline-block;
  }
}
.openinghours-widget[data-type=month] .openinghours--header,
.openinghours-widget[data-type=month] .openinghours--days {
  display: flex;
  width: 280px;
}
@media (min-width: 576px) {
  .openinghours-widget[data-type=month] .openinghours--header,
  .openinghours-widget[data-type=month] .openinghours--days {
    width: 336px;
  }
}
.openinghours-widget[data-type=month] .openinghours--header {
  justify-content: space-between;
  width: 100%;
  padding-bottom: 16px;
}
.cs--blue .openinghours-widget[data-type=month] .openinghours--header button {
  color: #00447f;
}
.openinghours-widget[data-type=month] .openinghours--header button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}
@media (min-width: 576px) {
  .openinghours-widget[data-type=month] .openinghours--header button {
    width: 48px;
    height: 24px;
  }
}
.cs--blue .openinghours-widget[data-type=month] .openinghours--header button.openinghours--prev::before,
.cs--blue .openinghours-widget[data-type=month] .openinghours--header button.openinghours--next::before {
  color: #001823;
}
.openinghours-widget[data-type=month] .openinghours--header button.openinghours--prev::before,
.openinghours-widget[data-type=month] .openinghours--header button.openinghours--next::before {
  font-size: 1.2rem;
}
.openinghours-widget[data-type=month] .openinghours--header button.openinghours--prev:before {
  content: "\e003";
}
.openinghours-widget[data-type=month] .openinghours--header button.openinghours--next:before {
  content: "\e005";
}
.openinghours-widget[data-type=month] .openinghours--header .openinghours--month {
  font-weight: 700;
  line-height: 20px;
}
@media (min-width: 576px) {
  .openinghours-widget[data-type=month] .openinghours--header .openinghours--month {
    line-height: 24px;
  }
}
.openinghours-widget[data-type=month] .openinghours--day--day-of-week {
  font-weight: 700;
  text-transform: uppercase;
}
.openinghours-widget[data-type=month] .openinghours--days {
  flex-wrap: wrap;
  margin: 0;
}
.openinghours-widget[data-type=month] .openinghours--day,
.openinghours-widget[data-type=month] .openinghours--day > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1.4rem;
}
@media (min-width: 576px) {
  .openinghours-widget[data-type=month] .openinghours--day,
  .openinghours-widget[data-type=month] .openinghours--day > span {
    width: 48px;
    height: 48px;
  }
}
.openinghours-widget[data-type=month] .openinghours--day-open,
.openinghours-widget[data-type=month] .openinghours--day-closed {
  outline-offset: 0;
  cursor: pointer;
}
.openinghours-widget[data-type=month] .openinghours--day-open[tabindex="0"] > span,
.openinghours-widget[data-type=month] .openinghours--day-closed[tabindex="0"] > span {
  font-weight: 700;
}
.cs--blue .openinghours-widget[data-type=month] .openinghours--day-open[tabindex="0"] > span,
.cs--blue .openinghours-widget[data-type=month] .openinghours--day-open[tabindex="0"]:hover > span,
.cs--blue .openinghours-widget[data-type=month] .openinghours--day-closed[tabindex="0"] > span,
.cs--blue .openinghours-widget[data-type=month] .openinghours--day-closed[tabindex="0"]:hover > span {
  border-color: #001823;
}
.openinghours-widget[data-type=month] .openinghours--day-open[tabindex="0"] > span,
.openinghours-widget[data-type=month] .openinghours--day-open[tabindex="0"]:hover > span,
.openinghours-widget[data-type=month] .openinghours--day-closed[tabindex="0"] > span,
.openinghours-widget[data-type=month] .openinghours--day-closed[tabindex="0"]:hover > span {
  border: 2px solid;
}
.openinghours-widget[data-type=month] .openinghours--day-open[tabindex="0"] .openinghours--details,
.openinghours-widget[data-type=month] .openinghours--day-closed[tabindex="0"] .openinghours--details {
  display: block;
}
.cs--blue .openinghours-widget[data-type=month] .openinghours--day-open > span::after {
  background-color: #001823;
}
.openinghours-widget[data-type=month] .openinghours--day-open > span::after {
  display: block;
  position: relative;
  bottom: 4px;
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
}
.openinghours-widget[data-type=month] .openinghours--details {
  display: none;
  position: absolute;
  width: calc(100% - 20px);
  cursor: default;
}
@media (min-width: 576px) {
  .openinghours-widget[data-type=month] .openinghours--details {
    width: calc(100% - 96px);
  }
}
.openinghours-widget[data-type=month] .openinghours--date {
  font-weight: 700;
  margin-bottom: 16px;
}
.openinghours-widget[data-type=month] .openinghours--status {
  text-transform: capitalize;
}
.openinghours-widget[data-type=month] .openinghours--time,
.openinghours-widget[data-type=month] .openinghours--times-between {
  display: inline;
}
.tabs.opening-hours > [role=tabpanel] {
  padding: 0;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .pager {
    justify-content: flex-end;
  }
}
.pager ul {
  display: flex;
  flex: 1;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .pager ul {
    flex-basis: auto;
    justify-content: flex-start;
  }
}
.cs--blue .pager ul li {
  border-color: #fff;
}
.pager ul li {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  min-width: 32px;
  padding-right: 7px;
  padding-left: 7px;
  border: 2px solid;
  font-size: 0.9rem;
  line-height: 32px;
  text-align: center;
}
.pager ul li.spacing {
  padding: 0 10px 10px;
  line-height: 1;
}
.cs--blue .pager ul li.active {
  border-color: #001823;
}
.pager ul li.active {
  font-weight: 600;
  padding-right: 10px;
  padding-left: 10px;
  border-bottom: 2px solid;
}
.cs--blue .pager ul a {
  color: #001823;
}
.cs--blue .pager ul a {
  border-color: #fff;
}
.pager ul a {
  font-weight: 600;
  display: block;
  padding: 2px 10px 0;
  border-bottom: 2px solid;
  background-image:
    linear-gradient(
      to bottom,
      #ffdb5a 0,
      #ffdb5a 100%);
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}
.cs--blue .pager ul a:focus,
.cs--blue .pager ul a:focus-within,
.cs--blue .pager ul a:focus-visible,
.cs--blue .pager ul a:hover {
  color: #001823;
}
.pager ul a:focus,
.pager ul a:focus-visible {
  height: 36px;
  border-bottom: 0;
  outline: 0;
  box-shadow: inset 0 0 0 2px #001823;
}
.cs--blue .pager ul a.standalone-link:focus,
.cs--blue .pager ul a.standalone-link:focus-within,
.cs--blue .pager ul a.standalone-link:focus-visible,
.cs--blue .pager ul a.standalone-link:hover {
  color: #001823;
}
.cs--blue .pager ul a.standalone-link:focus,
.cs--blue .pager ul a.standalone-link:focus-within,
.cs--blue .pager ul a.standalone-link:focus-visible,
.cs--blue .pager ul a.standalone-link:hover {
  border-bottom-color: #001823;
}
.pager ul .previous,
.pager ul .next {
  display: none;
}
@media (min-width: 768px) {
  .pager ul .previous,
  .pager ul .next {
    display: flex;
  }
}
.pager ul .previous a,
.pager ul .next a {
  padding-right: 0;
}
.pager ul .previous a::after,
.pager ul .next a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 24px;
  margin-top: auto;
  margin-bottom: auto;
}
.pager ul .previous a {
  margin-right: 0;
}
.pager ul .next {
  margin: 0 0 10px;
}
.pager ul .next a {
  margin-left: 0;
}
.pager ul .next a::after {
  right: -36px;
}
.pager .button {
  margin: 20px 0;
}
.partner-block {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
@media (min-width: 960px) {
  .partner-block {
    padding: 0 135px;
  }
}
@media (min-width: 960px) {
  .partner-block.partner__multiple {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
.partner-block.partner__multiple .partner-content {
  display: flex;
  align-items: center;
  min-height: 100%;
}
@media (min-width: 960px) {
  .partner-block.partner__multiple .intro {
    min-width: min-content;
    max-width: 350px;
  }
}
.partner-block.partner__multiple .intro p:last-child {
  margin-bottom: 0;
}
.cs--blue .partner-block.partner__multiple .partners {
  border-color: #ccdeee;
}
.partner-block.partner__multiple .partners {
  margin: 45px 0 0;
  padding: 45px 0 0;
  border-top-width: 2px;
  border-top-style: solid;
}
@media (min-width: 960px) {
  .partner-block.partner__multiple .partners {
    margin: 0 0 0 60px;
    padding: 0 0 0 60px;
    border-top: 0;
    border-left-width: 2px;
    border-left-style: solid;
  }
}
.partner-block.partner__single {
  align-items: center;
  text-align: center;
}
.partner-block.partner__single .intro p:last-child {
  margin-bottom: 30px;
}
.partner-block h2 {
  margin-bottom: 30px;
}
.partner-block ul {
  align-items: center;
  justify-content: space-between;
  gap: 30px 60px;
}
@media (min-width: 768px) {
  .partner-block ul {
    justify-content: flex-start;
  }
}
.partner-block ul li {
  width: auto;
  height: 100px;
  margin: 0;
}
.partner-block a {
  display: block;
  width: auto;
  height: 100%;
  border: 0;
}
.partner-block a[href^="http://"]:not([href*="gent.be"]):not(.no-icon):not(.tag),
.partner-block a[href^="https://"]:not([href*="gent.be"]):not(.no-icon):not(.tag) {
  margin-right: 0;
}
.partner-block figure,
.partner-block img {
  width: auto;
  max-width: 100%;
  height: 100%;
}
.quote-wrapper {
  overflow: auto;
}
.quote {
  margin: 0;
}
blockquote {
  font-weight: 700;
  display: flex;
  position: relative;
  flex-direction: column;
  padding-top: 50px;
}
.cs--blue blockquote::before {
  background-image: url("./media/quote--blue.svg");
}
blockquote::before {
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat center center;
  background-size: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
@media (min-width: 960px) {
  .cs--blue blockquote::before {
    background-image: url("./media/quote--blue.svg");
  }
  blockquote::before {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    background: no-repeat center center;
    background-size: 100%;
    content: "";
  }
}
blockquote .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  padding: 15px 0 30px;
  line-height: 158.333%;
}
@media (min-width: 960px) {
  blockquote .content {
    padding: 30px 0;
  }
}
blockquote .content p {
  font-size: 1.2rem;
}
blockquote .content p:last-of-type {
  margin: 0;
}
.cs--blue blockquote footer {
  color: #001823;
}
.cs--blue blockquote footer {
  background-color: #ffdb5a;
}
blockquote footer {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 2px 10px;
  z-index: 1;
}
.cs--blue blockquote footer::before {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50px' height='18px' viewBox='0 0 36 19'%3E%3Cpath fill='%23ffdb5a' fill-rule='evenodd' d='M50.0702 0C31.2247 0 26.7846 7.44663 25.2657 18H24.8745C23.3559 7.44663 18.9157 0 0.0701904 0H25.0701H50.0702Z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100%;
}
blockquote footer::before {
  position: absolute;
  top: -17px;
  left: 0;
  width: 50px;
  height: 18px;
  content: "";
  transform: rotate(180deg);
}
blockquote footer {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 177.778%;
}
.search {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
}
.search label {
  width: 100%;
  max-width: 100%;
}
.search input:not([type=submit]) {
  flex: 1 1 320px;
}
.search input[type=submit],
.search button[type=submit] {
  font-size: 0.8rem;
  line-height: 175%;
}
.search input[type=search] {
  padding-left: 2.4rem;
}
.cs--blue .search input[type=search],
.search .cs--blue input[type=search] {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23001823' fill-rule='evenodd' d='M15 22c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7m12.061 2.939l-4.017-4.016A9.94 9.94 0 0 0 25 15c0-5.523-4.477-10-10-10S5 9.477 5 15s4.477 10 10 10a9.94 9.94 0 0 0 5.923-1.956l4.016 4.017c.293.293.677.439 1.061.439a1.502 1.502 0 0 0 1.061-2.561'/%3E%3C/svg%3E") no-repeat left 0.4rem center #fff;
}
.cta-block.spotlight h1 {
  margin-bottom: 30px;
}
.cta-block.spotlight .links {
  margin-top: 30px;
}
.cta-block.spotlight .cta-block__image img {
  width: 100%;
}
.cta-block.spotlight.image-left {
  margin-bottom: 40px;
}
.cta-block.spotlight.image-left .cta-block__image {
  margin-right: 0;
}
.cta-block.spotlight.image-left .cta-block__content {
  top: 0;
  left: 0;
}
@media (min-width: 576px) {
  .cta-block.spotlight.image-left .cta-block__content {
    top: auto;
    bottom: 0;
    left: -60px;
  }
  .cta-block.spotlight.image-left .cta-block__content .feature-block {
    width: calc(100% + 60px);
  }
}
.cta-block.spotlight.image-right {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .cta-block.spotlight.image-right {
    flex-direction: row-reverse;
  }
}
.cta-block.spotlight.image-right .cta-block__image {
  margin-left: 0;
}
.cta-block.spotlight.image-right .cta-block__content {
  top: 0;
  margin-right: 0;
}
@media (min-width: 576px) {
  .cta-block.spotlight.image-right .cta-block__content {
    top: auto;
    bottom: 0;
    margin-right: inherit;
  }
}
.cta-block.spotlight.image-right .cta-block__content .feature-block {
  margin: 0;
}
@media (min-width: 576px) {
  .cta-block.spotlight.image-right .cta-block__content .feature-block {
    width: calc(100% + 60px);
  }
}
.messages:before {
  content: "\e035";
}
.cs--blue .messages {
  color: #001823;
}
.cs--blue .messages {
  background-color: #e6f8ff;
}
.cs--blue .messages {
  border-color: #009de0;
}
.messages {
  position: relative;
  flex-direction: column;
  max-width: 970px;
  margin-top: 20px;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 100px 40px 40px;
  border-bottom: 3px solid;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .messages {
    flex-direction: row;
    padding: 60px 60px 60px 125px;
  }
}
.cs--blue .messages::before {
  color: #009de0;
}
.messages::before {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  padding-bottom: 20px;
  font-size: 40px;
  line-height: 40px;
  text-align: left;
}
@media (min-width: 576px) {
  .messages::before {
    top: 60px;
    left: 60px;
    padding-right: 20px;
  }
}
.messages--status:before {
  content: "\e00f";
}
.cs--blue .messages--status {
  background-color: #e1fde1;
}
.cs--blue .messages--status {
  border-color: #2c8726;
}
.cs--blue .messages--status::before {
  color: #2c8726;
}
.cs--blue .messages--status a {
  border-color: #001823;
}
.messages--status a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .messages--status a {
  background-image:
    linear-gradient(
      to bottom,
      #cbe4cb 0,
      #cbe4cb 100%);
}
.messages--status a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.messages--status a:hover,
.messages--status a:focus {
  background-size: 100% 100%;
}
.messages--error:before {
  content: "\e018";
}
.cs--blue .messages--error {
  background-color: #ffe8ec;
}
.cs--blue .messages--error {
  border-color: #ea0d33;
}
.cs--blue .messages--error::before {
  color: #ea0d33;
}
.cs--blue .messages--error a {
  border-color: #001823;
}
.messages--error a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .messages--error a {
  background-image:
    linear-gradient(
      to bottom,
      #e6d1d4 0,
      #e6d1d4 100%);
}
.messages--error a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.messages--error a:hover,
.messages--error a:focus {
  background-size: 100% 100%;
}
.messages--warning:before {
  content: "\e022";
}
.cs--blue .messages--warning {
  background-color: #fff2e5;
}
.cs--blue .messages--warning {
  border-color: #e06c00;
}
.cs--blue .messages--warning::before {
  color: #e06c00;
}
.cs--blue .messages--warning a {
  border-color: #001823;
}
.messages--warning a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .messages--warning a {
  background-image:
    linear-gradient(
      to bottom,
      #e6dace 0,
      #e6dace 100%);
}
.messages--warning a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.messages--warning a:hover,
.messages--warning a:focus {
  background-size: 100% 100%;
}
.messages > p:last-child {
  margin: 0;
}
.cs--blue .messages a {
  border-color: #001823;
}
.messages a {
  transition: background-image 1s, color 1s;
  border-bottom: 2px solid;
  background-repeat: repeat-y;
  background-position: 0 100%;
}
.cs--blue .messages a {
  background-image:
    linear-gradient(
      to bottom,
      #cfdfe6 0,
      #cfdfe6 100%);
}
.messages a {
  transition: background-size 0.2s, color 0.2s;
  background-size: 0 100%;
}
.messages a:hover,
.messages a:focus {
  background-size: 100% 100%;
}
.cs--blue .messages a {
  border-color: #001823;
}
.cs--blue .messages a {
  color: #001823;
}
.cs--blue .messages a:hover {
  color: #001823;
}
.subscribe {
  font-size: 0.8rem;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
}
.cs--blue .subscribe h2,
.cs--blue .subscribe h3 {
  color: #001823;
}
.subscribe h2,
.subscribe h3 {
  margin-bottom: 30px;
}
.subscribe ul li {
  font-size: 0.8rem;
}
.subscribe p:last-child {
  margin-bottom: 0;
}
.subscribe label {
  width: 100%;
  max-width: 100%;
  color: #001823;
}
.subscribe input {
  border: 0;
}
.subscribe input[type=email] {
  flex: 1 1 320px;
  margin-right: 8px;
}
.subscribe input[type=submit] {
  font-size: 0.8rem;
  line-height: 175%;
}
.cs--blue .table-of-contents {
  background-color: #e6f8ff;
}
.table-of-contents {
  font-size: 0.8rem;
  padding: 1.5rem;
  container-type: inline-size;
}
.table-of-contents h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.table-of-contents ul {
  font-size: 0.8rem;
  margin: 0;
  columns: 1;
  column-gap: 45px;
}
@media (min-width: 576px) {
  .table-of-contents ul.two-column {
    columns: 2;
  }
  .table-of-contents ul.three-column {
    columns: 3;
  }
}
.table-of-contents ul > li {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
@container (max-width: 700px) {
  @media (min-width: 576px) {
    .table-of-contents ul.three-column {
      columns: 2;
    }
  }
}
.cs--blue .tabs [role=tabpanel] {
  background-color: #ffec93;
}
.tabs [role=tabpanel] {
  padding: 20px 20px 10px;
}
.tabs [role=tabpanel]:target {
  display: block;
}
.tabs [role=tabpanel][aria-hidden][aria-hidden=true] {
  display: none;
}
.tabs [role=tabpanel][aria-hidden][aria-hidden=false] {
  display: block;
}
.tabs [role=tablist] {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style: none;
}
@media (min-width: 960px) {
  .tabs [role=tablist] {
    flex-direction: row;
  }
}
.tabs [role=tablist] > li[role=presentation] {
  flex: 0 0 auto;
  margin: 0;
}
.tabs [role=tablist] > li[role=presentation] a,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"],
.tabs [role=tablist] > li[role=presentation] a[download],
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]),
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]) {
  border-bottom: 0;
}
.tabs [role=tablist] > li[role=presentation] a,
.tabs [role=tablist] > li[role=presentation] a:focus,
.tabs [role=tablist] > li[role=presentation] a:hover,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"],
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]:focus,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]:hover,
.tabs [role=tablist] > li[role=presentation] a[download],
.tabs [role=tablist] > li[role=presentation] a[download]:focus,
.tabs [role=tablist] > li[role=presentation] a[download]:hover,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]),
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]):focus,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]):hover,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]),
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]):focus,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]):hover {
  background-image: none;
}
.cs--blue .tabs [role=tablist] > li[role=presentation] a,
.cs--blue .tabs [role=tablist] > li[role=presentation] a[href^="mailto:"],
.cs--blue .tabs [role=tablist] > li[role=presentation] a[download],
.cs--blue .tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]),
.cs--blue .tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]) {
  color: #001823;
}
.tabs [role=tablist] > li[role=presentation] a,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"],
.tabs [role=tablist] > li[role=presentation] a[download],
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]),
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]) {
  display: inline-block;
  width: 100%;
  padding: 20px;
  font-weight: 600;
  line-height: 128%;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 960px) {
  .tabs [role=tablist] > li[role=presentation] a,
  .tabs [role=tablist] > li[role=presentation] a[href^="mailto:"],
  .tabs [role=tablist] > li[role=presentation] a[download],
  .tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]),
  .tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]) {
    width: auto;
    font-size: 1rem;
    line-height: 130%;
    text-align: left;
  }
}
.cs--blue .tabs [role=tablist] > li[role=presentation] a::after,
.cs--blue .tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]::after,
.cs--blue .tabs [role=tablist] > li[role=presentation] a[download]::after,
.cs--blue .tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"])::after,
.cs--blue .tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"])::after {
  color: #001823;
}
.tabs [role=tablist] > li[role=presentation] a::after,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]::after,
.tabs [role=tablist] > li[role=presentation] a[download]::after,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"])::after,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"])::after {
  display: block;
  bottom: 0;
  left: 0;
  width: 0;
  margin: 0 auto;
  transition: width 100ms;
  border-bottom: 3px solid;
  content: "";
  overflow: visible;
}
.tabs [role=tablist] > li[role=presentation] a[role=tab][aria-selected=true],
.tabs [role=tablist] > li[role=presentation] a:hover,
.tabs [role=tablist] > li[role=presentation] a:focus,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"][role=tab][aria-selected=true],
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]:hover,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]:focus,
.tabs [role=tablist] > li[role=presentation] a[download][role=tab][aria-selected=true],
.tabs [role=tablist] > li[role=presentation] a[download]:hover,
.tabs [role=tablist] > li[role=presentation] a[download]:focus,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"])[role=tab][aria-selected=true],
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]):hover,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]):focus,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"])[role=tab][aria-selected=true],
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]):hover,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]):focus {
  background: transparent;
}
.tabs [role=tablist] > li[role=presentation] a[role=tab][aria-selected=true]::after,
.tabs [role=tablist] > li[role=presentation] a:hover::after,
.tabs [role=tablist] > li[role=presentation] a:focus::after,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"][role=tab][aria-selected=true]::after,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]:hover::after,
.tabs [role=tablist] > li[role=presentation] a[href^="mailto:"]:focus::after,
.tabs [role=tablist] > li[role=presentation] a[download][role=tab][aria-selected=true]::after,
.tabs [role=tablist] > li[role=presentation] a[download]:hover::after,
.tabs [role=tablist] > li[role=presentation] a[download]:focus::after,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"])[role=tab][aria-selected=true]::after,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]):hover::after,
.tabs [role=tablist] > li[role=presentation] a[href^="http://"]:not([href*="gent.be"]):focus::after,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"])[role=tab][aria-selected=true]::after,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]):hover::after,
.tabs [role=tablist] > li[role=presentation] a[href^="https://"]:not([href*="gent.be"]):focus::after {
  width: 100%;
}
.cs--blue .tabs [role=tablist] > li[role=presentation] [role=tab][aria-selected=true] {
  background-color: #ffec93;
}
.tabs [role=tablist] > li[role=presentation] [role=tab][aria-selected=true] {
  border-bottom: 0;
}
.tabs.light [role=tabpanel] {
  background-color: transparent;
}
.cs--blue .tabs.light [role=tablist] {
  border-color: #ffec93;
}
.tag-list-wrapper .tag-list {
  font-size: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
  list-style: none;
}
.tag-list-wrapper .tag-list li,
.tag-list-wrapper .tag-list a,
.tag-list-wrapper .tag-list span {
  width: 100%;
}
@media (min-width: 576px) {
  .tag-list-wrapper .tag-list li,
  .tag-list-wrapper .tag-list a,
  .tag-list-wrapper .tag-list span {
    width: auto;
  }
}
.tag-list-wrapper .tag-list li {
  margin: 5px;
}
.teaser {
  position: relative;
  list-style: none;
}
.teaser h3.bg-none {
  position: relative;
  margin: -13px 0 20px;
  z-index: 3;
}
.cs--blue .teaser h3.bg-none span {
  background-color: #ffdb5a;
}
.teaser h3.bg-none span {
  padding: 2.5px 10px;
}
.teaser .date {
  font-size: 0.7rem;
}
.cs--blue .teaser .date {
  color: #687278;
}
.teaser .date {
  position: relative;
  margin: 10px 0;
  z-index: 3;
}
.teaser .date span:before {
  content: "\e00a";
}
.teaser .date span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
}
.teaser .date span::before {
  position: relative;
  margin-right: 5px;
  font-size: 1.2rem;
}
.teaser .tag-list-wrapper {
  margin: 15px 0 -5px;
}
.teaser .tag-list-wrapper li {
  width: auto;
}
.teaser ul {
  margin: 20px 0 20px 20px;
}
.teaser .teaser-links,
.teaser ol {
  margin: 20px 0;
}
.teaser .teaser-links {
  list-style-type: none;
}
.teaser a.read-more {
  font-weight: 700;
}
.teaser a.teaser-overlay-link {
  border-bottom: 0;
}
.teaser a.teaser-overlay-link,
.teaser a.teaser-overlay-link:focus,
.teaser a.teaser-overlay-link:hover {
  background-image: none;
}
.teaser a.teaser-overlay-link {
  background-color: transparent;
}
.teaser a.teaser-overlay-link:hover,
.teaser a.teaser-overlay-link:focus {
  background-color: transparent;
}
.teaser a.teaser-overlay-link {
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 3;
}
.teaser .teaser-content {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.teaser .teaser-content a {
  position: relative;
  z-index: 4;
}
.teaser .teaser-content .content__first {
  position: relative;
  order: 1;
}
.teaser .teaser-content .content__first .tags-label-wrapper {
  display: flex;
  position: absolute;
  top: -15px;
  left: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 20px 0 0;
  z-index: 3;
}
.teaser .teaser-content .content__first .tags-label-wrapper .label {
  margin: 0 10px 10px 0;
}
.teaser .teaser-content .content__first .tags-label-wrapper ul {
  margin: 0;
}
.teaser .teaser-content .content__first .tags-label-wrapper ul > li {
  margin: 0 10px 10px 0;
}
.teaser .teaser-content .content__first .tags-label-wrapper .tag-list-wrapper {
  display: inline-block;
  position: relative;
  margin: 0;
}
.teaser .teaser-content .content__second {
  position: relative;
  order: 2;
  height: 100%;
  padding: 0 20px 20px;
  font-size: 0.9rem;
}
.teaser .teaser-content .content__second > i {
  float: left;
  line-height: 1;
}
.teaser .teaser-content .content__second > i::before {
  display: block;
  font-size: 1.9rem;
}
@media (min-width: 576px) {
  .teaser .teaser-content .content__second > i::before {
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) {
  .teaser .teaser-content .content__second > i {
    float: none;
  }
}
.teaser .teaser-content .content__second > i + h3 {
  margin-left: 53px;
}
@media (min-width: 576px) {
  .teaser .teaser-content .content__second > i + h3 {
    margin-left: 0;
  }
}
.teaser figcaption {
  display: none;
}
.teaser.no-image h3,
.teaser--no-images .teaser h3 {
  margin: 0 0 20px;
}
.teaser.no-image .content__second,
.teaser--no-images .teaser .content__second {
  padding: 0;
}
.teaser.no-image .figure-wrapper,
.teaser--no-images .teaser .figure-wrapper {
  display: none;
}
.cs--blue .teaser.teaser--background .content__second {
  background-color: #fff;
}
.teaser.teaser--background .content__second {
  padding: 0 20px 20px;
}
.teaser.teaser--background.no-image h3,
.teaser--no-images .teaser.teaser--background h3 {
  margin: 0 0 20px;
}
.teaser.teaser--background.no-image .content__second,
.teaser--no-images .teaser.teaser--background .content__second {
  padding: 20px;
}
.teaser.teaser--background a.teaser-overlay-link {
  top: 0;
}
.teaser.teaser--square .content__first {
  order: 2;
}
.teaser.teaser--square .content__second {
  display: flex;
  position: absolute;
  bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
  width: 100%;
  height: auto;
  padding: 20px 100px 20px 20px;
}
.teaser.teaser--square .content__second h3 {
  margin: 0;
}
.cs--blue .teaser.teaser--square .content__second h3 span {
  background-color: #fff;
}
.teaser.teaser--square .content__second .date {
  margin: 0;
  z-index: 1;
}
.cs--blue .teaser.teaser--square .content__second .date span {
  background-color: #fff;
}
.teaser.teaser--square .content__second .date span {
  padding: 5px 10px;
  line-height: 1.2;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.cs--blue .teaser.teaser--square .content__second .date::before {
  background-color: #fff;
}
.teaser.teaser--square .content__second .read-more {
  border-bottom: 0;
}
.teaser.teaser--square .content__second .read-more,
.teaser.teaser--square .content__second .read-more:focus,
.teaser.teaser--square .content__second .read-more:hover {
  background-image: none;
}
.teaser.teaser--square .content__second .read-more {
  font-size: 0.9rem;
}
.cs--blue .teaser.teaser--square .content__second .read-more {
  color: #001823;
}
.cs--blue .teaser.teaser--square .content__second .read-more {
  background-color: #7ed9ff;
}
.teaser.teaser--square .content__second .read-more {
  display: flex;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  text-align: center;
  text-indent: -9999999px;
}
.teaser.teaser--square .content__second .read-more.standalone-link:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not(.back) {
  margin: 0;
}
.cs--blue .teaser.teaser--square .content__second .read-more:hover {
  background-color: #1abcff;
}
.teaser.teaser--square .content__second .read-more::after {
  display: block;
  position: relative;
  left: 0.25rem;
  text-indent: 0;
}
.teaser.teaser--square .content__second .read-more {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 960px) {
  .teaser.teaser--square--double .figure-wrapper__mobile {
    display: none;
  }
}
.teaser.teaser--square--double .figure-wrapper__desktop {
  display: none;
}
@media (min-width: 960px) {
  .teaser.teaser--square--double .figure-wrapper__desktop {
    display: block;
  }
}
@media (max-width: 959px) {
  .teaser.teaser--square--double h3 {
    font-size: 0.9rem;
    line-height: 1.15rem;
  }
}
.cs--blue .teaser.teaser--simple .content__second {
  background-color: #fff;
}
.teaser.teaser--simple .content__second {
  position: static;
  padding: 20px 60px 20px 20px;
}
@media (min-width: 576px) {
  .teaser.teaser--simple .content__second {
    padding: 30px 60px 30px 30px;
  }
}
.teaser.teaser--simple .content__second h3 {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
}
@media (min-width: 576px) {
  .teaser.teaser--simple .content__second h3 {
    display: block;
    height: auto;
    margin: 0 15px 20px 0;
  }
}
.teaser.teaser--simple .content__second h3 span {
  padding: 0;
  background-color: transparent;
}
.teaser.teaser--simple .content__second p {
  display: none;
}
@media (min-width: 768px) {
  .teaser.teaser--simple .content__second p {
    display: block;
  }
}
.teaser.teaser--simple .content__second .teaser-links {
  display: none;
  margin: 0;
}
@media (min-width: 768px) {
  .teaser.teaser--simple .content__second .teaser-links {
    display: block;
  }
}
.teaser.teaser--simple .content__second .read-more {
  border-bottom: 0;
}
.teaser.teaser--simple .content__second .read-more,
.teaser.teaser--simple .content__second .read-more:focus,
.teaser.teaser--simple .content__second .read-more:hover {
  background-image: none;
}
.teaser.teaser--simple .content__second .read-more {
  font-size: 0.9rem;
}
.cs--blue .teaser.teaser--simple .content__second .read-more {
  color: #001823;
}
.cs--blue .teaser.teaser--simple .content__second .read-more {
  background-color: #7ed9ff;
}
.teaser.teaser--simple .content__second .read-more {
  display: flex;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  text-align: center;
  text-indent: -9999999px;
}
.teaser.teaser--simple .content__second .read-more.standalone-link:not([href^="mailto:"]):not([href^="tel:"]):not([download]):not([href^="http://"]):not([href^="https://"]):not(.back) {
  margin: 0;
}
.cs--blue .teaser.teaser--simple .content__second .read-more:hover {
  background-color: #1abcff;
}
.teaser.teaser--simple .content__second .read-more::after {
  display: block;
  position: relative;
  left: 0.25rem;
  text-indent: 0;
}
.teaser.teaser--simple .content__second .read-more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.teaser.teaser--simple a.teaser-overlay-link {
  top: 0;
}
.cs--blue .teaser.teaser--inverted .content__second {
  background-color: #e6f8ff;
}
.cs--blue .teaser.teaser--wide {
  border-color: #005ba9;
}
.teaser.teaser--wide {
  margin: 0 0 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid #005ba9;
}
.teaser.teaser--wide h3 {
  margin: 0 0 20px;
}
.teaser.teaser--wide h3.bg-none span {
  padding-right: 0;
  padding-left: 0;
}
.teaser.teaser--wide .tag-list-wrapper {
  margin: 20px 0;
}
.teaser.teaser--wide .icon-list,
.teaser.teaser--wide .location {
  font-size: 0.7rem;
}
.cs--blue .teaser.teaser--wide .icon-list,
.cs--blue .teaser.teaser--wide .location {
  color: #687278;
}
.teaser.teaser--wide .icon-list,
.teaser.teaser--wide .location {
  margin: 0 0 10px;
}
.teaser.teaser--wide .location {
  font-weight: 700;
}
.teaser.teaser--wide .location i {
  margin-right: 6px;
  font-size: 1.5rem;
  vertical-align: middle;
}
.teaser.teaser--wide .teaser-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .teaser.teaser--wide .teaser-content {
    flex-wrap: nowrap;
  }
}
.teaser.teaser--wide .content__first,
.teaser.teaser--wide .content__second {
  flex-basis: 100%;
}
.teaser.teaser--wide .content__first {
  order: 1;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .teaser.teaser--wide .content__first {
    flex: 0 0 230px;
    margin-right: 30px;
    margin-bottom: 0;
  }
}
.teaser.teaser--wide .content__second {
  order: 2;
  padding: 0;
}
.cs--blue .teaser.teaser--wide .content__second .dash-separated-list {
  color: #687278;
}
.teaser.teaser--wide .content__second .dash-separated-list {
  font-size: 0.8rem;
  margin: 10px 0;
}
.teaser.teaser--wide .content__second .dash-separated-list li {
  margin-bottom: 0;
}
.teaser.teaser--wide .content__second p {
  font-size: 0.8rem;
  margin-top: 10px;
}
.cs--blue .readspeaker-button {
  color: #fff;
}
.cs--blue .readspeaker-button {
  background-color: #001823;
}
.readspeaker-button {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  min-height: 1.8rem;
  margin-bottom: 1.5rem;
  padding: 0 0.75rem 0 0.4rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border: 0;
  cursor: pointer;
}
.cs--blue .readspeaker-button:focus,
.cs--blue .readspeaker-button:hover {
  background-color: #687278;
}
.cs--blue .readspeaker-button i {
  color: #fff;
}
.readspeaker-button i {
  display: inline-block;
  margin-right: 0.3rem;
  padding: 0.1em 0.3em;
  font-size: 0.9rem;
  vertical-align: middle;
}
.readspeaker-button span {
  vertical-align: middle;
}
.video::before,
.video::after {
  display: table;
  content: " ";
}
.video::after {
  clear: both;
}
.video {
  width: 100%;
}
.video .responsive-video {
  position: relative;
  padding-bottom: 56.25%;
}
.video .responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video a {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.audio-description {
  text-align: right;
}
.banner-image {
  position: relative;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.banner-image figure {
  display: inline-block;
  position: relative;
  max-width: 100%;
}
.banner-image figure img {
  width: auto;
  margin: 0 auto;
}
.banner-image figcaption {
  display: none;
  max-width: 1680px;
}
@media (min-width: 768px) {
  .banner-image figcaption {
    display: block;
  }
}
ul[class^=grid-] {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  gap: 45px;
}
ul[class^=grid-] > li {
  width: 100%;
  list-style: none;
}
.grid__show-more {
  margin: 20px 0;
  font-size: 0.9rem;
  text-align: center;
}
ul.grid-2-1 > li {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
}
@media (min-width: 768px) {
  ul.grid-2-1 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-2-1 > li {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-2-1 > li:first-child {
    flex-basis: calc((100% - 90px) / 3 * 2 + 45px);
    width: calc((100% - 90px) / 3 * 2 + 45px);
  }
}
@media (min-width: 576px) {
  ul.grid-1 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-2 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-3 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-4 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-5 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-6 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-7 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-8 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-9 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-10 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-11 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  ul.grid-12 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  ul.grid-5 > li {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  ul.grid-4 > li {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-1 > li {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-2 > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-3 > li {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-4 > li {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-5 > li {
    flex-basis: calc((100% - 180px) / 5);
    width: calc((100% - 180px) / 5);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-6 > li {
    flex-basis: calc((100% - 225px) / 6);
    width: calc((100% - 225px) / 6);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-7 > li {
    flex-basis: calc((100% - 270px) / 7);
    width: calc((100% - 270px) / 7);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-8 > li {
    flex-basis: calc((100% - 315px) / 8);
    width: calc((100% - 315px) / 8);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-9 > li {
    flex-basis: calc((100% - 360px) / 9);
    width: calc((100% - 360px) / 9);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-10 > li {
    flex-basis: calc((100% - 405px) / 10);
    width: calc((100% - 405px) / 10);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-11 > li {
    flex-basis: calc((100% - 450px) / 11);
    width: calc((100% - 450px) / 11);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  ul.grid-12 > li {
    flex-basis: calc((100% - 495px) / 12);
    width: calc((100% - 495px) / 12);
    margin-left: 0;
  }
}
.cs--blue .content-header-container {
  background-color: #005ba9;
}
.content-header-container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .content-header-container {
    margin-bottom: 45px;
    padding: 90px 20px;
  }
}
.content-header-container h1 {
  max-width: none;
}
.content-header-container.image {
  margin-bottom: calc(100vw - 85px);
  padding-bottom: 120px;
}
@media (min-width: 768px) {
  .content-header-container.image {
    flex-direction: row;
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 960px) {
  .content-header-container.image {
    margin-bottom: 145px;
  }
}
.content-header-container.image:not(.overlap) {
  margin-bottom: calc(100vw - 85px);
}
@media (min-width: 768px) {
  .content-header-container.image:not(.overlap) {
    margin-bottom: 190px;
  }
}
.content-header-container.overlap {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (min-width: 768px) {
  .content-header-container.overlap {
    flex-direction: row;
    padding-top: 80px;
    padding-bottom: 105px;
  }
}
@media (min-width: 768px) {
  .content-header-container.overlap.image {
    margin-bottom: 165px;
    padding-bottom: 90px;
  }
}
.cs--blue .content-header-container.secondary {
  background-color: #ffdb5a;
}
.cs--blue .content-header-container.accolade-title {
  background-color: #e6f8ff;
}
.cs--blue .content-header-container.accolade-title h1 {
  color: #fff;
}
.cs--blue .content-header-container.accolade-title h1 {
  background-color: #005ba9;
}
.content-header-container.accolade-title h1 {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 2px 10px;
  z-index: 1;
  margin-bottom: 36px;
}
.cs--blue .content-header-container.accolade-title h1::before {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100px' height='36px' viewBox='0 0 36 19'%3E%3Cpath fill='%23005ba9' fill-rule='evenodd' d='M50.0702 0C31.2247 0 26.7846 7.44663 25.2657 18H24.8745C23.3559 7.44663 18.9157 0 0.0701904 0H25.0701H50.0702Z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100%;
}
.content-header-container.accolade-title h1::before {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100px;
  height: 36px;
  content: "";
}
.cs--blue .content-header-container.accolade-title h1 {
  background-color: #005ba9;
}
.content-header-container.accolade-title h1 {
  display: inline;
  padding: 5px 15px;
  color: #fff;
  line-height: 130%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.content-header-container.accolade-title.breakout {
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  .content-header-container.accolade-title.breakout {
    padding-bottom: 55px;
  }
}
.content-header-container.accolade-title.breakout .left {
  position: absolute;
  bottom: 3px;
}
.content-header-container.accolade-title.breakout h1 {
  bottom: 0;
}
.content-header-container:not(.image) .left {
  padding-right: 0;
}
.content-header-container .left {
  flex-basis: auto;
  max-width: 1170px;
}
@media (min-width: 768px) {
  .content-header-container .left {
    padding-right: 60px;
  }
}
.content-header-container .left h1 {
  margin: 0;
}
.content-header-container .left h4 {
  margin: 60px 0 20px;
}
.content-header-container .left .summary-text {
  margin: 30px 0 0;
}
.content-header-container .left .summary-text p {
  font-size: 0.9rem;
  line-height: 177.778%;
}
.content-header-container .left .summary-text p:last-of-type {
  margin-bottom: 0;
}
.content-header-container .left time + .summary-text {
  margin: 10px 0 0;
}
.content-header-container .left .tag-list-wrapper {
  margin: 20px 0 0;
}
.content-header-container .left .tag-list-wrapper li,
.content-header-container .left .tag-list-wrapper a {
  width: 100%;
}
@media (min-width: 576px) {
  .content-header-container .left .tag-list-wrapper li,
  .content-header-container .left .tag-list-wrapper a {
    width: auto;
  }
}
.content-header-container .right {
  flex: auto;
  align-self: flex-end;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .content-header-container .right {
    flex: 0 0 calc(47vw - 180px);
    width: auto;
    height: calc(47vw - 80px - 290px);
    text-align: right;
  }
}
@media only screen and (min-width: 1400px) {
  .content-header-container .right {
    flex: 0 0 470px;
    height: 280px;
  }
}
.content-header-container .right figure {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: 40px;
  transform: translate(0, calc(100% - 90px));
}
@media (min-width: 768px) {
  .content-header-container .right figure {
    position: static;
    max-width: 31.5rem;
    padding: 0;
    transform: none;
  }
}
.content-header-container .right figure img {
  width: 100%;
  height: auto;
}
.cs--blue .documents li,
.cs--blue .document-box li {
  border-color: rgb(191.25, 214, 233.5);
}
.documents li,
.document-box li {
  width: 100%;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid;
}
@media (min-width: 768px) {
  .documents li,
  .document-box li {
    max-width: 36rem;
  }
}
.documents li:last-of-type,
.document-box li:last-of-type {
  padding-bottom: 0;
  border: 0;
}
.documents button,
.document-box button {
  margin-top: 2.3rem;
}
.documents .file-size,
.document-box .file-size {
  margin-left: 0.3em;
}
.filter .result-section .filter-page-label {
  font-weight: 600;
}
@media (min-width: 960px) {
  .filter .result-section .result__show-filters {
    display: none;
  }
}
.filter .result-section .selected-filters {
  margin-bottom: 22px;
}
.cs--blue .filter .result-section .selected-filters ul li:not(:last-child) a {
  color: #001823;
}
.filter .result-section .selected-filters ul li:last-child {
  line-height: 2;
}
.filter .result-section .filter__result-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.filter .result-section .filter__result-count > * {
  margin: 0;
}
.filter .result-section .filter__result-count > * + * {
  margin-left: 15px;
}
.filter .result-section ul.filter__results {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .filter .result-section .pager li.previous,
  .filter .result-section .pager li.next {
    display: none;
  }
}
@media (min-width: 960px) {
  .filter .result-section .pager li.previous,
  .filter .result-section .pager li.next {
    display: block;
  }
}
.sidebar.filter-section {
  visibility: hidden;
}
@media (min-width: 960px) {
  .sidebar.filter-section {
    position: static;
    height: auto;
    box-shadow: none;
    overflow: visible;
    visibility: visible;
    z-index: auto;
  }
}
@media (max-width: 960px) {
  .sidebar.filter-section.visible {
    padding: 0;
    visibility: visible;
  }
  .sidebar.filter-section.visible > .modal-inner > .modal-header {
    display: block;
  }
}
.cs--blue .sidebar.filter-section h3 {
  color: #005ba9;
}
.sidebar.filter-section > .modal-inner {
  width: 100%;
  max-width: initial;
  min-height: 100%;
  margin: 0;
  padding: 0;
}
@media (min-width: 960px) {
  .sidebar.filter-section > .modal-inner {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    z-index: auto;
    filter: none;
  }
}
.sidebar.filter-section > .modal-inner > .modal-header {
  display: none;
}
@media (min-width: 960px) {
  .sidebar.filter-section > .modal-inner > .modal-content {
    margin-bottom: 30px;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 960px) {
  .sidebar.filter-section > .modal-inner > .modal-actions {
    margin-top: 10px;
    padding-right: 0;
    padding-left: 0;
    border: 0;
  }
}
.sidebar.filter-section > .modal-overlay {
  display: none;
}
.cs--blue .sidebar.filter-section form .form-item > label,
.cs--blue .sidebar.filter-section form fieldset.form-item > legend,
.cs--blue .sidebar.filter-section form .modal-content .form-item > label,
.cs--blue .sidebar.filter-section form .modal-content fieldset.form-item > legend {
  color: #005ba9;
}
.sidebar.filter-section form .form-item > label,
.sidebar.filter-section form fieldset.form-item > legend,
.sidebar.filter-section form .modal-content .form-item > label,
.sidebar.filter-section form .modal-content fieldset.form-item > legend {
  margin-bottom: 16px;
}
.sidebar.filter-section form fieldset,
.sidebar.filter-section form .modal-content fieldset {
  padding: 0;
  border: 0;
}
.sidebar.filter-section form fieldset > legend,
.sidebar.filter-section form .modal-content fieldset > legend {
  padding: 0;
}
.sidebar.filter-section .label-optional {
  display: none;
}
.sidebar.filter-section .filter__submit {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.footer {
  margin: 60px -20px 0;
}
@media (min-width: 960px) {
  .footer {
    margin-top: 280px;
  }
}
.footer h4 {
  margin-top: 0;
  margin-bottom: 15px;
}
.footer .content-container {
  display: flex;
  flex-wrap: wrap;
  max-width: calc(1170px + 53px);
}
@media (min-width: 1223px) {
  .footer .content-container {
    max-width: 1170px;
    padding-right: 0;
    padding-left: 0;
    gap: 45px;
  }
}
.footer .footer-top {
  background-color: transparent;
}
@media (min-width: 960px) {
  .cs--blue .footer .footer-top {
    background-color: #e6f8ff;
  }
}
.footer .footer-top .content-container {
  padding-top: 0;
}
@media (min-width: 960px) {
  .footer .footer-top .content-container {
    padding-bottom: 70px;
  }
}
.cs--blue .footer .footer-top .footer--column {
  background-color: #e6f8ff;
}
.footer .footer-top .footer--column {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
  flex: 0 0 auto;
  padding: 20px 20px 60px;
}
.footer .footer-top .footer--column:first-of-type {
  padding-bottom: 20px;
  background-color: transparent;
}
.footer .footer-top .footer--column:nth-of-type(2) {
  margin-top: -74px;
  padding-top: 90px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .footer .footer-top .footer--column {
    width: 50%;
    margin-top: -74px;
    padding-top: 90px;
  }
  .footer .footer-top .footer--column:first-of-type {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
    margin-left: 0;
    margin-top: 0;
    padding-top: 0;
    background-color: transparent;
  }
}
@media (min-width: 1223px) {
  .footer .footer-top .footer--column {
    padding-right: 0;
    padding-left: 0;
  }
  .footer .footer-top .footer--column:first-of-type {
    padding-right: 20px;
  }
}
@media (min-width: 960px) {
  .footer .footer-top .footer--column {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
    margin-left: 0;
    margin-top: 58px;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .footer .footer-top .footer--column:nth-of-type(2),
  .footer .footer-top .footer--column:nth-of-type(3) {
    margin-top: 0;
  }
  .footer .footer-top .footer--column:first-of-type {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
    order: 1;
    margin-top: 0;
  }
}
@media (min-width: 1224px) {
  .footer .footer-top .footer--column:first-of-type {
    padding-right: 0;
    padding-left: 0;
  }
}
.footer .footer-top .footer--column a {
  font-size: 0.8rem;
}
.footer .footer-top ul {
  margin: 0;
  list-style: none;
}
.footer .footer-top .social-list ul {
  margin: 0 -5px;
}
.footer .footer-bottom {
  font-size: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  gap: 20px;
}
@media (min-width: 1223px) {
  .footer .footer-bottom {
    padding: 20px 0;
  }
}
.footer .footer-bottom.content-container {
  justify-content: space-between;
}
.footer .footer-bottom ul {
  font-size: 0.7rem;
  margin: 0;
  list-style: none;
}
.footer .footer-bottom li {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .footer .footer-bottom li {
    display: inline-block;
    padding: 0 8px;
  }
  .footer .footer-bottom li:first-of-type {
    padding-left: 0;
  }
}
.footer .footer-bottom .partnership {
  font-size: 0.7rem;
  line-height: 150%;
}
.footer .footer-bottom .partnership i.icon-district09 {
  margin-left: 10px;
  font-size: 1.4rem;
  vertical-align: middle;
}
.footer .footer-bottom .footer--column {
  order: 2;
  width: 100%;
}
.footer .footer-bottom .footer--column.partnership {
  order: 1;
}
@media (min-width: 960px) {
  .footer .footer-bottom .footer--column {
    width: auto;
  }
}
[class*=cs--] .footer a[href^="http://"]:not(.no-icon):not(.tag),
[class*=cs--] .footer a[href^="https://"]:not(.no-icon):not(.tag) {
  margin-right: inherit;
}
[class*=cs--] .footer a[href^="http://"]:not(.no-icon):not(.tag)::after,
[class*=cs--] .footer a[href^="https://"]:not(.no-icon):not(.tag)::after {
  content: none;
}
form .form-actions {
  margin-top: 30px;
}
form .privacy-disclaimer {
  margin-top: -80px;
  padding-top: 120px;
}
form .privacy-disclaimer:not(:target) {
  display: none;
}
header.header {
  position: relative;
}
header.header > .content-container {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  header.header > .content-container {
    flex-wrap: wrap;
  }
}
header.header > .content-container > :not(:first-child) {
  margin-left: 30px;
}
header.header > .content-container .site-logo {
  margin-right: auto;
  padding: 20px 0;
}
.is-frontpage header.header > .content-container .site-logo {
  align-items: flex-start;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .is-frontpage header.header > .content-container .site-logo {
    padding: 20px 0 0;
  }
}
header.header > .content-container .site-logo.subsite {
  flex: 1;
}
header.header > .content-container .search {
  display: none;
  flex: 1;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
header.header > .content-container .search label {
  font-weight: 700;
}
header.header > .content-container .search input {
  margin-bottom: 0;
}
header.header > .content-container .search input[type=submit],
header.header > .content-container .search button[type=submit] {
  max-width: 0;
  padding-right: 0;
  padding-left: 0;
  transition:
    opacity 0.2s ease-in-out,
    max-width 0.2s ease-in-out,
    padding 0.2s ease-in-out,
    background-size 0.3s;
  box-shadow: none;
  opacity: 0;
}
header.header > .content-container .search input[type=submit]:focus,
header.header > .content-container .search button[type=submit]:focus {
  max-width: 9999px;
  padding-right: 15px;
  padding-left: 15px;
  opacity: 1;
}
header.header > .content-container .search input[type=search],
header.header > .content-container .search input[type=text] {
  flex: 0 1 auto;
  width: 100%;
  min-width: 0;
  max-width: 210px;
  margin-right: 0;
  transition: max-width 0.2s ease-in-out;
}
header.header > .content-container .search input[type=search]:invalid,
header.header > .content-container .search input[type=text]:invalid {
  box-shadow: none;
}
header.header > .content-container .search input[type=search]:focus,
header.header > .content-container .search input[type=search]:valid,
header.header > .content-container .search input[type=text]:focus,
header.header > .content-container .search input[type=text]:valid {
  max-width: 440px;
  margin: 0 0 0 8px;
}
header.header > .content-container .search input[type=search]:focus ~ input[type=submit],
header.header > .content-container .search input[type=search]:focus ~ button[type=submit],
header.header > .content-container .search input[type=search]:valid ~ input[type=submit],
header.header > .content-container .search input[type=search]:valid ~ button[type=submit],
header.header > .content-container .search input[type=text]:focus ~ input[type=submit],
header.header > .content-container .search input[type=text]:focus ~ button[type=submit],
header.header > .content-container .search input[type=text]:valid ~ input[type=submit],
header.header > .content-container .search input[type=text]:valid ~ button[type=submit] {
  max-width: 9999px;
  padding-right: 15px;
  padding-left: 15px;
  opacity: 1;
}
@media (min-width: 768px) {
  header.header > .content-container .search {
    display: flex;
  }
}
.cs--blue header.header > .content-container .search--link {
  background-color: #001823;
}
header.header > .content-container .search--link {
  display: block;
  min-width: 44px;
  max-width: 48px;
  height: 44px;
  border-bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M15 22c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7m12.061 2.939l-4.017-4.016A9.94 9.94 0 0 0 25 15c0-5.523-4.477-10-10-10S5 9.477 5 15s4.477 10 10 10a9.94 9.94 0 0 0 5.923-1.956l4.016 4.017c.293.293.677.439 1.061.439a1.502 1.502 0 0 0 1.061-2.561'/%3E%3C/svg%3E") no-repeat left 10px center;
  text-indent: -9999px;
  overflow: hidden;
}
@media (min-width: 768px) {
  header.header > .content-container .search--link {
    display: none;
  }
}
header.header > .content-container .authentication {
  align-items: center;
  margin-left: 16px;
}
@media (min-width: 768px) {
  header.header > .content-container .authentication {
    margin-left: 30px;
  }
}
header.header > .content-container .authentication,
header.header > .content-container .language-switcher {
  align-self: stretch;
}
@media (min-width: 768px) {
  header.header > .content-container nav.menu {
    flex-basis: 100%;
    flex-grow: 1;
    order: 9999;
    margin-left: 0;
  }
}
header.header > .content-container nav.menu {
  line-height: 1;
}
.cs--blue header.header .site-name {
  color: #001823;
}
header.header .site-name {
  font-weight: 700;
}
@media (min-width: 768px) {
  header.header .site-name {
    display: none;
  }
}
header.header .site-name {
  margin: 16px 0 8px;
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  header.header--menu > .content-container > .language-switcher {
    display: none;
  }
}
ul.image-wall,
ul.image-gallery {
  list-style: none;
}
ul.image-wall figcaption,
ul.image-gallery figcaption {
  display: none;
}
ul.image-wall a.gallery-link,
ul.image-gallery a.gallery-link {
  border-bottom: 0;
}
ul.image-wall a.gallery-link,
ul.image-wall a.gallery-link:focus,
ul.image-wall a.gallery-link:hover,
ul.image-gallery a.gallery-link,
ul.image-gallery a.gallery-link:focus,
ul.image-gallery a.gallery-link:hover {
  background-image: none;
}
ul.image-wall a.gallery-link,
ul.image-gallery a.gallery-link {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-decoration: none;
}
ul.image-wall a.gallery-link::after,
ul.image-gallery a.gallery-link::after {
  content: none !important;
}
ul.image-wall a.gallery-link:hover,
ul.image-wall a.gallery-link:focus,
ul.image-gallery a.gallery-link:hover,
ul.image-gallery a.gallery-link:focus {
  background-color: transparent;
}
ul.image-wall {
  margin: 0;
}
ul.image-gallery {
  margin: 0 calc(-1 * 30px / 2);
}
.image-gallery::before,
.image-gallery::after {
  display: table;
  content: " ";
}
.image-gallery::after {
  clear: both;
}
.image-gallery {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}
.image-gallery li {
  display: inline-block;
  width: calc(100% - 30px);
  margin: calc(30px / 2);
  float: left;
}
.image-gallery li:not(.image-gallery__show-more):nth-of-type(n+3),
.image-gallery li:first-of-type:nth-last-of-type(-n+3) ~ .image-gallery__show-more {
  display: none;
}
.image-gallery .image-gallery__show-more {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 30px);
  margin: calc(30px / 2);
  padding-bottom: calc((100% - 30px) / 1.6);
  pointer-events: none;
}
.cs--blue .image-gallery .show-more__content {
  color: #001823;
}
.cs--blue .image-gallery .show-more__content {
  background-color: rgb(127.5, 206, 239.5);
}
.image-gallery .show-more__content {
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: 50%;
  padding: 0.4rem 0.75rem;
  transform: translate(0, -50%);
  line-height: 1;
  text-align: center;
}
.image-gallery .show-more__content .show-more__total {
  display: none;
}
.image-gallery .show-more__content i {
  font-size: 1.3rem;
  vertical-align: middle;
}
.image-gallery a.gallery-link {
  border-bottom: 0;
}
.image-gallery a.gallery-link,
.image-gallery a.gallery-link:focus,
.image-gallery a.gallery-link:hover {
  background-image: none;
}
.image-gallery a.gallery-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-decoration: none;
}
.image-gallery a.gallery-link::after {
  content: none !important;
}
.image-gallery a.gallery-link:hover,
.image-gallery a.gallery-link:focus {
  background-color: transparent;
}
@media (min-width: 576px) {
  .image-gallery li {
    width: calc(50% - 30px - 0.5px);
  }
  .image-gallery .image-gallery__show-more {
    width: calc(50% - 30px);
    padding-bottom: calc((50% - 30px) / 1.6 - 0.5px);
  }
}
@media (min-width: 768px) {
  .image-gallery li:not(.image-gallery__show-more):nth-of-type(-n+4) {
    display: inline-block;
  }
  .image-gallery li:first-of-type:nth-last-of-type(-n+5) ~ .image-gallery__show-more {
    display: none;
  }
  .image-gallery li:first-of-type:nth-last-of-type(4),
  .image-gallery li:first-of-type:nth-last-of-type(4) ~ li {
    width: calc(33.3333333333% - 30px - 0.33px);
  }
}
@media (min-width: 960px) {
  .image-gallery li:first-of-type:nth-last-of-type(n+6) ~ li:nth-of-type(n+3) {
    width: calc(33.3333333333% - 30px - 0.33px);
  }
  .image-gallery li:not(.image-gallery__show-more):nth-of-type(-n+5) {
    display: inline-block;
  }
  .image-gallery li:first-of-type:nth-last-of-type(-n+6) ~ .image-gallery__show-more {
    display: none;
  }
  .image-gallery li:first-of-type:nth-last-of-type(n+6) ~ .image-gallery__show-more {
    width: calc(33.3333333333% - 30px - 0.33px);
    padding-bottom: calc((33.3333333333% - 30px - 0.33px) / 1.6);
  }
}
.image-gallery--secondary .image-gallery {
  text-align: left;
}
.image-gallery--secondary .image-gallery figcaption {
  display: none;
}
@media (min-width: 320px) {
  .image-gallery--secondary .image-gallery .gallery-link {
    max-width: 270px;
  }
}
@media (min-width: 576px) {
  .image-gallery--secondary .image-gallery .gallery-link {
    width: calc(50% - 1vw);
  }
}
@media (min-width: 960px) {
  .image-gallery--secondary .image-gallery .gallery-link {
    width: calc(33.3333333333% - 30px / 1.5 - 0.33px);
    max-width: 100%;
    margin: calc(30px / 2) 0 0;
  }
}
.image-gallery--secondary .image-gallery .gallery-link {
  width: 100%;
  margin: 1vw 0 30px;
}
.image-gallery--secondary ul.image-gallery {
  margin: 0 -1vw;
}
.image-gallery--secondary ul.image-gallery .gallery-link {
  width: 100%;
  margin: 0;
}
.image-gallery--secondary ul.image-gallery li {
  width: calc(100% - 2vw);
  margin: 1vw;
}
.image-gallery--secondary ul.image-gallery li .gallery-link {
  padding-bottom: 2.3em;
}
.image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(-n+3) ~ .image-gallery__show-more {
  display: flex;
}
.image-gallery--secondary ul.image-gallery li:not(.image-gallery__show-more):nth-of-type(n+2) {
  display: none;
}
.image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(-n+2) ~ .image-gallery__show-more {
  display: none;
}
@media (min-width: 320px) {
  .image-gallery--secondary ul.image-gallery {
    max-width: 13.5rem;
  }
}
@media (min-width: 576px) {
  .image-gallery--secondary ul.image-gallery {
    max-width: calc(27rem + 2vw);
  }
  .image-gallery--secondary ul.image-gallery li,
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(4) ~ li,
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(4) {
    width: calc(50% - 2vw);
  }
  .image-gallery--secondary ul.image-gallery li .gallery-link {
    padding: 0;
  }
  .image-gallery--secondary ul.image-gallery li:not(.image-gallery__show-more):nth-of-type(-n+2) {
    display: inline-block;
  }
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(-n+3) ~ .image-gallery__show-more {
    display: none;
  }
}
@media (min-width: 768px) {
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(-n+5) ~ .image-gallery__show-more,
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(-n+6) ~ .image-gallery__show-more {
    display: flex;
  }
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(-n+3) ~ .image-gallery__show-more {
    display: none;
  }
}
@media (min-width: 960px) {
  .image-gallery--secondary ul.image-gallery {
    max-width: calc(100% + 30px);
    margin: 0 calc(30px / 2 * -1);
  }
  .image-gallery--secondary ul.image-gallery li,
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(4),
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(4) ~ li {
    width: calc(33.3333333333% - 30px - 0.33px);
    margin: calc(30px / 2);
  }
  .image-gallery--secondary ul.image-gallery li:not(.image-gallery__show-more):nth-of-type(-n+3) {
    display: inline-block;
  }
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(-n+4) ~ .image-gallery__show-more {
    display: none;
  }
  .image-gallery--secondary ul.image-gallery li:first-of-type:nth-last-of-type(n+4) ~ .image-gallery__show-more {
    width: calc(33.3333333333% - 30px - 0.33px);
    padding-bottom: calc((33.3333333333% - 30px - 0.33px) / 1.6);
  }
}
@media (min-width: 576px) {
  .image-wall {
    display: flex;
    flex: 1 1 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
.image-wall > li {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .image-wall > li {
    flex-basis: calc((100% - 45px) / 2);
    width: calc((100% - 45px) / 2);
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .image-wall > li {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .image-wall > li {
    flex-basis: calc((100% - 135px) / 4);
    width: calc((100% - 135px) / 4);
    margin-left: 0;
  }
}
.image-wall > li.hidden {
  margin: 0;
}
.image-wall {
  width: 100%;
}
.form--multistep {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 960px) {
  .form--multistep {
    display: flex;
    flex-direction: row;
  }
  .form--multistep > .form-content {
    flex-basis: calc((100% - 10px) / 1.3333333333);
    width: calc((100% - 10px) / 1.3333333333);
    margin-left: 0;
  }
  .form--multistep > .form-steps {
    flex-basis: calc((100% - 90px) / 4);
    width: calc((100% - 90px) / 4);
    margin-left: 0;
  }
}
.opening-hours-accordion__item + .opening-hours-accordion__item {
  margin-top: 1.2rem;
}
.opening-hours-accordion .opening-hours-wrapper {
  margin-bottom: 0.5rem;
}
.opening-hours-accordion .accordion--content {
  margin-bottom: 1.2rem;
  overflow: visible;
}
.opening-hours-accordion .accordion--content [role=tablist] {
  flex-direction: row;
}
.opening-hours-accordion .accordion--button {
  font-size: 0.9rem;
  line-height: 1.6rem;
}
.opening-hours-accordion .accordion--button::before {
  line-height: inherit;
}
.cs--blue .programme-wrapper {
  background-color: #e6f8ff;
}
.programme-wrapper {
  padding: 24px;
}
@media (min-width: 960px) {
  .programme-wrapper {
    padding: 120px 135px;
  }
}
.programme .read-more {
  font-size: 0.8rem;
  line-height: normal;
}
.programme-slot {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.programme-slot-title {
  text-align: center;
}
.programme-slot-title h2,
.programme-slot-title h3 {
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 45px;
}
.programme-slot > dd {
  max-width: none;
  padding: 0;
}
.programme-slot + .programme-slot {
  margin-top: 45px;
}
.programme-detail .image-gallery--wrapper {
  margin: 1rem 0;
}
.programme-detail .image-gallery--wrapper .show-more__content {
  text-align: center;
}
@media (max-width: 959px) {
  .programme-detail .image-gallery--wrapper .image-gallery,
  .programme-detail .image-gallery--wrapper .gallery-link {
    max-width: none;
  }
  .programme-detail .image-gallery--wrapper .gallery-link {
    width: 100%;
    margin: 0;
  }
}
.programme-detail .video {
  margin-top: 1.6rem;
}
.programme-detail .video > .responsive-video {
  width: calc(100% + 2rem);
  margin-left: -1rem;
}
@media (min-width: 768px) {
  .programme-detail .video > .responsive-video {
    width: 100%;
    margin-left: 0;
  }
}
.resolutions-detail {
  display: grid;
  position: relative;
  margin: 0 0 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 0.375rem;
  background-color: #fff;
  line-height: 1.75;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-column-gap: 1rem;
}
@media (min-width: 768px) {
  .resolutions-detail {
    grid-template-columns: 1fr minmax(auto, 6rem);
  }
}
.resolutions-detail__title {
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  grid-row: 1;
}
.resolutions-detail__link {
  border: 0;
}
.resolutions-detail__link::before {
  position: absolute;
  content: "";
  z-index: 1;
  inset: 0;
}
.resolutions-detail__list {
  margin: 0;
  font-size: 0.6rem;
}
.resolutions-detail__list dt {
  display: inline-block;
  position: relative;
  font-weight: 600;
}
.resolutions-detail__list dd {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
.resolutions-detail__list dt ~ dd:not(:last-of-type) {
  margin-inline-end: 0.7em;
}
.resolutions-detail__list dt ~ dd:not(:last-of-type)::after {
  position: absolute;
  top: 0.2rem;
  right: -0.5em;
  bottom: 0.2rem;
  border-right: thin solid currentColor;
  content: "";
}
.resolutions-detail__status {
  display: inline-block;
  position: relative;
  margin-top: 0.6rem;
  padding: 0.4em 0.8em 0.6em;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  font-size: 0.6rem;
  line-height: 1.1;
  justify-self: start;
}
@media (min-width: 768px) {
  .resolutions-detail__status {
    align-self: start;
    margin: 0;
    justify-self: end;
    grid-row: 1;
    grid-column: 2/-1;
  }
}
.resolutions-detail__status::before {
  display: inline-block;
  margin-right: 0.3em;
  transform: translateY(0.1rem);
}
.resolutions-detail__status--true {
  background-color: rgb(202.25, 225, 200.75);
  color: #21651d;
}
.resolutions-detail__status--false {
  background-color: rgb(249.75, 194.5, 204);
  color: #b00a26;
}
.resolutions-list .highlight__inner {
  padding-right: 2rem !important;
}
@media (min-width: 768px) {
  .resolutions-list h2 {
    max-width: calc(100% - 8rem);
  }
}
.resolutions-list .button {
  align-self: start;
}
.resolutions-list__items {
  margin-block: 1rem;
}
.cs--blue .summary-box {
  background-color: #fff8d4;
}
.summary-box {
  padding: 1.5rem;
}
.summary-box ul.icon-list {
  font-size: 0.8rem;
  width: 100%;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .summary-box ul.icon-list {
    font-size: 0.9rem;
  }
}
.summary-box ul.icon-list i::before {
  position: relative;
  top: 2px;
}
.summary-box ul.icon-list time {
  font-weight: 600;
  display: block;
}
.summary-box ul.icon-list li {
  line-height: 1.6rem;
}
.summary-box ul.icon-list li:last-of-type {
  font-weight: 600;
}
.summary-box .button {
  font-size: 0.8rem;
  line-height: 175%;
}
@media (min-width: 768px) {
  .summary-box .button {
    font-size: 0.9rem;
    padding: 10px 20px;
    line-height: 177.778%;
  }
  .summary-box .button::before {
    font-size: 1.5rem;
  }
}
.theme-footer {
  margin: 6rem -1rem;
  padding: 0;
}
.theme-footer .contact,
.theme-footer .newsletter,
.theme-footer .social,
.theme-footer .logo {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .theme-footer .contact,
  .theme-footer .newsletter,
  .theme-footer .social,
  .theme-footer .logo {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
.theme-footer .logo {
  flex-shrink: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .theme-footer .logo {
    margin-right: 2rem;
    text-align: left;
  }
}
.theme-footer .logo img {
  width: auto;
  height: 10rem;
}
.theme-footer .logo + .social,
.theme-footer .logo + .contact {
  padding-top: 0;
}
@media (min-width: 768px) {
  .theme-footer .logo + .social,
  .theme-footer .logo + .contact {
    padding-top: 2.4rem;
  }
}
.theme-footer .logo + .newsletter {
  padding: 40px 30px;
}
@media (min-width: 768px) {
  .theme-footer .logo + .newsletter {
    padding: 60px 70px;
  }
}
.theme-footer .contact {
  font-size: 0.8rem;
  margin-right: auto;
}
@media (min-width: 960px) {
  .theme-footer .contact {
    padding-right: 40px;
  }
}
.theme-footer .contact h3 {
  margin-bottom: 30px;
}
.theme-footer .contact .icon-list {
  font-size: 0.8rem;
  margin: 0;
}
@media (min-width: 960px) {
  .theme-footer .contact .icon-list {
    column-gap: 60px;
    column-count: 2;
  }
}
.theme-footer .contact .icon-list li:last-of-type {
  margin-bottom: 0;
}
.cs--blue .theme-footer .contact .icon-list li:not(:first-of-type) i {
  color: #005ba9;
}
@media (min-width: 768px) {
  .theme-footer .contact:only-child .icon-list {
    column-count: 2;
  }
}
@media (min-width: 768px) {
  .theme-footer .social {
    flex-shrink: 0;
    width: 386px;
  }
  .theme-footer .social:only-child {
    width: auto;
  }
}
.theme-footer .social h4 {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 10px;
}
.theme-footer .social .social-list ul {
  width: calc(100% + 20px);
}
.cs--blue .theme-footer .social .social-list ul a,
.cs--blue .theme-footer .social .social-list ul a[download]:not(.button),
.cs--blue .theme-footer .social .social-list ul a[href^="http://"]:not(.button):not([href*="gent.be"]),
.cs--blue .theme-footer .social .social-list ul a[href^="https://"]:not(.button):not([href*="gent.be"]) {
  background-color: #7ed9ff;
}
.theme-footer .social .social-list li {
  margin-bottom: 0;
  padding: 0 10px 0 0;
}
.theme-footer .social .social-list li:last-child {
  padding-right: 0;
}
.theme-footer .newsletter {
  font-size: 0.8rem;
  flex-grow: 1;
  padding: 30px;
}
@media (min-width: 960px) {
  .theme-footer .newsletter {
    max-width: 768px;
    padding: 60px 70px;
  }
}
.theme-footer .newsletter .subscribe {
  max-width: calc(1170px / 12 * 5);
}
.theme-footer .newsletter .more-link {
  margin-top: 30px;
}
.theme-footer .newsletter:not(:last-child) {
  padding-bottom: 108px;
}
@media (min-width: 960px) {
  .theme-footer .newsletter:not(:last-child) {
    padding-right: 120px;
    padding-bottom: 60px;
  }
}
.cs--blue .theme-footer .newsletter + .social {
  background-color: #7ed9ff;
}
.theme-footer .newsletter + .social {
  margin: -60px 20px 0;
  padding: 30px;
}
.theme-footer .newsletter + .social .social-list ul {
  width: calc(100% + 20px);
  margin: 0;
}
.cs--blue .theme-footer .newsletter + .social .social-list ul a,
.cs--blue .theme-footer .newsletter + .social .social-list ul a[download]:not(.button),
.cs--blue .theme-footer .newsletter + .social .social-list ul a[href^="http://"]:not(.button):not([href*="gent.be"]),
.cs--blue .theme-footer .newsletter + .social .social-list ul a[href^="https://"]:not(.button):not([href*="gent.be"]) {
  color: #001823;
}
.cs--blue .theme-footer .newsletter + .social .social-list ul a,
.cs--blue .theme-footer .newsletter + .social .social-list ul a[download]:not(.button),
.cs--blue .theme-footer .newsletter + .social .social-list ul a[href^="http://"]:not(.button):not([href*="gent.be"]),
.cs--blue .theme-footer .newsletter + .social .social-list ul a[href^="https://"]:not(.button):not([href*="gent.be"]) {
  background-color: #fff;
}
@media (min-width: 768px) {
  .theme-footer .newsletter + .social {
    margin: -60px auto 0;
    padding: 67px;
  }
}
@media (min-width: 960px) {
  .theme-footer .newsletter + .social {
    margin: 60px 0 0 -70px;
  }
}
.theme-footer .content-container {
  padding: 0 20px;
}
@media (min-width: 1224px) {
  .theme-footer .content-container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .theme-footer .top,
  .theme-footer .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (min-width: 960px) {
  .theme-footer .top,
  .theme-footer .bottom {
    flex-wrap: nowrap;
  }
}
.theme-footer .top ~ .bottom {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .theme-footer .top ~ .bottom {
    margin-top: 72px;
  }
}
.timeline-wrapper {
  max-width: 375px;
}
@media (min-width: 960px) {
  .timeline-wrapper {
    max-width: 1170px;
    margin: 0 auto;
  }
}
dl.timeline {
  width: 100%;
  padding: 0;
}
dl.timeline .timeline-slot-title {
  position: relative;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  line-height: 36px;
  z-index: 2;
}
dl.timeline .timeline-slot-title button {
  width: 100%;
  margin-left: -45px;
  padding-left: 45px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot-title button {
    margin-left: -55px;
    padding-left: 55px;
  }
  dl.timeline .timeline-slot-title button::after {
    right: 100%;
    width: 60px;
    height: 6px;
    background-color: #7ed9ff;
    content: "";
    z-index: 0;
  }
}
dl.timeline .timeline-slot-title button::before,
dl.timeline .timeline-slot-title button::after {
  position: absolute;
}
dl.timeline .timeline-slot-title button::before {
  display: flex;
  left: 0;
  align-items: center;
  min-width: 36px;
  min-height: 36px;
  font-size: 1.2rem;
  line-height: 1.54rem;
  z-index: 1;
}
dl.timeline .timeline-slot-date {
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 5px;
  font-weight: normal;
}
dl.timeline .timeline-slot-content,
dl.timeline .timeline-slot-header {
  width: 100%;
}
dl.timeline .timeline-slot-content__img:focus,
dl.timeline .timeline-slot-content__img:focus-within {
  overflow: unset;
}
dl.timeline .timeline-slot-content:not(.timeline-slot-content__img) {
  padding-top: 15px;
}
dl.timeline .timeline-slot-content .content-image {
  padding-bottom: 15px;
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot-content .content-image {
    padding-bottom: 0;
  }
}
dl.timeline .timeline-slot-content .gallery-link {
  display: block;
}
dl.timeline .timeline-slot-content ul,
dl.timeline .timeline-slot-content ol {
  margin-left: 0;
  list-style-position: inside;
}
dl.timeline .timeline-slot-content *:last-child {
  margin-bottom: 0;
}
dl.timeline .timeline-slot > dt {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: left;
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot > dt {
    text-align: center;
  }
}
.cs--blue dl.timeline .timeline-slot > dt .dt-title {
  background-color: #ffdb5a;
}
dl.timeline .timeline-slot > dt .dt-title {
  display: inline-block;
  margin: 0;
  padding: 2px 10px;
}
dl.timeline .timeline-slot .item {
  display: grid;
  position: relative;
  grid-template-areas: "title" "left";
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot .item {
    grid-template-areas: "title title" "left  right";
    grid-template-columns: 1fr 1fr;
  }
}
.cs--blue dl.timeline .timeline-slot .item > dd {
  border-color: #005ba9;
}
dl.timeline .timeline-slot .item > dd {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: calc(15px);
  padding-bottom: 60px;
  padding-left: calc(35px + 30px);
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot .item > dd {
    padding-bottom: 90px;
  }
}
.cs--blue dl.timeline .timeline-slot .item > dd::after {
  border-color: #7ed9ff;
}
dl.timeline .timeline-slot .item > dd::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35px;
  border-left: 6px solid;
  content: "";
  z-index: 0;
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot .item > dd::after {
    left: calc(0px - 6px / 2);
  }
}
.cs--blue dl.timeline .timeline-slot .item > dd.active::before {
  background-color: #7ed9ff;
}
dl.timeline .timeline-slot .item > dd .accordion--content {
  margin-left: 0;
}
dl.timeline .timeline-slot .item > dd .video-wrapper {
  position: relative;
  width: 100%;
  margin-left: 0;
}
dl.timeline .timeline-slot .item > dd .video-wrapper::before,
dl.timeline .timeline-slot .item > dd .video-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
}
dl.timeline .timeline-slot .item > dd .video-wrapper .video {
  position: relative;
  border: 0;
  z-index: 2;
}
dl.timeline .timeline-slot .item > dd .video-wrapper .video .audio-description {
  min-height: 40px;
  padding-left: 60px;
}
dl.timeline .timeline-slot .item > dd .video-wrapper .video .audio-description::after {
  bottom: 4px;
}
dl.timeline .timeline-slot .item:first-of-type > dd {
  padding-top: 60px;
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot .item:first-of-type > dd {
    padding-top: 90px;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(odd):not(.item--left) .item__image-desktop,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--right .item__image-desktop {
    padding-right: 66px;
    padding-left: calc(15px);
    grid-area: left;
  }
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(odd):not(.item--left) .item__image-desktop::after,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--right .item__image-desktop::after {
    display: none;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(odd):not(.item--left) .item__content,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--right .item__content {
    padding-right: calc(15px);
    padding-left: calc(0px + 112px);
    grid-area: right;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__image-desktop,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__image-desktop {
    padding-right: calc(15px);
    padding-left: 66px;
    grid-area: right;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content {
    padding-right: calc(0px + 112px);
    padding-left: calc(15px);
    grid-area: left;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content .timeline-slot-title::after,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content .timeline-slot-title::after {
    right: unset;
    left: calc(100% + 112px - 3px);
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content .timeline-slot-title button,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content .timeline-slot-title button {
    justify-content: flex-end;
    margin: 0 0 0 55px;
    padding: 0 55px 0 0;
  }
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content .timeline-slot-title button::before,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content .timeline-slot-title button::before {
    right: 0;
    left: auto;
    margin: 0 0 0 15px;
    padding-right: 4px;
  }
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content .timeline-slot-title button::after,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content .timeline-slot-title button::after {
    right: auto;
    left: 100%;
  }
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content .timeline-slot-title button,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content .timeline-slot-date,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content .timeline-slot-title button,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content .timeline-slot-date {
    text-align: right;
  }
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item:nth-of-type(even):not(.item--right) .item__content::after,
  dl.timeline .timeline-slot:not(.timeline-slot-reverse) .item.item--left .item__content::after {
    display: none;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot.timeline-slot-reverse .item > dd {
    padding-right: calc(35px + 30px);
    padding-left: calc(15px);
    grid-area: right;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(even):not(.item--right) .item__image-desktop,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--left .item__image-desktop {
    padding-right: 66px;
    padding-left: calc(15px);
    grid-area: left;
  }
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(even):not(.item--right) .item__image-desktop::after,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--left .item__image-desktop::after {
    display: none;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(even):not(.item--right) .item__content,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--left .item__content {
    padding-right: calc(15px);
    padding-left: calc(0px + 112px);
    grid-area: right;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__image-desktop,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__image-desktop {
    padding-right: calc(15px);
    padding-left: 66px;
    grid-area: right;
  }
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__content,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__content {
    padding-right: calc(0px + 112px);
    padding-left: calc(15px);
    grid-area: left;
  }
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__content .timeline-slot-title button,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__content .timeline-slot-title button {
    justify-content: flex-end;
    margin: 0 0 0 55px;
    padding: 0 55px 0 0;
  }
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__content .timeline-slot-title button::before,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__content .timeline-slot-title button::before {
    right: 0;
    left: auto;
    margin: 0 0 0 15px;
    padding-right: 4px;
  }
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__content .timeline-slot-title button::after,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__content .timeline-slot-title button::after {
    right: auto;
    left: 100%;
  }
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__content .timeline-slot-title button,
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__content .timeline-slot-date,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__content .timeline-slot-title button,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__content .timeline-slot-date {
    text-align: right;
  }
  dl.timeline .timeline-slot.timeline-slot-reverse .item:nth-of-type(odd):not(.item--left) .item__content::after,
  dl.timeline .timeline-slot.timeline-slot-reverse .item.item--right .item__content::after {
    display: none;
  }
}
dl.timeline .timeline-slot:last-of-type .item:last-of-type > dd {
  padding-bottom: 0;
}
dl.timeline .timeline-slot:last-of-type .item:last-of-type > dd::after {
  bottom: calc(100% - 15px);
}
.cs--blue dl.timeline .timeline-slot:last-of-type .item:last-of-type > dd .timeline-slot-title::after {
  border-color: #7ed9ff;
}
dl.timeline .timeline-slot:last-of-type .item:last-of-type > dd .timeline-slot-title::after {
  position: absolute;
  top: 0;
  right: calc(100% + 24px);
  bottom: 50%;
  border-left: 6px solid;
  content: "";
  z-index: 0;
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot:last-of-type .item:last-of-type > dd .timeline-slot-title::after {
    right: calc(100% + 112px - 3px);
  }
}
dl.timeline .timeline-slot:last-of-type .item:last-of-type:first-of-type > dd::after {
  bottom: calc(100% - 75px);
}
@media (min-width: 960px) {
  dl.timeline .timeline-slot:last-of-type .item:last-of-type:first-of-type > dd::after {
    bottom: calc(100% - 105px);
  }
}
@media (min-width: 960px) {
  .roadmap-wrapper {
    max-width: 1070px;
    margin: 0 auto;
  }
}
dl.roadmap {
  counter-reset: item;
}
@media (min-width: 960px) {
  dl.roadmap .roadmap-title {
    padding-left: 200px;
  }
}
dl.roadmap .timeline-slot {
  position: relative;
  padding-bottom: 50px;
  padding-left: 60px;
}
@media (min-width: 960px) {
  dl.roadmap .timeline-slot {
    padding-top: 70px;
    padding-left: 300px;
  }
}
.cs--blue dl.roadmap .timeline-slot::before {
  background-color: #ffdb5a;
}
dl.roadmap .timeline-slot::before {
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 30px;
  left: 0;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 130%;
  content: counter(item);
  z-index: 2;
  aspect-ratio: 1/1;
  counter-increment: item;
}
@media (min-width: 960px) {
  dl.roadmap .timeline-slot::before {
    top: 50px;
    left: 200px;
    min-width: 70px;
    min-height: 70px;
    font-size: 1.5rem;
  }
}
.cs--blue dl.roadmap .timeline-slot::after {
  background-color: #7ed9ff;
}
dl.roadmap .timeline-slot::after {
  position: absolute;
  top: 49px;
  left: 22px;
  width: 6px;
  height: calc(100% - 49px);
  content: "";
  z-index: 1;
}
@media (min-width: 960px) {
  dl.roadmap .timeline-slot::after {
    top: 69px;
    left: 232px;
    height: calc(100% - 69px);
  }
}
dl.roadmap .timeline-slot:not(:first-of-type)::after {
  top: 0;
  height: 100%;
}
dl.roadmap .timeline-slot:last-of-type::after {
  height: 51px;
}
@media (min-width: 960px) {
  dl.roadmap .item dd {
    margin: 0;
  }
}
dl.roadmap .item__image {
  display: block;
  width: 120px;
  height: 120px;
  margin-top: 0;
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  dl.roadmap .item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 170px;
    margin-top: 20px;
  }
}
dl.roadmap dd:first-child.item__content {
  margin-top: 0;
  padding-top: 40px;
}
@media (min-width: 960px) {
  dl.roadmap dd:first-child.item__content {
    padding-top: 0;
  }
}
dl.roadmap .content-btn {
  padding-bottom: 30px;
}
.cs--blue .gentinfo-block {
  color: #fff;
}
.cs--blue .gentinfo-block {
  background-color: #005ba9;
}
.gentinfo-block {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 2px 10px;
  z-index: 1;
  margin-bottom: 36px;
}
.cs--blue .gentinfo-block::before {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100px' height='36px' viewBox='0 0 36 19'%3E%3Cpath fill='%23005ba9' fill-rule='evenodd' d='M50.0702 0C31.2247 0 26.7846 7.44663 25.2657 18H24.8745C23.3559 7.44663 18.9157 0 0.0701904 0H25.0701H50.0702Z'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100%;
}
.gentinfo-block::before {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100px;
  height: 36px;
  content: "";
}
.cs--blue .gentinfo-block {
  background-color: #005ba9;
}
.gentinfo-block {
  position: relative;
  padding: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.75;
}
@media (min-width: 960px) {
  .gentinfo-block {
    margin: -8.4rem 0 0;
    padding: 2.25rem;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .gentinfo-block {
    width: 100%;
  }
}
.gentinfo-block::before {
  left: calc(50% - 2.5rem);
}
@media (min-width: 960px) {
  .gentinfo-block::before {
    left: 0;
  }
}
.gentinfo-block .gentinfo-block-content {
  width: 100%;
  text-align: left;
}
.gentinfo-block .gentinfo-block-content h3 {
  margin: 0 0 1rem;
}
.gentinfo-block .gentinfo-block-content ul {
  margin: 0;
  list-style: none;
}
.gentinfo-block .gentinfo-block-content ul li {
  width: 100%;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .gentinfo-block .gentinfo-block-content ul li {
    width: auto;
  }
}
.gentinfo-block .gentinfo-block-content ul a {
  font-weight: 400;
}
.gentinfo-block .gentinfo-block-content .icon-clock {
  position: relative;
  top: 0.3rem;
  margin: 0 0.2rem 0 0;
}
.gentinfo-block .gentinfo-chat-button {
  font-weight: 600;
  width: auto;
  margin-top: 1rem;
}
.gentinfo-block .gentinfo-chat-button::before {
  position: relative;
  top: 0.1rem;
  font-size: 1.2rem;
}
.gentinfo-block .gentinfo-logo {
  display: block;
  width: 8.25rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 576px) {
  .gentinfo-block .gentinfo-logo {
    margin: 0 0 1.5rem;
  }
}
.social-list ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1rem);
  margin-left: -0.25rem;
  list-style: none;
}
.social-list ul li {
  padding: 0.25rem;
}
.social-list ul a {
  border-bottom: 0;
}
.social-list ul a,
.social-list ul a:focus,
.social-list ul a:hover {
  background-image: none;
}
.cs--blue .social-list ul a,
.cs--blue .social-list ul a[download]:not(.button),
.cs--blue .social-list ul a[href^="http://"]:not(.button):not([href*="gent.be"]),
.cs--blue .social-list ul a[href^="https://"]:not(.button):not([href*="gent.be"]) {
  background-color: #7ed9ff;
}
.cs--blue .social-list ul a,
.cs--blue .social-list ul a[download]:not(.button),
.cs--blue .social-list ul a[href^="http://"]:not(.button):not([href*="gent.be"]),
.cs--blue .social-list ul a[href^="https://"]:not(.button):not([href*="gent.be"]) {
  color: #001823;
}
.social-list ul a,
.social-list ul a[download]:not(.button),
.social-list ul a[href^="http://"]:not(.button):not([href*="gent.be"]),
.social-list ul a[href^="https://"]:not(.button):not([href*="gent.be"]) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0;
  text-decoration: none;
}
.social-list ul a::after,
.social-list ul a[download]:not(.button)::after,
.social-list ul a[href^="http://"]:not(.button):not([href*="gent.be"])::after,
.social-list ul a[href^="https://"]:not(.button):not([href*="gent.be"])::after {
  display: none;
  content: "";
}
.sidebar-layout .readspeaker-button,
.detail-layout .readspeaker-button,
.overview-layout .readspeaker-button {
  display: block;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}
.detail-layout {
  font-size: 0.9rem;
  line-height: 1.8;
}
@media (min-width: 960px) {
  .detail-layout .w7-o2,
  .detail-layout > * {
    flex-basis: calc((100% - 21.4285714286px) / 1.7142857143);
    width: calc((100% - 21.4285714286px) / 1.7142857143);
    margin-left: 0;
    margin-left: 16.6666666667%;
  }
}
.detail-layout > .content-header-container {
  margin-right: -20px;
  margin-left: -20px;
}
@media (min-width: 768px) {
  .detail-layout > .content-header-container {
    width: calc(100% + 510px);
    margin-left: -255px;
    padding-right: 255px;
    padding-left: 255px;
  }
}
@media (min-width: 768px) {
  .detail-layout > .content-header-container.accolade-title .left {
    max-width: calc(100% - 290px);
  }
}
.detail-layout > .content-header-container + .summary-box,
.detail-layout > .content-header-container + .table-of-contents {
  position: relative;
  z-index: 1;
}
.detail-layout > .content-header-container.image + .summary-box,
.detail-layout > .content-header-container.image + .table-of-contents {
  margin: 20px 0 40px;
}
@media (min-width: 768px) {
  .detail-layout > .content-header-container.image + .summary-box,
  .detail-layout > .content-header-container.image + .table-of-contents {
    margin: 120px 0 40px;
  }
}
@media (min-width: 960px) {
  .detail-layout > .content-header-container.image + .summary-box,
  .detail-layout > .content-header-container.image + .table-of-contents {
    max-width: 630px;
    margin: -205px 0 100px;
  }
}
.detail-layout > .content-header-container:not(.image) + .summary-box,
.detail-layout > .content-header-container:not(.image) + .table-of-contents,
.detail-layout > .content-header-container:not(.image) + .partner-block,
.detail-layout > .content-header-container:not(.image) + p {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
  margin-top: -150px;
}
@media (min-width: 768px) {
  .detail-layout > .content-header-container:not(.image) + .summary-box,
  .detail-layout > .content-header-container:not(.image) + .table-of-contents,
  .detail-layout > .content-header-container:not(.image) + .partner-block,
  .detail-layout > .content-header-container:not(.image) + p {
    margin-top: -120px;
  }
}
.detail-layout > .content-header-container:not(.image) + .partner-block,
.detail-layout > .content-header-container:not(.image) + p {
  position: relative;
  max-width: 100%;
  padding: 20px;
  background-color: #fff;
  z-index: 1;
}
@media (min-width: 768px) {
  .detail-layout > .content-header-container:not(.image) + .partner-block,
  .detail-layout > .content-header-container:not(.image) + p {
    padding: 60px;
  }
}
.detail-layout > div:not(.content-header-container),
.detail-layout > section,
.detail-layout > aside,
.detail-layout > article,
.detail-layout > nav {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  .detail-layout > div:not(.content-header-container),
  .detail-layout > section,
  .detail-layout > aside,
  .detail-layout > article,
  .detail-layout > nav {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.detail-layout > ul,
.detail-layout > ol {
  padding-left: 20px;
}
@media (min-width: 960px) {
  .detail-layout .w9-o1 {
    flex-basis: calc((100% - 10px) / 1.3333333333);
    width: calc((100% - 10px) / 1.3333333333);
    margin-left: 0;
    margin-left: 8.3333333333%;
  }
}
@media (min-width: 960px) {
  .detail-layout .w10-o1,
  .detail-layout > .highlight,
  .detail-layout > .image-gallery--wrapper.multiple {
    flex-basis: calc((100% - 6px) / 1.2);
    width: calc((100% - 6px) / 1.2);
    margin-left: 0;
    margin-left: 8.3333333333%;
  }
}
@media (min-width: 960px) {
  .detail-layout > ul.accordion {
    flex-basis: calc((100% - 21.4285714286px) / 1.7142857143);
    width: calc((100% - 21.4285714286px) / 1.7142857143);
    margin-left: 0;
    margin-left: 16.6666666667%;
  }
}
.detail-layout > ul.accordion .accordion--content p {
  line-height: 1.75;
}
@media (min-width: 960px) {
  .detail-layout > .quote-wrapper,
  .detail-layout > .partner-block,
  .detail-layout > .roadmap-wrapper,
  .detail-layout > .programme-wrapper,
  .detail-layout > .timeline-wrapper {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .detail-layout > .quote-wrapper,
  .detail-layout > .partner-block,
  .detail-layout > .roadmap-wrapper,
  .detail-layout > .timeline-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .detail-layout > .quote-wrapper > .quote {
    flex-basis: calc((100% - 21.4285714286px) / 1.7142857143);
    width: calc((100% - 21.4285714286px) / 1.7142857143);
    margin-left: 0;
    margin-left: 33.3333333333%;
  }
}
@media (min-width: 960px) {
  .detail-layout > .cta-block {
    flex-basis: calc((100% - 2.7272727273px) / 1.0909090909);
    width: calc((100% - 2.7272727273px) / 1.0909090909);
    margin-left: 0;
    margin-left: 8.3333333333%;
  }
}
.detail-layout > .cta-block.image-left,
.detail-layout > .cta-block.image-right {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
}
.detail-layout > div.responsive-table {
  margin-top: 20px;
  margin-bottom: 20px;
}
.detail-layout > .table-of-contents {
  margin-top: 60px;
  margin-bottom: 60px;
}
.detail-layout > .contact-details--with-image {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
}
.detail-layout .w12 {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
}
@media (max-width: 959px) {
  .detail-layout .w12 {
    width: calc(100% + 30px * 2);
    margin-right: -30px;
    margin-left: -30px;
  }
}
.detail-layout .readspeaker-button {
  display: block;
  width: auto;
  margin-top: -8px;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .detail-layout .openinghours-widget[data-type=month] {
    min-width: initial;
    padding-right: 0;
    padding-bottom: 140px;
  }
  .cs--blue .detail-layout .openinghours-widget[data-type=month] > .openinghours {
    border-color: #fff;
  }
  .detail-layout .openinghours-widget[data-type=month] > .openinghours {
    padding: 20px 20px 30px;
    border-bottom: 2px solid;
  }
  .detail-layout .openinghours-widget[data-type=month] .openinghours--details {
    top: calc(100% + 32px);
    left: 10px;
    padding-top: 20px;
  }
}
@media (min-width: 1200px) {
  .detail-layout .openinghours-widget[data-type=month] {
    padding-right: 288px;
    padding-bottom: 0;
  }
  .detail-layout .openinghours-widget[data-type=month] > .openinghours {
    border-right: 2px solid;
    border-bottom: 0;
  }
  .detail-layout .openinghours-widget[data-type=month] .openinghours--details {
    top: -40px;
    left: calc(100% + 48px);
    padding-top: 0;
  }
}
.detail-layout > .full-width {
  position: relative;
  right: 50%;
  left: 50%;
  width: 100vw;
  margin-right: -50vw;
  margin-left: -50vw;
}
aside.top > *,
aside.bottom > * {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  aside.top > *,
  aside.bottom > * {
    margin-bottom: 60px;
  }
}
@media (min-width: 960px) {
  aside.top > *,
  aside.bottom > * {
    flex-basis: calc((100% - 0px) / 1);
    width: calc((100% - 0px) / 1);
    margin-left: 0;
    width: 100%;
  }
  aside.top > *:not(.related-box-teasers),
  aside.bottom > *:not(.related-box-teasers) {
    margin-left: 0;
    padding-right: calc(5px + 16.6666666667%);
    padding-left: calc(5px + 16.6666666667%);
  }
}
aside.top > p,
aside.bottom > p {
  padding-top: 0;
  border-top: 0;
}
aside.top {
  position: relative;
  margin: 100px auto 0;
}
@media (min-width: 960px) {
  aside.bottom .changed-date {
    flex-basis: calc((100% - 10px) / 1.3333333333);
    width: calc((100% - 10px) / 1.3333333333);
    margin-left: 0;
    margin-left: 16.6666666667%;
  }
}
aside.bottom .changed-date {
  padding: 0;
}
.sidebar-layout {
  display: flex;
  flex-wrap: wrap;
  margin: 70px auto 80px;
  gap: 65px;
}
@media (min-width: 960px) {
  .sidebar-layout .sidebar {
    flex-basis: calc((100% - 130px) / 3);
    width: calc((100% - 130px) / 3);
    margin-left: 0;
  }
}
.sidebar-layout .sidebar.modal {
  max-height: none;
}
@media (min-width: 960px) {
  .sidebar-layout .content {
    flex-basis: calc((100% - 32.5px) / 1.5);
    width: calc((100% - 32.5px) / 1.5);
    margin-left: 0;
  }
}
.overview-page {
  position: relative;
}
.overview-page header.header nav.breadcrumb .content-container::after,
.overview-page header.header nav.breadcrumb .content-container::before {
  width: calc(50% + 30px + 1px);
}
@media (min-width: 960px) {
  .overview-page header.header nav.breadcrumb .content-container::after,
  .overview-page header.header nav.breadcrumb .content-container::before {
    width: calc(50% + 1px);
  }
}
.overview-layout {
  margin-bottom: 80px;
}
.overview-layout > .content-header-container {
  margin-right: -20px;
  margin-left: -20px;
}
@media (min-width: 768px) {
  .overview-layout > .content-header-container {
    width: calc(100% + 270px);
    margin-left: -135px;
    padding-right: 135px;
    padding-left: 135px;
  }
}
.overview-layout > .content-header-container:not(.image) + .summary-box,
.overview-layout > .content-header-container:not(.image) + .table-of-contents,
.overview-layout > .content-header-container:not(.image) + .partner-block,
.overview-layout > .content-header-container:not(.image) + p {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
  position: relative;
  margin-top: -150px;
  z-index: 1;
}
@media (min-width: 768px) {
  .overview-layout > .content-header-container:not(.image) + .summary-box,
  .overview-layout > .content-header-container:not(.image) + .table-of-contents,
  .overview-layout > .content-header-container:not(.image) + .partner-block,
  .overview-layout > .content-header-container:not(.image) + p {
    margin-top: -120px;
  }
}
.overview-layout > .content-header-container:not(.image) + .partner-block,
.overview-layout > .content-header-container:not(.image) + p {
  max-width: 100%;
  padding: 20px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .overview-layout > .content-header-container:not(.image) + .partner-block,
  .overview-layout > .content-header-container:not(.image) + p {
    padding: 60px;
  }
}
@media (min-width: 960px) {
  .overview-layout > .cta-block {
    flex-basis: calc((100% - 5.9090909091px) / 1.0909090909);
    width: calc((100% - 5.9090909091px) / 1.0909090909);
    margin-left: 0;
    margin-left: 8.3333333333%;
  }
}
.overview-layout > .cta-block.image-left,
.overview-layout > .cta-block.image-right {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
}
.overview-layout > .full-width,
.overview-layout > .gentinfo {
  position: relative;
  right: 50%;
  left: 50%;
  width: 100vw;
  margin-right: -50vw;
  margin-left: -50vw;
}
.sidebar-right-layout {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  gap: 65px;
}
.sidebar-right-layout .sidebar {
  width: 100%;
}
@media (min-width: 960px) {
  .sidebar-right-layout .sidebar {
    flex-basis: calc((100% - 130px) / 3);
    width: calc((100% - 130px) / 3);
    margin-left: 0;
  }
}
.sidebar-right-layout .content {
  width: 100%;
}
@media (min-width: 960px) {
  .sidebar-right-layout .content {
    flex-basis: calc((100% - 32.5px) / 1.5);
    width: calc((100% - 32.5px) / 1.5);
    margin-left: 0;
  }
}
.summary-text {
  font-weight: 600;
}
.overview-layout > .content-header-container:not(.image) + .summary-box,
.overview-layout > .content-header-container:not(.image) + .table-of-contents,
.overview-layout > .content-header-container:not(.image) + .partner-block,
.overview-layout > .content-header-container:not(.image) + p {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
  margin-top: -5rem;
}
@media (min-width: 768px) {
  .overview-layout > .content-header-container:not(.image) + .summary-box,
  .overview-layout > .content-header-container:not(.image) + .table-of-contents,
  .overview-layout > .content-header-container:not(.image) + .partner-block,
  .overview-layout > .content-header-container:not(.image) + p {
    margin-top: -5rem;
  }
}
.flow-container > * {
  width: 100%;
}
.form-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
.form-layout > *,
.form-layout .section {
  margin-bottom: 2rem;
}
.form-layout > router-outlet {
  margin: 0;
}
.form-layout .form-column.uploaded .tag {
  margin: 0 0.5rem 0.5rem 0;
}
.form-layout .form-item {
  position: relative;
}
.form-layout .form-item .spinner > div {
  width: 2rem;
}
.form-layout > .top > :last-child {
  margin-bottom: 0;
}
.form-layout > .left {
  position: relative;
  font-size: 0.8rem;
  min-height: 7rem;
}
.form-layout > .left .form-description {
  margin-bottom: 1.2rem;
}
.form-layout > .left .spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  animation: fade 0.5s ease-out forwards;
}
.form-layout > .left,
.form-layout > .right {
  flex-basis: calc((100% - 0px) / 1);
  width: calc((100% - 0px) / 1);
  margin-left: 0;
}
.cs--blue .form-layout > .right {
  background-color: rgb(229.5, 238.6, 246.4);
}
.form-layout > .right {
  padding: 1.2rem;
}
.form-layout > .right .attachments {
  margin-top: 1rem;
}
@media (min-width: 960px) {
  .form-layout > .left {
    flex-basis: calc((100% - 46.4285714286px) / 1.7142857143);
    width: calc((100% - 46.4285714286px) / 1.7142857143);
    margin-left: 0;
  }
  .form-layout > .right {
    flex-basis: calc((100% - 91px) / 2.4);
    width: calc((100% - 91px) / 2.4);
    margin-left: 0;
  }
  .form-layout .form-item > label,
  .form-layout .form-item.stacked .field-message,
  .form-layout .form-item > .field-message,
  .form-layout fieldset.form-item {
    max-width: 40rem;
  }
  .form-layout .form-row {
    flex-wrap: nowrap;
    width: 40.8rem;
    max-width: calc(100% + 0.8rem);
  }
}
.form-layout .spinner-wrapper.small.inline {
  position: relative;
  display: inline-block;
}
.form-layout .spinner-wrapper.small.inline .spinner > div {
  width: 2rem;
}
@media (min-width: 768px) {
  .form-row {
    max-width: calc(100% + 0.8rem);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.help-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.help-image {
  max-width: 70%;
}
.form-actions {
  display: flex;
  flex-direction: row;
}
.region-highlighted {
  position: relative;
  margin: 0 calc(-1rem + 1px) 1.7rem;
}
@media (min-width: 768px) {
  .region-highlighted {
    position: relative;
    right: 50%;
    left: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
  }
}
.dg-crisis-communication--active .region-highlighted {
  display: block;
}
.has-hero-image .region-highlighted {
  margin-top: -1.7rem;
}
.dg-crisis-block {
  padding: 1.2rem 1rem;
  background-color: rgb(247.25, 218.25, 191.25);
}
.crisis-communication {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.5rem 1.6rem;
  background-color: #fff;
  box-shadow: 0 4px 12px 0 rgb(239.5, 181.5, 127.5);
}
@media (min-width: 960px) {
  .crisis-communication {
    flex-basis: calc((100% - 13px) / 1.2);
    width: calc((100% - 13px) / 1.2);
    margin-left: 0;
    margin-left: 8.3333333333%;
  }
}
.crisis-communication .icon-exclamation {
  display: none;
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  margin-right: 1.2rem;
  border-radius: 50%;
  background-color: rgb(247.25, 218.25, 191.25);
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .crisis-communication .icon-exclamation {
    display: block;
  }
}
.crisis-communication .intro-text {
  font-size: 0.9rem;
  font-weight: 600;
}
.header {
  width: 100%;
}
#language_switcher_content a {
  word-break: normal;
}
#main[tabindex="-1"]:focus,
#form[tabindex="-1"]:focus {
  outline: none;
}
form .privacy-disclaimer:not(:target) {
  display: block;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
