.c-checkbox-value {
  font-size: 14px;
  color: #FFF;
  font-weight: 500;
}

.c-checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #222;
  border: 1px solid black;
  padding: 5px;
  width: 100%;
}

.c-checkbox {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid #FFF;
  cursor: pointer;
}

.c-checkbox:hover {
  filter: brightness(1.3)
}

 .fa-check {
  display: none !important;
}

._checked {
  background-color: #d14124;
  text-align: center;
  line-height: 30px;
}

._checked .fa-check {
  display: inline-block !important;
}