/* LESS Document */
/* IPad Pro Auflösung mit Kiosk Pro:  2732x2048px  */
/* Farben */
select,
input {
  font-size: 40px;
  padding: 5px 20px;
  border: 0px solid #000;
  background-color: #212b6b;
  color: #ffffff;
  border-radius: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-weight: bold;
  font-family: "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
select {
  background-image: url(../images/icons/select_arrow.png);
  background-position: right;
  background-repeat: no-repeat;
  padding-right: 90px;
}
input[type='text'],
textarea {
  background-color: #ffffff;
  color: #000000;
  font-size: 40px;
  padding: 5px 20px;
  border-radius: 25px;
}
input[type='submit'],
textarea {
  cursor: pointer;
}
.delete_button {
  background-color: #990014;
}
.wrongInput {
  font-size: 40px;
  font-weight: bold;
  color: #970002;
}
/* Customize the label (the container) */
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 30px;
  cursor: pointer;
  font-size: 40px;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: left;
}
/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: #f8ac00;
  border-radius: 8px;
  margin-right: 20px;
}
.checkboxname {
  border-radius: 41px;
  padding: 8px 22px;
}
/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
  background-color: #f8ac00;
}
/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
  background-color: #212b6b;
}
.checkbox_container input:checked ~ .checkboxname {
  background-color: #212B6B;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
  left: 11px;
  top: 5px;
  width: 8px;
  height: 19px;
  border: solid white;
  border-width: 0 6px 6px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
