.container {
  display: block;
  position: relative;
  padding-left: 1.625rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.813rem;
  width: 0.813rem;
  background-color: white;
  border: 2px solid #333333ff;
  border-radius: 2px;
}

.container:hover input ~ .checkmark {
  background-color: #ececec;

}

.container input:checked ~ .checkmark {
  background-color: white;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid #333333ff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container:hover {
  color: #808080ff;
}

.container:hover .checkmark:after {
    border-color: #808080ff;
}

.container input:focus-visible + .checkmark,
.container:focus-visible .checkmark {
    outline: 1px solid black;
    outline-offset: 3px;
}