.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  cursor: pointer;
  width: 0;
  height: 0;
}
.checkbox input:checked ~ .box {
  border-color: #2196f3;
  background-color: #2196f3;
}
.checkbox .box {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: white;
  width: 20px;
  height: 20px;
}
.checkbox .label {
  transition: color 0.2s ease;
  color: #666;
  font-size: 14px;
}

.checked.box {
  border-radius: 50%;
  background-color: #387c44;
}
