/*
    <label class="radioContainer">SI
        <input type="radio"  name="rd-docs-obgl">
        <span class="radioCheckmark"></span>
    </label>
*/

.radioContainer{
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
  margin-left:20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;    
  text-align: left;
} 
.radioContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radioContainer:hover{
    text-decoration: underline;
    color:blue;
}
.radioCheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px !important;
  width:  20px !important;
  background-color: #eee;
  border-radius: 50%;
  border:  thin solid #ccc;
}

/* On mouse-over, add a grey background color */
.radioContainer:hover input ~ .radioCheckmark {
  background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.radioContainer input:checked ~ .radioCheckmark {
  background-color: white;
  border: 6px solid #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.radioContainer:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioContainer input:checked ~ .radioCheckmark:after {
  display: block;
  background-color: white;
  width:50px;
}

/* Style the indicator (dot/circle) */
.radioContainer .radioCheckmark:after {
 	top: 9px;
	left: 9px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: white;
}

/**********/
.radioContainer-med{
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;    
} 

.radioContainer-med input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radioContainer-med:hover{
    text-decoration: underline;
    color:blue;
}
.radioCheckmark-med {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width:  20px;
  background-color: #eee;
  border-radius: 50%;
  border: thin solid #CCC;
}

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

/* When the radio button is checked, add a blue background */
.radioContainer-med input:checked ~ .radioCheckmark {
  background-color: #2196F3;
}

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

/* Show the indicator (dot/circle) when checked */
.radioContainer-med input:checked ~ .radioCheckmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radioContainer-med .radioCheckmark-med:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

