@charset "UTF-8";
:root {
  --border-radius: 40px;
  --box-shadow: 0px 15px 15px rgba(0, 0, 0, .2);
  --default-accent-color-buttons: #333;
  --default-accent-color-cards: #fff;
  --font-weight-bold: 600;
  --gap: 30px;
  --header-height: 100px;
  --link-gap: 20px;
  --margin-large: 75px;
  --side-padding: 30px;
  --top-padding: var(--side-padding);
  --theme-color-black: #333;
  --theme-color-white: #fff;
  --theme-color-crayola: #eb6b87;
  --theme-color-cerise: #e63264;
  --theme-color-mantis: #73B95A;
  --theme-color-persian: #00a096;
  --theme-color-indigo: #00737d;
  --theme-color-disabled: #ccc;
  --theme-color-autum: #e47300;
  --background-translate-y: 0;
}

@media only screen and (min-width: 576px) {
  :root {
    --side-padding: 60px;
    --top-padding: 60px;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    --margin-large: 75px;
    --gap: 45px;
    --link-gap: 30px;
    --header-height: 160px;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --side-padding: 100px;
  }
}
.color--wheel-1 {
  --wheel-color-1: var(--theme-color-crayola);
  --wheel-color-2: var(--theme-color-cerise);
  --wheel-color-3: var(--theme-color-mantis);
  --wheel-color-4: var(--theme-color-persian);
  --wheel-color-5: var(--theme-color-indigo);
}
.color--wheel-2 {
  --wheel-color-2: var(--theme-color-crayola);
  --wheel-color-3: var(--theme-color-cerise);
  --wheel-color-4: var(--theme-color-mantis);
  --wheel-color-5: var(--theme-color-persian);
  --wheel-color-1: var(--theme-color-indigo);
}
.color--wheel-3 {
  --wheel-color-3: var(--theme-color-crayola);
  --wheel-color-4: var(--theme-color-cerise);
  --wheel-color-5: var(--theme-color-mantis);
  --wheel-color-1: var(--theme-color-persian);
  --wheel-color-2: var(--theme-color-indigo);
}
.color--wheel-4 {
  --wheel-color-4: var(--theme-color-crayola);
  --wheel-color-5: var(--theme-color-cerise);
  --wheel-color-1: var(--theme-color-mantis);
  --wheel-color-2: var(--theme-color-persian);
  --wheel-color-3: var(--theme-color-indigo);
}
.color--wheel-5 {
  --wheel-color-5: var(--theme-color-crayola);
  --wheel-color-1: var(--theme-color-cerise);
  --wheel-color-2: var(--theme-color-mantis);
  --wheel-color-3: var(--theme-color-persian);
  --wheel-color-4: var(--theme-color-indigo);
}
.color--layout-101 {
  background-color: var(--theme-color-crayola);
  color: var(--theme-color-white);
}
.color--layout-101 .card__metadata {
  color: var(--theme-color-white);
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  min-height: 100vh;
}

body {
  min-height: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img,
medium {
  display: block;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
td:not([align]),
th:not([align]) {
  text-align: inherit;
}

:focus {
  outline: 0;
}

/* source-sans-pro-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/SourceSans3-Regular.ttf.woff2") format("woff2"), url("../Fonts/SourceSans3-Regular.ttf.woff") format("woff");
}
/* source-sans-pro-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url("../Fonts/SourceSans3-It.ttf.woff2") format("woff2"), url("../Fonts/SourceSans3-It.ttf.woff") format("woff");
}
/* source-sans-pro-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../Fonts/SourceSans3-Semibold.ttf.woff2") format("woff2"), url("../Fonts/SourceSans3-Semibold.ttf.woff") format("woff");
}
/* source-sans-pro-var(--font-weight-bold) - latin */
@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: bold;
  font-weight: 700;
  src: url("../Fonts/SourceSans3-Bold.ttf.woff2") format("woff2"), url("../Fonts/SourceSans3-Bold.ttf.woff") format("woff");
}
body {
  color: var(--theme-color-black);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 110%;
}
@media only screen and (min-width: 992px) {
  h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 4.8rem;
  }
}

