/* Small (14px checkbox for 16px text) */
.checkbox--small .checkbox__input {
  width: 14px;
  height: 14px;
}

.checkbox--small .checkbox__input:checked::after {
  top: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox__input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--grey-700);
  background-color: var(--white);
  cursor: pointer;
  position: relative;
}

.checkbox__input:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 10px;
  background-color: var(--grey-700);
}

.checkbox__label {
  margin-bottom: 0;
  color: var(--grey-700);
}
/* Large (19px checkbox for 24px+ text) */
.checkbox--large .checkbox__input {
  width: 19px;
  height: 19px;
}

.checkbox--large .checkbox__input:checked::after {
  top: 2px;
  left: 2px;
  width: 13px;
  height: 13px;
}