@media all and (orientation:portrait){ 

.invoerregel{
  display: flex;
  flex-direction: column;
 
  padding:3px;
}
.invoerlabel{
   
    font-size: 16px;
    color:#4D71A6;
    border-bottom: solid;
    border-color:#ACC4E8;

    align-content:baseline;
    text-align: left;
    padding-right: 10px;
 

}
.invoerareabig{
  display: flex;
  flex-direction: column;

  padding-left: 5px;

}

}
@media all and (orientation:landscape){
  .invoerregel{
    display: flex;
    flex-direction: row;
   
    padding:3px;
  }
  .invoerlabel{
      width: 30%;
      font-size: 18px;
      color:#4D71A6;
      border-bottom: solid;
      border-color:#ACC4E8;
  
      align-content:baseline;
      text-align: right;
      padding-right: 10px;
   
  
  }
  .invoerareabig{
    display: flex;
    flex-direction: row;
    width: 70%;
    padding-left: 5px;
  
  }
}
   
input[type=password]{
    border-radius: 5px;
    font-size: 15px;
    padding: 5px;
    margin: 5px;

    background-color: white;
    color:#4D71A6;
    width: 200px;

}

input[type=text]{
  border-radius: 5px;
  font-size: 15px;
  padding: 5px;
  margin: 5px;

  background-color: white;
  color:#4D71A6;
  width: 200px;

}
input[type=time]{
  border-radius: 5px;
  font-size: 15px;
  padding: 5px;
  margin: 5px;

  background-color: white;
  color:#4D71A6;
  width: 100px;

}
input[type=number]{
  border-radius: 20%;
  font-size: 20px;
  padding: 5px;
  margin: 5px;
  text-align: center;
  background-color: white;
  color:#4D71A6;
  width: 50px;
  height: 50px;
  box-shadow: 5px 5px 5px rgb(131, 188, 241);


}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
}

input[type=number]:disabled {
  background-color: white;
  color: black;
  font-weight: bolder;
  border-color: #4D71A6;
  border-radius: 5px;
  font-size: 15px;
  padding: 5px;
  margin: 5px;
  width: 50px;
  text-align: center;
  box-shadow: 5px 5px 5px rgb(131, 188, 241);

}
input[type=email]{
  border-radius: 5px;
  font-size: 15px;
  padding: 5px;
  margin: 5px;
  background-color: white;
  color:#4D71A6;
  width: 200px;

}

input[type=date]{
  border-radius: 5px;
  font-size: 15px;
  padding: 5px;
  margin: 5px;

  background-color: white;
  color:#4D71A6;
  width: 125px;

}

input[type="file"] {
  display: none;
}

.custom-file-upload {
 
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ACC4E8;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ACC4E8;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #ACC4E8;
}

.select{
    border-radius: 5px;
    font-size: 15px;
    padding: 5px;
    margin: 5px;
  
    background-color: white;
    color:#4D71A6;
    width: 200px;
  
 
}

.link{
  font-size: 18px;
  color:#ACC4E8;
  cursor:pointer;
  text-decoration: none;

}
.link:hover{
  color : #4D71A6;
}
.iconarea{
  margin-top: 10px;
display: flex;
flex-direction: row;
justify-content: space-between;
margin-left: 10%;
width: 80%;

}
.icon{
  width: 150px;

}
.slider {
  -webkit-appearance: none;
  width: 50%;
  height: 25px;
  background: lightgrey;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  margin-left: 5%;
}

.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #4D71A6;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4D71A6;
  cursor: pointer;
}


.invoerareasmall{
  width: 100px;
}
