.checkcontainer {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 1em;
    user-select: none;
    color: #727272;
    width: 101px;
    height: 26px;
}
.checkcontainer input {
  opacity: 0;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;  left: 0;
  height: 20px;  width: 20px;
  background-color: rgba(128, 82, 82, 1);
  border-radius:5px;
  box-shadow:2px 2px 4px 1px rgba(3, 3, 3, 1),inset 2px 1px 3px 0px rgba(103, 145, 123, 1);
}
.checkcontainer:hover input ~ .checkmark {
  background-color: #444;
}
.checkcontainer input:checked ~ .checkmark {
  background-color: #666;
  box-shadow:inset -2px -2px 3px 0px rgba(95, 150, 121, 1),2px 2px 4px 1px rgba(3, 3, 3, 1),inset 2px 1px 3px 0px rgba(103, 145, 123, 1),inset 3px 2px 2px 0px rgba(2, 3, 2, 1);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkcontainer input:checked ~ .checkmark:after {
  display: block;
}
.checkcontainer .checkmark:after {
  left: 8px;  top: 5px;
  width: 3px;  height: 7px;
  border: solid tan;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
