/* NÃO REMOVER ESTE ARQUIVO: Feito diretamente pois o gulp não esta funcionando. */

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #616161;
  user-select: none;
  text-transform: none;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox__checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: white;
  border: 1px solid #E0E0E0;
  border-radius: 2.5px;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all var(--b-transition-duration) ease;
}

/* Ícone de check */
.custom-checkbox__checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 11px;
  border: solid #FFFFFF;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Hover */
.custom-checkbox:hover .custom-checkbox__checkmark {
    border-color: #ED7203;
}

/* Quando marcado */
.custom-checkbox input[type="checkbox"]:checked + .custom-checkbox__checkmark {
  background-color: #ED7203;
  border-color: #ED7203;
}

.custom-checkbox input[type="checkbox"]:checked + .custom-checkbox__checkmark::after {
  display: block;
}
