@charset "UTF-8";

.Checkbox {
  cursor: pointer;
  font-size: 1.2rem;
  width: 1em;
  height: 1em;
  outline: none;
  position: relative;
}

.Checkbox:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0.1rem gray solid;
  background-color: white;
}

.Checkbox:after {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 1em;
  height: 1em;
  content: "";
  color: #e71304;
  font-weight: bold;
  text-align: center;
  font-size: 1.2em;
  line-height: 1em;
}

.Checkbox:checked:after {
  content: '✔';
}

.Checkbox:disabled {
  opacity: 0.3;
}
