/************************** MODAL *********************************/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 3; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal.center {
  justify-content: center;
  align-items: center;
}

.modal.center .modal-content {
    margin: 0px;
}

.preview_canvas {
  max-width: 80vw;
  max-height: 80vh;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  margin: 20px;
}

.modal.lvl-2 {
    z-index: 999;
}

.modal-grid {
  display: grid;
  grid-template-columns: fit-content(40%) 1fr;
  gap: 6px 12px;
  padding-bottom: 12px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fff;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #CCC;
  width: fit-content;
  max-width: 768px;
  flex-direction: column;
  border-radius: 3px;
  height: fit-content;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.modal-content .label {
    align-items: center;
    margin-right: 12px;
    display: inline;
    line-height: 1.5em;
}

.modal-content form {
    margin: 0px;
}

.modal-title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #666;
}

.modal-content .modal-window {
  max-width: 80vw;
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 24px;
}

.modal-content .buttonrow {
  margin-top: 12px;
}

/* The Close Button */
.modal-content .button {
  border: none;
}

.modal-content input {
  border: 1px solid #CCC;
  border-radius: 3px;
  height: 35px;
  padding-left: 6px;
  font-family: Open Sans;
  box-sizing: border-box;
  min-width: 300px;
}


input[type='checkbox'] {
  min-width: auto;
}

input[type='file'] {
  height: 47px;
  width: 100%;
}

.modal-content textarea {
    width: 100%;
    max-width: 70vw;
    min-height: 200px;
    border-radius: 3px;
    border: 1px solid #CCC;
    padding: 6px;
    font-family: Open Sans;
    font-size: 15px;
}

/***************************************** MEDIA QUERIES ************************************************/

@media screen and (min-width: 950px) {
    /* Desktop */
}

@media screen and (max-width: 949px) {
    /* Tablet */

}

@media screen and (max-width: 479px) {
    /* Telefoon */
    .modal-content {
      max-width: 95vw;
    }

    .preview_canvas {
      max-width: 90vw;
      max-height: 70vh;
      width: 90vw;
      height: 70vh;
      overflow: hidden;
    }

    .modal-grid {
      grid-template-columns: 1fr;
    }
}
