.header {
  height: 220px;
}
.header img {
  width: 60%;
  padding-top: 80px;
}
.stap {
  font-size: 0.7em;
  color: rgb(175, 178, 179);
}
.jot {
  padding: 0px 0px 0px 20px;
  font-size: 1.3em;
}
.label {
  font-size: 13px;
  display: block;
  font-weight: bold;
  margin: 10px 0px 10px 0px;;
  padding: 0px;
}
span {
  color: rgb(255, 0, 0);
}
.subtitle {
font-size: 0.8em;
margin-top: 1px;
}
.p {
  display: inline;
  font-size: 1em;
  margin: 3px;
}

.text {
  margin: 2px 0px 0px 0px;
  border: 1px solid rgb(36, 77, 223);
  width: 100%;
  height: 30px;
}
.text:focus {
  background-color: #ffffff;
  border: 1px solid #a7b9cf;}
}
#box {
  width: auto;
  padding: 5px;
  margin: 5px;
}
textarea{
  width: 80%;
  height: 100px;
  font-family: verdana, sans-serif;
}
::placeholder {
    color: rgb(175, 178, 179);
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: rgb(175, 178, 179);
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: rgb(175, 178, 179);
}

#required, #required2, #required3, #required4, #required5, #required6, #required7, #required8, #required9, #requiredOU, #requiredEE {
  border-radius: 5px;
  font-size: 0.8em;
  color: white;
  background-color: rgb(114, 187, 247);
  width: 90%;
}
#requiredZP, #requiredKK, #requiredROLL, #requiredMISO, #requiredSS, #requiredPEL, #requiredSCH1, #requiredSCH2, #requiredSCH3 {
  border-radius: 5px;
  font-size: 0.8em;
  color: white;
  background-color: rgb(114, 187, 247);
  width: 90%;
}
#requiredCV1, #requiredCV2, #requiredCV3, #requiredVISO, #requiredGEVEL1, #requiredGEVEL2 {
  border-radius: 5px;
  font-size: 0.8em;
  color: white;
  background-color: rgb(114, 187, 247);
  width: 90%;
}
#myDIV, #myDIV2, #myDIV3, #myDIV4, #myDIV5, #myDIV6, #myDIV7 {
  display: none;
  background-color: rgb(244, 244, 244);
  padding: 5px 0px 5px 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}
#myROLL, #myGEVEL, #myMISO, #myVISO, #myAIRCO, #myCV, #myKK, #mySS, #myKT, #mySCH, #myZP, #myPEL, #myZB, #myWP, #myALARM, #myCAM, #myDAKISO, #mySCOOT, #myTRAP, #myVOC, #my1, #my2, #my3 {
  display: none;
  background-color: rgb(244, 244, 244);
  padding: 5px 0px 5px 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}
#myZOLDER, #mySPAN, #myVER, #myREIN, #myBEDE {
  display: none;
  background-color: rgb(244, 244, 244);
  padding: 5px 0px 5px 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}
#next {
  float: right;
  padding: 5px;
  width: 40%;
  height:40px;
  background-color: rgb(215, 114, 8);
  color: rgb(255, 255, 255);
  font-weight: bold;
  border: 0px;
  border-radius: 5px;
  display: block;
  margin: 20px ;
}

#next:hover {
  background-color: rgb(238, 136, 0);
  border: 2px inset rgb(208, 211, 247);
}
#next:active {
  background-color: rgb(255, 185, 29);
  border: 2px inset rgb(6, 11, 71);
}
/* The container radio butons*/
.container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}



/* The container 2 checkboxs*/
.container2 {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container2:hover input ~ .checkmark2 {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container2 input:checked ~ .checkmark2 {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark2:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container2 input:checked ~ .checkmark2:after {
  display: block;
}

/* Style the checkmark/indicator */
.container2 .checkmark2:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0px 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*For bedankt pages radio buttons*/
.checkmark3 {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: rgb(222, 221, 221);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark3 {
  background-color: #b9b8b8;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark3 {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark3:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark3:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark3:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}


/*For bedankt pages checkboxs buttons*/
.checkmark4 {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: rgb(222, 221, 221);
}

/* On mouse-over, add a grey background color */
.container2:hover input ~ .checkmark4 {
  background-color: #b9b8b8;
}

/* When the checkbox is checked, add a blue background */
.container2 input:checked ~ .checkmark4 {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark4:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container2 input:checked ~ .checkmark4:after {
  display: block;
}

/* Style the checkmark/indicator */
.container2 .checkmark4:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0px 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
