#was-this-helpful{
	background-color: transparent;
	margin-top:1em;
	padding: 2.5em;
	border-radius: 0px;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	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;
    color: var(--e-global-color-primary);
    font-family: "Open Sans", Sans-serif;
    font-size: 24px;
    line-height: 1.3em;
}

#wthf-yes-no span{
	padding: 8px 32px;
	border: 1px solid #CECECE;
	border-radius:10em;
	background-color:rgba(255,255,255);
	color: var(--e-global-color-primary);
	cursor: pointer;
	font-size:1.2em;
}

#wthf-yes-no span:hover{
	background-color:var(--e-global-color-primary);
	color: #fff;
	border: 1px solid var(--e-global-color-primary);
}

#wthf-yes-no span:active{
	background-color:var(--e-global-color-primary);
	color: #fff;
	border: 1px solid var(--e-global-color-primary);
}

#wthf-yes-no span:first-child{
	margin-right:0.4em;
}

#wthf-yes-no span:last-child{
	margin-left:0.4em;
}

#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 only screen and (max-width: 767px) {
  #was-this-helpful {
    flex-direction: column;
  }
  #wthf-title {
  	padding-right: 0;
  	padding-bottom: 1em;
  }
}