/* components/input-checkbox/src/scss/input-checkbox.scss */
input[type=checkbox] {
  z-index: -1;
  opacity: 0;
  position: absolute;
}
input[type=checkbox] ~ label {
  margin-bottom: 0;
  position: relative;
  padding-left: 1.875rem;
  cursor: pointer;
  font-weight: 300;
}
input[type=checkbox] ~ label a {
  font-weight: inherit;
  text-decoration: underline;
  color: inherit;
}
.trigger-hover:focus input[type=checkbox] ~ label a,
.trigger-hover:hover input[type=checkbox] ~ label a,
input[type=checkbox] ~ label a:hover,
input[type=checkbox] ~ label a:focus,
input[type=checkbox] ~ label a:active {
  color: #007E38;
}
input[type=checkbox] ~ label::before {
  content: "";
  position: absolute;
  top: 0.21875rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  background-color: #F5F5F5;
  border: 1px solid #C4C4C4;
  border-radius: 0.25rem;
}
@media (min-width: 768px) {
  input[type=checkbox] ~ label::before {
    top: 0.375rem;
  }
}
input[type=checkbox] ~ label::after {
  content: "";
  position: absolute;
  border-radius: 0.125rem;
  width: 0.5rem;
  height: 0.5rem;
  top: 0.46875rem;
  left: 0.25rem;
  background-color: #007E38;
  opacity: 0;
}
@media (min-width: 768px) {
  input[type=checkbox] ~ label::after {
    top: 0.625rem;
  }
}
input[type=checkbox]:checked ~ label::after {
  opacity: 1;
}
/*# sourceMappingURL=input-checkbox.css.map */
