svg {
  display: block;
  width: 100vw;
  height: 100vh;
}

#mapcontainer {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.eventpunt {
  cursor: pointer;
  transition: fill 0.3s;
}

/*
.eventpunt:hover {
    fill: orange;
}
    */


@font-face {
  font-family: "Roobert";
  font-weight: 400;
  src: url("https://interactief.vrtnws.be/webfont/Roobert-Regular.woff2") format("woff2"),
    url("https://interactief.vrtnws.be/webfont/Roobert-Regular.woff") format("woff"),
    url("https://interactief.vrtnws.be/webfont/Roobert-Regular.eot") format("embedded-opentype"),
    url("https://interactief.vrtnws.be/webfont/Roobert-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Roobert";
  font-weight: 500;
  src: url("https://interactief.vrtnws.be/webfont/Roobert-Medium.woff2") format("woff2"),
    url("https://interactief.vrtnws.be/webfont/Roobert-Medium.woff") format("woff"),
    url("https://interactief.vrtnws.be/webfont/Roobert-Medium.eot") format("embedded-opentype"),
    url("https://interactief.vrtnws.be/webfont/Roobert-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Roobert";
  font-weight: 600;
  src: url("https://interactief.vrtnws.be/webfont/Roobert-SemiBold.woff2") format("woff2"),
    url("https://interactief.vrtnws.be/webfont/Roobert-SemiBold.woff") format("woff"),
    url("https://interactief.vrtnws.be/webfont/Roobert-SemiBold.eot") format("embedded-opentype"),
    url("https://interactief.vrtnws.be/webfont/roobertvrt-SemiBold.ttf") format("truetype");
}


/* basic */

:root {
  --basevio: #5541F0;
  --darkvio: #031037;
  --coltyp1: #FF9600;
  --coltyp2: #34BEAB;
  --coltyp3: #4031AE;
}

html,
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-weight: 400;
  color: var(--darkvio);
  font-family: 'Roobert', Helvetica, Arial, sans-serif;
  line-height: 1.4;
  font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@supports(font: -apple-system-body) {
  html html {
    font: -apple-system-body, 'Roobert', Helvetica, Arial, sans-serif
  }
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.shadow {
  /* filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1)); */
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1));
}

.shadowmap {
  /* filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1)); */
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.05));
}

.screenFill {
  position: relative;
  width: 100%;
  min-height: 1500px;
  min-width: 100%;
  height: 100vh;
}

.overzichtFill {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 100vh;
}

/* states */

.toonBlok {
  opacity: 1 !important;
  transition: opacity 1s;
}

.hideBlok {
  opacity: 0 !important;
  transition: opacity 1s;
}

.paarstekst {
  color: var(--basevio);
  font-weight: bold;
}

a {
  color: var(--darkvio);
  text-decoration: underline #5541F0 solid;
}

a:hover {
  color: var(--basevio);
}

.pushleft {
  margin-left: 1.3rem !important;
}

.pushdown {
  margin-bottom: 20px !important;
}

.hidder {
  height: 1px;
  width: 100%;
}

/* titelborder */

.title-container {
  position: relative;
  display: inline-block;
  padding: 30px;
}

.title-bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.bubble-stroke {
  stroke: var(--basevio);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.title-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* backvideo */

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; 
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.7;
}

/* cardfilter */

.selected{
  background-color: #5541F0;
  color: white;
}

.hidden {
  opacity: 0;
  height: 10%;
  transition: opacity 1s ease;
}

.visible {
  opacity: 1;
  height: 100%;
}

/* inleiding */

.startchevron{
  position: relative;
  width: 2rem;
	animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
}
 
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
	40% {-webkit-transform: translateY(-20px);}
	60% {-webkit-transform: translateY(-10px);}
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-20px);}
	60% {-moz-transform: translateY(-10px);}
}

.startchevron img{
  width: 100%;
}

.scrollyIntro {
  display: flex;
  flex-direction: column;
  padding: 0;
  line-height: 1.4;
  font-size: 1rem;
  background-color: var(--basevio);
  background: linear-gradient(135deg, rgba(85,65,240,1) 0%, rgba(3,16,55,1) 100%);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.screenStretch {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 60vw;
  box-sizing: border-box;
}

.outroStretch {
  position: relative;
  min-height: 100vh;
  max-width: 800px;
  padding: 3rem 0;
}

.mainTitel {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: unset;
  margin-top: unset;
}

.subline{
  margin-top: 20px;
}

.scrollyTitel,
.scrollyInleiding {
  line-height: 1.4;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
}

.scrollyTitel {
  width: 60vw;
  max-width: 800px;
}

.checkimg {
  display: block;
  height: 2.5rem;
}

#inleidingtekst {
  box-sizing: border-box;
}

