.fg-checkbox-container {
  display: block;
  position: relative;
  // padding-left: 16px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 16px;
  height: 16px;
}

/* Hide the browser's default checkbox */
.fg-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.fg-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
  border: solid #8e8e8e;
  border-width: 2px;
  border-radius: 2px;
  box-sizing: unset;
}

/* Create the checkmark/indicator (hidden when not checked) */
.fg-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  box-sizing: unset;
}

/* Show the checkmark when checked */
.fg-checkbox-container input:checked ~ .fg-checkmark::after {
  display: block;
}

.fg-checkbox-container input:checked + .fg-checkmark{
  border: solid #035cb5;
  border-width: 2px;
}

/* Style the checkmark/indicator */
.fg-checkbox-container .fg-checkmark::after {
  left: 0.15em;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid #035cb5;
  border-width: 0 0.1em 0.1em 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
