/*
// -------------------------------------------------------------------------------------
// Software PRODUCT: GOLOS.VS (Voting System).
// License Nunber: CM-LIC-GOLVS-001-20N2O1V.
// Must read and agree with the LICENSE-AGREEMENT.txt before deployment of modification!
// -------------------------------------------------------------------------------------
*/
/* CSS Document */
/* see also on: https://www.w3schools.com/howto/howto_css_custom_checkbox.asp */
/* see also: https://medium.com/mobile-app-developers/styling-checkbox-css-tips-e103c54ea1c7 */

/* == custom checkbox == */
/* Customize the label (the check_container) */
.check_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;
	color: navy;
}

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

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-style: dotted;
  border-width: thin;
}

/* On mouse-over, add a grey background color */
.check_container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a special background colour */
.check_container input:checked ~ .checkmark {
  background-color: white;
	/* rgb(102,204,153); */
  /* #336699; */
}

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

/* Show the checkmark when checked */
.check_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check_container .checkmark:after {
  left: 7px;
  top: 4px;
 
width: 4px;
  height: 8px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* == custom radio-button == */
 /* Customize the label (the radio_container) */
.radio_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;
}

/* Hide the browser's default radio button */
.radio_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #FAFAFA;
  border-radius: 50%;
  border-style: dotted;
  border-width: thin;
}

/* On mouse-over, add a grey background color */
.radio_container:hover input ~ .radiomark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio_container input:checked ~ .radiomark {
  background-color: #336699;
}

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

/* Show the indicator (dot/circle) when checked */
.radio_container input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio_container .radiomark:after {
  top: 7px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
} 

li.validator_msg {
  font-size: 12pt;
  color: red;
}

input[type=checkbox] {
 	width: 20px;
  height: 20px;
  min-width: 20px;
}

