@charset "utf-8";
/* CSS Document */
.rememberCheckBox {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  color: #707070;
  max-width: 120px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.rememberCheckBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.rememberCheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #707070;
}

/* When the checkbox is checked, add a blue background */
.rememberCheckBox input:checked ~ .rememberCheckmark {
  background-color: #003c8e;
  border: 1px solid #003c8e;
}

/* Create the rememberCheckmark/indicator (hidden when not checked) */
.rememberCheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the rememberCheckmark when checked */
.rememberCheckBox input:checked ~ .rememberCheckmark:after {
  display: block;
}

/* Style the rememberCheckmark/indicator */
.rememberCheckBox .rememberCheckmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}