/* The container */
.container-paywaybox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-paywaybox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark-paywaybox {
  position: absolute;
  top: 0px;
  left: 5px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-paywaybox:hover input ~ .checkmark-paywaybox {
  background-color: #000000;
}

/* When the checkbox is checked, add a blue background */
.container-paywaybox input:checked ~ .checkmark-paywaybox {
  background-color: #ffbebe;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-paywaybox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-paywaybox input:checked ~ .checkmark-paywaybox:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-paywaybox .checkmark-paywaybox:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}




/* The container */
.container-itembox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-itembox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark-itembox {
  position: absolute;
  top: 0px;
  left: 5px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-itembox:hover input ~ .checkmark-itembox {
  background-color: #000000;
}

/* When the checkbox is checked, add a blue background */
.container-itembox input:checked ~ .checkmark-itembox {
  background-color: #ffbebe;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-itembox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-itembox input:checked ~ .checkmark-itembox:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-itembox .checkmark-itembox:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}