body {
	font-size: 0.8em;
    line-height: 1.5em;
}

#survey-main {
	max-width: 50em;
	margin: auto;
	position: relative;
}

.survey-btn {
	background: white;
    border: none;
	padding: 0;
	width: 43%;
	margin-bottom: 5em;
}

.survey-btn img { width: 100%;}

#answer-desc {
	font-size: 1.7em;
    line-height: 1.3em;
}

#answer-title {
	text-align: center;
	margin-top: 1.5em;
}

#answer-img-box img{
	height: auto;
    width: 100%;
    margin: auto;
}

.survey-btn:hover {
	opacity: .5;
	cursor: pointer;
}

#send-form {
	display: block;
	margin: 5em 0;
}

.radio-group {
	position: relative;
}

  .radio-parent:hover {
	cursor: pointer;
  }

  .radio-group input[type=radio]:focus {
	  border: none!important;
	  outline: none!important;
  }

  .radio-group input[type=radio] {
	  margin: 0;
	  padding: 0;
	  appearance: none!important;
	  -webkit-appearance: none!important;
	  height: 1em;
	  width: 10em;
	  position: absolute;
	  z-index: 5;
  }

  .radio-group input:checked + label {
	  filter: none;
	  -webkit-filter: none;
	  -moz-filter: none;
  }

.radio-group input[type=radio] + label {
	background: url('../imgs/btns/survey_unchecked.png') no-repeat left;
	padding-left: 2rem;
	background-repeat: no-repeat;
	background-size: contain;
	cursor:pointer;
}
.radio-group input[type=radio]:checked + label {
	cursor:pointer;
	background: url('../imgs/btns/survey_checked.png') no-repeat left;
    background-repeat: no-repeat;
    background-size: contain;
}


/*
.radio-group input[type=radio] {
	display: none;
}
.radio-group input[type=radio] + label {
	background: url('client/imgs/btns/survey_unchecked.png') no-repeat left;
	padding-left: 2rem;
}
.radio-group input[type=radio]:checked + label {
	background: url('client/imgs/btns/survey_checked.png') no-repeat left;
}
*/