/* shst-checkbox.css */

 /* Customize the label container. */
.shst-cbx-label {
  display: block;
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox. */
.shst-cbx-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox. */
.shst-cbx-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  margin: 0px 0px 0px -10px;
  background-color: rgb(221, 156, 57);
  border: solid black;
  border-width: 1px;
}

/* On mouse-over, add a grey background color. */
.shst-cbx-label:hover input ~ .shst-cbx-checkmark {
  background-color: rgba(78, 207, 74, 0.623);
}

/* When the checkbox is checked, add a blue background. */
.shst-cbx-label input:checked ~ .shst-cbx-checkmark {
  background-color: rgb(91, 177, 42);
}

/* Create the shst-cbx-checkmark/indicator (hidden when not checked). */
.shst-cbx-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the shst-cbx-checkmark when checked. */
.shst-cbx-label input:checked ~ .shst-cbx-checkmark:after {
  display: block;
}

/* Style the shst-cbx-checkmark/indicator. */
.shst-cbx-label .shst-cbx-checkmark:after {
  left: 14px;
  top: 0px;
  width: 20px;
  height: 40px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 