.twc-checkbox {
  display: flex!important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin: 8px 0;
  z-index: 5;
  cursor: pointer;
}
.twc-checkbox.twc-checkbox--centered {
  justify-content: center;
  align-items: normal;
  width: 100%;
}
.twc-checkbox label {
  margin: 0;
  display: inline-block;
}
.form-check-inline .form-check-input,
.twc-checkbox input {
  position: relative;
  visibility: hidden;
  z-index: 1;
  margin: 0;
}
.twc-checkbox input {
  width: 20px;
  height: 20px;
}
.twc-checkbox input::after,
.twc-checkbox input::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 15px;
  height: 15px;
  font-size: 12px;
  visibility: visible;
}
.twc-checkbox input::before {
  background-color: #fff;
  border: 1px solid;
  transition: all 100ms ease-out;
}
.twc-checkbox input[type="radio"]::before {
  border-radius: 20px;
}
.twc-checkbox input:disabled {
  /* ? 9.28.21 Matt : somewhere we're blocking the click but its not here - styling it as disabled so at least we know they dont work ~ will ask rob */
  cursor: default;
}
.twc-checkbox input:disabled::before {
  background-color: #ddd;
  border-color: #ddd;
  color: #ddd;
}
.twc-checkbox input::after {
  /* content: '\02713'; */
  content: '\f00c';
  font-family: 'FontAwesome';
  left: 65%;
  top: 50%;
  font-size: 12px;
  color: var(--lt-blue);
  color: #fff;
  font-weight: 900;
  opacity: 0;
  transform: scale(0) translate(-50%,-50%);
  transform-origin: bottom left;
  transition: all 250ms ease-out;
  line-height: 1;
}
.twc-checkbox input:checked::before {
  border-color:  var(--lt-blue);
  background-color: var(--lt-blue);
}
.twc-checkbox input:checked::after {
  opacity: 1;
  transform: scale(1) translate(-59%,-36%);
}
.twc-checkbox input,
.twc-checkbox input + span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.twc-checkbox input + span {
  max-width: 80%;
  padding: 0 2px;
  word-wrap: break-word;
}