.custom-checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 8px 0;
}

.custom-checkbox {
  visibility: hidden;
  display: none;
}

.custom-checkbox:checked + .custom-checkbox-check::after,
.custom-checkbox:checked + .custom-checkbox-wrapper > .custom-checkbox-check::after {
  opacity: 1;
}

.custom-checkbox-check::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 6px;
  background-color: rgba(0, 0, 0, 0);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 2px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity .15s ease-in;
  transition: opacity .15s ease-in;
}

.custom-checkbox-check {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #8c8c8c;
  border-top-color: #8c8c8c;
  border-right-color: #8c8c8c;
  border-bottom-color: #8c8c8c;
  border-left-color: #8c8c8c;
  border-radius: 4px;
  background-color: #fff;
  margin-right: 12px;
  -webkit-transition: background-color .15s ease-in, border-color .15s ease-in;
  transition: background-color .15s ease-in, border-color .15s ease-in;
}

.custom-checkbox:checked + .custom-checkbox-check,
.custom-checkbox:checked + .custom-checkbox-wrapper > .custom-checkbox-check {
  background-color: #000;
  border-color: #000;
}

.custom-checkbox-text--footer {
  white-space: normal;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #000;
}
/*# sourceMappingURL=checkBox.css.map */