/*! @license
 * Shaka Player
 * Copyright 2016 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */
.shaka-hidden {
  display: none !important;
}
.shaka-video-container {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  font-family: Roboto, sans-serif, TengwarTelcontar;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.shaka-video-container .material-icons-round {
  font-family: "Material Icons Round";
  font-size: 24px;
}
.shaka-video-container:fullscreen {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.shaka-video-container:fullscreen .shaka-text-container {
  font-size: 4.4vmin;
}
.shaka-video-container:-webkit-full-screen {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.shaka-video-container:-webkit-full-screen .shaka-text-container {
  font-size: 4.4vmin;
}
.shaka-video-container:-moz-full-screen {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.shaka-video-container:-moz-full-screen .shaka-text-container {
  font-size: 4.4vmin;
}
.shaka-video-container:-ms-fullscreen {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.shaka-video-container:-ms-fullscreen .shaka-text-container {
  font-size: 4.4vmin;
}
.shaka-controls-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}
.shaka-video-container:not([shaka-controls="true"]) .shaka-controls-container {
  display: none;
}
.shaka-controls-container * {
  flex-shrink: 0;
}
.shaka-controls-container[casting="true"] .shaka-fullscreen-button {
  display: none;
}
.shaka-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.shaka-vr-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.shaka-bottom-controls {
  width: 98%;
  padding: 0;
  z-index: 1;
}
.shaka-controls-button-panel {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  min-width: 48px;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}
.shaka-controls-container[casting="true"] .shaka-controls-button-panel,
.shaka-controls-container[shown="true"] .shaka-controls-button-panel {
  opacity: 1;
}
.shaka-controls-button-panel > * {
  color: #fff;
  height: 48px;
  width: 48px;
  line-height: 0.5;
  padding: 0 2px;
  background: 0 0;
  border: 0;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.1s;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.shaka-controls-button-panel > .material-icons-round {
  font-size: 34px;
}
.shaka-controls-button-panel > .shaka-mute-button {
  font-size: 28px;
}
.shaka-controls-button-panel > .shaka-overflow-menu-button {
  font-size: 24px !important;
  position: relative;
}
.shaka-controls-button-panel > :hover {
  opacity: 1;
}
.shaka-controls-button-panel .shaka-overflow-menu-only {
  display: none;
}
.shaka-play-button-container {
  margin: 0;
  width: 100%;
  height: 100%;
  flex-shrink: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shaka-statistics-container {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: white rgba(0, 0, 0, 0.5);
  scrollbar-width: thin;
  min-width: 300px;
  color: #fff;
  background-color: rgba(35, 35, 35, 0.9);
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
  left: 15px;
  top: 15px;
  max-height: calc(100% - 115px);
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}
.shaka-controls-container[casting="true"] .shaka-statistics-container,
.shaka-controls-container[shown="true"] .shaka-statistics-container {
  opacity: 1;
}
.shaka-statistics-container div {
  display: flex;
  justify-content: space-between;
}
.shaka-statistics-container span {
  color: #969696;
}
.shaka-ad-statistics-container {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: white rgba(0, 0, 0, 0.5);
  scrollbar-width: thin;
  min-width: 150px;
  color: #fff;
  background-color: rgba(35, 35, 35, 0.9);
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 15px;
  max-height: calc(100% - 115px);
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}
.shaka-controls-container[casting="true"] .shaka-ad-statistics-container,
.shaka-controls-container[shown="true"] .shaka-ad-statistics-container {
  opacity: 1;
}
.shaka-ad-statistics-container div {
  display: flex;
  justify-content: space-between;
}
.shaka-ad-statistics-container span {
  color: #969696;
}
.shaka-context-menu {
  overflow-x: hidden;
  overflow-y: auto;
  white-space: nowrap;
  background: rgba(28, 28, 28, 0.9);
  border-radius: 2px;
  min-width: 190px;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  z-index: 3;
}
.shaka-controls-container[casting="true"] .shaka-context-menu,
.shaka-controls-container[shown="true"] .shaka-context-menu {
  opacity: 1;
}
.shaka-context-menu button {
  font-size: 14px;
  background: 0 0;
  color: #fff;
  border: none;
  min-height: 30px;
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.shaka-context-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.shaka-context-menu button label {
  cursor: pointer;
  margin-left: 5px;
}
.shaka-keyboard-navigation .shaka-context-menu button:focus {
  background: rgba(255, 255, 255, 0.1);
}
.shaka-context-menu button .shaka-current-selection-span {
  display: none;
}
.shaka-scrim-container {
  margin: 0;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  flex-shrink: 1;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
  height: 61px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.5) 100%);
}
.shaka-controls-container[casting="true"] .shaka-scrim-container,
.shaka-controls-container[shown="true"] .shaka-scrim-container {
  opacity: 1;
}
.shaka-text-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  bottom: 0;
  width: 100%;
  min-width: 48px;
  transition: bottom cubic-bezier(0.4, 0, 0.6, 1) 0.1s;
  transition-delay: 0.5s;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}
.shaka-text-container span.shaka-text-wrapper {
  display: inline;
  background: 0 0;
}
.shaka-controls-container[shown="true"] ~ .shaka-text-container {
  transition-delay: 0s;
}
.shaka-spinner-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shaka-video-container:not([shaka-controls="true"]) .shaka-spinner-container {
  display: none;
}
.shaka-hidden-fast-forward-container,
.shaka-hidden-rewind-container {
  height: 100%;
  width: 40%;
  flex-shrink: 1;
}
.shaka-hidden-fast-forward-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  left: 60%;
}
.shaka-hidden-rewind-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.shaka-video-container.no-cursor {
  cursor: none !important;
}
.shaka-video-container.no-cursor * {
  cursor: none !important;
}
.shaka-play-button {
  box-sizing: border-box;
  padding: calc(15% / 2);
  width: 0;
  height: 0;
  margin: 0;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px 0;
  border: none;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
}
.shaka-controls-container[casting="true"] .shaka-play-button,
.shaka-controls-container[shown="true"] .shaka-play-button {
  opacity: 1;
}
.shaka-play-button[icon="play"] {
  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23000000%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8%205v14l11-7z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E");
}
.shaka-play-button[icon="pause"] {
  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23000000%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M6%2019h4V5H6v14zm8-14v14h4V5h-4z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E");
}
.shaka-play-button[icon="replay"] {
  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%231f1f1f%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cpath%20d%3D%22M480-80q-75%200-140.5-28.5t-114-77q-48.5-48.5-77-114T120-440h80q0%20117%2081.5%20198.5T480-160q117%200%20198.5-81.5T760-440q0-117-81.5-198.5T480-720h-6l62%2062-56%2058-160-160%20160-160%2056%2058-62%2062h6q75%200%20140.5%2028.5t114%2077q48.5%2048.5%2077%20114T840-440q0%2075-28.5%20140.5t-77%20114q-48.5%2048.5-114%2077T480-80Z%22%2F%3E%0A%3C%2Fsvg%3E");
}
.shaka-current-time {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  width: auto;
  padding: 0 5px;
}
.shaka-current-time[disabled] {
  background-color: transparent;
  color: #fff;
  cursor: default;
}
.shaka-controls-container button:focus,
.shaka-controls-container input:focus {
  outline: 1px solid Highlight;
}
.shaka-controls-container button:-moz-focus-inner,
.shaka-controls-container input:-moz-focus-outer {
  outline: 0;
  border: 0;
}
.shaka-controls-container:not(.shaka-keyboard-navigation) button:focus,
.shaka-controls-container:not(.shaka-keyboard-navigation) input:focus {
  outline: 0;
}
.shaka-fast-forward-container,
.shaka-rewind-container {
  height: 100%;
  width: 100%;
  flex-shrink: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: default;
  font-size: 20px;
  opacity: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.shaka-fast-forward-container {
  border-radius: 40% 0 0 40%;
}
.shaka-rewind-container {
  border-radius: 0 40% 40% 0;
}
.shaka-forward-rewind-container-icon {
  font-family: "Material Icons Round";
  font-size: 34px;
}
.shaka-range-container {
  position: relative;
  top: 0;
  left: 0;
  margin: calc((12px - 4px) / 2) 6px;
  height: 4px;
  border-radius: 4px;
  background: #fff;
}
.shaka-volume-bar-container {
  width: 100px;
  padding: 0;
  transition-property: opacity, width;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}
.shaka-volume-bar-container:hover {
  width: 100px !important;
  opacity: 1 !important;
}
@media (max-width: 474px) {
  .shaka-volume-bar-container {
    width: 50px;
  }
  .shaka-volume-bar-container:hover {
    width: 50px !important;
  }
  .shaka-mute-button:hover + .shaka-volume-bar-container {
    width: 50px;
    opacity: 1;
  }
}
.shaka-mute-button + .shaka-volume-bar-container {
  width: 0;
  opacity: 0;
}
@media (min-width: 475px) {
  .shaka-mute-button:hover + .shaka-volume-bar-container {
    width: 100px;
    opacity: 1;
  }
}
.shaka-range-element {
  -webkit-appearance: none;
  background: 0 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  height: 12px;
  top: calc((4px - 12px) / 2);
  z-index: 1;
}
.shaka-range-element::-webkit-slider-runnable-track {
  width: 100%;
  cursor: pointer;
  height: 12px;
  background: 0 0;
  color: transparent;
  border: none;
}
.shaka-range-element::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  border-radius: 12px;
  height: 12px;
  width: 12px;
  background: #fff;
}
.shaka-range-element::-moz-range-track {
  width: 100%;
  cursor: pointer;
  height: 12px;
  background: 0 0;
  color: transparent;
  border: none;
}
.shaka-range-element::-moz-range-thumb {
  -webkit-appearance: none;
  border: none;
  border-radius: 12px;
  height: 12px;
  width: 12px;
  background: #fff;
}
.shaka-seek-bar-container {
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
  top: 5px;
  height: 5px;
  margin-bottom: 0;
  background-clip: padding-box !important;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.shaka-controls-container[casting="true"] .shaka-seek-bar-container,
.shaka-controls-container[shown="true"] .shaka-seek-bar-container {
  opacity: 1;
}
.shaka-seek-bar-container .shaka-seek-bar {
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 250ms;
  opacity: 0;
}
.shaka-seek-bar-container:hover .shaka-seek-bar {
  opacity: 1;
}
.shaka-ad-markers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.shaka-spacer {
  cursor: default;
  flex-shrink: 1;
  flex-grow: 1;
  margin: 0;
}
.shaka-overflow-menu,
.shaka-settings-menu {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: white rgba(0, 0, 0, 0.5);
  scrollbar-width: thin;
  white-space: nowrap;
  background: rgba(28, 28, 28, 0.9);
  border-radius: 2px;
  max-height: 250px;
  min-width: 190px;
  padding: 7px 0;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 0.6s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 62px;
}
.shaka-controls-container[casting="true"] .shaka-overflow-menu,
.shaka-controls-container[casting="true"] .shaka-settings-menu,
.shaka-controls-container[shown="true"] .shaka-overflow-menu,
.shaka-controls-container[shown="true"] .shaka-settings-menu {
  opacity: 1;
}
.shaka-overflow-menu button,
.shaka-settings-menu button {
  font-size: 14px;
  background: 0 0;
  color: #fff;
  border: none;
  min-height: 30px;
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.shaka-overflow-menu button:hover,
.shaka-settings-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.shaka-overflow-menu button label,
.shaka-settings-menu button label {
  cursor: pointer;
}
.shaka-keyboard-navigation .shaka-overflow-menu button:focus,
.shaka-keyboard-navigation .shaka-settings-menu button:focus {
  background: rgba(255, 255, 255, 0.1);
}
.shaka-overflow-menu i,
.shaka-settings-menu i {
  padding-left: 0;
  padding-right: 10px;
}
.shaka-overflow-menu i.shaka-chosen-item,
.shaka-settings-menu i.shaka-chosen-item {
  order: -1;
  line-height: 17px;
  font-size: 18px;
}
.shaka-overflow-menu.shaka-low-position,
.shaka-settings-menu.shaka-low-position {
  bottom: 48px;
}
.shaka-overflow-menu span {
  text-align: left;
}
.shaka-overflow-button-label {
  position: relative;
  display: flex;
  flex-direction: column;
}
.shaka-overflow-button-label-inline {
  box-sizing: border-box;
  flex-direction: row;
  justify-content: space-between;
  width: calc(100% - 34px);
  padding-right: 28px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjRweCIgZmlsbD0iI2VlZWVlZSI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTguNTkgMTYuNTlMMTMuMTcgMTIgOC41OSA3LjQxIDEwIDZsNiA2LTYgNi0xLjQxLTEuNDF6Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 24px 24px;
}
.shaka-simple-overflow-button-label-inline {
  box-sizing: border-box;
  flex-direction: row;
  justify-content: space-between;
  width: calc(100% - 50px);
}
.shaka-current-selection-span {
  font-size: 12px;
  padding-left: 10px;
}
.shaka-current-auto-quality {
  margin-left: 5px;
  font-size: 11px;
  color: #ccc;
}
.shaka-current-quality-mark,
.shaka-quality-mark {
  color: red;
  margin-left: 2px !important;
  font-size: 10px;
  height: 17px;
}
.shaka-quality-mark {
  line-height: 6px;
}
.shaka-overflow-playback-rate-mark,
.shaka-overflow-quality-mark {
  background: red;
  color: #fff;
  border-radius: 2px;
  font-family: Roboto, sans-serif, TengwarTelcontar;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  text-shadow: none;
  padding: 1px;
  position: absolute;
  right: 4px;
  top: 10px;
}
.shaka-settings-menu span {
  margin-left: 28px;
}
.shaka-settings-menu span.shaka-chosen-item {
  margin-left: 0;
}
.shaka-settings-menu .shaka-chapter {
  margin-left: 10px;
}
.shaka-back-to-overflow-button {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding-bottom: 17px !important;
  margin-bottom: 5px;
}
.shaka-back-to-overflow-button span {
  margin-left: 0;
}
.shaka-back-to-overflow-button i {
  padding-right: 10px;
  font-size: 18px !important;
}
.shaka-back-to-overflow-button:hover {
  background: 0 0 !important;
}
.shaka-controls-container[ad-active="true"] {
  pointer-events: none;
}
.shaka-controls-container[ad-active="true"] .shaka-bottom-controls {
  pointer-events: auto;
}
.shaka-client-side-ad-container,
.shaka-server-side-ad-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.shaka-video-container[shaka-controls="true"]
  .shaka-client-side-ad-container
  iframe,
.shaka-video-container[shaka-controls="true"]
  .shaka-server-side-ad-container
  iframe {
  height: 90%;
}
.shaka-server-side-ad-container {
  width: 100%;
  height: 100%;
  flex-shrink: 1;
}
.shaka-server-side-ad-container:not([ad-active="true"]) {
  pointer-events: none;
}
.shaka-ad-controls {
  display: flex;
  flex-direction: row;
  z-index: 1;
  padding-bottom: 1%;
}
.shaka-video-container:not([shaka-controls="true"]) .shaka-ad-controls {
  display: none;
}
.shaka-ad-controls button,
.shaka-ad-controls div {
  color: #fff;
  font-size: initial;
}
.shaka-ad-info {
  font-size: 14px;
  color: #fff;
  width: auto;
  padding: 0 5px;
}
.shaka-ad-info[disabled] {
  background-color: transparent;
  color: #fff;
  cursor: default;
  padding: 0;
}
.shaka-skip-ad-container {
  position: relative;
  right: calc((100% - 98%) / 2 * -1);
  display: flex;
  flex-direction: row;
  margin: 0;
  margin-left: auto;
}
.shaka-skip-ad-button {
  padding: 5px 15px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  cursor: pointer;
}
.shaka-skip-ad-button:disabled {
  background: rgba(0, 0, 0, 0.3);
}
.shaka-skip-ad-counter {
  padding: 5px;
  background: rgba(0, 0, 0, 0.7);
  margin: 0;
} /*!
 * @license
 * The tooltip is based on https://github.com/felipefialho/css-components/
 * Local modifications have been performed.
 *
 * Copyright (c) 2017 Felipe Fialho
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
.shaka-tooltips-on {
  overflow: visible;
}
.shaka-tooltips-on > .shaka-tooltip,
.shaka-tooltips-on > .shaka-tooltip-status {
  position: relative;
}
.shaka-tooltips-on > .shaka-tooltip-status:active:after,
.shaka-tooltips-on > .shaka-tooltip-status:focus-visible:after,
.shaka-tooltips-on > .shaka-tooltip-status:hover:after,
.shaka-tooltips-on > .shaka-tooltip:active:after,
.shaka-tooltips-on > .shaka-tooltip:focus-visible:after,
.shaka-tooltips-on > .shaka-tooltip:hover:after {
  content: attr(aria-label);
  font-family: Roboto, sans-serif, TengwarTelcontar;
  line-height: 20px;
  white-space: nowrap;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 2px;
  padding: 2px 10px;
  position: absolute;
  bottom: 62px;
  left: calc(48px / 2);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.shaka-tooltips-on.shaka-tooltips-low-position > .shaka-tooltip:active:after,
.shaka-tooltips-on.shaka-tooltips-low-position
  > .shaka-tooltip:focus-visible:after,
.shaka-tooltips-on.shaka-tooltips-low-position > .shaka-tooltip:hover:after {
  bottom: 48px;
}
.shaka-tooltips-on > .shaka-tooltip-status:active:after,
.shaka-tooltips-on > .shaka-tooltip-status:focus-visible:after,
.shaka-tooltips-on > .shaka-tooltip-status:hover:after {
  content: attr(aria-label) " (" attr(shaka-status) ")";
}
.shaka-tooltips-on button:first-child:active:after,
.shaka-tooltips-on button:first-child:focus-visible:after,
.shaka-tooltips-on button:first-child:hover:after {
  left: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.shaka-tooltips-on button:last-child:active:after,
.shaka-tooltips-on button:last-child:focus-visible:after,
.shaka-tooltips-on button:last-child:hover:after {
  left: 48px;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
#shaka-player-ui-thumbnail-container {
  background-color: #000;
  border: 1px solid #000;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.5);
  min-width: 150px;
  overflow: hidden;
  position: absolute;
  visibility: hidden;
  width: 15%;
  z-index: 1;
  pointer-events: none;
}
#shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-image {
  position: absolute;
}
#shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-time-container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
}
#shaka-player-ui-thumbnail-container
  #shaka-player-ui-thumbnail-time-container
  #shaka-player-ui-thumbnail-time {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  padding: 0 5px;
}
#shaka-player-ui-thumbnail-container.portrait-thumbnail {
  min-width: 75px;
  width: 7.5%;
}
#shaka-player-ui-time-container {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-size: 14px;
  justify-content: center;
  overflow: hidden;
  padding: 0 3px;
  position: absolute;
  visibility: hidden;
  z-index: 1;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url("./fonts/roboto-v48.ttf") format("truetype");
}
@font-face {
  font-family: "Material Icons Round";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/material-icons-round.otf") format("opentype");
}
.material-icons-round {
  font-family: "Material Icons Round";
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/roboto-v27-regular.ttf") format("truetype");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/roboto-v27-medium.ttf") format("truetype");
}
.youtube-theme {
  font-family: Roboto, sans-serif;
}
.youtube-theme .shaka-bottom-controls {
  width: 100%;
  padding: 0;
  padding-bottom: 0;
  z-index: 1;
}
.youtube-theme .shaka-bottom-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.youtube-theme .shaka-ad-controls {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.youtube-theme .shaka-controls-button-panel {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.youtube-theme .shaka-range-container {
  margin: 4px 10px 4px 10px;
  top: 0;
}
.youtube-theme .shaka-small-play-button {
  -webkit-box-ordinal-group: -2;
  -ms-flex-order: -3;
  order: -3;
}
.youtube-theme .shaka-mute-button {
  -webkit-box-ordinal-group: -1;
  -ms-flex-order: -2;
  order: -2;
}
.youtube-theme .shaka-controls-button-panel > * {
  margin: 0;
  padding: 3px 8px;
  color: #eee;
  height: 40px;
}
.youtube-theme .shaka-controls-button-panel > :focus {
  outline: 0;
  -webkit-box-shadow: inset 0 0 0 2px rgba(27, 127, 204, 0.8);
  box-shadow: inset 0 0 0 2px rgba(27, 127, 204, 0.8);
  color: #fff;
}
.youtube-theme .shaka-controls-button-panel > :hover {
  color: #fff;
}
.youtube-theme .shaka-controls-button-panel .shaka-volume-bar-container {
  position: relative;
  z-index: 10;
  left: -1px;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  opacity: 0;
  width: 0;
  -webkit-transition: width 0.2s cubic-bezier(0.4, 0, 1, 1);
  height: 3px;
  transition: width 0.2s cubic-bezier(0.4, 0, 1, 1);
  padding: 0;
}
.youtube-theme .shaka-controls-button-panel .shaka-volume-bar-container:focus,
.youtube-theme .shaka-controls-button-panel .shaka-volume-bar-container:hover {
  display: block;
  width: 50px;
  opacity: 1;
  padding: 0 6px;
}
.youtube-theme .shaka-mute-button:hover + div {
  opacity: 1;
  width: 50px;
  padding: 0 6px;
}
.youtube-theme .shaka-current-time {
  padding: 0 10px;
  font-size: 12px;
}
.youtube-theme .shaka-seek-bar-container {
  height: 11px;
  position: relative;
  top: -1px;
  border-radius: 0;
  margin-bottom: 0;
}
.youtube-theme .shaka-seek-bar-container .shaka-range-element {
  opacity: 1;
}
.youtube-theme .shaka-seek-bar-container .shaka-seek-bar {
  opacity: 1;
}
.youtube-theme .shaka-seek-bar-container:hover {
  height: 13px;
  top: -2px;
  cursor: pointer;
}
.youtube-theme .shaka-seek-bar-container:hover .shaka-range-element {
  opacity: 1;
  cursor: pointer;
}
.youtube-theme
  .shaka-seek-bar-container
  input[type="range"]::-webkit-slider-thumb {
  background: red;
  cursor: pointer;
}
.youtube-theme .shaka-seek-bar-container input[type="range"]::-moz-range-thumb {
  background: red;
  cursor: pointer;
}
.youtube-theme .shaka-seek-bar-container input[type="range"]::-ms-thumb {
  background: red;
  cursor: pointer;
}
.youtube-theme .shaka-video-container * {
  font-family: Roboto, sans-serif;
}
.youtube-theme .shaka-video-container .material-icons-round {
  font-family: "Material Icons Sharp";
}
.youtube-theme .shaka-overflow-menu,
.youtube-theme .shaka-settings-menu {
  border-radius: 2px;
  background: rgba(28, 28, 28, 0.9);
  text-shadow: 0 0 2px rgb(0 0 0%);
  -webkit-transition: opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  right: 10px;
  bottom: 50px;
  padding: 8px 0;
  min-width: 200px;
}
.youtube-theme .shaka-settings-menu {
  padding: 0 0 8px 0;
}
.youtube-theme .shaka-settings-menu button {
  font-size: 12px;
}
.youtube-theme .shaka-settings-menu button span {
  margin-left: 33px;
  font-size: 13px;
}
.youtube-theme .shaka-settings-menu button[aria-selected="true"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.youtube-theme .shaka-settings-menu button[aria-selected="true"] span {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: 0;
}
.youtube-theme .shaka-settings-menu button[aria-selected="true"] i {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  font-size: 18px;
  padding-left: 5px;
}
.youtube-theme .shaka-overflow-menu button {
  padding: 0;
}
.youtube-theme .shaka-overflow-menu button i {
  display: none;
}
.youtube-theme .shaka-overflow-menu button .shaka-overflow-button-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  outline: 0;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.youtube-theme .shaka-overflow-menu button .shaka-overflow-button-label span {
  -ms-flex-negative: initial;
  flex-shrink: initial;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.youtube-theme .shaka-overflow-menu span + span {
  color: #fff;
  font-weight: 400 !important;
  font-size: 12px !important;
  padding-right: 8px;
  padding-left: 0 !important;
}
.youtube-theme .shaka-overflow-button-label-inline {
  background-image: none !important;
}
.youtube-theme .shaka-overflow-menu span + span:after {
  display: none !important;
}
.youtube-theme .shaka-overflow-menu .shaka-pip-button span + span {
  padding-right: 15px !important;
}
.youtube-theme .shaka-overflow-menu .shaka-pip-button span + span:after {
  content: "";
}
.youtube-theme .shaka-back-to-overflow-button {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: #eee;
  height: 40px;
}
.youtube-theme .shaka-back-to-overflow-button .material-icons-round {
  font-size: 15px;
  padding-right: 10px;
}
.youtube-theme .shaka-back-to-overflow-button span {
  margin-left: 3px !important;
}
.youtube-theme .shaka-overflow-menu button:hover,
.youtube-theme .shaka-settings-menu button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.youtube-theme .shaka-overflow-menu button:hover label,
.youtube-theme .shaka-settings-menu button:hover label {
  cursor: pointer;
}
.youtube-theme .shaka-overflow-menu button:focus,
.youtube-theme .shaka-settings-menu button:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  outline: 0;
}
.youtube-theme .shaka-overflow-menu button,
.youtube-theme .shaka-settings-menu button {
  color: #eee;
}
.youtube-theme .shaka-captions-off {
  color: #bfbfbf;
}
.youtube-theme .shaka-overflow-menu-button {
  font-size: 18px;
  margin-right: 5px;
}
.youtube-theme .shaka-fullscreen-button:hover {
  font-size: 25px;
  -webkit-transition: font-size 0.1s cubic-bezier(0, 0, 0.2, 1);
  transition: font-size 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.video-container {
  position: relative;
}
.watermark {
  position: absolute;
  left: 1.5%;
  top: 3%;
  opacity: 0.4;
}
.shaka-text-container {
  font-size: 24px;
  text-shadow: 2px 2px 0 #000;
}
@media (max-width: 768px) {
  .shaka-text-container {
    font-size: 18px;
    text-shadow: 1px 1px 0 #000;
  }
}
.shaka-controls-container[shown="true"] ~ .shaka-text-container {
  bottom: 15% !important;
}
.shaka-text-container {
  bottom: 5% !important;
}
.shaka-text-container span {
  background: 0 0 !important;
}
.kijkwijzer {
  display: inline-block;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  margin-right: 4px;
}
.kijkwijzer-AL {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-4.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20showgrid%3D%22false%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22alle-leeftijden%22%3E%0A%20%20%20%20%20%20%3Crect%0A%20%20%20%20%20%20%20%20%20x%3D%227.73%22%0A%20%20%20%20%20%20%20%20%20y%3D%227.05%22%0A%20%20%20%20%20%20%20%20%20width%3D%221.87%22%0A%20%20%20%20%20%20%20%20%20height%3D%225.89%22%0A%20%20%20%20%20%20%20%20%20transform%3D%22translate%28-0.02%200.01%29%20rotate%28-0.09%29%22%0A%20%20%20%20%20%20%20%20%20id%3D%22rect1%22%20%2F%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C0%2C0%2C0%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C24h0A12%2C12%2C0%2C0%2C0%2C12%2C0ZM9.62%2C19.43v-4H7.74v4H5l0-13a.87.87%2C0%2C0%2C1%2C.22-.55l1.1-1.13a.67.67%2C0%2C0%2C1%2C.55-.22H10.5a.7.7%2C0%2C0%2C1%2C.55.22l1.11%2C1.16a.82.82%2C0%2C0%2C1%2C.22.52l0%2C13Zm4.54%2C0%2C0-14.89h2.78V17.08h2.48v2.34Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23alle-leeftijden%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-6 {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-5.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2242.947174%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221350%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221032%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%222101%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%2216%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%220%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22leeftijd-6%22%3E%0A%20%20%20%20%20%20%3Crect%0A%20%20%20%20%20%20%20%20%20x%3D%2210.93%22%0A%20%20%20%20%20%20%20%20%20y%3D%2213.02%22%0A%20%20%20%20%20%20%20%20%20width%3D%222.17%22%0A%20%20%20%20%20%20%20%20%20height%3D%223.91%22%0A%20%20%20%20%20%20%20%20%20transform%3D%22translate%28-0.02%200.02%29%20rotate%28-0.09%29%22%0A%20%20%20%20%20%20%20%20%20id%3D%22rect1%22%20%2F%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C0%2C0%2C0%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C24h0A12%2C12%2C0%2C0%2C0%2C12%2C0Zm3.8%2C18.1-1.1%2C1.11a.7.7%2C0%2C0%2C1-.55.22H9.89a.66.66%2C0%2C0%2C1-.55-.21l-1.1-1.13A.82.82%2C0%2C0%2C1%2C8%2C17.54L8%2C6.45a.75.75%2C0%2C0%2C1%2C.22-.53L9.29%2C4.79a.72.72%2C0%2C0%2C1%2C.55-.22h4.27a.7.7%2C0%2C0%2C1%2C.55.22l1.1%2C1.13a.82.82%2C0%2C0%2C1%2C.22.55V9H13.07V7.1H10.92v4.27l.68-.61a.67.67%2C0%2C0%2C1%2C.53-.22h2a.74.74%2C0%2C0%2C1%2C.52.22l1.13%2C1.07a.64.64%2C0%2C0%2C1%2C.22.55v5.17a.7.7%2C0%2C0%2C1-.22.55Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23leeftijd-6%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-9 {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-6.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22leeftijd-9%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0a12%2C12%2C0%2C0%2C0%2C0%2C24h0A12%2C12%2C0%2C0%2C0%2C24%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C0Zm3.8%2C18.08-1.07%2C1.13a.7.7%2C0%2C0%2C1-.55.22H9.89a.66.66%2C0%2C0%2C1-.55-.21l-1.1-1.13A.82.82%2C0%2C0%2C1%2C8%2C17.54V15h2.92v1.9h2.14V12.63l-.69.61a.65.65%2C0%2C0%2C1-.52.22h-2a.74.74%2C0%2C0%2C1-.52-.22L8.23%2C12.17A.67.67%2C0%2C0%2C1%2C8%2C11.62V6.45a.74.74%2C0%2C0%2C1%2C.22-.56l1.1-1.1a.7.7%2C0%2C0%2C1%2C.55-.22h4.24a.7.7%2C0%2C0%2C1%2C.55.22l1.1%2C1.13a.82.82%2C0%2C0%2C1%2C.22.55l0%2C11.09a.75.75%2C0%2C0%2C1-.22.53Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%20%20%3Crect%0A%20%20%20%20%20%20%20%20%20x%3D%2210.89%22%0A%20%20%20%20%20%20%20%20%20y%3D%227.07%22%0A%20%20%20%20%20%20%20%20%20width%3D%222.17%22%0A%20%20%20%20%20%20%20%20%20height%3D%223.91%22%0A%20%20%20%20%20%20%20%20%20transform%3D%22translate%28-0.01%200.02%29%20rotate%28-0.09%29%22%0A%20%20%20%20%20%20%20%20%20id%3D%22rect1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23leeftijd-9%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-12 {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-7.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22leeftijd-12%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C0%2C0%2C0%2C11.93V12A12%2C12%2C0%2C0%2C0%2C12%2C24h0A12%2C12%2C0%2C0%2C0%2C24%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C0ZM6%2C19.44%2C6%2C6.92H4.12V5.46l2.28-.8a1.05%2C1.05%2C0%2C0%2C1%2C.52-.08h2l0%2C14.87Zm8.06-2.63h5.07v2.61h-8v-5a.65.65%2C0%2C0%2C1%2C.25-.55L16.24%2C10V7.12H14.08v2h-3V6.47a.8.8%2C0%2C0%2C1%2C.22-.55l1.1-1.13A.64.64%2C0%2C0%2C1%2C13%2C4.57h4.29a.66.66%2C0%2C0%2C1%2C.55.22l1.11%2C1.13a.8.8%2C0%2C0%2C1%2C.22.55V11a.62.62%2C0%2C0%2C1-.24.55l-4.84%2C3.92Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23leeftijd-12%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-14 {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg2%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-8.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview2%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg2%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs2%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22leeftijd-14%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C1%2C0%2C24%2C12h0A12%2C12%2C0%2C0%2C0%2C12%2C0ZM6%2C19.44%2C6%2C6.92H4.12V5.46l2.28-.8a1.08%2C1.08%2C0%2C0%2C1%2C.53-.08h2l0%2C14.87Zm12.47%2C0H15.59V16.32h-5V14.18a1.23%2C1.23%2C0%2C0%2C1%2C.11-.53l3.45-8.73a.5.5%2C0%2C0%2C1%2C.5-.35h3.8v9.3h.91v2.45h-.9Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M13.05%2C13.84h2.53V7.59Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path2%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23leeftijd-14%22%0A%20%20%20%20%20id%3D%22use2%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-16 {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-9.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22leeftijd-16%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C1%2C0%2C24%2C12h0A12%2C12%2C0%2C0%2C0%2C12%2C0ZM6%2C19.44%2C6%2C6.92H4.12V5.46l2.28-.8a1.05%2C1.05%2C0%2C0%2C1%2C.52-.08h2l0%2C14.87ZM18.84%2C18.1l-1.1%2C1.1a.73.73%2C0%2C0%2C1-.55.22H13a.64.64%2C0%2C0%2C1-.55-.22l-1.11-1.13a.84.84%2C0%2C0%2C1-.22-.55V6.47A.73.73%2C0%2C0%2C1%2C11.28%2C6l1.07-1.16a.64.64%2C0%2C0%2C1%2C.55-.22h4.26a.69.69%2C0%2C0%2C1%2C.56.22l1.1%2C1.13a.8.8%2C0%2C0%2C1%2C.22.55V9H16.13V7.1H14v4.29l.69-.63a.74.74%2C0%2C0%2C1%2C.52-.22h2a.84.84%2C0%2C0%2C1%2C.55.22l1.11%2C1.08a.69.69%2C0%2C0%2C1%2C.22.55v5.17a.68.68%2C0%2C0%2C1-.23.55Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%20%20%3Crect%0A%20%20%20%20%20%20%20%20%20x%3D%2213.99%22%0A%20%20%20%20%20%20%20%20%20y%3D%2213.01%22%0A%20%20%20%20%20%20%20%20%20width%3D%222.17%22%0A%20%20%20%20%20%20%20%20%20height%3D%223.91%22%0A%20%20%20%20%20%20%20%20%20transform%3D%22matrix%281%2C%200%2C%200%2C%201%2C%20-0.02%2C%200.02%29%22%0A%20%20%20%20%20%20%20%20%20id%3D%22rect1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23leeftijd-16%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-18 {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg2%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-10.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview2%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg2%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs2%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22leeftijd-18%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C1%2C0%2C24%2C12h0A12%2C12%2C0%2C0%2C0%2C12%2C0ZM6%2C19.44%2C6%2C6.92H4.12V5.46l2.28-.8a1.05%2C1.05%2C0%2C0%2C1%2C.52-.08h2l0%2C14.87ZM18.84%2C18.1l-1.1%2C1.1a.73.73%2C0%2C0%2C1-.55.22H13a.8.8%2C0%2C0%2C1-.55-.22l-1.11-1.07a.7.7%2C0%2C0%2C1-.22-.55V13.35a.64.64%2C0%2C0%2C1%2C.22-.55l1-1-1.05-1a.7.7%2C0%2C0%2C1-.22-.55V6.47A.73.73%2C0%2C0%2C1%2C11.28%2C6l1.07-1.16a.64.64%2C0%2C0%2C1%2C.55-.22h4.26a.7.7%2C0%2C0%2C1%2C.55.22l1.11%2C1.13a.8.8%2C0%2C0%2C1%2C.22.55v3.71a.64.64%2C0%2C0%2C1-.22.55l-1%2C1%2C1%2C1a.7.7%2C0%2C0%2C1%2C.22.55v4.24a.66.66%2C0%2C0%2C1-.21.55Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%20%20%3Crect%0A%20%20%20%20%20%20%20%20%20x%3D%2213.98%22%0A%20%20%20%20%20%20%20%20%20y%3D%227.1%22%0A%20%20%20%20%20%20%20%20%20width%3D%222.15%22%0A%20%20%20%20%20%20%20%20%20height%3D%223.44%22%0A%20%20%20%20%20%20%20%20%20transform%3D%22translate%28-0.01%200.02%29%20rotate%28-0.09%29%22%0A%20%20%20%20%20%20%20%20%20id%3D%22rect1%22%20%2F%3E%0A%20%20%20%20%20%20%3Crect%0A%20%20%20%20%20%20%20%20%20x%3D%2213.99%22%0A%20%20%20%20%20%20%20%20%20y%3D%2213.01%22%0A%20%20%20%20%20%20%20%20%20width%3D%222.17%22%0A%20%20%20%20%20%20%20%20%20height%3D%223.91%22%0A%20%20%20%20%20%20%20%20%20transform%3D%22translate%28-0.02%200.02%29%20rotate%28-0.09%29%22%0A%20%20%20%20%20%20%20%20%20id%3D%22rect2%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23leeftijd-18%22%0A%20%20%20%20%20id%3D%22use2%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-G {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-11.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22geweld%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C0%2C0%2C0%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C24h0A12%2C12%2C0%2C0%2C0%2C24%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C0ZM7.58%2C20a2.85%2C2.85%2C0%2C0%2C1-.91-3.41A3.37%2C3.37%2C0%2C0%2C1%2C2.45%2C13.2C2.45%2C11%2C3.9%2C9.07%2C6.08%2C9.06a4.21%2C4.21%2C0%2C0%2C1%2C2.37.77c2.28%2C1.54%2C3.25%2C2.67%2C3%2C3.49a1%2C1%2C0%2C0%2C1-.66.58c-1.07.31-3.85-.74-4.93-2.3-.22-.33-1.24.49-.49%2C1.35a4.85%2C4.85%2C0%2C0%2C0%2C2.42%2C1.51%2C2.4%2C2.4%2C0%2C0%2C0%2C.39%2C1.37%2C2.21%2C2.21%2C0%2C0%2C0%2C2.51.77%2C3.07%2C3.07%2C0%2C0%2C0-.36%2C1.32A1.76%2C1.76%2C0%2C0%2C0%2C12%2C19.54C11%2C21%2C8.55%2C20.73%2C7.58%2C20Zm3.65-9.17c1.13-.88%2C2.28-.88%2C3%2C.16%2C1%2C1.35-.39%2C2.67-1.46%2C3.47-2.14%2C1.66-3.19%2C1.38-3.77.64a1.38%2C1.38%2C0%2C0%2C1-.25-.55%2C4.35%2C4.35%2C0%2C0%2C0%2C2.4.05%2C1.72%2C1.72%2C0%2C0%2C0%2C1.13-1%2C2.88%2C2.88%2C0%2C0%2C0-1.08-2.73Zm-.55-.38A11.77%2C11.77%2C0%2C0%2C0%2C9.3%2C9.33a7.93%2C7.93%2C0%2C0%2C0-1.93-.85c1-.8%2C2.56-1.65%2C3.58-.47a1.67%2C1.67%2C0%2C0%2C1-.27%2C2.48Zm1%2C7.65c-.44-.61-.25-1.54%2C1.26-2.67.82-.64%2C1.84-1.27%2C2.59-.23s-.22%2C2-1.05%2C2.62c-1.34%2C1.1-2.47.69-2.8.28Zm9.21-2.91s-1.56.92-3.32%2C1.85c.11.75.39%2C3.2.39%2C3.2.08.52-.28.71-.53.66l-3-1.07c-.11%2C0-.16-.19-.11-.36a.22.22%2C0%2C0%2C1%2C.23-.18l0%2C0%2C2.34.27-.45-2.56a1%2C1%2C0%2C0%2C1%2C.44-.83l2.18-1.52-3.23-2.39a.51.51%2C0%2C0%2C1%2C0-.66l2.36-3.74L13.89%2C8a.56.56%2C0%2C0%2C1-.52-.52l-.47-3L10.62%2C6.08a.89.89%2C0%2C0%2C1-1.08.09L7.59%2C4.58%2C7.26%2C7.14c0%2C.33-.69.49-.69%2C0l0-3.78A.51.51%2C0%2C0%2C1%2C7%2C2.82a.48.48%2C0%2C0%2C1%2C.31.08l2.72%2C2.44c1.19-1.16%2C2.62-2.45%2C3.17-2.92a.58.58%2C0%2C0%2C1%2C1%2C.27s.16%2C2.53.2%2C4.13L19%2C6.13a1.09%2C1.09%2C0%2C0%2C1%2C1.13%2C1.76%2C46.81%2C46.81%2C0%2C0%2C1-3.05%2C4c1.93.94%2C3.72%2C1.87%2C3.72%2C1.87a.88.88%2C0%2C0%2C1%2C.38%2C1.18.8.8%2C0%2C0%2C1-.3.33Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23geweld%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-A {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-12.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22angst%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C1%2C0%2C24%2C12h0A12%2C12%2C0%2C0%2C0%2C12%2C0Zm5.11%2C13.07c-.74.13-4%2C0-4%2C.25s2.86.63%2C3.38.82A8.09%2C8.09%2C0%2C0%2C1%2C19%2C15.79c.52.77%2C1%2C3.93-.3%2C4-.55%2C0-.72-2.94-.94-3.36A9%2C9%2C0%2C0%2C0%2C15.83%2C15a12.3%2C12.3%2C0%2C0%2C0-3-.88c-.06.25%2C2%2C1.35%2C2.53%2C2a6.32%2C6.32%2C0%2C0%2C1%2C.72%2C2.83c0%2C.58-1.45%2C3.36-2.42%2C2.87-.35-.2.93-2.78.93-3.06a8.31%2C8.31%2C0%2C0%2C0-.11-1.93c-.17-.49-1.46-2-1.71-1.87s.17%2C1.49-.27%2C1.49-.25-1.51-.64-1.51-.27%2C1.51-.63%2C1.51S11.1%2C15%2C11%2C15s-1.55%2C1.37-1.71%2C1.87a8.9%2C8.9%2C0%2C0%2C0-.1%2C1.93c0%2C.27%2C1.32%2C2.86.94%2C3.05-1%2C.5-2.4-2.28-2.43-2.86a6.72%2C6.72%2C0%2C0%2C1%2C.71-2.83c.55-.66%2C2.56-1.77%2C2.53-2A13.23%2C13.23%2C0%2C0%2C0%2C8%2C15%2C9.39%2C9.39%2C0%2C0%2C0%2C6%2C16.41c-.22.42-.35%2C3.39-.93%2C3.36-1.26%2C0-.83-3.19-.31-4a8.38%2C8.38%2C0%2C0%2C1%2C2.56-1.66c.55-.19%2C3.38-.55%2C3.36-.83s-3.25-.1-4-.24a12%2C12%2C0%2C0%2C1-3.44-1.62c-.72-.74-1.33-3.93%2C0-5.34.33-.35.86%2C3.88%2C1.19%2C4.3A8.3%2C8.3%2C0%2C0%2C0%2C7%2C12.17c.3.06%2C3.8.58%2C3.88.3S7.79%2C11.46%2C7%2C11c-1-.54-1.46-3.76-1.3-4.64.17-1.16%2C2.39-4.88%2C4-4.3.42.13-2.36%2C4-2.47%2C4.68-.08.38%2C0%2C3.14.48%2C3.41a20.13%2C20.13%2C0%2C0%2C0%2C3.5%2C1.56c.13-.24-2.13-1.84-2.13-2.75%2C0-1.84%2C2-4.48%2C2.75-4.49S14.63%2C7.15%2C14.64%2C9c0%2C.9-2.26%2C2.5-2.12%2C2.75A21.06%2C21.06%2C0%2C0%2C0%2C16%2C10.18c.42-.28.52-3%2C.44-3.42-.11-.68-2.9-4.53-2.46-4.67%2C1.6-.58%2C3.83%2C3.13%2C4%2C4.29.17.88-.3%2C4.1-1.29%2C4.65-.74.41-3.93%2C1.19-3.85%2C1.44s3.58-.26%2C3.91-.31a9.2%2C9.2%2C0%2C0%2C0%2C2.61-1.77c.3-.41.85-4.65%2C1.18-4.29%2C1.32%2C1.37.67%2C4.59%2C0%2C5.34a12.73%2C12.73%2C0%2C0%2C1-3.44%2C1.63Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23angst%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-S {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-13.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22seks%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C1%2C0%2C24%2C12%2C12%2C12%2C0%2C0%2C0%2C12%2C0Zm-8%2C8.74a.74.74%2C0%2C0%2C1%2C1.43-.2c.31.77-.35%2C2.26-.79%2C2.21S3.85%2C9.4%2C3.93%2C8.74Zm-2.2%2C3c-.41-.52%2C0-1.18.33-.94-.27-.52.22-1.1.55-.85-.06-.72.63-.94.91-.36s.14%2C1.18%2C0%2C1.32-.39%2C0-.5-.08c.08.22%2C0%2C.49-.08.55a.35.35%2C0%2C0%2C1-.48-.05l0%2C0a.55.55%2C0%2C0%2C1%2C0%2C.58c-.11.13-.44.16-.69-.14ZM7%2C20.26c-.63.17-1.54-.46-2.95-2.69S2.43%2C14.49%2C2.34%2C13.5a2.27%2C2.27%2C0%2C0%2C1%2C1.4-2.07c.85-.33%2C1.79-.25%2C1.93.83.22%2C1.24-2.2%2C2.89-1%2C4.6%2C1.24%2C1.92%2C2.18.65%2C2.89%2C1.75A1.07%2C1.07%2C0%2C0%2C1%2C7%2C20.26ZM9%2C16.13c-.22.8-1%2C.67-1-.22-.32.39-1-.24-.74-.9-.41.36-.91-.39-.52-1.13.22-.44.6-.47.74-.39a.69.69%2C0%2C0%2C1%2C.08.72A.42.42%2C0%2C0%2C1%2C8%2C14a.76.76%2C0%2C0%2C1%2C.17.71c.11-.22.36-.39.55-.28s.36%2C1.1.22%2C1.68ZM11%2C17.26c-.32.88-1.45.69-1.62-.25-.11-.74.19-2.42.57-2.48S11.37%2C16.32%2C11%2C17.26ZM11.38%2C4.6C11%2C6%2C9.84%2C4.85%2C9.08%2C7.79%2C8.53%2C10.05%2C10.9%2C10.9%2C11%2C12.3c.14%2C1.22-.58%2C1.71-1.51%2C1.63A2.87%2C2.87%2C0%2C0%2C1%2C7.21%2C12C7%2C10.93%2C7.13%2C9.89%2C8%2C7.11s1.7-4.38%2C2.41-4.27A1.29%2C1.29%2C0%2C0%2C1%2C11.38%2C4.6Zm7.28%2C3.92a.71.71%2C0%2C0%2C1%2C.91-.45.73.73%2C0%2C0%2C1%2C.49.64c.08.66-.27%2C2-.6%2C2s-1.13-1.43-.8-2.2Zm-5-5.69c.71-.11%2C1.6%2C1.4%2C2.43%2C4.26s1%2C3.83.75%2C4.88a2.84%2C2.84%2C0%2C0%2C1-2.28%2C1.95c-.94.09-1.66-.41-1.55-1.62.14-1.4%2C2.5-2.26%2C1.92-4.52C14.14%2C4.84%2C13.06%2C6%2C12.62%2C4.6a1.3%2C1.3%2C0%2C0%2C1%2C1-1.77ZM14.59%2C17c-.16.93-1.26%2C1.13-1.59.25s.52-2.78%2C1-2.73.72%2C1.73.59%2C2.48Zm.47-.89c-.14-.57%2C0-1.54.25-1.68s.41.06.52.28A.93.93%2C0%2C0%2C1%2C16%2C14a.41.41%2C0%2C0%2C1%2C.55.18h0a.78.78%2C0%2C0%2C1%2C.11-.71c.11-.08.5-.06.72.38.39.75-.11%2C1.49-.52%2C1.13.25.66-.41%2C1.3-.74.91%2C0%2C.88-.83%2C1-1%2C.22Zm6.63-2.65c-.08%2C1-.38%2C2-1.73%2C4.08s-2.33%2C2.86-3%2C2.7a1.09%2C1.09%2C0%2C0%2C1-.49-1.65c.71-1.1%2C1.65.16%2C2.91-1.77%2C1.13-1.71-1.27-3.35-1.05-4.59.16-1.08%2C1-1.16%2C1.9-.83a2.28%2C2.28%2C0%2C0%2C1%2C1.43%2C2.06Zm-.08-1.62a.48.48%2C0%2C0%2C1%2C0-.58.34.34%2C0%2C0%2C1-.47.1l0%2C0A.63.63%2C0%2C0%2C1%2C21%2C10.8c-.11.11-.33.22-.47.09s-.25-.88-.06-1.33%2C1-.35.88.36c.33-.25.86.33.55.85.36-.24.75.42.34.94a.44.44%2C0%2C0%2C1-.59.19l-.08-.05Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23seks%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-T {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-14.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22grof-taalgebruik%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C0%2C0%2C0%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C24h0A12%2C12%2C0%2C0%2C0%2C24%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C0ZM8.05%2C4.13c.5.22.91%2C2%2C1.19%2C2.07s1.18-.89%2C1.65-.89%2C1.38.91%2C1.71%2C1.38c.19.24%2C0%2C.44-.22.3a5.28%2C5.28%2C0%2C0%2C0-1.57-.74c-.3%2C0-1.38%2C1.51-2%2C1.38S8%2C5.51%2C7.53%2C5.43c-.77-.14-2%2C1.9-2.45.36s2.26-2%2C3-1.66Zm2.6%2C5.73c-.28.3-.38%2C3.44-1.1%2C3.79s-2.83-1.78-3.19-1.72-.49%2C4-1.78%2C4.7a1.25%2C1.25%2C0%2C1%2C1-.92-2.25c1-.3.93-4%2C1.87-4.46.74-.36%2C3.22%2C2.22%2C3.52%2C2.06s.61-2.65%2C1-3a15.51%2C15.51%2C0%2C0%2C1%2C3.36-.83c.33%2C0%2C.38.33.11.49-.74.36-2.73.94-2.89%2C1.17Zm8.15.56c-1.3%2C1.71-2.18%2C1.68-2.31%2C2.18-.25%2C1%2C1%2C.6.85%2C1.87-.13%2C1-.79%2C1.35-.87%2C2.92-.06%2C1.32.77%2C3.6.22%2C3.79C16%2C21.41%2C15%2C17.94%2C14.29%2C18s0%2C4.35-.76%2C4.19c-1.27-.33-2.32-7.18-.65-9%2C.88-.91%2C1.6-.28%2C2-.89.52-.85-1.32-.74-.66-2.78%2C1.13%2C1.68%2C2.37%2C2%2C3.16%2C1.07a3%2C3%2C0%2C0%2C0-2.23-4.9A2.55%2C2.55%2C0%2C0%2C1%2C19.2%2C4.8c1.52%2C1.19.7%2C4.13-.4%2C5.62Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23grof-taalgebruik%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-D {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-15.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22discriminatie%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C1%2C0%2C24%2C12h0A12%2C12%2C0%2C0%2C0%2C12%2C0Zm2%2C21.46a15.63%2C15.63%2C0%2C0%2C1-1.93.12c.55-1%2C1.29-2.81%2C1.65-2.84s.35%2C1.71.27%2C2.72Zm1.12-.24c.8-2%2C1.29-7.22-.78-8.67-1.13-.83-1.84.36-2-.28-.42-1.43-1.27-4.07-2.87-3.1a2%2C2%2C0%2C0%2C0-.19%2C3.14c.94.55%2C2.26.6%2C2.29.85.08.57-1.32%2C1-.33%2C2.86%2C1.3%2C2.36.09%2C4.46-.29%2C5.56-3.58-.24-7.55-3.21-8-6.18C2.42%2C12%2C4.54%2C12.84%2C4.41%2C11.87%2C4.24%2C10.58%2C1%2C7.34%2C4%2C6.76s1.3%2C3.57%2C1.57%2C4.78c.11.5%2C1-.3%2C1.46-.41a12.22%2C12.22%2C0%2C0%2C1-.06-1.71c.41-1.93%2C2.15-1.46%2C2-2.31s-3-4.62.18-4.79c3-.15%2C1.11%2C3.43%2C1.17%2C4.56S12.3%2C7%2C12.91%2C9c.57-.33%2C1.15-.28%2C1.23-.72.25-1.24-2.54-5.45%2C1-5.09%2C3.08.3.44%2C3.85.34%2C5s1.57.9%2C1.84%2C1.89a5.24%2C5.24%2C0%2C0%2C1%2C.09%2C2c.55-.17%2C1.35-.22%2C1.35-.77%2C0-1.16-1.77-4.48%2C1-4.54s.26%2C3.93.15%2C4.84%2C1.65.22%2C1.44%2C2.78-2.94%2C5.92-6.19%2C6.81Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23discriminatie%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-H {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2286%22%0A%20%20%20height%3D%2286%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg4%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-16.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview4%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.4651163%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.052826%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg4%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs4%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2024%2024%22%0A%20%20%20%20%20%20%20id%3D%22drugs%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M10.4%2C11.12c-1.15%2C0-1.4.47-.22.8s2.24%2C1.81%2C2.62%2C1.24S12.36%2C11.23%2C10.4%2C11.12Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M8.62%2C13.38c-.64%2C0-1%2C.44-.47.61A5.28%2C5.28%2C0%2C0%2C1%2C10.3%2C15.2c.44.35.6-.25.41-.69A2.24%2C2.24%2C0%2C0%2C0%2C8.62%2C13.38Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path2%22%20%2F%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12.41%2C9.11c-1-.08-1.27.28-.3.66s1.87%2C1.46%2C2.17%2C1S14.17%2C9.24%2C12.41%2C9.11Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path3%22%20%2F%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M12%2C0A12%2C12%2C0%2C0%2C0%2C0%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C24h0A12%2C12%2C0%2C0%2C0%2C24%2C12v0A12%2C12%2C0%2C0%2C0%2C12%2C0Zm5.49%2C7.12a1.2%2C1.2%2C0%2C0%2C0-.85%2C1c0%2C.58%2C3.91%2C3.54%2C3.22%2C4.48-.54.77-2.78-1.48-3.6-.82s-3.68%2C4.52-4.86%2C5.54-1.71%2C0-2.07.36a1.23%2C1.23%2C0%2C0%2C1-1.59.14c-1.27%2C1.54-2.48%2C2.4-2.59%2C2.26s.47-1.49%2C1.59-2.84a1.41%2C1.41%2C0%2C0%2C1-.08-1.7c.33-.53-.28-.91.27-2S11.14%2C9%2C11.42%2C8.28%2C9.62%2C5.43%2C10.28%2C5s4.25%2C2%2C4.77%2C2a1.07%2C1.07%2C0%2C0%2C0%2C1-.74c.14-.39-1.49-2.45-.86-3%2C.88-.77%2C6.23%2C3.54%2C5.4%2C4.47C20%2C8.3%2C18%2C7.15%2C17.47%2C7.12Z%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path4%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23drugs%22%0A%20%20%20%20%20id%3D%22use4%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.kijkwijzer-Q {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%0A%20%20%20class%3D%22c-header__icon%22%0A%20%20%20width%3D%2287.2%22%0A%20%20%20height%3D%2287.2%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22svg1%22%0A%20%20%20sodipodi%3Adocname%3D%22svgexport-17%20%281%29.svg%22%0A%20%20%20inkscape%3Aversion%3D%221.3.2%20%28091e20e%2C%202023-11-25%2C%20custom%29%22%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0A%20%20%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Csodipodi%3Anamedview%0A%20%20%20%20%20id%3D%22namedview1%22%0A%20%20%20%20%20pagecolor%3D%22%23ffffff%22%0A%20%20%20%20%20bordercolor%3D%22%23000000%22%0A%20%20%20%20%20borderopacity%3D%220.25%22%0A%20%20%20%20%20inkscape%3Ashowpageshadow%3D%222%22%0A%20%20%20%20%20inkscape%3Apageopacity%3D%220.0%22%0A%20%20%20%20%20inkscape%3Apagecheckerboard%3D%220%22%0A%20%20%20%20%20inkscape%3Adeskcolor%3D%22%23d1d1d1%22%0A%20%20%20%20%20inkscape%3Azoom%3D%229.3348627%22%0A%20%20%20%20%20inkscape%3Acx%3D%2243.546436%22%0A%20%20%20%20%20inkscape%3Acy%3D%2243.599998%22%0A%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%0A%20%20%20%20%20inkscape%3Awindow-height%3D%221010%22%0A%20%20%20%20%20inkscape%3Awindow-x%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-y%3D%22-6%22%0A%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%0A%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg1%22%20%2F%3E%0A%20%20%3Cdefs%0A%20%20%20%20%20id%3D%22defs1%22%3E%0A%20%20%20%20%3Csymbol%0A%20%20%20%20%20%20%20viewBox%3D%220%200%2087.2%2087.2%22%0A%20%20%20%20%20%20%20id%3D%22gevaarlijk-gedrag%22%3E%0A%20%20%20%20%20%20%3Cpath%0A%20%20%20%20%20%20%20%20%20d%3D%22M48.39%2054.86a26.9%2026.9%200%200%200%201.5%209.58%201.76%201.76%200%200%200%203.25.17c1.218-3.052%202.055-6.243%202.49-9.5.55-4.52-6.99-5.04-7.24-.25m-.03%2014.77a3.47%203.47%200%200%200%203.06%204.21c2.49.16%203.45-2.62%203.06-4.33-.54-2.38-5.47-2.84-6.12.12M43.6%200C19.52%200%200%2019.52%200%2043.6s19.52%2043.6%2043.6%2043.6%2043.6-19.52%2043.6-43.6A43.51%2043.51%200%200%200%2043.6%200m10.46%2016a24.28%2024.28%200%200%201%202.67-5.85c1.67-2.36%206.69.73%204.86%203.2a23.45%2023.45%200%200%201-4.71%204.69c-1.73%201.31-3.5.32-2.82-2.04m-8.02-8.02a26.88%2026.88%200%200%201-1.12%205.85c-.5%201.7-2.51%201.71-3.28-.15a21.07%2021.07%200%200%201-1.43-5.87c-.18-3.27%206.1-3.31%205.83.17m-16.46%202.76c1.304%201.796%202.345%203.769%203.09%205.86.68%202.05-.82%203.41-2.84%202.02a24.11%2024.11%200%200%201-4.69-4.38c-1.71-2.34%202.57-5.94%204.44-3.5M27.04%2064.7c1.43-4.46%205.06-8.84%206.62-12.52%201.5-3.52%201.7-6.8-1.7-9.45-4.22-3.29-8.64-6.58-11.84-11.15-3.26-4.67.13-9.63%203-6.65%202.86%202.96%206.51%207.21%209.87%2011.02%203.66%204.14%207.5%203.67%207.79%202.18.44-2.23-3.43-4.57-4.63-9.76-2.48-10.73%2015.97-11.82%2014.13-.17-.85%205.39-4.88%208.37-3.92%209.74.88%201.24%204.25.27%207.94-3.84%203.48-3.89%205.33-6.59%208.27-10.08s6.15%201.39%202.92%206.6c-3%204.85-9.74%2010.66-13.73%2011.58a13.7%2013.7%200%200%200-8.95%205.94c-2.38%203.65-8.16%2015.85-11.49%2022.43-2.17%204.29-5.9-.82-4.28-5.87m34.97%2010.7a150.96%20150.96%200%200%201-21.41%201.51%204.55%204.55%200%200%201-4.37-6.62%20183.32%20183.32%200%200%201%2010.86-21.48c2.06-3.61%207.78-4.04%209.88-.61A162.69%20162.69%200%200%201%2067.3%2067.7c1.56%203.46-1.47%207.07-5.29%207.7%22%0A%20%20%20%20%20%20%20%20%20id%3D%22path1%22%20%2F%3E%0A%20%20%20%20%3C%2Fsymbol%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cuse%0A%20%20%20%20%20xlink%3Ahref%3D%22%23gevaarlijk-gedrag%22%0A%20%20%20%20%20id%3D%22use1%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.custom-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  display: none;
  z-index: 1111;
}
.custom-overlay-show {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  padding: 2px;
  border-radius: 5px;
  display: block;
  z-index: 1111;
}
.titan-ad-skip-button,
.titan-skip-end-credits-button,
.titan-skip-start-credits-button {
  position: absolute;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  cursor: pointer;
  z-index: 9999999;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  transition:
    background-color 0.2s ease,
    opacity 0.5s ease-in-out;
}
.titan-ad-skip-button:hover,
.titan-skip-end-credits-button:hover,
.titan-skip-start-credits-button:hover {
  background-color: #4285f4;
}
.titan-ad-skip-button {
  right: 80px;
  bottom: 60px;
}
.titan-skip-start-credits-button {
  left: 20px;
  bottom: 60px;
}
.titan-skip-end-credits-button {
  right: 20px;
  bottom: 60px;
}
.titan-ad-skip-button:disabled {
  cursor: default !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #aaa !important;
  opacity: 0.7 !important;
}
.titan-ad-skip-button:disabled:hover {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #aaa !important;
}
.titan-drm-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}
.titan-drm-spinner-icon {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
.titan-drm-loading-text {
  font-size: 16px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.titan-drm-spinner-active .shaka-spinner-container {
  display: none !important;
}
.shaka-thumbnail-img {
  object-fit: none !important;
}
.custom-chromecast-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: 0 0;
  cursor: pointer;
  padding: 3px 8px;
  margin: 0;
  color: #eee;
  font-size: 24px !important;
  position: relative;
  top: -2px;
}
.custom-chromecast-button:hover {
  background-color: #3367d6;
}
.youtube-theme .shaka-fullscreen-button:hover {
  font-size: 24px;
}
@font-face {
  font-family: "Material Icons Round";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/MaterialIconsSharp.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Sharp";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/MaterialIconsSharp.woff2") format("woff2");
}
.material-icons-round,
.material-icons-sharp {
  font-family: "Material Icons Sharp", "Material Icons Round";
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}
.custom-chromecast-button {
  font-size: 24px !important;
  color: rgba(255, 255, 255, 0.87) !important;
  cursor: pointer;
  transition: color 0.2s ease;
}
.custom-chromecast-button:hover {
  color: #fff !important;
}
.shaka-controls-button-panel button.custom-chromecast-button[casting] {
  color: #4285f4 !important;
}
.shaka-controls-button-panel button.custom-chromecast-button[casting]:hover {
  color: #5a9dff !important;
}
.shaka-button-container .custom-chromecast-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.titan-casting-indicator {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.titan-casting-indicator.active {
  opacity: 1;
  transform: translateY(0);
}
.titan-casting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4285f4 0, #5a9dff 100%);
  border-radius: 50%;
  flex-shrink: 0;
}
.titan-casting-icon .material-icons-round {
  font-size: 16px;
  color: #fff;
}
.titan-casting-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.titan-casting-device {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.2px;
}
.titan-casting-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.titan-casting-indicator.active .titan-casting-icon {
  animation: pulse 2s ease-in-out infinite;
}
.titan-ad-disabled-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1000;
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.titan-ad-disabled-overlay.active {
  opacity: 1;
  visibility: visible;
}
.titan-ad-disabled-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.titan-ad-disabled-content .material-icons-round {
  font-size: 24px;
  color: #ffa726;
}
.titan-ad-disabled-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .titan-ad-disabled-overlay {
    padding: 12px 16px;
  }
  .titan-ad-disabled-content .material-icons-round {
    font-size: 20px;
  }
  .titan-ad-disabled-text {
    font-size: 12px;
  }
}
.titan-cast-blocked-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1001;
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 67, 54, 0.3);
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}
.titan-cast-blocked-overlay.active {
  opacity: 1;
  visibility: visible;
}
.titan-cast-blocked-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.titan-cast-blocked-content .material-icons-round {
  font-size: 24px;
  color: #f44336;
}
.titan-cast-blocked-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .titan-cast-blocked-overlay {
    padding: 12px 16px;
  }
  .titan-cast-blocked-content .material-icons-round {
    font-size: 20px;
  }
  .titan-cast-blocked-text {
    font-size: 12px;
  }
}
