#newsletter_popup{
	display: none;
	position: fixed;
	z-index: 9000;
	bottom: 35px;
	right: 35px;
	width: 614px;
	padding: 20px 20px 28px;
	background: #000;
	color: #fff;
	opacity: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 600ms ease;
	transition: all 600ms ease;
	-webkit-transition-property: -webkit-transform, opacity;
	transition-property: transform, opacity;
}
#newsletter_popup.shown{
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
#newsletter_popup.done{
	background: #f5ffe5;
}
#newsletter_popup .close{
	display: block;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	font-size: 28px;
	position: absolute;
	z-index: 10;
	top: 14px;
	right: 14px;
	opacity: 1;
}
#newsletter_popup span.wpcf7-not-valid-tip{
	display: none;
}
#newsletter_popup div.wpcf7-response-output{
	margin-bottom: 0;
}
#newsletter_popup .after_send{
	display: none;
}
@media (max-width: 767px){
	#newsletter_popup{
		bottom: 0;
		width: auto;
		left: 0;
		right: 0;
	}
}