@charset "UTF-8";
/* CSS Document */
/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  cursor: default;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #D0E4F5;
}
/* On mouse-over */
.container:hover input:hover ~ .checkmark {
  background-color: #C5DEF3;
}
/* When the checkbox is checked */
.container input:checked ~ .checkmark {
  background-color: #2381B3;
}
/* On mouse-over and when the checkbox is checked */
.container input:checked:hover ~ .checkmark {
  background-color: #1B648B;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
  -webkit-transition: opacity .3s ease-out;
  -moz-transition: opacity .3s ease-out;
  -ms-transition: opacity .3s ease-out;
  -o-transition: opacity .3s ease-out;
  transition: opacity 0.25s ease-out;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  opacity: 1;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
