/* ------------ Label ------------ */
.custom-control-label {
  color: #4F4F4F;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 1px;
}

.custom-control-label::before {
  top: 4px;
  width: 16px;
  height: 16px;
  content: "";
  background-color: #fff;
  border: 1.4px solid #0C5F20;
}

.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: #0C5F20;
  background-color: #ffffff;
}

.custom-control-label::after {
  position: absolute;
  top: 8px;
  left: -20px;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  /* background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8â€¦M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e); */
  background: #0C5F20;
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: none !important;
}
