.newsletter_popup_container {
	max-width: 650px;
	background-image: url('../images/newsletter_background.png');
	position: fixed;
	right: 20px;
	height: auto;
	z-index: 777777777;
	display: block;
	transition: bottom 0.3s ease 0s;
	width: 100%;
	color: #fff;
	font-size: 22px;
	padding: 50px;
	font-weight: 500;
	background-size: cover;
	bottom: -800px;
	visibility: hidden;
}

.newsletter_popup_container.show {
	bottom: 0px;
	visibility: visible;
}

.newsletter_popup_container .title {
	font-size: 30px;
	font-weight: 600;
}

.newsletter_popup_container > div {
	margin-bottom: 20px;
}

.newsletter_popup_container a.button {
	background-color: #FF0032;
	color: white;
	border-radius: 5px;
	padding: 10px 30px;
}


.newsletter_popup_container .close:after{
	display: inline-block;
	content: "\00d7";
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 40px;
}
