
.user-register-form .checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.user-register-form .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.user-register-form .checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid red;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.user-register-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.user-register-form .checkbox-container:hover input ~ .checkmark {
  background-color: white;
}

.user-register-form .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 1px solid #dddddd;
}

.user-register-form .checkbox-container input {
  position: absolute;
  opacity: 0;
  left: 0;
  cursor: pointer;
  height: 18px;
  width: 18px;
  top: 0;
  z-index: 1;
}

form.user-register-form .Form__Element.FormChoice a {
  color: #ee1000;
  text-decoration: underline;
}