#inleidingtekst p {
  font-size: 1.4rem;
  margin: 0 0 0 0;
}

.boxstyle {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  background: rgb(255, 255, 255, 0.80);
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.2));
  border-radius: calc(0.5rem + 7px);
  margin-bottom: 0;
  color: var(--darkvio);
  text-align: left;
  width: 60vw;
  max-width: 800px;
  margin: 2rem 0;
  box-sizing: border-box;
}

.byline {
  margin-top: 0.5rem !important;
  color: #69788C;
  font-size: 0.8rem;
  font-weight: 200;
  margin-left: 10px !important;
}

.scrollyInleiding .boxstyle {
  background-color: #fff;
}

.boxstyle img {
  border-radius: 15px;
  margin-top: 20px;
}

.boxstyle p {
  margin: 0.5em 0 0.5em 0;
}

.boxstyle p:last-child,
.boxstyle img:last-child {
  margin-bottom: 0;
}

.margbot {
  margin-bottom: 1.2rem;
}

.bumpdown {
  margin-top: 50rem;
}

.borderrad iframe {
  border-radius: 10px;
}

.borderrad {
  position: relative;
  display: block;
  z-index: 1000;
}



.infobox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  width: 350px;
  max-width: 350px;
  padding: 10px 20px;
  border-radius: 10px;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.9);
  margin: auto;
  opacity: 0;
  transition: opacity 1s;
  box-sizing: border-box;
}


.infotekst {
  font-size: 1.1rem;
  font-weight: 500;
}

.moretop {
  margin-top: 15rem;
}

.vidsize {
  display: block;
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  border: 0;
  font-weight: bold;
  margin-top: 20px;
}


/* backmap */

.infotitel {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--basevio);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.datumevent {
  font-size: 1rem;
  font-weight: 400;
  color: #69788C;
  margin-left: 1.3rem;
}


.locpin img {
  display: block;
  width: 0.8rem;
  border-radius: unset;
  margin-top: unset;
}

.cybertext {
  color: var(--coltyp1)
}

.invloedtext {
  color: var(--coltyp2)
}

.schadetext {
  color: var(--coltyp3)
}

#datimgbox {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mapsizer {
  display: block;
  height: 70vh;
}

#scrollyData {
  display: block;
  position: fixed;
  top: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
}

.databackbox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
}

.mapback {
  position: absolute;
  top: 0;
  left: auto;
  width: auto;
  height: 80vh;
  transition: opacity 0.8s ease-in-out;
}

.mapback:not(:first-child) {
  opacity: 0;
}


/* colofon */

#infomethode{align-items: center;}

.colofonbox {
  display: block;
  color: #fff;
  background: rgb(64, 49, 174);
  background: linear-gradient(45deg, rgba(64, 49, 174, 1) 0%, rgba(85, 65, 240, 1) 100%);
  padding: 8rem 2rem 8rem 2rem;
  font-size: 1.1rem;
  line-height: 1.4;
  position: relative;
  width: 100%;
  min-width: 100%;
}

#creditcenter {
  display: block;
  max-width: 1040px;
  margin: auto;
}

.footerlogo {
  display: block;
  height: 1.5rem;
  width: fit-content;
  margin-bottom: 1rem;
}

.footerlogo img {
  height: 100%;
}

@media only screen and (max-width: 850px) {
  .boxstyle {
    width: 95%;
    font-size: 1rem;
  }
  .scrollyTitel{
    width: 90vw;
  }

  .screenFill {
  min-height: 1200px;
}

}

@media only screen and (max-width: 600px) {
  #scrollyScreenPre{
    height: 20vh;
    min-height: 20vh;
  }
  
  .screenStretch {
    max-width: 100%;
  }

  .boxstyle {
    width: 95%;
    font-size: 1rem;
  }

  #scrollyIntro {
    font-size: 1rem;
  }

  .mainTitel {
    font-size: 2.5rem;
  }

  .checkimg {
    height: 2rem;
  }

  #inleidingtekst p {
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 0;
  }

  .databackbox {
    width: 100%;
    align-items: center;
  }

  .databackbox .infotitel {
    width: 90%;
    font-size: 1.3rem;
    text-align: center;
    align-content: end;
    height: 5.5rem;
  }

  .infobox {
    width: 80%;
    max-width: 80%;
  }

  .mapback {
    left: 0;
    width: 150%;
    height: auto;
  }

  .colofonbox {
    max-width: 100%;
    width: unset;
    min-width: unset;
  }

  .bumpdown {
    margin-top: 20rem;
  }

  #creditcenter p {
    font-size: 0.9rem;
  }
}


