#was-this-helpful{
	background-color: #f3f3f3;
	margin: 0 55px 55px 0;
	padding: 1.2em;
	border-radius: 0.2em;
	text-align:center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#was-this-helpful *{
	-webkit-transition: background-color 200ms, box-shadow 200ms;
  transition: background-color 200ms, box-shadow 200ms;
}

#wthf-title,#wthf-yes-no{
    display: inline-block;
}

#wthf-title {
    padding-right: 2em;
}

#wthf-yes-no span{
	padding: 0.6em 1.8em;
	border-radius: 0.2em;
	background-color: white;
	cursor: pointer;
	color: #008fa4;
	border: 1px solid #e0e0e0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#wthf-yes-no span:hover,
#wthf-yes-no span:active {
	background-color: #008fa4;
	color: white;
	border-color: #008fa4;
}

#wthf-yes-no span:first-child{
	margin-right:0.3em;
}

#wthf-yes-no span:last-child{
	margin-left:0.3em;
}

#was-this-helpful.wthf-disabled{
	pointer-events:none;
	position:relative;
}

#was-this-helpful.wthf-disabled *{
	opacity: 0;
}

#was-this-helpful.wthf-disabled:after{
	content:attr(data-thank-text);
	display:block;
	position:absolute;
}

@media screen and (max-width:768px) {

	#was-this-helpful {
		margin-right: 0;
		flex-direction: column;
	}

	#wthf-title {
		padding-right: 0;
		margin-bottom: 25px;
		width: 100%;
	}

	#wthf-yes-no {
		margin-bottom: 15px;
	}

}