

.question-options-container ul{
  list-style: none;
  margin: 0;
  padding: 0;
	overflow: auto;
}

ul li{
  color: #666;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: auto;
}

ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

ul li label{
  display: block;
  position: relative;
  font-size: 1em;
  padding: 5px 25px 25px 25px;
  min-height: 35px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  font-size:1em !important;
	font-weight:400 !important;
	font-family: 'Poppins' !important;
}

ul li:hover label{
	color: #333;
}

ul li .check{
  display: block;
  position: absolute;
  border: 1px solid #666;
  border-radius: 100%;
  height:15px !important;
  width:15px !important;
  top: 10px !important;
  left:0px !important;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

ul li:hover .check {
  border:1px solid #666;
}

ul li .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
height: 9px !important;
width: 9px !important;
top: 2px !important;
left: 2px !important;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 1px solid #666;
}

input[type=radio]:checked ~ .check::before{
  background: #666;
}

input[type=radio]:checked ~ label{
  color: #666 !important;
}

