.zeero-check-container {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.zeero-check-container.disabled {
  color: var(--disabled);
  border: 0.1em solid var(--disabled);
  cursor: not-allowed;
}

.zeero-check-container > input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  width: 1.1em;
  height: 1.15em;
  border: 0.1em solid var(--text-color);
  border-radius: 0.15em;
  display: grid;
  place-content: center;
  cursor: pointer;
  outline: none;
}

.zeero-check-container > input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(28% 38%, 41% 53%, 75% 24%, 86% 38%, 40% 78%, 15% 50%);
  transform: scale(0);
  transform-origin: center;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--primary-darker);
}

.zeero-check-container > input[type="checkbox"]:checked::before {
  transform: scale(1.3);
  border: 0.1em solid var(--primary);
}

.zeero-check-container > input[type="checkbox"]:checked {
  border: 0.1em solid var(--primary);
  background-color: var(--primary);
}

.zeero-check-container > input[type="checkbox"]:disabled {
  color: var(--disabled);
  cursor: not-allowed;
}