#plaatkader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}
#plaatkader_content {
  position: absolute;
  width: 100%;
  max-width: 100%;
  left: 0;
  top: 5vh;
  max-height: 90vh;
  background: #fff;
  padding: 1.5em 2em;
  border: 1px solid #000;
  border-color: rgba(0, 0, 0, 0.2);
  color: #007bc4;
  border-radius: 1em;
  z-index: 10;
}
#plaatkader_content h5 {
  font-size: 1em;
}
#plaatkader_content .tekst {
  display: none;
}

#plaatkader_content a {
  color: #007bc4;
}
#plaatkader_content ul {
  padding-left: 1em;
}
#plaatkader_content button {
  background-color: #e6007e;
  color: #fff;
  font-size: 1.2em;
  border: 0 none;
  padding: 0.5em 2em;
  border-radius: 0.5em;
}

#plaatkader_sheet {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9;
}

.plaat-mobile {
  display: block;
}
.plaat-desktop {
  display: none;
}
@media (min-width: 600px) {
  .plaat-mobile {
    display: none;
  }
  .plaat-desktop {
    display: block;
  }
}

@media (min-width: 500px) {
	#plaatkader_content {
	  width: 500px;
	  max-width: 100%;
	  left: calc(50% - 250px);
	  top: 20vh;
	}
}