@charset "UTF-8";
/**
 *  SETTINGS
 */
/**
 *  COMPONENTS
 */
/**
 *  SETTINGS
 */
/**
 *  COMPONENTS
 */
/**
 *  SETTINGS
 */
/**
 *  COMPONENTS
 */
/**
 *  MAIN RULES
 */
*,
*::after,
*::before {
  box-sizing: border-box;
  outline: none;
}

body {
  background-color: #fff;
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

p {
  font-weight: normal;
  margin-bottom: 1.5em;
}

img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

ul {
  margin-bottom: 1em;
}

li {
  list-style: none;
  margin-bottom: 0.5em;
}

html {
  font-size: 100%;
}
@media (min-width: 992px) {
  html {
    font-size: 112.5%;
  }
}

img {
  height: auto;
  line-height: 1.5;
  -webkit-text-decoration: italic;
          text-decoration: italic;
  font-size: 12px;
}

th {
  text-align: left;
}

details > summary {
  padding: 8px 16px;
  line-height: 1.5;
  font-weight: bold;
  font-size: 16px;
}

/**
 *  BACKGROUND
 */
.bg-primary {
  background-color: #ffcc00;
}
.bg-dark {
  background-color: #333;
}
.bg-secondary {
  background-color: #ff5000;
}
.bg-white {
  background-color: #fff;
}
.bg-success {
  background-color: #4caf50;
}
.bg-info {
  background-color: #5bc0de;
}
.bg-warning {
  background-color: #f0ad4e;
}
.bg-error {
  background-color: #ff5000;
}
.bg-gray {
  background-color: #969da6;
}
.bg-gray-light {
  background-color: #eceff1;
}
.bg-gray-darker {
  background-color: #333;
}

/**
 *  BORDER
 */
.border {
  border: 1px solid #eceff1;
}

.border-bottom {
  border-bottom: 1px solid #eceff1;
}

.border-left {
  border-left: 1px solid #eceff1;
}

.border-right {
  border-right: 1px solid #eceff1;
}

.border-top {
  border-top: 1px solid #eceff1;
}

/**
 *  ALIGNERS
 */
.aligner {
  display: flex;
}
.aligner--spaceBetween {
  justify-content: space-between;
  width: 100%;
}
.aligner--spaceAround {
  justify-content: space-around;
  width: 100%;
}
.aligner--centerVertical {
  align-items: center;
}
.aligner--centerHoritzontal {
  justify-content: center;
}
.aligner--contentStart {
  justify-content: flex-start;
}
.aligner--contentEnd {
  justify-content: flex-end;
}

.aligner--itemTop {
  align-self: flex-start;
}

.aligner--itemBottom {
  align-self: flex-end;
}

.flex-grow,
.aligner--grow {
  flex-grow: 1;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16/9;
  line-height: 0;
}
.aspect-ratio-16-9 iframe {
  height: 100%;
  width: 100%;
}

/**
 *  FLOATS
 */
.fleft {
  float: left;
}

.fright {
  float: right;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 *  MARGINS
 */
.m-xsmall {
  margin: 4px;
}

.m-small {
  margin: 8px;
}

.m-medium {
  margin: 16px;
}

.m-big {
  margin: 36px;
}

.m-huge {
  margin: 48px;
}

.m-none {
  margin: 0 !important;
}

.mt-small {
  margin-top: 8px;
}

.mt-xsmall {
  margin-top: 4px;
}

.mt-medium {
  margin-top: 16px;
}

.mt-big {
  margin-top: 36px;
}

.mt-huge {
  margin-top: 48px;
}

.mt-none {
  margin-top: 0 !important;
}

.mb-small {
  margin-bottom: 8px;
}

.mb-xsmall {
  margin-bottom: 4px;
}

.mb-medium {
  margin-bottom: 16px;
}

.mb-big {
  margin-bottom: 36px;
}

.mb-huge {
  margin-bottom: 48px;
}

.mb-none {
  margin-bottom: 0 !important;
}

/**
 *  PADDINGS
 */
.p-small {
  padding: 0.5rem;
}

.pb-small {
  padding-bottom: 0.5rem;
}

.p-medium {
  padding: 1rem;
}

.pb-medium {
  padding-bottom: 1rem;
}

.p-big {
  padding: 2rem;
}

.pb-big {
  padding-bottom: 2rem;
}

.p-huge {
  padding: 5rem;
}

.pb-huge {
  padding-bottom: 5rem;
}

/**
 *  OTHERS
 */
.no-wrap {
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

.opacity-low {
  opacity: 0.5;
}

.rounded-corners {
  border-radius: 5px;
}

.rounded {
  border-radius: 100%;
}

/**
 * LAYOUT
 */
.section {
  padding-bottom: 5rem;
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .section {
    padding-bottom: 10rem;
    padding-top: 10rem;
  }
}
.section + .section {
  padding-top: 0;
}

.container {
  background-color: transparent;
  margin: 0 auto;
  max-width: 1328px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.container-medium {
  margin: 0 auto;
  max-width: 768px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .container-medium {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.container-small {
  margin: 0 auto;
  max-width: 588px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .container-small {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.show-for-print {
  display: none !important;
}

/**
 *  TYPOGRAPHY
 */
body {
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: currentColor;
  text-decoration: none;
}
a:hover {
  color: #ffcc00;
}
a:focus {
  color: #ffcc00;
}

.text-huge, .text-big, .text-medium {
  margin-bottom: 1em;
}
.text-huge {
  font-size: 36px;
  line-height: 1.7;
}
.text-big {
  font-size: 24px;
  line-height: 1.6;
}
.text-medium {
  font-size: 16px;
  line-height: 1.5;
}
.text-small {
  font-size: 12px;
  line-height: 1.3;
}
.text-body {
  font-size: 1rem;
  line-height: 1.5;
}

.text-primary {
  color: #ffcc00;
}
.text-dark {
  color: #333;
}
.text-secondary {
  color: #ff5000;
}
.text-white {
  color: #fff;
}
.text-success {
  color: #4caf50;
}
.text-info {
  color: #5bc0de;
}
.text-warning {
  color: #f0ad4e;
}
.text-error {
  color: #ff5000;
}
.text-gray {
  color: #969da6;
}
.text-gray-light {
  color: #eceff1;
}
.text-gray-darker {
  color: #333;
}

.text-light {
  font-weight: normal;
}

.text-normal {
  font-weight: normal;
}

.text-lineThrough {
  text-decoration: line-through;
}

.text-italic {
  font-style: italic;
}

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

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

.text-withSubtitle {
  margin-bottom: 0 !important;
}
.text-withSubtitle + .text-huge,
.text-withSubtitle + .text-big,
.text-withSubtitle + .text-medium,
.text-withSubtitle + .text-small {
  margin-top: 0.5em;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

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

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

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

@font-face {
  font-family: "Open Sans";
  font-weight: normal;
  font-style: normal;
  src: url("../frontend_libraries/open-sans-fonts/open-sans/Regular/OpenSans-Regular.woff2") format("woff2"), url("../frontend_libraries/open-sans-fonts/open-sans/Regular/OpenSans-Regular.woff") format("woff"), url("../frontend_libraries/open-sans-fonts/open-sans/Regular/OpenSans-Regular.ttf") format("truetype"), url("../frontend_libraries/open-sans-fonts/open-sans/Regular/OpenSans-Regular.svg#OpenSansRegular") format("svg");
}
@font-face {
  font-family: "Open Sans";
  font-weight: normal;
  font-style: italic;
  src: url("../frontend_libraries/open-sans-fonts/open-sans/Italic/OpenSans-Italic.woff2") format("woff2"), url("../frontend_libraries/open-sans-fonts/open-sans/Italic/OpenSans-Italic.woff") format("woff"), url("../frontend_libraries/open-sans-fonts/open-sans/Italic/OpenSans-Italic.ttf") format("truetype"), url("../frontend_libraries/open-sans-fonts/open-sans/Italic/OpenSans-Italic.svg#OpenSansItalic") format("svg");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  src: url("../frontend_libraries/open-sans-fonts/open-sans/Semibold/OpenSans-Semibold.woff2") format("woff2"), url("../frontend_libraries/open-sans-fonts/open-sans/Semibold/OpenSans-Semibold.woff") format("woff"), url("../frontend_libraries/open-sans-fonts/open-sans/Semibold/OpenSans-Semibold.ttf") format("truetype"), url("../frontend_libraries/open-sans-fonts/open-sans/Semibold/OpenSans-Semibold.svg#OpenSansSemibold") format("svg");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: italic;
  src: url("../frontend_libraries/open-sans-fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff2") format("woff2"), url("../frontend_libraries/open-sans-fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.woff") format("woff"), url("../frontend_libraries/open-sans-fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.ttf") format("truetype"), url("../frontend_libraries/open-sans-fonts/open-sans/SemiboldItalic/OpenSans-SemiboldItalic.svg#OpenSansSemiboldItalic") format("svg");
}
@font-face {
  font-family: "Open Sans";
  font-weight: bold;
  font-style: normal;
  src: url("../frontend_libraries/open-sans-fonts/open-sans/Bold/OpenSans-Bold.woff2") format("woff2"), url("../frontend_libraries/open-sans-fonts/open-sans/Bold/OpenSans-Bold.woff") format("woff"), url("../frontend_libraries/open-sans-fonts/open-sans/Bold/OpenSans-Bold.ttf") format("truetype"), url("../frontend_libraries/open-sans-fonts/open-sans/Bold/OpenSans-Bold.svg#OpenSansBold") format("svg");
}
@font-face {
  font-family: "Open Sans";
  font-weight: bold;
  font-style: italic;
  src: url("../frontend_libraries/open-sans-fonts/open-sans/BoldItalic/OpenSans-BoldItalic.woff2") format("woff2"), url("../frontend_libraries/open-sans-fonts/open-sans/BoldItalic/OpenSans-BoldItalic.woff") format("woff"), url("../frontend_libraries/open-sans-fonts/open-sans/BoldItalic/OpenSans-BoldItalic.ttf") format("truetype"), url("../frontend_libraries/open-sans-fonts/open-sans/BoldItalic/OpenSans-BoldItalic.svg#OpenSansBoldItalic") format("svg");
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 0.75em;
  color: #000;
  line-height: 1.4;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  display: block;
}
h1 a:not(:focus),
.h1 a:not(:focus),
h2 a:not(:focus),
.h2 a:not(:focus),
h3 a:not(:focus),
.h3 a:not(:focus),
h4 a:not(:focus),
.h4 a:not(:focus),
h5 a:not(:focus),
.h5 a:not(:focus),
h6 a:not(:focus),
.h6 a:not(:focus) {
  text-decoration: none;
}

h1,
.h1 {
  font-size: 2rem;
  line-height: 1.3;
}

h2,
.h2 {
  font-size: 1.7777777778rem;
}

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

h4,
.h4 {
  font-size: 1.2222222222rem;
}

h5,
.h5 {
  font-size: 1.1111111111rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1em;
  font-weight: inherit;
  line-height: 1.7;
}

hr {
  height: 0;
  border-width: 0 0 1px 0;
  border-color: #eceff1;
  margin: 1.5em 0;
}

ul,
ol {
  padding-left: 1.5rem;
}
ul li,
ol li {
  list-style: inherit;
}
ul p:last-child,
ol p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: square;
}

ol {
  list-style: decimal;
}
ol + ul {
  margin-top: -0.5em;
  padding-left: 2.5rem;
}
ol + ul > li {
  margin-bottom: 0.1em;
}

blockquote {
  border-left: 3px solid #ffcc00;
  padding-left: 2rem;
  margin-left: 0;
  font-style: italic;
}
@media (max-width: 991px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.kicker {
  font-weight: bold;
  color: #626262;
  line-height: 1.1;
  margin-bottom: 0.35em;
}

.submitted,
.media-copyright {
  --ctx-muted: currentColor;
  font-size: 12px;
  font-style: italic;
  line-height: 1.1;
  color: #969da6;
}
.submitted *,
.media-copyright * {
  display: inline;
}
.submitted *::before, .submitted *::after,
.media-copyright *::before,
.media-copyright *::after {
  display: inline;
}
.submitted > .field--name-field-teaser-image-author:not(:last-child)::after,
.media-copyright > .field--name-field-teaser-image-author:not(:last-child)::after {
  content: ", ";
}
.submitted > .field--name-field-teaser-image-sourceurl,
.media-copyright > .field--name-field-teaser-image-sourceurl {
  margin-left: 0.2em;
}
.submitted > .field--name-field-teaser-image-sourceurl::before,
.media-copyright > .field--name-field-teaser-image-sourceurl::before {
  content: "(";
}
.submitted > .field--name-field-teaser-image-sourceurl::after,
.media-copyright > .field--name-field-teaser-image-sourceurl::after {
  content: ")";
}

code {
  background: #eee;
  padding: 0.1em 0.35em;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 0;
}

.code-inline {
  display: inline-block;
}

.code-block {
  display: block;
  margin-block: 0 1em;
}

.white h1,
.white .h1,
.white h2,
.white .h2,
.white h3,
.white .h3,
.white h4,
.white .h4,
.white h5,
.white .h5,
.white h6,
.white .h6,
.white-shadow h1,
.white-shadow .h1,
.white-shadow h2,
.white-shadow .h2,
.white-shadow h3,
.white-shadow .h3,
.white-shadow h4,
.white-shadow .h4,
.white-shadow h5,
.white-shadow .h5,
.white-shadow h6,
.white-shadow .h6,
.grey-lightest h1,
.grey-lightest .h1,
.grey-lightest h2,
.grey-lightest .h2,
.grey-lightest h3,
.grey-lightest .h3,
.grey-lightest h4,
.grey-lightest .h4,
.grey-lightest h5,
.grey-lightest .h5,
.grey-lightest h6,
.grey-lightest .h6,
.grey-darker h1,
.grey-darker .h1,
.grey-darker h2,
.grey-darker .h2,
.grey-darker h3,
.grey-darker .h3,
.grey-darker h4,
.grey-darker .h4,
.grey-darker h5,
.grey-darker .h5,
.grey-darker h6,
.grey-darker .h6,
.dc-yellow h1,
.dc-yellow .h1,
.dc-yellow h2,
.dc-yellow .h2,
.dc-yellow h3,
.dc-yellow .h3,
.dc-yellow h4,
.dc-yellow .h4,
.dc-yellow h5,
.dc-yellow .h5,
.dc-yellow h6,
.dc-yellow .h6,
.dc-yellow-lighter h1,
.dc-yellow-lighter .h1,
.dc-yellow-lighter h2,
.dc-yellow-lighter .h2,
.dc-yellow-lighter h3,
.dc-yellow-lighter .h3,
.dc-yellow-lighter h4,
.dc-yellow-lighter .h4,
.dc-yellow-lighter h5,
.dc-yellow-lighter .h5,
.dc-yellow-lighter h6,
.dc-yellow-lighter .h6,
.dc-yellow-darker h1,
.dc-yellow-darker .h1,
.dc-yellow-darker h2,
.dc-yellow-darker .h2,
.dc-yellow-darker h3,
.dc-yellow-darker .h3,
.dc-yellow-darker h4,
.dc-yellow-darker .h4,
.dc-yellow-darker h5,
.dc-yellow-darker .h5,
.dc-yellow-darker h6,
.dc-yellow-darker .h6,
.bba-blue h1,
.bba-blue .h1,
.bba-blue h2,
.bba-blue .h2,
.bba-blue h3,
.bba-blue .h3,
.bba-blue h4,
.bba-blue .h4,
.bba-blue h5,
.bba-blue .h5,
.bba-blue h6,
.bba-blue .h6 {
  color: currentColor;
}

.white {
  --ctx-muted: #969da6 !important;
  background: #fff !important;
  color: #333 !important;
}

.white-shadow {
  --ctx-muted: #969da6 !important;
  background: #fff !important;
  color: #333 !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.grey-lightest {
  --ctx-muted: #969da6 !important;
  background-color: #eceff1 !important;
  color: #333 !important;
}

.grey-darker {
  --ctx-muted: #969da6 !important;
  background-color: #333 !important;
  color: #eceff1 !important;
}

.dc-yellow,
.dc-yellow-lighter,
.dc-yellow-darker {
  --ctx-muted: rgba(51, 51, 51, 0.7) !important;
  background-color: #ffcc00 !important;
  color: #333 !important;
}

.bba-blue {
  --ctx-muted: rgba(255, 255, 255, 0.7) !important;
  background-color: #1f3685 !important;
  color: #fff !important;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash-periodically {
  0%, 2%, 4% {
    opacity: 1;
  }
  1%, 3% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flash {
  animation: flash 1s ease both 1;
}
.flash--periodically {
  animation: flash-periodically 30s ease both infinite;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 588px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1008px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1328px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 12px;
  padding-left: 12px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1300px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.container {
  background-color: transparent;
  margin: 0 auto;
  max-width: 1328px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.container .container {
  padding-left: 0;
  padding-right: 0;
}
.container--reduced {
  max-width: 891px !important;
}

.row {
  margin-top: -12px;
  margin-bottom: -12px;
}
.row > [class*=col-] {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (min-width: 992px) {
  .row--lg-nowrap {
    flex-wrap: nowrap;
  }
}

.col--shrink {
  flex: 0 1 auto;
  width: auto;
}
.col--grow {
  flex: 1 0 auto;
  width: auto;
}
.col--shrink-grow {
  flex: 1 1 auto;
  width: auto;
}

.auto-grid {
  --base-width: 150px;
  --fill-method: auto-fill;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(var(--fill-method), minmax(var(--base-width), 1fr));
}
.auto-grid--2-col {
  --base-width: 400px;
}
.auto-grid--3-col {
  --base-width: 310px;
}
.auto-grid--col-min-200 {
  --base-width: 200px;
  --fill-method: auto-fit;
}
.auto-grid--col-max-150 {
  --base-width: 150px;
}
.auto-grid--col-max-200 {
  --base-width: 200px;
}
.auto-grid--center-items > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grid-cell--full-width {
  grid-column: 1/-1;
}

.auto-grid-cell--span-2 {
  grid-column: span 2;
}

.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .visible-sm-flex {
    display: flex !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 1299px) {
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1299px) {
  .visible-md-flex {
    display: flex !important;
  }
}

@media (min-width: 768px) and (max-width: 1299px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) {
  .visible-lg {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .visible-lg-flex {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1300px) {
  .visible-xl {
    display: block !important;
  }
}
@media (min-width: 1300px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1300px) {
  .visible-lg-flex {
    display: flex !important;
  }
}

@media (min-width: 1300px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 576px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1300px) {
  .hidden-xl {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-flex {
  display: none !important;
}
@media print {
  .visible-print-flex {
    display: flex !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
/**
 *  BUTTON
 *
 *  Markup:
 *  -------
 *
 *  <button class="button">Default</button>
 *  <button class="button button--big">Button big</button>
 *  <button class="button button--secondary">Button secondary</button>
 *
 */
button {
  background-color: transparent;
  cursor: pointer;
}

.button {
  background-color: #ffcc00;
  border: 0;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 8px 16px 8px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease-in-out;
  white-space: nowrap;
}
.button:focus, .button:hover, .button:active {
  color: #fff;
}
.button:hover {
  background-color: rgba(255, 204, 0, 0.8);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
.button:active {
  opacity: 1;
}
.button:first-child {
  margin-left: 0;
}
.button:last-child {
  margin-right: 0;
}
.button--big {
  font-size: 24px;
  padding: 16px 36px;
}
.button--small {
  font-size: 12px;
  padding: 4px 16px;
}
@media (max-width: 991px) {
  .button--mobileFull {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.button--secondary {
  background-color: #ff5000;
  color: #fff;
}
.button--secondary:hover {
  background-color: rgba(255, 80, 0, 0.8);
  color: #fff;
}
.button--white {
  background-color: #fff;
  color: #ffcc00;
}
.button--white:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 204, 0, 0.8);
}
.button--green {
  background-color: #4caf50;
  color: #fff;
}
.button--green:hover {
  background-color: rgba(76, 175, 80, 0.8);
  color: #fff;
}
.button--red {
  background-color: #ff5000;
  color: #fff;
}
.button--red:hover {
  background-color: rgba(255, 80, 0, 0.8);
  color: #fff;
}
.button--transparent {
  background-color: transparent;
  color: #ffcc00;
}
.button--transparent:active, .button--transparent:hover, .button--transparent:focus {
  background-color: transparent;
  color: rgba(255, 204, 0, 0.8);
  opacity: 0.8;
}
.button--outlined {
  background-color: transparent;
  border: 1px solid #eceff1;
  color: #626262;
}
.button--outlined:active, .button--outlined:hover, .button--outlined:focus {
  background-color: transparent;
  color: rgba(98, 98, 98, 0.8);
  opacity: 0.8;
}

.button:focus-visible {
  outline: 2px solid #ffcc00;
}

.button--expanded {
  width: 100%;
}

.button--outlined {
  border-color: #ccc;
}
.button--outlined:hover {
  color: #333;
  border-color: #ffcc00;
}

.button--animated-border {
  --borderWidth: 2px;
  --borderWidthHalf: calc(var(--borderWidth) / 2);
  color: #333 !important;
  background: transparent !important;
  position: relative;
  border: 0 none !important;
}
.button--animated-border::before {
  content: "";
  position: absolute;
  top: var(--borderWidthHalf);
  left: var(--borderWidthHalf);
  bottom: var(--borderWidthHalf);
  right: var(--borderWidthHalf);
  z-index: -1;
  background-color: #fff;
  transition-duration: 150ms;
  transition-property: opacity;
}
.button--animated-border::after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--borderWidthHalf));
  left: calc(-1 * var(--borderWidthHalf));
  bottom: calc(-1 * var(--borderWidthHalf));
  right: calc(-1 * var(--borderWidthHalf));
  background: linear-gradient(60deg, #ffcc00, #ff5000);
  z-index: -2;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}
.button--animated-border:hover {
  color: #fff !important;
}
.button--animated-border:hover::before {
  opacity: 0;
}

.card {
  height: 100%;
  width: 100%;
  background-color: #fff;
  color: #333;
  position: relative;
}
.card__image {
  border: 1px solid #eceff1;
  line-height: 0;
  margin-bottom: 1rem;
}
.card__image a {
  display: block;
  height: 100%;
}
.card__image img {
  max-width: none;
  width: 100%;
}
.card__image-copyright {
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}
.card__title {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.card__title:last-child {
  margin-bottom: 0;
}
.card--no-image {
  padding-top: 1rem;
}
.card--tile:only-child {
  height: 100%;
  margin: 0;
}
.card--tile .card__image {
  margin: 0;
  height: 100%;
  position: relative;
}
.card--tile .card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  min-height: 14rem;
}
.card--tile .card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.75);
  transition-duration: 150ms;
  transition-property: opacity;
  pointer-events: none;
}
.card--tile .card__content > .card__title {
  margin-bottom: 0;
}
.card--tile .card__content > :not(.card__title):not(.card__kicker):not(.card__image-copyright) {
  opacity: 0;
  max-height: 0;
  transition-duration: 150ms;
  transition-property: max-height, opacity, margin;
  transition-delay: 150ms;
}
.card--tile .card__content .card__image-copyright {
  margin: 0.25em 0 0;
  color: #626262;
}
.card--tile .card__content .card__image-copyright a {
  color: currentColor;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.card--tile:focus-within .card__content > :not(.card__title):not(.card__kicker):not(.card__image-copyright), .card--tile:hover .card__content > :not(.card__title):not(.card__kicker):not(.card__image-copyright) {
  margin-top: 0.5rem;
  opacity: 1;
  max-height: 600px;
}
.card--tile:focus-within .card__content .card__image-copyright, .card--tile:hover .card__content .card__image-copyright {
  margin-top: 0.5em;
}

.white-shadow .card:not(.card--tile),
.grey-lightest .card:not(.card--tile),
.grey-darker .card:not(.card--tile),
.dc-yellow .card:not(.card--tile),
.dc-yellow-lighter .card:not(.card--tile),
.dc-yellow-darker .card:not(.card--tile),
.bba-blue .card:not(.card--tile) {
  padding-bottom: 1rem;
}
.white-shadow .card:not(.card--tile) > .card__image,
.grey-lightest .card:not(.card--tile) > .card__image,
.grey-darker .card:not(.card--tile) > .card__image,
.dc-yellow .card:not(.card--tile) > .card__image,
.dc-yellow-lighter .card:not(.card--tile) > .card__image,
.dc-yellow-darker .card:not(.card--tile) > .card__image,
.bba-blue .card:not(.card--tile) > .card__image {
  border: 0 none;
}
.white-shadow .card:not(.card--tile) > *:not(.card__image),
.grey-lightest .card:not(.card--tile) > *:not(.card__image),
.grey-darker .card:not(.card--tile) > *:not(.card__image),
.dc-yellow .card:not(.card--tile) > *:not(.card__image),
.dc-yellow-lighter .card:not(.card--tile) > *:not(.card__image),
.dc-yellow-darker .card:not(.card--tile) > *:not(.card__image),
.bba-blue .card:not(.card--tile) > *:not(.card__image) {
  padding-left: 1rem;
  padding-right: 1rem;
}

.media-object {
  display: flex;
  flex-flow: row wrap;
  background: #fff;
}
.media-object__image {
  flex: 1 0 100%;
}
@media (min-width: 992px) {
  .media-object__image {
    flex: 1 0 66.666%;
  }
}
.media-object__image a {
  display: block;
  height: 100%;
}
.media-object__image img {
  max-width: none;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.media-object__contents {
  display: flex;
  flex-direction: column;
  flex: 1 0 33.333%;
  max-width: 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  .media-object__contents {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
.media-object__kicker {
  -webkit-hyphens: auto;
          hyphens: auto;
}
.media-object__title {
  font-size: 1rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5em;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.media-object__image-copyright {
  margin-top: auto;
}
.media-object--large .media-object__contents {
  padding: 2rem;
}
.media-object--large .media-object__contents-top {
  margin-top: auto;
}
.media-object--large .media-object__contents-top:last-child {
  margin-bottom: auto;
}
.media-object--large .media-object__title {
  font-size: 1.3333333333rem;
  line-height: 1.1;
}
.white-shadow .media-object,
.grey-lightest .media-object,
.grey-darker .media-object,
.dc-yellow .media-object,
.dc-yellow-lighter .media-object,
.dc-yellow-darker .media-object,
.bba-blue .media-object {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/**
 *  BADGE
 *
 *  Markup:
 *  -------
 *
 *  <ul>
 *    <li class="badge badge--primary">Badge 1</li>
 *    <li class="badge badge--secondary badge--big">Badge 1</li>
 *  </ul>
 *
 */
.badge {
  background-color: #eceff1;
  border-radius: 3px;
  color: #272727;
  display: inline-block;
  line-height: 1.2em;
  padding: 8px 16px;
}
.badge--big {
  font-size: 1.3em;
}
.badge--small {
  font-size: 0.7em;
}
.badge--primary {
  background-color: #03a9f4;
  color: #fff;
}
.badge--secondary {
  background-color: #e91e63;
  color: #fff;
}
.badge--dark {
  background-color: #18232f;
  color: #fff;
}
.badge--light {
  background-color: #969da6;
  color: #fff;
}
.badge--success {
  background-color: #4caf50;
  color: #fff;
}
.badge--error {
  background-color: #e74c3c;
  color: #fff;
}
.badge--warning {
  background-color: #f0ad4e;
  color: #fff;
}

/**
 *  LOADING SPINNER
 *
 *  Markup:
 *  ---------
 *  <div class='loadingSpinner'>
 *    <span class='loadingSpinner-inner'></span>
 *    <span class='loadingSpinner-inner'></span>
 *    <span class='loadingSpinner-inner'></span>
 *    <span class='loadingSpinner-inner'></span>
 *  </div>
 *
 */
.loadingSpinner {
  animation: rotateLoader 4s infinite;
  animation-timing-function: ease-in-out;
  display: block;
  height: 30px;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  position: fixed;
  top: 50%;
  width: 30px;
  z-index: 1000;
}
.loadingSpinner-inner {
  animation-timing-function: ease-in-out;
  background-color: #e91e63;
  border-radius: 100%;
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}
.loadingSpinner-inner:nth-child(1) {
  animation: translateBall1 1s infinite;
  left: 0;
  top: 0;
  transform: translate3d(4.5px, 4.5px, 0);
}
.loadingSpinner-inner:nth-child(2) {
  animation: translateBall2 1s infinite;
  right: 0;
  top: 0;
}
.loadingSpinner-inner:nth-child(3) {
  animation: translateBall3 1s infinite;
  bottom: 0;
  right: 0;
}
.loadingSpinner-inner:nth-child(4) {
  animation: translateBall4 1s infinite;
  bottom: 0;
  left: 0;
}

@keyframes rotateLoader {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes translateBall1 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(4.5px, 4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes translateBall2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-4.5px, 4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes translateBall3 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-4.5px, -4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes translateBall4 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(4.5px, -4.5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
/**
 *  NOTIFICATION
 *
 *  Markup:
 *  -------
 *
 *  <div class="notification notification--sucess">Success notification</div>
 *  <div class="notification notification--info">Success info</div>
 *  <div class="notification notification--error">Success error</div>
 *  <div class="notification notification--warning">Success warning</div>
 *
 */
.notification {
  border-radius: 3px;
  color: #fff;
  margin-bottom: 36px;
  padding: 2rem;
}
.notification p:last-child {
  margin-bottom: 0;
}
.notification--primary {
  background-color: #ffcc00;
}
.notification--dark {
  background-color: #333;
}
.notification--secondary {
  background-color: #ff5000;
}
.notification--white {
  background-color: #fff;
}
.notification--success {
  background-color: #4caf50;
}
.notification--info {
  background-color: #5bc0de;
}
.notification--warning {
  background-color: #f0ad4e;
}
.notification--error {
  background-color: #ff5000;
}
.notification--gray {
  background-color: #969da6;
}
.notification--gray-light {
  background-color: #eceff1;
}
.notification--gray-darker {
  background-color: #333;
}

/**
 *  PAGINATOR
 *
 *  Markup:
 *  -------
 *
 *  <ul class="paginator">
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">< Prev</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">1</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink is-active">2</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">3</a>
 *    </li>
 *    <li class="paginator-item">
 *      <a href="#" class="paginator-itemLink">Next ></a>
 *    </li>
 *  </ul>
 */
.paginator-item {
  display: inline-block;
  margin-right: 4px;
}
.paginator-itemLink {
  background-color: #eceff1;
  border-radius: 1px solid #eceff1;
  display: block;
  padding: 8px 16px;
}
.paginator-itemLink.is-active {
  background-color: transparent;
  color: #000;
  cursor: default;
}

/**
 *  TABLE
 *
 *  Markup:
 *  -------
 *
 *  <table class="table">
 *    <tr>
 *      <th>First column</th>
 *      <th>Second column</th>
 *      <th>Third column</th>
 *    </tr>
 *    <tr>
 *      <td="First column">Blue</td>
 *      <td="Second column">One</td>
 *      <td="Third column">My life fades</td>
 *    </tr>
 *  </table>
 *
 */
.table {
  background-color: #eceff1;
  border: 1px solid #eceff1;
  border-collapse: collapse;
  color: #333;
  max-width: 100%;
  width: 100%;
}
.table th,
.table td {
  border-bottom: 1px solid #eceff1;
  padding: 8px;
  position: relative;
}
.table thead {
  border-bottom: 1px solid #eceff1;
}
.table th {
  background-color: #fff;
  color: #969da6;
  font-size: 12px;
  font-weight: normal;
  padding: 8px;
  white-space: nowrap;
}

/**
 *  TABLE RESPONSIVE
 *
 *  Markup:
 *  -------
 *
 *  <table class="table table--responsive">
 *    <tr>
 *      <th>First column</th>
 *      <th>Second column</th>
 *      <th>Third column</th>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Blue</td>
 *      <td data-th="Second column">One</td>
 *      <td data-th="Third column">My life fades</td>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Green</td>
 *      <td data-th="Second column">Two</td>
 *      <td data-th="Third column">
 *        when the world was powered by the black fuel... and the desert
 *        sprouted great cities of pipe and steel.
 *      </td>
 *    </tr>
 *    <tr>
 *      <td data-th="First column">Yellow</td>
 *      <td data-th="Second column">Three</td>
 *      <td data-th="Third column">
 *        A whirlwind of looting, a firestorm of fear.
 *      </td>
 *    </tr>
 *  </table>
 *
 */
.table--responsive th {
  display: none;
}
.table--responsive td {
  display: block;
}
@media (max-width: 767px) {
  .table--responsive td {
    border: 0;
  }
}
.table--responsive td::before {
  color: #969da6;
  content: attr(data-th) ": ";
  display: block;
  font-weight: normal;
}
@media (min-width: 576px) {
  .table--responsive td::before {
    display: none;
  }
}
.table--responsive td:first-child {
  border-top: 1px solid #eceff1;
}
.table--responsive th,
.table--responsive td {
  text-align: left;
}
@media (min-width: 576px) {
  .table--responsive th,
  .table--responsive td {
    border-top: 1px solid #eceff1;
    display: table-cell;
  }
}

/**
 *  TABS
 *
 *  Markup:
 *  -------
 *
 *  <div class="tabs">
 *    <a href="#" title="#" class="tabs-item">[...]</a>
 *    <a href="#" title="#" class="tabs-item is-selected">[...]</a>
 *  </div>
 *
 */
.tabs {
  border-bottom: 1px solid #eceff1;
  text-align: center;
}
.tabs-item {
  border-bottom: 3px solid transparent;
  color: #969da6;
  display: inline-block;
  margin: 0 16px 0 0;
  min-width: 70px;
  padding: 16px;
  position: relative;
}
.tabs-item:hover {
  color: #ffcc00;
  text-decoration: none;
}
.tabs-item.is-selected {
  border-bottom: 3px solid #ffcc00;
  color: #ffcc00;
}

/**
 *  TAG
 *
 *  Markup:
 *  -------
 *
 *  <ul>
 *    <li class="tag">Fantasy</li>
 *    <li class="tag">Fiction</li>
 *    <li class="tag">Contemporary</li>
 *  </ul>
 *
 *  <ul>
 *    <li class="tag">
 *      <a href="#">Fantasy</a>
 *    </li>
 *    <li class="tag">
 *      <a href="#">Fiction</a>
 *    </li>
 *    <li class="tag">
 *       <a href="#">Contemporary</a>
 *    </li>
 *  </ul>
 *
 */
.tag {
  background-color: #eceff1;
  border-radius: 3px 0 0 3px;
  color: #333;
  display: inline-block;
  line-height: 16px;
  margin: 0 16px 16px 0;
  padding: 8px;
  position: relative;
}
.tag::before {
  border-bottom: 16px solid transparent;
  border-left: 8px solid #eceff1;
  border-top: 16px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
}
.tag::after {
  background: #fff;
  border-radius: 100%;
  content: "";
  height: 5px;
  margin-top: -2.5px;
  position: absolute;
  right: -2.5px;
  top: 50%;
  width: 5px;
}

.civi-embed {
  border: 0 none;
  width: 100%;
}

.badge--primary {
  background-color: #fff;
  border: 1px solid #ffcc00;
  color: #333;
  font-weight: bold;
}
.badge--primary .fa {
  color: #ffcc00;
}

figure {
  line-height: 0;
  margin: 0 0 1rem 0;
  border: 1px solid #eceff1;
}
figure figcaption {
  background-color: #eceff1;
  padding: 1rem;
  font-size: 12px;
  line-height: 1.3;
}

.tags {
  list-style: none;
  padding: 0;
}
.tags .tag a {
  text-decoration: none;
}
.tags .tag a:hover {
  color: #333;
  text-decoration: underline;
}

.teaser-text {
  line-height: 1.3;
}
.teaser-text p {
  line-height: inherit;
}

.infobox-wrapper {
  min-width: 230px;
  background-color: #fff !important;
  border: 1px solid #ffcc00;
  padding: 1rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .infobox-wrapper[style*="float:left"] {
    margin: 0 24px 1rem 0 !important;
  }
  .infobox-wrapper[style*="float:right"] {
    margin: 0 0 1rem 24px !important;
  }
}
@media (max-width: 767px) {
  .infobox-wrapper {
    float: none !important;
    width: 100% !important;
    padding: 1rem;
    margin: 1rem 0 2rem 0 !important;
  }
}

.date-rect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 85px;
  max-width: 100px;
  border: 1px solid #eceff1;
  line-height: 1.1;
}
.date-rect > * {
  text-align: center;
}
.date-rect__day {
  font-weight: bold;
  font-size: 1.3333333333rem;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 3px solid #ffcc00;
}
.date-rect__time {
  border-top: 1px solid #eceff1;
  margin-top: 0.25em;
  padding: 0.25em;
}

.date-range {
  display: flex;
  position: relative;
  margin: 0;
  gap: 0.3rem;
  max-width: -moz-min-content;
  max-width: min-content;
}
.date-range > .date-rect {
  flex: 1 1 100px;
  padding: 0.65rem;
}
.date-range > .date-rect:nth-child(1) {
  order: 1;
}
.date-range > .date-rect:nth-child(2) {
  order: 3;
}
.date-range__status {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 0 0 0 8px;
  background-color: #ccc;
  color: white;
  font-size: 10px;
  text-indent: 1px;
}
.date-range:hover .date-range__status {
  background-color: #ffcc00;
}
.date-range__status--highlight {
  background-color: #ffcc00;
}
.date-range--recurring::after {
  content: "–";
  flex: 0 0 auto;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  font-weight: bold;
  align-self: center;
  order: 2;
}
.event-wrapper--highlight .date-range:not(.date-range--active), .event-wrapper--highlight .date-range.date-range--active > .date-rect, .date-range--highlight:not(.date-range--active), .date-range--highlight.date-range--active > .date-rect {
  outline: 2px solid #ffcc00;
}
.event-wrapper--highlight .date-range .date-range__status, .date-range--highlight .date-range__status {
  right: -1px;
}

.event-wrapper:not(:last-child) {
  margin-bottom: 1rem;
}
.event-wrapper--full .event-next-date__date {
  display: none !important;
}
.event-wrapper:not(.event-wrapper--full) {
  display: flex;
  gap: 0.65rem;
  border: 1px solid #eceff1;
}
.event-wrapper:not(.event-wrapper--full) > .event-wrapper__date > .date-range::after,
.event-wrapper:not(.event-wrapper--full) > .event-wrapper__date > :not(.date-range) {
  display: none !important;
}
.event-wrapper:not(.event-wrapper--full) > .event-wrapper__date .date-rect--start-date {
  border-width: 0 1px 0 0;
}
.event-wrapper:not(.event-wrapper--full) > .event-wrapper__date .date-rect--end-date,
.event-wrapper:not(.event-wrapper--full) > .event-wrapper__date .date-rect__time {
  display: none;
}
.event-wrapper__date .date-range {
  height: 100%;
}
.event-wrapper__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.65rem 0.65rem 0.65rem 0;
}
.event-wrapper__title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
  margin: 0;
}
.event-wrapper__content {
  margin-top: 0.25em;
}

.dates-dropdown {
  position: relative;
}
.dates-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
}
.dates-dropdown summary::after {
  content: "\e9a0";
  font-family: "forkawesome";
  font-size: 12px;
}
.dates-dropdown__content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 99;
  width: 100%;
  min-width: 250px;
  max-width: 90vw;
  max-height: 500px;
  overflow: auto;
  border: 1px solid #eceff1;
  background: white;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
.dates-dropdown__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dates-dropdown__content ul > li {
  margin: 0;
  padding: 1rem;
}
.dates-dropdown__content ul > li:not(:last-child) {
  border-bottom: 1px solid #eceff1;
}
.dates-dropdown[open] summary::after {
  content: "\eb1d";
  transform: rotate(-45deg);
}
.dates-dropdown[open] .dates-dropdown__content {
  display: block;
}

.cutline-top {
  border-top: 1px solid var(--ctx-muted, #eceff1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.cutline-bottom {
  border-bottom: 1px solid var(--ctx-muted, #eceff1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.inline-date {
  white-space: nowrap;
}

.dc-cta-grid {
  --arrow-width: 42px;
  --arrow-spacing: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  grid-gap: 24px;
}
.dc-cta-grid__col {
  line-height: 1.3;
  position: relative !important;
  padding-left: calc(var(--arrow-width) + var(--arrow-spacing));
}
.dc-cta-grid__col p {
  line-height: inherit;
}
.dc-cta-grid__col :last-child {
  margin-bottom: 0;
}
.dc-cta-grid__col:hover .dc-cta-grid__heading {
  color: #ffcc00;
}
.dc-cta-grid__col:hover .dc-cta-grid__heading::before {
  transform: translateX(0.25rem);
}
.dc-cta-grid__heading {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  margin-left: calc((var(--arrow-width) + var(--arrow-spacing)) * -1);
  margin-bottom: 0.35em;
}
.dc-cta-grid__heading > a {
  flex: 1 1 auto;
}
.dc-cta-grid__heading::before {
  content: "";
  flex: 0 0 auto;
  width: var(--arrow-width);
  height: var(--arrow-width);
  margin-right: var(--arrow-spacing);
  background-image: url("../logo_triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition-duration: 150ms;
  transition-property: transform;
}

.field--type-image {
  line-height: 1;
}

.block-type--embed-code .field--name-field-embed-link {
  margin-top: 0.5em;
}
html.js .block-type--embed-code .field--name-field-embed-link {
  display: none;
}
html:not(.js) .block-type--embed-code iframe {
  height: 300px !important;
  overflow: auto !important;
}

a.site-logo {
  display: block;
  line-height: 1;
}

.block-search.container-inline form {
  position: relative;
}
.block-search.container-inline form::before {
  content: "\eb4b";
  display: inline-block;
  font: normal normal normal 1em/1 ForkAwesome;
  margin: 0 0.45em 0 0;
  text-decoration: none;
}
.block-search.container-inline .form-item-keys {
  margin: 0;
}
.block-search.container-inline .form-item-keys .form-search {
  box-sizing: border-box;
  min-height: 0;
  width: 12.5em;
  padding: 0.15rem 30px 0.15rem 0 !important;
  border-width: 0 0 1px 0 !important;
}
.block-search.container-inline .form-item-keys .form-search:focus {
  border-color: #ffcc00 !important;
  outline: 0 !important;
}
.block-search.container-inline .form-actions {
  margin: 0;
}
.block-search.container-inline .form-actions .form-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25px;
  margin: 0;
  padding: 0;
  display: block;
  font-size: 0;
  text-indent: -100vw;
  background-color: transparent !important;
  color: #969da6;
  background-image: url("../images/ico_return.svg");
  background-repeat: no-repeat;
  background-size: 12px 8px;
  background-position: center;
  filter: grayscale(1);
}
.block-search.container-inline .form-actions .form-submit:hover, .block-search.container-inline .form-actions .form-submit:focus {
  filter: none;
}

.no-cookie-banner {
  --grid-gutter: 2rem;
  background-color: #333;
  color: #eceff1;
}
.no-cookie-banner__inner {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 991px) {
  .no-cookie-banner__inner {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .no-cookie-banner__inner {
    flex-flow: nowrap;
  }
}
.no-cookie-banner__inner > * {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1rem 1.5rem;
}
@media (min-width: 992px) {
  .no-cookie-banner__inner > * {
    justify-content: center;
    padding: 2rem var(--grid-gutter);
  }
  .no-cookie-banner__inner > *:first-child {
    padding-left: 0;
  }
  .no-cookie-banner__inner > *:last-child {
    padding-right: 0;
  }
}
.no-cookie-banner__title {
  flex: 1 0 100%;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.1;
  color: #fff;
  background-image: linear-gradient(to bottom, #333 0%, #262626 100%);
}
@media (min-width: 992px) {
  .no-cookie-banner__title {
    flex: 0 0 30%;
    background-image: linear-gradient(to right, #333 0%, #262626 100%);
  }
}
.no-cookie-banner__title::before {
  content: "";
  background-image: url("../images/no_cookies_light.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 1rem 0 0;
  width: 62px;
  height: 62px;
}
.no-cookie-banner__title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  border-width: 10px 16px;
  border-style: solid;
  border-color: #262626 transparent transparent transparent;
}
@media (min-width: 992px) {
  .no-cookie-banner__title::after {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 16px 10px;
    border-color: transparent transparent transparent #262626;
  }
}
.no-cookie-banner__content {
  flex: 1 0 100%;
  line-height: 1.1;
  color: #ccc;
}
@media (max-width: 1299px) {
  .no-cookie-banner__content {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .no-cookie-banner__content {
    flex: 1 1 auto;
  }
}
.no-cookie-banner__content strong {
  color: #eceff1;
}
.no-cookie-banner__content p {
  line-height: inherit;
  margin-bottom: 0.65em;
}
.no-cookie-banner__content p:last-child {
  margin-bottom: 0;
}
.no-cookie-banner__buttons {
  flex: 1 0 100%;
}
@media (min-width: 992px) {
  .no-cookie-banner__buttons {
    flex: 0 0 auto;
  }
}

.block--frame .block__content {
  border: 1px solid #eceff1;
  padding: 1rem;
}
.block--frame .block__content > :last-child {
  margin-bottom: 0;
}
.block--frame .block__linkwrap {
  --arrow-width: 42px;
  --arrow-spacing: 0.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  margin-bottom: 0.35em;
}
.block--frame .block__linkwrap::before {
  content: "";
  flex: 0 0 auto;
  width: var(--arrow-width);
  height: var(--arrow-width);
  margin-right: var(--arrow-spacing);
  background-image: url("../logo_triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition-duration: 150ms;
  transition-property: transform;
}

.block--newsletter-compact .block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: #ffcc00;
  background-image: url("../images/newsletter_block_bg_based_on_forkawesome.svg");
  background-repeat: no-repeat;
  background-position: top -40px right -50px;
  background-size: 100%;
}
.block--newsletter-compact .block__content .webform-submission-form {
  display: flex;
  flex-flow: row wrap;
}
.block--newsletter-compact .block__content .webform-submission-form > .form-item:not(.form-item--required),
.block--newsletter-compact .block__content .webform-submission-form > .form-wrapper:not(.form-wrapper--contains-required-fields):not(.form-actions):not(.captcha),
.block--newsletter-compact .block__content .webform-submission-form > .hide-in-compact-form {
  display: none;
}
.block--newsletter-compact .block__content .webform-submission-form > * {
  padding: 0 !important;
  margin: 0 !important;
}
.block--newsletter-compact .block__content .webform-submission-form .form-type-email {
  flex: 0 0 60%;
}
.block--newsletter-compact .block__content .webform-submission-form .form-type-email label {
  display: none;
}
.block--newsletter-compact .block__content .webform-submission-form .captcha {
  flex: 0 0 100%;
  order: 999;
  border: 0 none;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition-duration: 150ms;
  transition-property: max-height;
}
.block--newsletter-compact .block__content .webform-submission-form .form-actions {
  display: flex;
  flex: 0 0 40%;
}
.block--newsletter-compact .block__content .webform-submission-form .form-actions .button {
  height: 100%;
  flex-grow: 1;
  margin: 0;
}
.block--newsletter-compact .block__content .webform-submission-form:focus-within .captcha {
  max-height: 900px;
}
.block--newsletter-compact .block__content p {
  line-height: 1.3;
}
.block--newsletter-compact .block__content .field--name-field-text {
  margin-top: 0.5rem;
}

.block--current-topic .block__content div[block*=view],
.block--current-topic .block__content div[class*=view] {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.licence-info > * {
  display: inline-block;
}
.licence-info > *:not(:last-child) {
  margin-right: 0.25em;
}

.media.media--type-image {
  border: 0 none;
  margin: 0;
}
.media .field--type-image {
  line-height: 0;
}

.node__header {
  padding: 2rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
.node__header .page-title {
  margin-bottom: 0.25em;
}
.node__header + .node__grid-content,
.node__header + .node__teaser-image {
  margin-top: -2rem;
}
.node__header .date-range {
  margin-top: 0.5rem;
}
.node__teaser {
  font-weight: 600;
  line-height: 1.7;
}
.node__kicker {
  margin-bottom: 0.5rem;
}
.node__submitted {
  margin-top: 1rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.node__submitted > *:not(:last-child) {
  margin-right: 0.5em;
}
.node__author {
  display: inline-flex;
  align-items: center;
}
.node__author::after {
  content: "-";
}
.node__author > *:not(:last-child) {
  margin-right: 0.35em;
}
.node__author--multiple .user {
  transition-duration: 150ms;
  transition-timing-function: linear;
  transition-property: margin;
  transition-delay: 100ms;
}
.node__author--multiple .user__name {
  max-width: 0;
  opacity: 0;
}
.node__author--multiple .user ~ .user {
  margin-left: calc((var(--gutter, 0.35rem) + var(--image-size, 32px) * 0.5) * -1);
}
.node__author--multiple .user:hover, .node__author--multiple .user:focus-within {
  position: relative;
  z-index: 1;
  margin-right: var(--image-size, 32px);
}
.node__author--multiple .user:hover .user__name, .node__author--multiple .user:focus-within .user__name {
  max-width: 300px;
  opacity: 1;
}
.node__author--multiple .user:last-child:hover, .node__author--multiple .user:last-child:focus-within {
  margin-right: 0;
}
.node__teaser-image {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.node__teaser-image > .container {
  max-width: 1060px;
}
.node__teaser-image .field--type-image {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.node__teaser-image-copyright {
  margin-top: 0.25rem;
}
.node__content {
  padding-bottom: 2rem;
}
.node__content > .field--name-body > hr {
  --scrollbar-width: var(--global-scrollbar-width, 22px);
  --viewport-width: calc(100vw - var(--scrollbar-width));
  position: relative;
  left: 50%;
  margin-left: calc((50vw - var(--scrollbar-width) / 2) * -1);
  width: var(--viewport-width);
}
.node__content + .node__grid-content {
  margin-top: -2rem;
}
.node__links {
  border-top: 1px solid var(--ctx-muted, #eceff1);
  padding-top: 1rem;
  margin-top: 1rem;
}
.node__links .comment-forbidden {
  display: none !important;
}

.path-frontpage .node__header {
  display: none;
}
.path-frontpage .node__grid-content {
  margin-top: 0 !important;
}

.node__header-columns__first .recurring-date {
  display: none !important;
}
.node__header-columns__first .container-inline * {
  display: inline;
}

.more-link {
  border-top: 1px solid var(--ctx-muted, #eceff1);
  padding-top: 1rem;
  margin-top: 1rem;
}
.more-link > a::before {
  content: "\ebb7";
  display: inline-block;
  font: normal normal normal 1em/1 ForkAwesome;
  margin: 0 0.45em 0 0;
  text-decoration: none;
}

.views-exposed-form {
  --filter-form-item-spacing: 0.5rem;
}
.views-exposed-form .form--inline {
  display: flex;
  gap: var(--filter-form-item-spacing);
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.views-exposed-form .form--inline > .form-wrapper,
.views-exposed-form .form--inline > .form-item {
  position: relative;
  flex: 1 1 auto;
  margin: 0 !important;
}
.views-exposed-form .form--inline > .form-wrapper label,
.views-exposed-form .form--inline > .form-item label {
  display: block;
  font-weight: bold;
  font-size: 16px;
}
.views-exposed-form .form--inline > .form-wrapper .form-input,
.views-exposed-form .form--inline > .form-wrapper .form-select,
.views-exposed-form .form--inline > .form-item .form-input,
.views-exposed-form .form--inline > .form-item .form-select {
  width: 100%;
}
.views-exposed-form .form--inline > .form-wrapper .form-item,
.views-exposed-form .form--inline > .form-item .form-item {
  margin-bottom: 0 !important;
}
.views-exposed-form .form--inline .form-actions {
  flex: 0 1 auto;
  margin: 0 !important;
  align-self: flex-end;
  display: flex;
  gap: var(--filter-form-item-spacing);
}
.views-exposed-form .form--inline .form-actions .button {
  flex: 1 1 auto;
  margin: 0 !important;
  min-height: 3rem;
}

td.is-active {
  background-color: #d5dbe0;
}

.tablesort {
  vertical-align: middle;
}

.view .feed-icons {
  margin-top: 2rem;
}
.view--enlarge-first-row .views-view-grid > .row > :first-child {
  flex-basis: 100%;
  max-width: 100%;
}
.view--enlarge-first-row .views-view-grid > .row > :first-child > .media-object .media-object__contents {
  padding: 2rem;
}
.view--enlarge-first-row .views-view-grid > .row > :first-child > .media-object .media-object__contents-top {
  margin-top: auto;
}
.view--enlarge-first-row .views-view-grid > .row > :first-child > .media-object .media-object__contents-top:last-child {
  margin-bottom: auto;
}
.view--enlarge-first-row .views-view-grid > .row > :first-child > .media-object .media-object__title {
  font-size: 1.3333333333rem;
  line-height: 1.1;
}
.path-suche .page-main {
  background-color: #eceff1;
  padding-bottom: 2rem;
}

.view-solr-search-content {
  position: relative;
}
.view-solr-search-content .view-filters {
  padding: 0.65rem 0;
  margin-bottom: 1rem;
  background-color: #eceff1;
  box-shadow: -10px 0 0 #eceff1, 10px 0 0 #eceff1;
}
@media (min-width: 992px) {
  .view-solr-search-content .view-filters {
    position: sticky;
    top: 56px;
    left: 0;
    width: 100%;
    z-index: 2;
  }
}
.view-solr-search-content .view-filters .form--inline {
  margin-bottom: 0;
}
.view-solr-search-content .views-row {
  margin-bottom: 1rem;
}
.view-solr-search-content .media-object {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .view-solr-search-content .media-object__image {
    flex: 0 0 33.333%;
  }
}
@media (min-width: 992px) {
  .view-solr-search-content .media-object__contents {
    flex: 1 1 66.666%;
    max-width: none;
  }
}

.user--full {
  padding-top: 2rem;
}
@media (min-width: 992px) {
  .user--full .user__image {
    order: 99;
  }
}
.user--inline {
  --gutter: 0.35rem;
  --image-size: 32px;
  display: inline-flex !important;
  align-items: center;
}
.user--inline > * {
  margin-right: var(--gutter, 0.35rem);
}
.user--inline .user__image {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #eceff1;
  height: var(--image-size, 32px);
  width: var(--image-size, 32px);
  background-color: #fff;
}
.user--inline .user__image * {
  margin: 0 !important;
  padding: 0 !important;
}
.user--inline .user__image a,
.user--inline .user__image span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.user--inline .user__image img {
  flex: 0 0 auto;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.user--inline .user__image img.user-fallback-image {
  -o-object-position: center center;
     object-position: center center;
  height: 14px;
  width: 14px;
  margin: auto;
  transform: translateX(2px);
}
.user--inline .user__image .fa {
  font-size: calc(var(--image-size) * 0.5);
}
.user--inline .user__name {
  transition-duration: 80ms;
  transition-timing-function: linear;
  transition-property: max-width, opacity;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/**
 * @file
 * Checkbox and radio input elements.
 */
input[type=checkbox],
input[type=radio] {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1rem 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* Specific pseudo-element to apply red borders for IE11 bool elements in case of error */
}
input[type=checkbox]:focus,
input[type=radio]:focus {
  border: solid 1px #ffcc00;
  outline: solid 1px #ffcc00;
}
input[type=checkbox]:hover,
input[type=radio]:hover {
  border-color: #e6b800;
}
input[type=checkbox][disabled],
input[type=radio][disabled] {
  background-color: #eceff1;
}
input[type=checkbox][disabled]:hover,
input[type=radio][disabled]:hover {
  border-color: #969da6;
}
input[type=checkbox][disabled]:checked,
input[type=radio][disabled]:checked {
  border-width: 1px;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  border-width: 1px;
}
input[type=checkbox].error,
input[type=radio].error {
  border: solid 1px #ff5000;
}
input[type=checkbox].error:focus,
input[type=radio].error:focus {
  outline-color: #ff5000;
  outline-offset: -1px;
}
input[type=checkbox].error::-ms-check,
input[type=radio].error::-ms-check {
  border: 1px solid #ff5000;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  vertical-align: bottom;
  padding-inline-start: 0.5rem;
}

input[type=checkbox]:checked {
  background-image: url("../images/ico_form_checkbox_checked.svg");
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked {
  background-image: url("../images/ico_form_radio_checked.svg");
  background-size: 17px;
}
input[type=radio]:focus {
  border-width: 1px;
  border-color: #ffcc00;
  outline-color: transparent;
}
input[type=radio].error:focus {
  outline-color: transparent;
}

.form-type-boolean {
  margin-block: 1rem;
}

.form-type-checkbox {
  display: flex;
}
.form-type-checkbox > input {
  flex: 0 0 auto;
}
.form-type-checkbox > label {
  flex: 1 1 auto;
}
.form-type-checkbox + .form-type-checkbox {
  margin-top: 0.75rem !important;
}

/**
 * @file
 * Fieldset.
 */
.fieldset {
  min-width: 0;
  margin-block: var(--sp1);
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  color: inherit;
  border: solid 2px #eceff1;
  border-radius: 2px;
  background-color: #fff;
}

.fieldset--group {
  width: 100%;
  color: inherit;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

/* stylelint-disable-next-line selector-type-no-unknown */
_:-ms-fullscreen,
.fieldset {
  display: table;
  box-sizing: border-box;
  width: 100%;
}

.fieldset__legend {
  float: left; /* Prevent sticking out of top of fieldset. */
  width: 100%;
  color: #eceff1;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background-color: #333;
  font-size: 1.7777777778rem;
  font-weight: bold;
  line-height: 1.5;
}
.fieldset__legend + * {
  clear: left;
}
.fieldset__legend .fieldset__label.form-required:after {
  background-image: url("data:image/svg+xml,%3Csvg height='16' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0 7.562 1.114-3.438c2.565.906 4.43 1.688 5.59 2.35-.306-2.921-.467-4.93-.484-6.027h3.511c-.05 1.597-.234 3.6-.558 6.003 1.664-.838 3.566-1.613 5.714-2.325l1.113 3.437c-2.05.678-4.06 1.131-6.028 1.356.984.856 2.372 2.381 4.166 4.575l-2.906 2.059c-.935-1.274-2.041-3.009-3.316-5.206-1.194 2.275-2.244 4.013-3.147 5.206l-2.856-2.059c1.872-2.307 3.211-3.832 4.017-4.575-2.081-.402-4.058-.856-5.93-1.356' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}

.fieldset__legend--composite {
  margin-block-start: 2px;
  color: inherit;
}

.fieldset__legend--invisible {
  margin: 0;
}

.fieldset__legend--group {
  color: inherit;
}

.fieldset__label {
  display: block;
  padding-block: 0.5rem;
  padding-inline-start: 1rem;
  padding-inline-end: 1rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.fieldset__label.is-disabled {
  color: darken;
}

.fieldset__description {
  margin-block: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}

.fieldset__description.is-disabled {
  color: #969da6;
}

.fieldset__error-message {
  margin-block: 0.5rem;
  padding-inline-start: 1.5rem;
  color: #ff5000;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E33F1E' d='M9 0C4.03125 0 0 4.03125 0 9C0 13.9688 4.03125 18 9 18C13.9687 18 18 13.9688 18 9C18 4.03125 13.9687 0 9 0ZM10.5 14.6133C10.5 14.8242 10.3359 15 10.1367 15H7.88672C7.67578 15 7.5 14.8242 7.5 14.6133V12.3867C7.5 12.1758 7.67578 12 7.88672 12H10.1367C10.3359 12 10.5 12.1758 10.5 12.3867V14.6133ZM10.4766 10.582C10.4648 10.7461 10.2891 10.875 10.0781 10.875H7.91016C7.6875 10.875 7.51172 10.7461 7.51172 10.582L7.3125 3.30469C7.3125 3.22266 7.34766 3.14063 7.42969 3.09375C7.5 3.03516 7.60547 3 7.71094 3H10.2891C10.3945 3 10.5 3.03516 10.5703 3.09375C10.6523 3.14063 10.6875 3.22266 10.6875 3.30469L10.4766 10.582Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left top; /* LTR */
  background-size: 1rem 1rem;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (-ms-high-contrast: active) {
  .fieldset__error-message {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M9 0C4.03125 0 0 4.03125 0 9C0 13.9688 4.03125 18 9 18C13.9687 18 18 13.9688 18 9C18 4.03125 13.9687 0 9 0ZM10.5 14.6133C10.5 14.8242 10.3359 15 10.1367 15H7.88672C7.67578 15 7.5 14.8242 7.5 14.6133V12.3867C7.5 12.1758 7.67578 12 7.88672 12H10.1367C10.3359 12 10.5 12.1758 10.5 12.3867V14.6133ZM10.4766 10.582C10.4648 10.7461 10.2891 10.875 10.0781 10.875H7.91016C7.6875 10.875 7.51172 10.7461 7.51172 10.582L7.3125 3.30469C7.3125 3.22266 7.34766 3.14063 7.42969 3.09375C7.5 3.03516 7.60547 3 7.71094 3H10.2891C10.3945 3 10.5 3.03516 10.5703 3.09375C10.6523 3.14063 10.6875 3.22266 10.6875 3.30469L10.4766 10.582Z'/%3E%3C/svg%3E");
  }
}

[dir=rtl] .fieldset__error-message {
  background-position: left top;
}

.fieldset__wrapper {
  padding: 1rem;
}

.fieldset__legend--invisible ~ .fieldset__wrapper {
  margin-block-start: 0;
  padding: 0;
}

.fieldset--group .fieldset__legend--visible ~ .fieldset__wrapper {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.fieldset__wrapper--group {
  margin-block: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.fieldset__wrapper > .container-inline {
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

/**
 * @file
 * Select input elements.
 */
:root {
  --form-element-select-icon: url("../images/chevron-arrow-down.svg");
}

select {
  max-width: 100%;
  height: 3rem;
  padding-block: 0;
  padding-inline-start: 1rem;
  padding-inline-end: 3rem;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  background-image: var(--form-element-select-icon);
  background-repeat: no-repeat;
  background-position: right 1rem center; /* LTR */
  background-size: 10px;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* Disables border of select specifically for ms browser */
  /* Necessary for IE11 to show chevron. */
}
select:focus {
  border: solid 1px #ffcc00;
  outline: solid 1px #ffcc00;
}
select::-ms-expand {
  display: none;
}
select[disabled] {
  color: #969da6;
  background-color: #eceff1;
}
select.error {
  border: solid 2px #ff5000;
}
select.error:focus {
  outline-color: #ff5000;
}
select[multiple] {
  height: auto;
  padding: 0.5rem;
  background-image: none;
  line-height: 1; /* Needed by non-Chromium based MS Edge browsers. */
}
select[multiple] option {
  padding: 0.5rem;
}
select.form-element--small {
  height: 2.5rem;
}
@media screen and (-ms-high-contrast: active) {
  select {
    background-image: var(--form-element-select-icon);
  }
  select[multiple] {
    background-image: none;
  }
}

[dir=rtl] select {
  background-position: left 1rem center;
}

/**
 * @file
 * Text input elements.
 */
[type=color],
[type=date],
[type=datetime-local],
[type=email],
[type=file],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=file]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus {
  border: solid 1px #ffcc00;
  outline: solid 1px #ffcc00;
}
[type=color]::-ms-clear,
[type=date]::-ms-clear,
[type=datetime-local]::-ms-clear,
[type=email]::-ms-clear,
[type=file]::-ms-clear,
[type=month]::-ms-clear,
[type=number]::-ms-clear,
[type=password]::-ms-clear,
[type=search]::-ms-clear,
[type=tel]::-ms-clear,
[type=text]::-ms-clear,
[type=time]::-ms-clear,
[type=url]::-ms-clear,
[type=week]::-ms-clear,
textarea::-ms-clear {
  display: none;
}
[type=color][disabled],
[type=date][disabled],
[type=datetime-local][disabled],
[type=email][disabled],
[type=file][disabled],
[type=month][disabled],
[type=number][disabled],
[type=password][disabled],
[type=search][disabled],
[type=tel][disabled],
[type=text][disabled],
[type=time][disabled],
[type=url][disabled],
[type=week][disabled],
textarea[disabled] {
  color: #969da6;
  background-color: #eceff1;
}
[type=color].error,
[type=date].error,
[type=datetime-local].error,
[type=email].error,
[type=file].error,
[type=month].error,
[type=number].error,
[type=password].error,
[type=search].error,
[type=tel].error,
[type=text].error,
[type=time].error,
[type=url].error,
[type=week].error,
textarea.error {
  border: solid 1px #ff5000;
}
[type=color].error:focus,
[type=date].error:focus,
[type=datetime-local].error:focus,
[type=email].error:focus,
[type=file].error:focus,
[type=month].error:focus,
[type=number].error:focus,
[type=password].error:focus,
[type=search].error:focus,
[type=tel].error:focus,
[type=text].error:focus,
[type=time].error:focus,
[type=url].error:focus,
[type=week].error:focus,
textarea.error:focus {
  outline-color: #ff5000;
  outline-offset: -1px;
}
[type=color].form-element--small,
[type=date].form-element--small,
[type=datetime-local].form-element--small,
[type=email].form-element--small,
[type=file].form-element--small,
[type=month].form-element--small,
[type=number].form-element--small,
[type=password].form-element--small,
[type=search].form-element--small,
[type=tel].form-element--small,
[type=text].form-element--small,
[type=time].form-element--small,
[type=url].form-element--small,
[type=week].form-element--small,
textarea.form-element--small {
  min-height: 2.5rem;
}
@media (--sm) {
  [type=color],
  [type=date],
  [type=datetime-local],
  [type=email],
  [type=file],
  [type=month],
  [type=number],
  [type=password],
  [type=search],
  [type=tel],
  [type=text],
  [type=time],
  [type=url],
  [type=week],
  textarea {
    width: auto;
  }
}

[type=date] {
  /* Ensure that date field isn't larger than other fields. */
}
[type=date]::-webkit-datetime-edit-fields-wrapper {
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

[type=file] {
  height: auto;
  padding-block: 0.75rem;
}

[type=color] {
  width: 3rem;
  padding: 0;
}

/**
 * @file
 * Textarea.
 */
textarea {
  display: block;
  width: 100%;
  min-height: 8rem;
  padding: 1rem;
}

/**
 * @file
 * Main form and form item styles.
 */
::-moz-placeholder {
  color: #969da6;
}
::placeholder {
  color: #969da6;
}

/* IE 10 and 11 needs this set as important. */
:-ms-input-placeholder {
  color: #969da6 !important;
}

/**
  * General form item.
  */
.form-item {
  margin-block: 1rem;
}
form > .form-item:first-child {
  margin-top: 0;
}

.form-item__label--multiple-value-form {
  margin-block: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/**
  * When a table row or a container-inline has a single form item, prevent it
  * from adding unnecessary extra spacing.
  * If it has multiple form items, allow spacing between them, overriding Classy.
  */
tr .form-item,
.container-inline .form-item {
  margin-block: 0.5rem;
}

/**
  * Form element label.
  */
label.option {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.form-item__label {
  display: block;
  margin-block: 0.5rem;
}

.container-inline .form-item__label {
  margin-inline-end: 1em;
}

.form-item__label--multiple-value-form {
  margin-block: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.form-item__label[for] {
  cursor: pointer;
}

.form-item__label.option {
  display: inline;
  font-weight: normal;
}

/* Label states. */
.form-item__label.is-disabled {
  cursor: default;
  color: #969da6;
}

/* Form required star icon */
.form-item__label.form-required::after,
.fieldset__label.form-required::after,
.required-mark::after {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-inline: 0.3em;
  content: "";
  vertical-align: text-top;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url("data:image/svg+xml,%3Csvg height='16' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0 7.562 1.114-3.438c2.565.906 4.43 1.688 5.59 2.35-.306-2.921-.467-4.93-.484-6.027h3.511c-.05 1.597-.234 3.6-.558 6.003 1.664-.838 3.566-1.613 5.714-2.325l1.113 3.437c-2.05.678-4.06 1.131-6.028 1.356.984.856 2.372 2.381 4.166 4.575l-2.906 2.059c-.935-1.274-2.041-3.009-3.316-5.206-1.194 2.275-2.244 4.013-3.147 5.206l-2.856-2.059c1.872-2.307 3.211-3.832 4.017-4.575-2.081-.402-4.058-.856-5.93-1.356' fill='%232494DB'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 0.5rem 0.5rem;
}
@media screen and (-ms-high-contrast: active) {
  .form-item__label.form-required::after,
  .fieldset__label.form-required::after,
  .required-mark::after {
    background-image: url("data:image/svg+xml,%3Csvg height='16' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0 7.562 1.114-3.438c2.565.906 4.43 1.688 5.59 2.35-.306-2.921-.467-4.93-.484-6.027h3.511c-.05 1.597-.234 3.6-.558 6.003 1.664-.838 3.566-1.613 5.714-2.325l1.113 3.437c-2.05.678-4.06 1.131-6.028 1.356.984.856 2.372 2.381 4.166 4.575l-2.906 2.059c-.935-1.274-2.041-3.009-3.316-5.206-1.194 2.275-2.244 4.013-3.147 5.206l-2.856-2.059c1.872-2.307 3.211-3.832 4.017-4.575-2.081-.402-4.058-.856-5.93-1.356' fill='%23ffffff'/%3E%3C/svg%3E%0A");
  }
}

/**
  * Form item description.
  */
.form-item__description {
  margin-block: 0.5rem;
  max-width: 60ch;
  font-size: 12px;
  line-height: 1.3;
}

.field-multiple-table + .form-item__description {
  margin-block-start: 0;
}

/**
  * Error message (Inline form errors).
  */
.form-item--error-message {
  margin-block: 0.5rem;
  padding-inline-start: 1.5rem;
  color: #ff5000;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E33F1E' d='M9 0C4.03125 0 0 4.03125 0 9C0 13.9688 4.03125 18 9 18C13.9687 18 18 13.9688 18 9C18 4.03125 13.9687 0 9 0ZM10.5 14.6133C10.5 14.8242 10.3359 15 10.1367 15H7.88672C7.67578 15 7.5 14.8242 7.5 14.6133V12.3867C7.5 12.1758 7.67578 12 7.88672 12H10.1367C10.3359 12 10.5 12.1758 10.5 12.3867V14.6133ZM10.4766 10.582C10.4648 10.7461 10.2891 10.875 10.0781 10.875H7.91016C7.6875 10.875 7.51172 10.7461 7.51172 10.582L7.3125 3.30469C7.3125 3.22266 7.34766 3.14063 7.42969 3.09375C7.5 3.03516 7.60547 3 7.71094 3H10.2891C10.3945 3 10.5 3.03516 10.5703 3.09375C10.6523 3.14063 10.6875 3.22266 10.6875 3.30469L10.4766 10.582Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left top; /* LTR */
  background-size: 1rem 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (-ms-high-contrast: active) {
  .form-item--error-message {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M9 0C4.03125 0 0 4.03125 0 9C0 13.9688 4.03125 18 9 18C13.9687 18 18 13.9688 18 9C18 4.03125 13.9687 0 9 0ZM10.5 14.6133C10.5 14.8242 10.3359 15 10.1367 15H7.88672C7.67578 15 7.5 14.8242 7.5 14.6133V12.3867C7.5 12.1758 7.67578 12 7.88672 12H10.1367C10.3359 12 10.5 12.1758 10.5 12.3867V14.6133ZM10.4766 10.582C10.4648 10.7461 10.2891 10.875 10.0781 10.875H7.91016C7.6875 10.875 7.51172 10.7461 7.51172 10.582L7.3125 3.30469C7.3125 3.22266 7.34766 3.14063 7.42969 3.09375C7.5 3.03516 7.60547 3 7.71094 3H10.2891C10.3945 3 10.5 3.03516 10.5703 3.09375C10.6523 3.14063 10.6875 3.22266 10.6875 3.30469L10.4766 10.582Z'/%3E%3C/svg%3E");
  }
}

[dir=rtl] .form-item--error-message {
  background-position: right top;
}

/**
  * Form actions.
  */
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-block: 0.5rem;
}

.form-actions .button,
.form-actions .action-link {
  margin-block: 0.5rem;
}

.form-actions .ajax-progress--throbber {
  align-self: center;
}

/**
  * Custom label placement for editor filter format select.
  */
.form-item--editor-format {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
}

.form-item--editor-format .form-item__label,
.form-item--editor-format .form-item__prefix,
.form-item--editor-format .form-item__suffix,
.form-item--editor-format .form-element--editor-format {
  min-width: 1px;
}

.form-item--editor-format .form-item__label,
.form-item--editor-format .form-item__prefix,
.form-item--editor-format .form-item__suffix {
  margin-inline-end: 0.5rem;
}

.form-item--editor-format .form-item__description,
.form-item--editor-format .form-item--error-message {
  flex: 0 1 100%;
  min-width: 1px;
}

.webform-options-display-two-columns {
  max-width: none;
}

.container-inline div,
.container-inline label {
  display: inline-block;
}

.menu {
  margin: 0;
  padding: 0;
}
.menu .menu-item {
  position: relative;
  margin: 0;
  list-style: none;
}
.menu .menu-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.25;
  padding: 0.65rem 0.25rem;
  color: #333;
  text-decoration: none;
}
.menu .menu-item > a.fa {
  font-family: "Open Sans", sans-serif !important;
  justify-content: flex-start;
}
.menu .menu-item > a.fa::before {
  font-family: "forkawesome";
  margin-right: 0.25em;
}
.menu .menu-item > a > .fa {
  margin-right: 0.25rem;
}
.menu .menu-item > a:hover {
  color: #000;
}
.menu .menu-item > a.active {
  color: #ffcc00;
}
.menu .menu-item--expanded {
  list-style: none;
}
.menu .menu-item--expanded > a::after {
  content: "";
  border-width: 5px;
  border-style: solid;
  border-color: #ffcc00 transparent transparent transparent;
  margin-left: 0.25em;
  margin-bottom: -7px;
}
.menu--horizontal {
  display: flex;
}
.menu--horizontal > .menu-item {
  flex: 0 1 auto;
  margin: 0 1.25rem 0 0;
}
.menu--horizontal > .menu-item > a {
  padding: 0.85em 0;
  font-weight: 600;
}
.menu--horizontal > .menu-item > .menu {
  margin-top: -1px;
}
.menu--horizontal .menu {
  display: none;
  min-width: 300px;
  padding: 1rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.menu--dropdown > .menu-item > a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 99;
}
.menu--dropdown > .menu-item > .menu {
  margin: 0 !important;
  border-top: 1px solid #ccc;
}
.menu--dropdown > .menu-item:hover .menu {
  display: block;
}
.menu--dropdown > .menu-item--expanded > a {
  position: relative;
  z-index: 99;
}
.menu--dropdown > .menu-item--expanded > a::before {
  content: "";
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 15px);
  border-width: 1px;
  border-style: solid;
  border-color: #ccc #ccc transparent transparent;
  background: #fff;
  transform-origin: bottom center;
  transform: rotate(-45deg) translateY(calc(50% + 2px));
  transition-duration: 90ms;
  transition-property: opacity;
  pointer-events: none;
}
.menu--dropdown > .menu-item--expanded:hover > a::before {
  opacity: 1;
}
.menu--dropdown > .menu-item--megamenu {
  position: static !important;
}
.menu--dropdown > .menu-item--megamenu > .menu {
  gap: 0 24px;
  grid-template-columns: 1fr 410.256px 410.256px 410.256px 1fr;
  max-width: none;
  width: 100%;
  background: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.menu--dropdown > .menu-item--megamenu > .menu > .menu-item > a {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.menu--dropdown > .menu-item--megamenu > .menu > .menu-item:nth-child(3n-2) {
  grid-column: 2/3 !important;
}
.menu--dropdown > .menu-item--megamenu > .menu > .menu-item:nth-child(2n) {
  grid-column: 3/4;
}
.menu--dropdown > .menu-item--megamenu > .menu > .menu-item:nth-child(3n) {
  grid-column: 4/5;
}
.menu--dropdown > .menu-item--megamenu > .menu .menu {
  position: static;
  display: block;
  max-width: none;
}
.menu--dropdown > .menu-item--megamenu:hover > a {
  color: #ffcc00;
}
.menu--dropdown > .menu-item--megamenu:hover > .menu {
  display: grid !important;
}
.menu--dropdown .menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 98;
  max-width: 280px;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.drilldown-menu {
  overflow: hidden;
}
.drilldown-menu__sub {
  display: none;
}
html:not(.js) .drilldown-menu__sub {
  display: block;
  padding-left: 1rem;
}
.drilldown-menu__back {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
}
html:not(.js) .drilldown-menu__back {
  display: none;
}
.drilldown-menu__back, .drilldown-menu__parent-link {
  padding: 0;
  border-bottom: 1px solid #eceff1;
}
.drilldown-menu__back > a, .drilldown-menu__parent-link > a {
  cursor: pointer;
  justify-content: flex-start !important;
  padding-left: var(--offcanvas-grid, 1rem) !important;
  padding-right: var(--offcanvas-grid, 1rem) !important;
}
.drilldown-menu__back .fa, .drilldown-menu__parent-link .fa {
  color: #333;
}

.menu--social-media .menu {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}
.menu--social-media .menu-item > a {
  padding-top: 0;
  padding-bottom: 0;
}
.menu--social-media .menu-item > a::before {
  color: var(--icon-color);
  font-size: 1.5em;
}
.menu--social-media [class*=mastodon] {
  --icon-color: #2b90d9;
}
.menu--social-media [class*=peertube] {
  --icon-color: #f1680d;
}
.menu--social-media [class*=twitter] {
  --icon-color: #1da1f2;
}
.menu--social-media [class*=rss] {
  --icon-color: #ffcc00;
}

.tabs {
  margin-bottom: 1rem;
}

.tabs-item {
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.topbar__container {
  display: flex;
  min-height: 55px;
}
@media (max-width: 1299px) {
  .topbar__left {
    display: flex;
    align-items: center;
  }
}
.topbar__left .block-menu.contextual-region {
  position: static !important;
}
.topbar__left .block-menu.contextual-region > .contextual {
  display: none !important;
}
.topbar__right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.topbar__right > * {
  margin-left: 0.5rem;
}
.topbar .block-system-branding-block {
  max-width: 140px;
}
.topbar .block-system-branding-block img {
  position: relative;
  top: 2px;
}
.topbar .menu--dropdown > .menu-item > a {
  padding-top: 1em;
  padding-bottom: 1em;
}
.topbar .button {
  margin-bottom: 0;
}

.offcanvas {
  --offcanvas-grid: 1rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition-duration: 150ms;
  transition-property: max-width;
  padding: var(--offcanvas-grid);
}
.js .offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999;
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}
.offcanvas__close {
  position: absolute;
  right: 100%;
  top: var(--offcanvas-grid);
  margin: 0;
}
.offcanvas__top {
  border-bottom: 1px solid #eceff1;
  padding: 0 var(--offcanvas-grid) 1rem var(--offcanvas-grid);
  margin: 0 calc(var(--offcanvas-grid) * -1) 0.1rem calc(var(--offcanvas-grid) * -1);
}
.offcanvas__menu {
  overflow-y: auto;
  flex: 1 1 auto;
  margin: 0 calc(var(--offcanvas-grid) * -1) !important;
}
.offcanvas__menu .menu .menu-item > a {
  padding-left: var(--offcanvas-grid, 1rem);
  padding-right: var(--offcanvas-grid, 1rem);
}
.offcanvas__bottom {
  border-top: 1px solid #eceff1;
  padding: 1rem var(--offcanvas-grid) 0 var(--offcanvas-grid);
  margin: 1rem calc(var(--offcanvas-grid) * -1) 0 calc(var(--offcanvas-grid) * -1);
}
.offcanvas__bottom .button {
  display: block;
  text-align: center;
}
.offcanvas__bottom .block:last-child .button {
  margin-bottom: 0;
}
.offcanvas--right {
  right: 0;
}
.offcanvas--expanded {
  opacity: 1 !important;
  pointer-events: all !important;
  width: 90% !important;
  max-width: 300px !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--ctx-muted, rgba(0, 0, 0, 0.75));
          text-decoration-color: var(--ctx-muted, rgba(0, 0, 0, 0.75));
}
a:focus-visible {
  outline: 2px solid #ffcc00;
}

.paginator {
  margin-top: 2rem;
}
.paginator-itemLink {
  background-color: transparent;
  border: 1px solid #eceff1;
  border-radius: 0;
  text-decoration: none;
}
.paginator-itemLink:hover {
  border-color: #969da6;
}
.paginator-itemLink.is-active {
  font-weight: bold;
  border-color: #969da6;
}

ul.inline li:first-child {
  padding-left: 0;
}
ul.inline li.comment-forbidden::before {
  content: "\ebe4";
  display: inline-block;
  font: normal normal normal 1em/1 ForkAwesome;
  margin: 0 0.45em 0 0;
  text-decoration: none;
}

.page-header {
  padding-top: 2rem;
}
.page-header__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .page-header__container {
    flex-flow: row wrap;
  }
}
.page-header__branding {
  flex: 1 1 200px;
}
.page-header__blocks {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-header__blocks > .block {
  margin-left: 1rem;
}
.page-header .button {
  margin-bottom: 0;
}

.region--help > * {
  margin: 1rem 0;
}

.region-content > .block:not(.block-system-main-block) {
  background-color: transparent;
  margin: 0 auto;
  max-width: 1328px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .region-content > .block:not(.block-system-main-block) {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.page-main--none-node {
  padding-top: 2rem;
}

.page-above-footer {
  border-top: 1px solid #eceff1;
  padding-top: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body[class*=page-node-type-] .page-above-footer {
  margin-top: 0;
}
.page-above-footer .block {
  display: flex;
  flex-direction: column;
}
.page-above-footer .block .block__title {
  flex: 0 0 auto;
  font-size: 1.3333333333rem;
}
.page-above-footer .block .block__content {
  flex: 1 0 auto;
}

.page-footer {
  margin-top: 2rem;
}
.page-footer__columns {
  border-top: 7px solid #ffcc00;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.page-footer__bottom {
  border-top: 1px solid #eceff1;
  text-align: center;
}
.page-footer__bottom .menu {
  justify-content: center;
}
@media (max-width: 991px) {
  .page-footer__bottom .menu {
    flex-direction: column;
  }
}
.page-footer__bottom .menu a {
  font-weight: normal;
}
/*# sourceMappingURL=digico.global.min.css.map */
