/* ---------------------------------------------------- */
/* Radio control                                        */
/* ---------------------------------------------------- */

/* The container */
.RadioContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    /* margin-bottom: 0px; */
    /* margin-top: 5px; */
    cursor: pointer;
    font-size: 18px;
    font-family: 'Trebuchet MS';
    color: darkblue;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 36px;
}

/* Hide the browser's default radio button */
.RadioContainer input {
  /* position: absolute; */
  opacity: 0;
  cursor: pointer;
  margin-top: 10px;
}

/* Create a custom radio button */
.checkmark {
  position: absolute; 
  top: 0;
  left: 0;
  height: 18px;
  width: 16px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid darkblue;
  margin-top: 5px;
  margin-left: 10px;
}

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

/* When the radio button is checked, add a blue background */
.RadioContainer input:checked ~ .checkmark {
  background-color: darkblue;
}

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

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

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

 /* ---------------------------------------------------- */