.checkbox__input {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}
.checkbox__box {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #145E7F;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.15s ease-in-out;
}
.checkbox__box > svg {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.checkbox__input:checked + .checkbox__box {
  background-color: #145E7F;
}
.checkbox__input:checked + .checkbox__box > svg {
  width: 78%;
  top: 50%;
  opacity: 1;
}
.checkbox__input:focus-visible + .checkbox__box {
  outline: 2px solid #145E7F;
  outline-offset: 2px;
}

.form-type--checkbox {
  display: flex;
  flex-flow: row wrap;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  align-items: center;
}
.form-type--checkbox .form-item__label {
  cursor: pointer;
  margin-bottom: 0;
}
.form-type--checkbox .form-item__description {
  flex: 0 0 100%;
}
