input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
input[type=checkbox] + label {
  position: relative;
  padding-left: 2.5em;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
input[type=checkbox] + label::before, input[type=checkbox] + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 1em;
  border: 2px solid #555;
  border-radius: 0.5rem;
}
input[type=checkbox] + label::before {
  width: 2em;
  background: rgb(150, 150, 150);
}
input[type=checkbox] + label::after {
  width: 1em;
  background: rgb(181, 201, 201);
}
input[type=checkbox]:checked + label::before {
  background: rgb(0, 175, 73);
}
input[type=checkbox]:checked + label::after {
  left: 1em;
  transition: left 0.05s ease-in;
}

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