@import 'https://fonts.googleapis.com/css?family=Prompt:400,700';

.modal {
  /* This way it could be display flex or grid or whatever also. */
  display: none;
  
  /* Probably need media queries here */
  width: 500px;
  max-width: 100%;
  
  height: 550px;
  max-height: 100%;
  
  position: fixed;
  
  z-index: 100;
  
  left: 50%;
  top: 50%;
  
  /* Use this for centering if unknown width/height */
  transform: translate(-50%, -50%);
  
  /* If known, negative margins are probably better (less chance of blurry text). */
  /* margin: -200px 0 0 -200px; */
  
  background: white;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
  border:#666 3px solid;

  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px;  
  border-radius: 10px 10px 10px 10px;
}
.open {
    display: grid;
    grid-template-rows: 100px auto 100px;
}

.modal-guts {
  position: fixed;
  bottom: 10%;
  top: 28%;
  width: 100%;
  height: 48%;
  overflow: auto;
    overflow-y: auto;
}

.checkbox-position {
  display: inline-block;
  position: left;
}

.rgpd-check * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.rgpd-check body {
  background-color:#556;
  background-image: linear-gradient(30deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
  linear-gradient(150deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
  linear-gradient(30deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
  linear-gradient(150deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
  linear-gradient(60deg, #99a 25%, transparent 25.5%, transparent 75%, #99a 75%, #99a), 
  linear-gradient(60deg, #99a 25%, transparent 25.5%, transparent 75%, #99a 75%, #99a);
  background-size:80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  
  font-family: 'Prompt', sans-serif;
}
.rgpd-check ul {
  margin: 10px 0 10px 30px;
}
.rgpd-check li, p {
  margin: 0 0 10px 0;
}
.rgpd-check h1 {
  margin: 0 0 20px 0;
}

.modal .close-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0px;
  cursor: pointer;
  padding: 14px;
}

.open-button {
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: lightgreen;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 21px;
}



.modal-header {
  top: 0%;
    height: 8%;
    width: 100%;
  position: absolute;
  display: block ;
  background: #666;
  vertical-align: middle;
}
.modal-header-2 {
  top: 8%;
    width: 100%;
  position: absolute;

}

.modal-header-3 {
  top: 18%;
    height: 10%;
  position: absolute;
  vertical-align: middle;
    width: 100%;

}

.modal-footer {
  height: 15%;
  position: absolute;
    bottom: 0px;
  vertical-align: middle;
    width: 100%;
}
.modal-footer-2 {
  height: 10%;
  position: absolute;
    bottom: 78px;
  vertical-align: middle;
    width: 100%;
}

.modal2 {
  /* This way it could be display flex or grid or whatever also. */
  display: none;
  
  /* Probably need media queries here */
  width: 500px;
  max-width: 100%;
  
  height: 190px;
  max-height: 100%;
  
  position: fixed;
  
  z-index: 100;
  
  left: 50%;
  top: 50%;
  
  /* Use this for centering if unknown width/height */
  transform: translate(-50%, -50%);
  
  /* If known, negative margins are probably better (less chance of blurry text). */
  /* margin: -200px 0 0 -200px; */
  
  background: white;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
  border:#666 3px solid;

  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px;  
  border-radius: 10px 10px 10px 10px;
}
.open {
    display: grid;
    grid-template-rows: 100px auto 100px;
}

.modal2-header {
  top: 0%;
  width: 100%;
  position: absolute;
  display: block ;
}

.modal2-footer {
  height: 20%;
  position: absolute;
  bottom: 0px;
  vertical-align: middle;
  background: #666;
  width: 100%;
  display: none ;
}
