@charset "UTF-8";
input {
  font-size: 14px !important;
  background-color: white;
}

input[type=text], input[type=password], input[type=number], input[type=date] {
  border-radius: 5px;
  padding: 10px 0 10px 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
  user-select: none;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "✔";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  height: 1em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 10px;
  vertical-align: bottom;
  color: transparent !important;
  transition: 0.2s;
}

input[type=checkbox] + label:active:before {
  transform: scale(0);
}

input[type=checkbox]:checked + label:before {
  border-color: MediumSeaGreen;
  color: MediumSeaGreen !important;
}

input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.input-err {
  border: 2px solid red;
}

.a-switch-div {
  padding: 2px 0 2px 12px;
}
.a-switch-div .a-switch-label {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.a-switch-div .a-switch-label .a-switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}
.a-switch-div .a-switch-label .a-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 1px;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.a-switch-div .a-switch-label .a-switch-slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 1px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.a-switch-div .a-switch-label .a-switch-input:checked + .a-switch-slider {
  background-color: #1b8724;
}
.a-switch-div .a-switch-label .a-switch-input:focus + .a-switch-slider {
  box-shadow: 0 0 1px #1b8724;
}
.a-switch-div .a-switch-label .a-switch-input:checked + .a-switch-slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
.a-switch-div .a-switch-label .a-switch-slider-round {
  border-radius: 34px;
}
.a-switch-div .a-switch-label .a-switch-slider-round:before {
  border-radius: 50%;
}

select {
  font-size: 14px !important;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 0 10px 10px;
}

/*# sourceMappingURL=inputs.css.map */
