#userTest {
	font-family: 'open_sansregular', sans-serif;
	padding: 20px;
	background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    position: relative;
}

#userTest #questions {
    margin: 0 0 20px;
    line-height: 1;
    color: #a20089 ;
    font-size: 18px;
    font-weight: 400;
}

#userTest #answers {

}

#userTest button {
	font-family: 'open_sansregular', sans-serif;
    cursor: pointer;
    background: #a20089 ;
    width: 100%;
    padding: 10px 15px;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 20px 0 0;
}

#userTest input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

#userTest input[type="radio"]:checked + label {
	color: black;
	position: relative;
}

#userTest input[type="radio"] + label::before {
	content: '';
	width: 1em;
	height: 1em;
	margin-right: .5em;
	position: relative;
	top: .4em;
	display: inline-block;
	background-color: transparent;
	border-radius: 2em;
	border: 4px solid #333;
	cursor: pointer;
}

#userTest input[type="radio"]:checked + label::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5px;
    left: 6px;
    display: inline-block;
    background-color: #a20089 ;
    border-radius: 50%;
}
#userTest label {
	cursor: pointer;
}


#userTest #status {
	display: block;
	text-align: center;
}


#userTest #answers p {
    margin-bottom: 10px;
}

#userTest #result {
	background: #0cff00;
	background: -moz-linear-gradient(left,  #0cff00 0%, #ffce30 35%, #ff0000 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#0cff00), color-stop(35%,#ffce30), color-stop(100%,#ff0000));
	background: -webkit-linear-gradient(left,  #0cff00 0%,#ffce30 35%,#ff0000 100%);
	background: -o-linear-gradient(left,  #0cff00 0%,#ffce30 35%,#ff0000 100%);
	background: -ms-linear-gradient(left,  #0cff00 0%,#ffce30 35%,#ff0000 100%);
	background: linear-gradient(to right,  #0cff00 0%,#ffce30 35%,#ff0000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0cff00', endColorstr='#ff0000',GradientType=1 );
    height: 50px;
    margin-top: 30px;
}


#userTest #point {
	display: inline-block;
	position: absolute;
    bottom: 20px;
    height: 50px;
    padding: 12px 0px;
    box-sizing: border-box;
	font-weight:bold;
}

#userTest #point:after {
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 10px solid #333;
	position: absolute;
	bottom: -10px;
	right: -1px;
}

#userTest #point:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #333;
	position: absolute;
	top: -10px;
    right: -1px;
}

@media (max-width: 767px) {
	.wrapper {
		width:100%;
	}
}