p {
  font-size: 1.8rem;
  margin-top: 2.2rem;
  line-height: 2.8rem;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a,
a:hover,
a:active {
  color: var(--theme-color-black);
}

.content .title--h3 {
  font-size: 3.6rem;
}
.content a {
  color: var(--theme-color-crayola);
}
.content a:hover, .content a:active {
  color: var(--theme-color-persian);
}

.font-courier,
.panel {
  font-family: "Courier New", Monospace, serif;
}

.u--truncated {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.u--truncated-1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.u--show-for-sr {
  display: none;
}

.u--accent-crayola {
  --accent-color: var(--theme-color-crayola);
}

.u--accent-cerise {
  --accent-color: var(--theme-color-cerise);
}

.u--accent-mantis {
  --accent-color: var(--theme-color-mantis);
}

.u--accent-persian {
  --accent-color: var(--theme-color-persian);
}

.u--accent-indigo {
  --accent-color: var(--theme-color-indigo);
}

.u--beta {
  display: none !important;
}

.azfilter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  line-height: 100%;
  margin-top: 45px;
}
@media only screen and (min-width: 1200px) {
  .azfilter {
    gap: 1.6rem;
  }
}
.azfilter__item, .azfilter__short {
  align-items: center;
  background-color: var(--theme-color-persian);
  border: 3px solid var(--theme-color-persian);
  border-radius: 2rem;
  color: var(--theme-color-white);
  display: flex;
  font-weight: 700;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  .azfilter__item, .azfilter__short {
    font-size: 3rem;
  }
}
.azfilter__short:focus, .azfilter__short:hover {
  background-color: var(--theme-color-white);
  color: var(--theme-color-persian);
}
.azfilter__item {
  height: 6rem;
  width: 2.6rem;
}
.azfilter__item--active:focus, .azfilter__item--active:hover {
  background-color: var(--theme-color-white);
  color: var(--theme-color-persian);
}
.azfilter__item--inactive {
  background-color: var(--theme-color-disabled);
  border-color: var(--theme-color-disabled);
}
.azfilter__item--selected {
  background-color: var(--theme-color-cerise);
  border-color: var(--theme-color-cerise);
}
@media only screen and (min-width: 1200px) {
  .azfilter__item {
    height: 9rem;
    width: 4.8rem;
  }
}
.azfilter__short {
  display: block;
  padding: 0.6rem 1.2rem;
}
@media only screen and (min-width: 1200px) {
  .azfilter__short {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .azfilter__section {
    position: relative;
  }
  .azfilter__section:hover .azfilter__items {
    display: flex;
    padding-top: 1rem;
    position: absolute;
  }
  .azfilter__section:hover .azfilter__items--left {
    left: 0;
  }
  .azfilter__section:hover .azfilter__items--right {
    right: 0;
  }
  .azfilter__section:hover .azfilter__items--centered {
    left: 50%;
    transform: translateX(-50%);
  }
}
.azfilter__items {
  align-items: center;
  display: none;
  gap: 10px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .azfilter__items {
    display: flex;
  }
}
@media only screen and (min-width: 1200px) {
  .azfilter__items {
    gap: 1.6rem;
  }
}

.buttons--ctas {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 6rem;
}
.buttons--ctas .button {
  margin-right: auto;
}

.button {
  --accent-color: var(--default-accent-color-buttons);
  align-items: center;
  background-color: var(--theme-color-white);
  border-color: var(--accent-color);
  border-radius: 3.4rem;
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  height: 3.4rem;
  justify-content: center;
  padding: 0 1.6em;
  white-space: nowrap;
}
.button:disabled {
  cursor: not-allowed;
  border-color: var(--theme-color-disabled);
  color: var(--theme-color-disabled);
}
.button.selected, .button:hover:not([disabled]), .button:focus {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.button.selected a, .button:hover:not([disabled]) a, .button:focus a {
  color: var(--theme-color-white);
}
.button--nein, .button--cerise {
  border-color: var(--theme-color-cerise);
  color: var(--theme-color-cerise);
}
.button--nein.selected, .button--nein:hover:not([disabled]), .button--nein:focus, .button--cerise.selected, .button--cerise:hover:not([disabled]), .button--cerise:focus {
  background-color: var(--theme-color-cerise);
}
.button--ja, .button--indigo {
  border-color: var(--theme-color-indigo);
  color: var(--theme-color-indigo);
}
.button--ja.selected, .button--ja:hover:not([disabled]), .button--ja:focus, .button--indigo.selected, .button--indigo:hover:not([disabled]), .button--indigo:focus {
  background-color: var(--theme-color-indigo);
}
.button--inverted, .button--reply {
  background-color: var(--theme-color-indigo);
  border-color: var(--theme-color-indigo);
  color: var(--theme-color-white);
}
.button--inverted:hover, .button--inverted:focus, .button--reply:hover, .button--reply:focus {
  background-color: var(--theme-color-white);
  color: var(--theme-color-indigo);
}
.button--block {
  margin-top: 25px;
}
.button--right {
  margin-left: auto;
}
@media only screen and (min-width: 1400px) {
  .button {
    border-width: 3px;
    font-size: 2rem;
    height: 4.8rem;
  }
}
.button--with-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}
.button--help {
  cursor: help;
}

.section--media .share__button,
.section--media .shariff .theme-white .shariff-button {
  align-items: center;
  border: none;
  display: flex;
  font-size: 2rem;
  height: 4rem;
  justify-content: center;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-bottom: 10px;
}
.section--media .share__button .share_text,
.section--media .shariff .theme-white .shariff-button .share_text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  vertical-align: middle;
  line-height: 30px;
  padding-left: 3px;
}
.section--media .share__button--qrcode {
  margin-top: 1rem;
}
.section--media .share__button--qrcode img {
  height: 5rem;
  width: 5rem;
}
.section--media .shariff .theme-white .shariff-button a {
  background-color: transparent;
}
.section--media .shariff .theme-white .shariff-button a:hover {
  background-color: transparent;
}
.section--media .shariff li .share_text {
  display: none;
}
.section--media .shariff .orientation-vertical.button-style-standard {
  min-width: auto;
}

.cards {
  display: grid;
  gap: var(--gap);
  margin-top: var(--side-padding);
  padding: 0 var(--side-padding);
}
@media only screen and (min-width: 576px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 992px) {
  .cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1400px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.splide__slide:nth-child(5n+1) .card,
.card__item:nth-child(5n+1) .card {
  --accent-color: var(--wheel-color-1);
}
.splide__slide:nth-child(5n+2) .card,
.card__item:nth-child(5n+2) .card {
  --accent-color: var(--wheel-color-2);
}
.splide__slide:nth-child(5n+3) .card,
.card__item:nth-child(5n+3) .card {
  --accent-color: var(--wheel-color-3);
}
.splide__slide:nth-child(5n+4) .card,
.card__item:nth-child(5n+4) .card {
  --accent-color: var(--wheel-color-4);
}
.splide__slide:nth-child(5n+5) .card,
.card__item:nth-child(5n+5) .card {
  --accent-color: var(--wheel-color-5);
}
.card {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.card--themed, .themed .splide__slide:nth-child(5n+1) .card,
.themed .card__item:nth-child(5n+1) .card, .themed .splide__slide:nth-child(5n+2) .card,
.themed .card__item:nth-child(5n+2) .card, .themed .splide__slide:nth-child(5n+3) .card,
.themed .card__item:nth-child(5n+3) .card, .themed .splide__slide:nth-child(5n+4) .card,
.themed .card__item:nth-child(5n+4) .card, .themed .splide__slide:nth-child(5n+5) .card,
.themed .card__item:nth-child(5n+5) .card {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.card--themed .card__metadata, .themed .splide__slide:nth-child(5n+1) .card .card__metadata,
.themed .card__item:nth-child(5n+1) .card .card__metadata, .themed .splide__slide:nth-child(5n+2) .card .card__metadata,
.themed .card__item:nth-child(5n+2) .card .card__metadata, .themed .splide__slide:nth-child(5n+3) .card .card__metadata,
.themed .card__item:nth-child(5n+3) .card .card__metadata, .themed .splide__slide:nth-child(5n+4) .card .card__metadata,
.themed .card__item:nth-child(5n+4) .card .card__metadata, .themed .splide__slide:nth-child(5n+5) .card .card__metadata,
.themed .card__item:nth-child(5n+5) .card .card__metadata {
  color: var(--theme-color-white);
}
.card--menu, .card--team {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}

.card__image {
  background-color: var(--theme-color-white);
  overflow: hidden;
  position: relative;
  padding-bottom: 66%;
}
.card__image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transform: scale(1);
  transition: all 0.3s ease-out;
  width: 100%;
}
.card__image img:hover {
  transform: scale(1.1);
}

.card__content {
  padding: 3rem;
}

p.card__date {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.6rem;
  margin-top: 0;
}
@media only screen and (min-width: 1200px) {
  p.card__date {
    font-size: 1.6rem;
  }
}

.card__title {
  font-size: 1.6rem;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  .card__title {
    font-size: 24px;
  }
}

.card__header {
  padding: 3rem;
}
.card__header--mantis {
  background-color: var(--theme-color-mantis);
  color: var(--theme-color-white);
}
.card__header--persian {
  background-color: var(--theme-color-persian);
  color: var(--theme-color-white);
}

.card__subtitle {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .card__subtitle {
    display: -webkit-box;
    font-size: 2rem;
  }
}

.card__metadata {
  color: var(--accent-color);
  font-size: 1.4rem;
}
@media only screen and (min-width: 992px) {
  .card__metadata {
    font-size: 1.8rem;
  }
}
.card__metadata ul {
  min-height: 4.6rem;
}
.card__metadata ul.card__metalist--short {
  min-height: 2rem;
}
.card__metadata li {
  display: inline;
  font-style: italic;
}
.card__metadata li:not(:first-child)::before {
  content: " | ";
}
.card__metadata a {
  color: inherit;
  text-decoration: underline;
}

.card--asset .card__content {
  flex-grow: 1;
}
.card--asset .card__metadata {
  padding: 3rem;
  padding-top: 0;
}

.section--media .card__title {
  font-size: 5rem;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .section--media .card__title {
    font-size: 3rem;
  }
}
.section--media .card__subtitle {
  font-weight: 700;
  margin-top: 1rem;
}
.section--media .card__metadata {
  color: var(--theme-color-cerise);
  margin-top: 5rem;
}
.section--media .card__description {
  margin-top: 5rem;
}
.section--media .card__description p a {
  text-decoration: underline;
  position: relative;
}
.section--media .card__description p a span.fa {
  margin-right: 0.5rem;
  display: inline-block;
  color: inherit;
  font-size: 75%;
}
.section--media .card__tags {
  color: var(--theme-color-indigo);
  font-size: 1.4rem;
}
.section--media .card__tags a,
.section--media .card__tags a:hover,
.section--media .card__tags a:focus {
  color: var(--theme-color-indigo);
}
@media only screen and (min-width: 992px) {
  .section--media .card__tags {
    font-size: 1.8rem;
  }
}

.card__position {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  font-size: 3rem;
  font-weight: 700;
  padding: 1.6rem;
  text-align: center;
}

.card__footer {
  align-items: center;
  display: flex;
  gap: var(--gap);
  justify-content: space-between;
  margin-top: 8rem;
}
@media only screen and (max-width: 991px) {
  .card__footer {
    flex-direction: column;
    margin-top: 5rem;
  }
}

.card__share {
  position: relative;
}

.share__dialog {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
  display: none;
  height: auto;
  overflow: auto;
  padding: 1rem;
  padding-bottom: 2rem;
  position: absolute;
  top: -1rem;
  transform: translateY(-100%);
  z-index: 1;
}
.share__dialog--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.share__dialog--themed {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.share__dialog--themed .card__metadata {
  color: var(--theme-color-white);
}

.card__buttons {
  display: flex;
  gap: 2rem;
}

.schedule__item {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: var(--gap);
  padding-bottom: 12px;
}

.card--team {
  hyphens: initial;
  -webkit-hyphens: initial;
  -ms-hyphens: initial;
}
.card--team .card__title {
  font-size: 2.6rem;
}
.card--team .card__subtitle {
  display: block;
}

.card--chart .card__content {
  min-height: 13.919rem;
}
@media only screen and (min-width: 1200px) {
  .card--chart .card__content {
    min-height: 23.478rem;
  }
}

.comments {
  padding-left: 3rem;
}
.comments--level-0 {
  padding-left: 0;
}

.comment {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
  border: 3px solid var(--theme-color-indigo);
  margin-top: 1rem;
  padding: 3rem;
}
.comment--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.comment--themed {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.comment--themed .card__metadata {
  color: var(--theme-color-white);
}
.comment--level-0 {
  margin-top: 3rem;
}
.comment--nein {
  border-color: var(--theme-color-cerise);
}
.comment__info li {
  color: var(--theme-color-indigo);
  display: inline;
  font-style: italic;
}
.comment__info li:not(:first-child)::before {
  content: " | ";
}
.comment__footer, .comment__text {
  margin-top: 2rem;
}

.content:not(:first-child) {
  margin-top: var(--side-padding);
}

.content:not(:first-child) {
  margin-top: 5rem;
}
.content h3,
.content h4 {
  font-size: 175%;
  padding-top: 2.5rem;
}
.content h4 {
  font-size: 150%;
}
.content li h4 {
  padding-top: 0;
}
.content .title--h3 {
  font-size: 3.6rem;
}
.content a {
  color: var(--theme-color-cerise);
}
.content ul {
  margin-top: 2.2rem;
}
.content ul li {
  padding-left: 2.8rem;
  position: relative;
}
.content ul li:not(:first-child) {
  margin-top: 1rem;
}
.content ul li::before {
  background-color: var(--theme-color-crayola);
  border-radius: 50%;
  content: "";
  height: 1.6rem;
  left: 0;
  position: absolute;
  top: 0.6rem;
  width: 1.6rem;
}
.content ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  margin-top: 2.2rem;
}
.content ol li {
  counter-increment: my-awesome-counter;
  padding-left: 5rem;
  position: relative;
}
.content ol li:not(:first-child) {
  margin-top: 1rem;
  min-height: 4rem;
}
.content ol li::before {
  align-items: center;
  background-color: var(--theme-color-crayola);
  border-radius: 50%;
  color: var(--theme-color-white);
  content: counter(my-awesome-counter);
  display: flex;
  font-weight: 700;
  height: 3.6rem;
  justify-content: center;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0.6rem;
  width: 3.6rem;
}

.embed__info {
  align-items: center;
  color: var(--theme-color-white);
  display: flex;
  font-size: 2vw;
  justify-content: space-between;
  left: 0;
  padding: 2vw;
  position: absolute;
  top: 0;
  width: 100%;
  flex-direction: row-reverse;
}
.embed__logo img {
  width: 20vw;
}
.embed__header {
  padding: 2vw;
}
.embed__title {
  font-size: 4vw;
}
.embed__subtitle {
  margin-top: 1.5vw;
  font-size: 2vw;
}
.embed__metadata {
  display: none;
}

.footer {
  font-weight: 600;
  margin-top: 80px;
}
@media only screen and (min-width: 992px) {
  .footer {
    margin-top: 320px;
  }
}

.footer__colophon {
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr;
  padding: 0 var(--side-padding);
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer__colophon {
    grid-template-columns: 8fr 4fr;
    text-align: left;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__colophon {
    grid-template-columns: 9fr 3fr;
  }
}

.footer__logo img {
  margin: 0 auto;
  max-width: 260px;
}
@media only screen and (min-width: 768px) {
  .footer__logo img {
    margin: 0;
    max-width: 506px;
  }
}

.footer__address p:first-child {
  margin-top: 0;
}

.footer__links {
  display: grid;
  grid-template-areas: "socialmedia" "partners" "legal";
  padding: 0 var(--side-padding);
}
@media only screen and (min-width: 1200px) {
  .footer__links {
    gap: 45px;
    grid-template-columns: 8fr 4fr;
    grid-template-areas: "legal socialmedia " "partners partners";
    margin-top: 130px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__links {
    grid-template-columns: 9fr 3fr;
  }
}

.legal {
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  grid-area: legal;
  justify-content: space-between;
  line-height: 100%;
}
@media only screen and (max-width: 1199px) {
  .legal {
    background-color: var(--theme-color-persian);
    padding: 20px var(--side-padding);
    padding-top: 0;
    padding-bottom: 8rem;
    margin: 0 calc(var(--side-padding) * -1);
  }
  .legal li {
    white-space: nowrap;
    width: 33.3333333333%;
  }
  .legal li:nth-child(2) {
    text-align: center;
  }
  .legal li:nth-child(3) {
    text-align: right;
  }
  .legal a {
    color: var(--theme-color-white);
  }
}
@media only screen and (min-width: 576px) {
  .legal {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) {
  .legal {
    height: 4rem;
    justify-content: left;
  }
  .legal li:not(:first-child) {
    margin-left: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .legal {
    font-size: 2.4rem;
  }
}

.partners {
  background-color: var(--theme-color-persian);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  display: flex;
  gap: 45px;
  grid-area: partners;
  flex-wrap: wrap;
  margin: 0 calc(var(--side-padding) * -1);
  padding: 50px var(--side-padding);
}
@media only screen and (min-width: 768px) {
  .partners {
    gap: 12.5%;
  }
}

.partner {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .partner img {
    margin: 0 auto;
    max-width: 260px;
  }
}
@media only screen and (min-width: 768px) {
  .partner {
    width: 25%;
  }
}

.form {
  --accent-color: var(--theme-color-cerise);
}
.form--indigo {
  --accent-color: var(--theme-color-indigo);
}
.form__navigation {
  margin-top: 4rem;
}
.form__elements {
  padding: var(--side-padding);
  padding-top: var(--gap);
}
.form__group {
  position: relative;
}
.form__group:not(:first-child) {
  margin-top: 3rem;
}
.form #ke_search_sword.form__input, .form__input, .form__select {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border: 3px solid var(--accent-color);
  border-radius: 40px;
  color: inherit;
  display: block;
  font-size: inherit;
  font-family: inherit;
  outline: none;
  padding: 2rem 4rem;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.form__select::after {
  background-color: #f00;
  border: 3px solid transparent;
  border-radius: 2px;
  border-right-color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  content: " ";
  display: block;
  height: 8rem;
  margin-top: -0.8rem;
  pointer-events: none;
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: rotate(45deg);
  transform-origin: center;
  width: 8rem;
  z-index: 10;
}
.form__label {
  color: var(--accent-color);
  display: block;
  font-size: 1.6rem;
  padding: 0 4rem;
  padding-bottom: 0.6rem;
}
.form__group textarea {
  height: 200px;
  resize: vertical;
}
.form__group--2-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 25px;
}
.form__fieldset {
  border: none;
}
.form__fieldset:not(:first-child) {
  margin-top: 4rem;
}
.form__legend {
  color: var(--accent-color);
}
.form__check-group, .form__radio-group {
  margin-top: 0.4rem;
}
.form__check-label, .form__radio-label {
  cursor: pointer;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1em auto;
}
.form__check-button, .form__radio-button {
  appearance: none;
  background-color: transparent;
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
  display: grid;
  height: 1.8rem;
  margin: 0;
  place-content: center;
  transform: translateY(0.2em);
  width: 1.8rem;
}
.form__check-button::before, .form__radio-button::before {
  border-radius: 50%;
  box-shadow: inset 1em 1em var(--accent-color);
  content: "";
  height: 0.4em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  width: 0.4em;
}
.form__check-button:checked::before, .form__radio-button:checked::before {
  transform: scale(1);
}
.form__check-button::before {
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  height: 1em;
  transform-origin: bottom left;
  width: 1rem;
}
.form__check-button:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
  outline: max(3px, 0.15em) var(--theme-color-crayola);
  outline-offset: max(3px, 0.15em);
}
.form__radio-button {
  border-radius: 50%;
}
.form__check-text:not(:checked), .form__check-text:checked {
  position: absolute;
  left: -9999%;
}
.form__check-text:checked + label {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.form__check-text-label {
  align-items: center;
  background-color: var(--theme-color-white);
  border: 3px solid var(--accent-color);
  border-radius: 40px;
  color: var(--accent-color);
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-family: inherit;
  outline: none;
  padding: 2rem 4rem;
  text-align: center;
  vertical-align: top;
}
.form.submitted * {
  cursor: wait;
}
.form.sucessfully-submitted {
  cursor: inherit;
}
.form.sucessfully-submitted .form__group {
  display: none;
}
.form--gema {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2%;
  margin-top: 30px;
}
@media only screen and (min-width: 1400px) {
  .form--gema {
    grid-template-columns: 25% 40% 18% 10%;
  }
}
.form__button--delete {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form__button--delete button:first-child {
  display: none;
}
.form--horizontally {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.form.vote .form__radio-label {
  font-size: 150%;
  margin-bottom: 1rem;
}
.form.vote .form__radio-button {
  margin-top: 25%;
}

/**
 * ----------------------------------------------------------------------------
 * Abide form validation
 * ----------------------------------------------------------------------------
 */
.is-invalid-input:not(:focus) {
  background-color: rgba(235, 107, 135, 0.2);
}

.is-invalid-label {
  color: var(--accent-color);
}

.form-error {
  color: var(--accent-color);
  display: none;
  font-size: 1.6rem;
  padding: 0 4rem;
}

.is-visible {
  display: block;
}

.section--form .hide {
  display: none;
}

.section--form .is-visible {
  display: block;
}

.section--form .callout {
  border: 3px solid var(--accent-color);
  border-radius: 40px;
  padding: 2rem 4rem;
}
.section--form .callout p {
  margin-top: 0;
}
.section--form .callout.primary {
  background-color: var(--theme-color-crayola);
  color: var(--theme-color-white);
}

.section--form .callout.success {
  background-color: var(--theme-color-mantis);
}

.section--form .callout.alert {
  background-color: rgba(230, 50, 100, 0.4);
}

.header {
  align-items: center;
  display: flex;
  height: 100px;
  padding: 0 var(--side-padding);
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .header {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    height: auto;
  }
}

.header__logo {
  width: 260px;
}
.header__logo img {
  width: 260px;
}

.hero {
  background-color: transparent;
  display: grid;
  gap: var(--gap);
  grid-template-areas: "image" "content";
  width: 100%;
  height: 100%;
  /*
  @include respond-up(lg) {
      grid-template-areas: "content image";
      grid-template-columns: 1fr 2fr;
      padding: 0 var(--side-padding);
  }
  */
}
@media only screen and (min-width: 992px) {
  .hero {
    grid-template-areas: "content image";
    grid-template-columns: 1fr 1fr;
    padding: 0 var(--side-padding);
  }
}

.hero__content {
  grid-area: content;
  padding: 0 var(--side-padding);
}
@media only screen and (min-width: 992px) {
  .hero__content {
    padding-top: 50px;
    padding-right: calc(var(--side-padding) - var(--gap));
  }
}
.hero__content h3,
.hero__content h2 {
  font-size: 2.4rem;
  margin-top: 2rem;
}
.hero__content p {
  letter-spacing: 0.04rem;
}
.hero__content--no-top-padding {
  padding-top: 0;
  padding-right: 25px;
}
.hero__content--no-padding {
  padding: 0;
}

.hero__subheader {
  font-size: 2rem;
  font-weight: 700;
}

.hero__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: space-between;
  margin-top: 40px;
  width: 100%;
}
.hero__links--no-padding {
  margin: 0;
}

.hero__media {
  grid-area: image;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .hero__media {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
  }
}
@media only screen and (min-width: 992px) {
  .hero__media {
    border-bottom-left-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    margin-right: calc(var(--side-padding) * -1);
  }
}

.hero__image,
.hero__map {
  overflow: hidden;
  padding-top: 50%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .hero__image,
.hero__map {
    height: 100%;
  }
}
.hero__image img,
.hero__map img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero__image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero__image-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: white;
  background: #80808066;
  padding: 0 1.5rem;
  font-size: 50%;
}

.hero__map iframe {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero__additional {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: flex-end;
  margin-top: 3rem;
  padding: 0 var(--side-padding);
}

.map-wrapper {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
  height: 400px;
  margin: 0 var(--side-padding);
  margin-top: var(--gap);
}
.map-wrapper--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.map-wrapper--themed {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.map-wrapper--themed .card__metadata {
  color: var(--theme-color-white);
}

#map {
  width: 100%;
  height: 100%;
}

.map .inline-map {
  margin-bottom: 1rem;
  position: relative;
  padding-top: 56.25%;
}
.map .inline-map #map {
  position: absolute;
  top: 0;
}
.map .marker-cluster div {
  margin-left: 0;
  margin-top: 0;
  font-size: 1.25rem;
  font-family: Source Sans Pro, sans-serif;
  font-weight: 700;
}
.map .marker-cluster-large, .map .marker-cluster-large div,
.map .marker-cluster-medium, .map .marker-cluster-medium div,
.map .marker-cluster-small, .map .marker-cluster-small div {
  background-color: rgba(73, 96, 105, 0.7);
}
.map .marker-cluster-large, .map .marker-cluster-large div {
  background-color: #49ab72;
}
.map .marker-cluster-medium, .map .marker-cluster-medium div {
  background-color: #c7d300;
}
.map .marker-cluster-small, .map .marker-cluster-small div {
  background-color: #34ab7480;
}
.map .pin {
  display: none;
}
.map .zoomend .cluster-1 .pin {
  display: block;
}
.map .count span,
.map .zoomend .cluster-1 .count {
  display: none;
}
.map .zoomend .cluster-1.marker-cluster-small div,
.map .zoomend .cluster-1.marker-cluster-small {
  background: none;
  color: #b26459;
  font-size: 2rem;
  bottom: 0.5rem;
  position: absolute;
}
.map .hide-title span {
  display: block;
}
.map .leaflet-popup-content a {
  font-size: 1.125rem;
  font-family: Source Sans Pro, sans-serif;
  color: #34ab74;
}
.map__most .marker-cluster-small div {
  background-color: var(--theme-color-crayola);
}
.map__most .zoomend .cluster-1.marker-cluster-small div {
  color: var(--theme-color-cerise);
  font-size: 3rem;
}
.map__most .leaflet-popup-content a {
  font-size: 2rem;
}

.menu {
  font-size: 2.4rem;
  font-weight: 600;
  width: 100%;
}
.menu__close, .menu__open, .menu__submenu, .menu__teaser, .menu__toggle {
  display: none;
}
.menu__list {
  width: 100%;
}
.menu .search {
  display: none;
}

.menu__link,
.menu__sublink {
  display: block;
  padding: 1.6rem 0;
}
.menu__link:focus, .menu__link:hover,
.menu__sublink:focus,
.menu__sublink:hover {
  color: var(--theme-color-crayola);
}

@media only screen and (max-width: 1399px) {
  .menu {
    background-color: #F4F4F4;
    display: none;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 100;
  }
  .menu--active {
    display: block;
  }
  .menu__open, .menu__close {
    align-items: center;
    display: flex;
    font-size: 30px;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: var(--side-padding);
    width: 30px;
  }
  .menu__close {
    display: none;
  }
  .menu__list {
    width: 100%;
  }
  .menu__toggle {
    align-items: center;
    background-color: transparent;
    border: 2px solid var(--theme-color-black);
    border-radius: 50%;
    display: flex;
    height: 3rem;
    justify-content: center;
    position: absolute;
    top: 4rem;
    transform: translateY(-2.4rem);
    right: var(--side-padding);
    width: 3rem;
  }
  .menu__item {
    position: relative;
  }
  .menu__item--has-submenu.is-open .menu__link {
    color: var(--theme-color-crayola);
  }
  .menu__item--has-submenu.is-open .menu__toggle {
    background-color: var(--theme-color-crayola);
    border: 0;
    color: var(--theme-color-white);
    transform: translateY(-2.4rem) rotate(180deg);
  }
  .menu__item .search {
    display: block;
  }
  .menu__item .search .search__input {
    width: 100%;
    border-radius: 0;
    color: var(--theme-color-black);
    background-color: inherit;
    font-size: 2.4rem;
    font-family: var(--font);
    font-weight: 600;
    padding: 0;
  }
  .menu__item .search .search__input::placeholder {
    color: var(--theme-color-disabled);
  }
  .menu__item .search .search__icon {
    color: var(--theme-color-black);
    right: 0;
  }
  .menu .menu__link,
.menu .menu__sublink {
    border-bottom: 3px solid var(--theme-color-white);
    margin: 0 var(--side-padding);
  }
  .menu__submenu {
    background-color: #fafafa;
  }
}
@media only screen and (min-width: 1400px) {
  .menu {
    display: flex;
  }
  .menu__list {
    display: flex;
    justify-content: space-evenly;
  }
  .menu__item {
    align-items: flex-start;
    display: flex;
    height: 9rem;
    margin-top: 5rem;
  }
  .menu__link {
    border-bottom: 3px solid transparent;
    border-top: 3px solid transparent;
    padding: 2px 0;
  }
  .menu__link:hover {
    border-bottom: 3px solid var(--theme-color-crayola);
  }
  .menu .menu__submenu {
    background-color: #F4F4F4;
    box-shadow: var(--box-shadow);
    display: grid;
    gap: var(--side-padding);
    grid-template-columns: 1fr 2fr;
    left: 0;
    opacity: 0%;
    padding: var(--side-padding);
    position: absolute;
    right: 0;
    top: 14rem;
    visibility: hidden;
    z-index: 100;
  }
  .menu__item--has-submenu:hover .menu__submenu {
    opacity: 100%;
    visibility: visible;
    transition: opacity 500ms;
    transition-delay: 200ms;
  }
  .menu__sublist {
    border-left: 3px solid var(--theme-color-white);
    columns: 2;
    column-gap: calc(var(--side-padding) * 2);
    column-rule: 3px solid var(--theme-color-white);
    margin-right: auto;
    margin-top: 105px;
    padding-left: var(--side-padding);
  }
  .menu__teaser {
    display: block;
  }
  .menu__teaser-header {
    align-items: start;
    display: flex;
    font-size: 4.8rem;
    font-weight: 700;
    height: 105px;
  }
  .menu__teaser-image {
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  .menu__teaser-text {
    font-size: 2rem;
    font-weight: 400;
    margin-top: var(--gap);
  }
}
.message {
  border-radius: var(--border-radius);
  padding: 2rem 4rem;
}
.message:not(:first-child) {
  margin-top: 1rem;
}
.message--success {
  background-color: var(--theme-color-mantis);
  color: var(--theme-color-white);
}
.message--error {
  background-color: var(--theme-color-cerise);
  color: var(--theme-color-white);
}
.message--information {
  background-color: var(--theme-color-indigo);
  color: var(--theme-color-white);
}
.message--information a,
.message--information a:hover {
  color: var(--theme-color-white);
  text-decoration: underline;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  padding: 0 17%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .overlay {
    padding: 0;
  }
}
.overlay__card {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
  height: auto;
  left: 50%;
  max-width: 1024px;
  padding: var(--gap);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.overlay__card--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.overlay__card--themed {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.overlay__card--themed .card__metadata {
  color: var(--theme-color-white);
}
@media only screen and (max-width: 767px) {
  .overlay__card {
    left: 0;
    transform: translate(0, -50%);
  }
}
.overlay__card--cerise {
  background-color: var(--theme-color-cerise);
  color: var(--theme-color-white);
}
.overlay__close {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  font-size: 3rem;
  height: 3rem;
  justify-content: center;
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 3rem;
}
@media only screen and (min-width: 1400px) {
  .overlay__close {
    border-width: 3px;
  }
}
.overlay .title {
  margin-top: 0;
}
.overlay .embed__code {
  border-color: var(--theme-color-cerise);
  border-radius: 3rem;
  border-style: solid;
  border-width: 2px;
  margin-top: 3rem;
  padding: 3rem;
}
@media only screen and (min-width: 1400px) {
  .overlay .embed__code {
    border-width: 3px;
  }
}
.overlay .embed__options,
.overlay .embed_submit {
  margin-top: 3rem;
}
.overlay__progress {
  display: flex;
  border-color: var(--theme-color-mantis);
  border-radius: 3rem;
  border-style: solid;
  border-width: 2px;
  margin: 2rem 0;
}
.overlay__progress--meter {
  border-radius: 3rem;
  background-color: var(--theme-color-mantis);
}
.overlay__progress--text {
  text-align: center;
}
.overlay .text-center {
  text-align: center;
}
.overlay .hidden {
  display: none;
}

.pagination {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
  margin-top: 45px;
}
@media only screen and (min-width: 1200px) {
  .pagination {
    font-size: 2em;
    gap: 1.6rem;
  }
}
.pagination__item {
  align-items: center;
  background-color: transparent;
  border-radius: 50%;
  color: var(--theme-color-crayola);
  display: flex;
  height: 3.4rem;
  justify-content: center;
  width: 3.4rem;
}
@media only screen and (min-width: 1200px) {
  .pagination__item {
    height: 5.6rem;
    width: 5.6rem;
  }
}
.pagination__item:focus, .pagination__item:hover, .pagination__item--active {
  background-color: var(--theme-color-crayola);
  color: var(--theme-color-white);
}

.section--schedule {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  grid-template-areas: "player" "header" "list";
}
@media only screen and (min-width: 992px) {
  .section--schedule {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "header header" "list player";
    padding: 0 var(--side-padding);
  }
}

.schedule__header {
  padding-top: 4rem;
  grid-area: header;
}
@media only screen and (max-width: 991px) {
  .schedule__header {
    padding: 0 var(--side-padding);
  }
}
.schedule__player {
  grid-area: player;
}
.schedule__player-card {
  background-color: var(--theme-color-white);
  border-bottom-right-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .schedule__player-card {
    border-radius: var(--border-radius);
  }
}
.schedule__list {
  grid-area: list;
}
.schedule__list a,
.schedule__list a:hover,
.schedule__list a:active {
  color: var(--theme-color-white);
}
@media only screen and (max-width: 991px) {
  .schedule__list {
    padding: 0 var(--side-padding);
  }
}
.schedule__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.schedule__slots {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}
.schedule__slot {
  align-items: center;
  background-color: var(--theme-color-crayola);
  border: 2px solid var(--theme-color-crayola);
  border-radius: 4rem;
  color: var(--theme-color-white);
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  white-space: nowrap;
}
.schedule__slot:hover, .schedule__slot:focus {
  background-color: var(--theme-color-white);
  color: var(--theme-color-crayola);
}
@media only screen and (min-width: 992px) {
  .schedule__slot {
    border-width: var(--theme-color-crayola);
    font-size: 3rem;
  }
}
.schedule__date-prev, .schedule__date-next {
  background-color: transparent;
  border: none;
  color: var(--theme-color-crayola);
  font-size: 3rem;
  height: 3rem;
  padding: 0;
  width: 3rem;
}
.schedule__date {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-size: 3rem;
  justify-content: space-between;
}
.schedule__input {
  background-color: var(--theme-color-crayola);
  border: 2px solid var(--theme-color-crayola);
  border-radius: 4rem;
  color: var(--theme-color-white);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  text-align: center;
  width: 180px;
}
@media only screen and (min-width: 992px) {
  .schedule__input {
    border-width: var(--theme-color-crayola);
    font-size: 2.4rem;
    padding: 1.1rem 1.6rem;
  }
}
.schedule__container {
  margin-top: 5rem;
  position: relative;
  max-height: 100vh;
  overflow: auto;
}
.schedule__loading {
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--theme-color-indigo);
  font-size: 100px;
  height: 100%;
  justify-content: center;
  left: 0;
  padding-top: 80px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.schedule__spinner {
  height: 80px;
  width: 80px;
}
.schedule__status {
  display: none;
}
.schedule__card {
  background-color: var(--theme-color-indigo);
  border-radius: var(--border-radius);
  color: var(--theme-color-white);
  padding: 3.2rem 2.4rem;
}
.schedule__card:not(:first-child) {
  margin-top: 4rem;
}
.schedule__time {
  font-size: 3rem;
  font-weight: 700;
}
.schedule__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 1.6rem;
}
.schedule__description {
  font-size: 2rem;
  margin-top: 1.6rem;
}
@media only screen and (min-width: 992px) {
  .schedule__player {
    position: relative;
  }
}
@media only screen and (min-width: 992px) {
  .schedule__player-card {
    position: relative;
    position: sticky;
    top: 0;
  }
}
.schedule__to-top {
  bottom: 3rem;
  cursor: pointer;
  display: none;
  font-size: 4rem;
  position: fixed;
  right: 4rem;
}
.schedule__progress {
  display: none;
  position: relative;
  width: 100%;
  height: 10px;
  background-color: #ddd;
  margin-top: 1.6rem;
  border-radius: 10px;
}
.schedule__progress--bar {
  position: absolute;
  height: 100%;
  width: 0;
  background-color: var(--theme-color-indigo);
  border-radius: 10px;
}
.schedule--on-air {
  background-color: var(--theme-color-white);
  color: var(--theme-color-black);
  box-shadow: var(--box-shadow);
}
.schedule--on-air a,
.schedule--on-air a:hover {
  color: var(--theme-color-black);
}
.schedule--on-air .schedule__progress {
  display: flex;
}

.datepicker .day {
  font-size: 1rem;
}

@media only screen and (max-width: 1399px) {
  .search {
    display: none;
  }
}
.search__control {
  position: relative;
}
.search__icon {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  line-height: 100%;
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 0;
  width: 40px;
  z-index: 1;
}
.search__input {
  appearance: none;
  background-color: var(--theme-color-black);
  border: none;
  border-radius: var(--border-radius);
  color: #fff;
  font-size: 1.8rem;
  height: 40px;
  padding-left: 20px;
  padding-right: 50px;
  width: 260px;
}
.search__input::placeholder {
  color: transparent;
}

.searchbar {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  margin-top: var(--side-padding);
}
.searchbar__filters {
  align-items: center;
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 992px) {
  .searchbar__filters {
    grid-template-columns: 1fr 2fr 2fr;
  }
}
.searchbar__formats {
  align-items: center;
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr 1fr;
}
.searchbar__submit button {
  margin-left: auto;
}

.socialmedia {
  display: flex;
  gap: 1.6rem;
  justify-content: flex-end;
}
@media only screen and (min-width: 1400px) {
  .socialmedia {
    gap: 2rem;
  }
}
.socialmedia__item {
  align-items: center;
  background-color: var(--theme-color-crayola);
  border-radius: 50%;
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  height: 3.4rem;
  width: 3.4rem;
}
@media only screen and (max-width: 1199px) {
  .socialmedia__item a,
.socialmedia__item a:hover,
.socialmedia__item a:focus {
    color: #fff;
  }
}
@media only screen and (min-width: 1400px) {
  .socialmedia__item {
    font-size: 2.2rem;
    height: 4.8rem;
    width: 4.8rem;
  }
}
.socialmedia__item--rss {
  background-color: var(--theme-color-mantis);
}
.socialmedia__item--subscribe {
  background-color: var(--theme-color-indigo);
}
.socialmedia__item--subscribe a, .socialmedia__item--subscribe a:hover, .socialmedia__item--subscribe a:active {
  color: var(--theme-color-white);
}
@media only screen and (max-width: 1199px) {
  .socialmedia--footer {
    margin: 45px auto;
  }
}
@media only screen and (min-width: 576px) {
  .socialmedia--footer {
    gap: 45px;
  }
}
@media only screen and (min-width: 1200px) {
  .socialmedia--footer {
    justify-content: space-between;
  }
}
.socialmedia--footer .socialmedia__item {
  background-color: var(--theme-color-indigo);
}
@media only screen and (min-width: 576px) {
  .socialmedia--footer .socialmedia__item {
    font-size: 2.6rem;
    height: 5.6rem;
    width: 5.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .socialmedia--footer .socialmedia__item {
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    display: block;
    font-size: 4rem;
    justify-content: center;
    height: auto;
    width: auto;
  }
}
.socialmedia--footer .socialmedia__link {
  color: var(--theme-color-white);
}
@media only screen and (min-width: 1200px) {
  .socialmedia--footer .socialmedia__link {
    color: var(--theme-color-black);
  }
}

.tabs-container {
  --accent-color: var(--wheel-color-1);
}

.tabs__header {
  display: flex;
  gap: var(--gap);
  justify-content: center;
  margin-bottom: var(--gap);
  flex-wrap: wrap;
}

.tab__title {
  font-size: 3rem;
}

.tab__title:nth-child(5n+1),
.tab__button:nth-child(5n+1),
.tab__item:nth-child(5n+1) {
  --accent-color: var(--wheel-color-1);
}
.tab__title:nth-child(5n+2),
.tab__button:nth-child(5n+2),
.tab__item:nth-child(5n+2) {
  --accent-color: var(--wheel-color-2);
}
.tab__title:nth-child(5n+3),
.tab__button:nth-child(5n+3),
.tab__item:nth-child(5n+3) {
  --accent-color: var(--wheel-color-3);
}
.tab__title:nth-child(5n+4),
.tab__button:nth-child(5n+4),
.tab__item:nth-child(5n+4) {
  --accent-color: var(--wheel-color-4);
}
.tab__title:nth-child(5n+5),
.tab__button:nth-child(5n+5),
.tab__item:nth-child(5n+5) {
  --accent-color: var(--wheel-color-5);
}

.tab__button {
  align-items: center;
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 3.4rem;
  color: var(--theme-color-white);
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  height: 3.4rem;
  justify-content: center;
  padding: 0 1.6em;
  text-align: center;
  white-space: nowrap;
}
.tab__button a {
  color: var(--theme-color-white);
}
.tab__button--active {
  background-color: var(--theme-color-white);
  border: 2px solid var(--accent-color);
}
.tab__button--active a {
  color: var(--theme-color-black);
}

.tab__items {
  margin-top: var(--gap);
}

.tab {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: grid;
  grid-template-areas: "content" "header";
  height: 100%;
  overflow: hidden;
}

.tab__content {
  grid-area: content;
  padding: 46px 86px;
  display: none;
}
.tab__content.active {
  display: block;
}
.tab__content header {
  display: none;
}

.tab__header {
  color: var(--theme-color-white);
  grid-area: header;
  text-align: center;
}

.upload--status {
  display: none;
}
.upload--status-progress .show-on-progress {
  display: block;
}
.upload--status-processing .show-on-processing {
  display: block;
}
.upload--status-complete .overlay__card {
  background-color: var(--theme-color-mantis);
  color: var(--theme-color-white);
}
.upload--status-complete .overlay__card .button:not(:hover) {
  color: var(--theme-color-black);
}
.upload--status-complete .show-on-complete {
  display: block;
}
.upload--status-error .overlay__card {
  background-color: var(--theme-color-cerise);
  color: var(--theme-color-white);
}
.upload--status-error .overlay__card .button:not(:hover) {
  color: var(--theme-color-black);
}
.upload--status-error .show-on-error {
  display: block;
}

#uploadForm .card__image {
  padding-bottom: 56.25%;
}

.widescreen .overlay__close {
  display: none;
}

.section--media .widescreen {
  position: relative;
  padding-top: 56.25%;
}
.section--media .widescreen .video-js {
  position: absolute;
  top: 0;
}
.section--media .widescreen .overlay__close {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section--media .player--sticky {
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    width: 30rem;
    height: 16.875rem;
    z-index: 99;
    padding: 0;
  }
  .section--media .player--sticky video {
    border-radius: calc(var(--border-radius) / 2);
  }
  .section--media .player--sticky .video-js.vjs-fluid {
    background: transparent;
  }
}
.section--media .player--sticky-closed .overlay__close {
  display: none;
}
.section--media .player--sticky .overlay__close {
  display: block;
  color: var(--theme-color-disabled);
  top: 0;
  right: 0;
  font-size: 2rem;
}

.linkfree__user {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.linkfree__user--name {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  display: block;
  font-family: var(--font);
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.linkfree__user--photo {
  width: 96px;
  height: 96px;
  display: block;
  margin: 35px auto 20px;
  border-radius: 50%;
}

.contenttable {
  margin-bottom: 1rem;
}
.contenttable td, .contenttable th {
  padding: 0.8rem 1rem 1rem;
}
.contenttable td p, .contenttable th p {
  margin: 0;
  padding: 0 0 1.92rem 0;
}

.section--wall .cards {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media only screen and (min-width: 768px) {
  .section--wall .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 992px) {
  .section--wall .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1200px) {
  .section--wall .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1400px) {
  .section--wall .cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.section--wall .card__content {
  padding: 1rem 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: var(--theme-color-black);
  background-color: #ffffffb5;
  font-weight: 600;
  min-height: 4rem;
}
.section--wall .video-js .vjs-remaining-time,
.section--wall .video-js .vjs-picture-in-picture-control {
  display: none;
}
.section--wall .video-js .vjs-fullscreen-control {
  display: block !important;
}
.section--wall .video-js .vjs-control-bar {
  font-size: 150%;
}

.ce-image {
  padding: 0 var(--side-padding);
}
.ce-image.ce-center img {
  margin: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.ce-textpic.ce-center img {
  margin: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

a.text-center {
  display: flex;
  justify-content: center;
}

.accordion__item {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  padding: calc(var(--side-padding) / 2) 0;
  transition: 0.4s;
}
.accordion__item:not(:first-child) {
  padding-top: 0;
}
.accordion__header--active, .accordion__header:hover {
  color: var(--theme-color-crayola);
}
.accordion__header::after {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-size: 4.8rem;
  float: right;
  margin-left: 5px;
}
.accordion__header--active::after {
  transform: rotate(180deg);
}
.accordion__panel {
  background-color: var(--theme-color-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.ce-textpic.ce-left {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.ce-textpic.ce-left .ce-gallery {
  flex: 0 0 auto;
  margin-right: 2rem;
}
.ce-textpic.ce-left .ce-gallery img {
  border-radius: 10px;
}
.ce-textpic.ce-left .ce-bodytext {
  flex: 1 0;
}
.ce-textpic.ce-left .ce-bodytext p {
  margin-top: 0;
  margin-bottom: 2.2rem;
}
.ce-textpic.ce-center .ce-gallery {
  display: flex;
  justify-content: center;
}

.photo-series .photo-series__description {
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-series .photo-series__description .photo-series__title {
  padding: 2rem;
  position: absolute;
  bottom: 0;
  width: 75%;
  min-height: 20%;
  background-color: rgba(255, 255, 255, 0.6);
}

.container__photo-series {
  position: relative;
}

.photo-series__card {
  min-height: 100vh;
  box-shadow: 0 3px 8px 2px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.photo-series__card:nth-child(5n+1) {
  --accent-color: var(--wheel-color-1);
}
.photo-series__card:nth-child(5n+2) {
  --accent-color: var(--wheel-color-2);
}
.photo-series__card:nth-child(5n+3) {
  --accent-color: var(--wheel-color-3);
}
.photo-series__card:nth-child(5n+4) {
  --accent-color: var(--wheel-color-4);
}
.photo-series__card:nth-child(5n+5) {
  --accent-color: var(--wheel-color-5);
}
@media only screen and (min-width: 992px) {
  .photo-series__media {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
  }
}
.photo-series__image {
  display: block;
  height: 100vh;
  padding-top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000;
}
.photo-series__content {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: var(--accent-color);
  color: var(--theme-color-white);
  min-height: 150px;
  box-shadow: var(--box-shadow);
}
@media only screen and (min-width: 992px) {
  .photo-series__vertical .photo-series__content {
    width: 400px;
    margin: -150px 0 0 140px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
  }
}
@media only screen and (min-width: 992px) {
  .photo-series__horizontal .photo-series__content {
    position: absolute;
    bottom: 0;
    width: 50%;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    margin-left: 25%;
  }
}

#kesearch_ordering {
  float: right;
  clear: both;
}
#kesearch_ordering .ordering ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
#kesearch_ordering .ordering ul li {
  display: inline-block;
  padding-left: 3rem;
}
#kesearch_ordering .ordering ul li.sortlink--active {
  font-weight: bold;
}
#kesearch_ordering .ordering ul li .fa-solid::before {
  margin-left: 0.5rem;
}

#kesearch_query_time {
  font-size: small;
  text-align: center;
  padding-top: 2rem;
}

.columns {
  display: grid;
  gap: var(--side-padding);
  padding: 0 var(--side-padding);
}
.columns--1-1 {
  grid-template-columns: 1fr 1fr;
}
.columns--2-1 {
  grid-template-columns: 2fr 1fr;
}

.container {
  margin: 0 auto;
  max-width: 1920px;
}

.section:not(:first-child) {
  margin-top: var(--side-padding);
}
.section__header {
  padding: 0 var(--side-padding);
}
.section__header--search {
  margin-top: 75px;
}
.section--search {
  padding: 0 var(--side-padding);
}
.section--comments, .section--card, .section--media, .section--form {
  padding: 0 20px;
}
@media only screen and (min-width: 992px) {
  .section--comments, .section--card, .section--media, .section--form {
    padding: 0 17%;
  }
}
.section--card .card-container {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
}
.section--card .card-container--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.section--card .card-container--themed {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.section--card .card-container--themed .card__metadata {
  color: var(--theme-color-white);
}
.section--card .card-container .card__header {
  padding: 3rem var(--side-padding);
  text-align: center;
}
.section--card .card-container .card__content {
  padding: var(--top-padding) var(--side-padding);
}
.section--card .card-container--layout-101 {
  background-color: var(--theme-color-crayola);
  color: var(--theme-color-white);
}
.section--card .card-container--layout-101 .content a {
  color: var(--theme-color-white);
  text-decoration: underline;
}
.section--card .card-container--layout-101 .content a:hover, .section--card .card-container--layout-101 .content a:active {
  font-weight: bold;
}
.section--card .card-container--layout-102 {
  background-color: var(--theme-color-cerise);
  color: var(--theme-color-white);
}
.section--card .card-container--layout-102 .content a {
  color: var(--theme-color-white);
  text-decoration: underline;
}
.section--card .card-container--layout-102 .content a:hover, .section--card .card-container--layout-102 .content a:active {
  font-weight: bold;
}
.section--card .card-container--layout-103 {
  background-color: var(--theme-color-mantis);
  color: var(--theme-color-white);
}
.section--card .card-container--layout-103 .content a {
  color: var(--theme-color-white);
  text-decoration: underline;
}
.section--card .card-container--layout-103 .content a:hover, .section--card .card-container--layout-103 .content a:active {
  font-weight: bold;
}
.section--card .card-container--layout-104 {
  background-color: var(--theme-color-persian);
  color: var(--theme-color-white);
}
.section--card .card-container--layout-104 .content a {
  color: var(--theme-color-white);
  text-decoration: underline;
}
.section--card .card-container--layout-104 .content a:hover, .section--card .card-container--layout-104 .content a:active {
  font-weight: bold;
}
.section--card .card-container--layout-105 {
  background-color: var(--theme-color-indigo);
  color: var(--theme-color-white);
}
.section--card .card-container--layout-105 .content a {
  color: var(--theme-color-white);
  text-decoration: underline;
}
.section--card .card-container--layout-105 .content a:hover, .section--card .card-container--layout-105 .content a:active {
  font-weight: bold;
}
.section--media .card-container {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
}
.section--media .card-container--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.section--media .card-container--themed {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.section--media .card-container--themed .card__metadata {
  color: var(--theme-color-white);
}
.section--media .card__content {
  padding: var(--side-padding);
  padding-top: 50px;
}
.section--comments .section__container,
.section--comments .card-container, .section--form .section__container,
.section--form .card-container {
  background-color: var(--theme-color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  overflow: hidden;
}
.section--comments .section__container--link,
.section--comments .card-container--link, .section--form .section__container--link,
.section--form .card-container--link {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
  text-align: center;
}
.section--comments .section__container--themed,
.section--comments .card-container--themed, .section--form .section__container--themed,
.section--form .card-container--themed {
  background-color: var(--accent-color);
  color: var(--theme-color-white);
}
.section--comments .section__container--themed .card__metadata,
.section--comments .card-container--themed .card__metadata, .section--form .section__container--themed .card__metadata,
.section--form .card-container--themed .card__metadata {
  color: var(--theme-color-white);
}
.section--comments .section__content, .section--form .section__content {
  padding: var(--side-padding);
  padding-top: var(--gap);
}
.section--comments .section__header, .section--form .section__header {
  background: var(--theme-color-cerise);
  color: var(--theme-color-white);
  font-weight: 700;
  padding: 30px 0;
  text-align: center;
}
.section--infobox:not(:first-child) {
  margin: var(--top-padding) 0;
}
@media only screen and (max-width: 991px) {
  .section--infobox {
    padding: 0 60px;
  }
  .section--infobox:not(:first-child) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section--infobox {
    padding: 0 30px;
  }
}
.section--status {
  background-color: var(--theme-color-persian);
  color: var(--theme-color-white);
  text-align: center;
  font-weight: bold;
}
.section--status p {
  margin: 0;
  padding: 0.5rem;
}
.section--status p a, .section--status p a:hover, .section--status p a:active {
  color: var(--theme-color-white);
  text-decoration: underline;
}

body {
  position: relative;
}

body::before {
  display: block;
  background-image: url(../Images/background.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100vh;
  left: 50%;
  opacity: 0.1;
  position: fixed;
  top: 100px;
  transform: translateX(-50%) translateY(var(--background-translate-y));
  width: 90%;
  z-index: -1;
}

:root {
  --border-radius: 40px;
  --box-shadow: 0px 15px 15px rgba(0, 0, 0, .2);
  --default-accent-color-buttons: #333;
  --default-accent-color-cards: #fff;
  --font-weight-bold: 600;
  --gap: 30px;
  --header-height: 100px;
  --link-gap: 20px;
  --margin-large: 75px;
  --side-padding: 30px;
  --top-padding: var(--side-padding);
  --theme-color-black: #333;
  --theme-color-white: #fff;
  --theme-color-crayola: #eb6b87;
  --theme-color-cerise: #e63264;
  --theme-color-mantis: #73B95A;
  --theme-color-persian: #00a096;
  --theme-color-indigo: #00737d;
  --theme-color-disabled: #ccc;
  --theme-color-autum: #e47300;
  --background-translate-y: 0;
}

@media only screen and (min-width: 576px) {
  :root {
    --side-padding: 60px;
    --top-padding: 60px;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    --margin-large: 75px;
    --gap: 45px;
    --link-gap: 30px;
    --header-height: 160px;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --side-padding: 100px;
  }
}
.color--wheel-1 {
  --wheel-color-1: var(--theme-color-crayola);
  --wheel-color-2: var(--theme-color-cerise);
  --wheel-color-3: var(--theme-color-mantis);
  --wheel-color-4: var(--theme-color-persian);
  --wheel-color-5: var(--theme-color-indigo);
}
.color--wheel-2 {
  --wheel-color-2: var(--theme-color-crayola);
  --wheel-color-3: var(--theme-color-cerise);
  --wheel-color-4: var(--theme-color-mantis);
  --wheel-color-5: var(--theme-color-persian);
  --wheel-color-1: var(--theme-color-indigo);
}
.color--wheel-3 {
  --wheel-color-3: var(--theme-color-crayola);
  --wheel-color-4: var(--theme-color-cerise);
  --wheel-color-5: var(--theme-color-mantis);
  --wheel-color-1: var(--theme-color-persian);
  --wheel-color-2: var(--theme-color-indigo);
}
.color--wheel-4 {
  --wheel-color-4: var(--theme-color-crayola);
  --wheel-color-5: var(--theme-color-cerise);
  --wheel-color-1: var(--theme-color-mantis);
  --wheel-color-2: var(--theme-color-persian);
  --wheel-color-3: var(--theme-color-indigo);
}
.color--wheel-5 {
  --wheel-color-5: var(--theme-color-crayola);
  --wheel-color-1: var(--theme-color-cerise);
  --wheel-color-2: var(--theme-color-mantis);
  --wheel-color-3: var(--theme-color-persian);
  --wheel-color-4: var(--theme-color-indigo);
}
.color--layout-101 {
  background-color: var(--theme-color-crayola);
  color: var(--theme-color-white);
}
.color--layout-101 .card__metadata {
  color: var(--theme-color-white);
}

body.layout-1 {
  background-color: rgba(0, 115, 125, 0.4);
  color: #000;
}
body.layout-1::before {
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
body.layout-1 .card:not(.card--link) {
  background-color: var(--theme-color-crayola);
  color: var(--theme-color-white);
}
body.layout-1 .card:not(.card--link) .card__metadata {
  color: var(--theme-color-white);
}
body.layout-2 {
  background-color: rgba(115, 185, 90, 0.2);
  color: #000;
}
body.layout-2::before {
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
body.layout-2 .card:not(.card--link) {
  background-color: var(--theme-color-mantis);
  color: var(--theme-color-white);
}
body.layout-2 .card:not(.card--link) .card__metadata {
  color: var(--theme-color-white);
}
body.layout-3 {
  background-color: rgba(228, 115, 0, 0.5);
  color: #000;
}
body.layout-3::before {
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
body.layout-3 .card-container {
  background-color: var(--theme-color-mantis);
  color: var(--theme-color-white);
}
body.layout-3 .card:not(.card--link) {
  background-color: var(--theme-color-mantis);
  color: var(--theme-color-white);
}
body.layout-3 .card:not(.card--link) .card__metadata {
  color: var(--theme-color-white);
}
body.layout-4 {
  background-color: #005663;
  background: linear-gradient(to bottom, #d13838, #666565);
  background-size: contain;
}
body.layout-4 .content a {
  color: #43ff00;
}
body.layout-4::before {
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
body.layout-4 .card-container {
  background-color: var(--theme-color-autum);
  color: var(--theme-color-white);
}
body.layout-4 .card:not(.card--link) {
  background-color: var(--theme-color-autum);
  color: var(--theme-color-white);
}
body.layout-4 .card:not(.card--link) .card__metadata {
  color: var(--theme-color-white);
}

.autoComplete_wrapper {
  position: relative;
}

.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 226px;
  overflow-y: scroll;
  box-sizing: border-box;
  left: 0;
  right: 0;
  margin: 0.5rem 0 0 0;
  padding: 0;
  z-index: 1;
  list-style: none;
  border-radius: 0.6rem;
  background-color: #fff;
  border: 1px solid rgba(33, 33, 33, 0.07);
  box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
  outline: none;
  transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -webkit-transition: opacity 0.15s ease-in-out;
}

.autoComplete_wrapper > ul[hidden],
.autoComplete_wrapper > ul:empty {
  display: block;
  opacity: 0;
  transform: scale(0);
}

.autoComplete_wrapper > ul > li {
  margin: 0.3rem;
  padding: 0.3rem 0.5rem;
  text-align: left;
  color: #212121;
  border-radius: 0.35rem;
  background-color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: var(--theme-color-cerise);
  font-weight: bold;
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper > ul > li[aria-selected=true] {
  background-color: rgba(255, 122, 122, 0.15);
}

@media only screen and (max-width: 600px) {
  .autoComplete_wrapper > input {
    width: 18rem;
  }
}
.splide__arrow {
  align-items: center;
  background-color: transparent;
  border: none;
  color: var(--theme-color-black);
  cursor: pointer;
  display: flex;
  font-size: 30px;
  height: 30px;
  justify-content: center;
  opacity: 0.8;
  position: absolute;
  width: var(--side-padding);
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .splide__arrow {
    font-size: 45px;
    height: 45px;
  }
}
.splide__arrow--prev {
  left: 0;
}
.splide__arrow--next {
  right: 0;
}

.splide--hero .splide__arrow {
  color: var(--theme-color-white);
  top: 28.125vw;
  transform: translateY(-100%);
}
@media only screen and (min-width: 992px) {
  .splide--hero .splide__arrow {
    top: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .splide--hero .splide__arrow--prev {
    color: var(--theme-color-black);
  }
}

.splide--cards .splide__arrow {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 575px) {
  .splide--cards .splide__arrow {
    display: none;
  }
}

.splide--media .splide__arrow {
  color: var(--theme-color-white);
  top: 50%;
  transform: translateY(-50%);
}

.splide__pagination {
  bottom: -5rem;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: var(--theme-color-black);
  border: none;
  border-radius: 1rem;
  display: inline-block;
  height: 1rem;
  margin: 1rem;
  opacity: 0.8;
  position: relative;
  transition: transform 0.2s linear;
  width: 1rem;
}
.splide__pagination__page.is-active {
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
}
.splide--media .splide__pagination {
  bottom: 3rem;
}
.splide--media .splide__pagination__page {
  background: var(--theme-color-white);
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}
.splide__slide:focus {
  outline: 0;
}

.splide--cards {
  padding: 0 calc(var(--side-padding) - 22.5px);
  margin-top: 3rem;
}
.splide--cards .splide__slide {
  padding: calc(var(--gap) / 2);
  width: 85%;
}
@media only screen and (min-width: 576px) {
  .splide--cards .splide__slide {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .splide--cards .splide__slide {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 1400px) {
  .splide--cards .splide__slide {
    width: 25%;
  }
}

.splide--media {
  height: 100%;
  width: 100%;
}
.splide--media .splide__track,
.splide--media .splide__list,
.splide--media .splide__slide {
  height: inherit;
  width: inherit;
}

.splide--hero .splide__slide {
  width: 100%;
}