﻿#maintenance_form {
  margin: 0 auto;
}

#maintenance_form h1 {
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 100;
  text-align: center;
  color: #0288D1;
  border-bottom: 1px solid #ccc;
}

#maintenance_form .row {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

#maintenance_form .row:hover {
  background-color: transparent !important;
}

#maintenance_form input[type="checkbox"], #maintenance_form input[type="radio"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

#maintenance_form input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  text-indent: 30px;
  line-height: 30px;
  background: #ccc;
  width: 180px;
  height: 30px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}

#maintenance_form input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0288D1;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
  transform: translateZ(0) scale(0);
}

#maintenance_form input[type="checkbox"] + label:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  height: 26px;
  width: 26px;
  background: white;
  color: #000;
  border-radius: 100%;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
  transform: translateZ(0) translateX(0);
}

#maintenance_form input[type="checkbox"]:checked + label {
  background: #0288D1;
  color: #fff;
}

#maintenance_form input[type="checkbox"]:checked + label:after {
  left: calc(100% - 28px);
  transform: translateZ(0);
  content: "On";
}

/*# sourceMappingURL=maintenance_dialog.css.map */