.newsletter-box {
	position: fixed;
	top: auto;
	right: -400px;
	bottom: 65px;
	left: auto;
	z-index: 2500;

	background-color:rgba(255, 255, 255, 0.8);
	border: 3px solid #cd0036;
	transition: all 1s ease-out;
	padding: 30px 15px 22px;
	max-width: 215px;
	color: #cd0036;
	text-align: center;
}

.newsletter-box.show {
	right: 22px;
}

.newsletter-box__title {
	line-height: 1.1;
	margin-bottom: 18px;
}

.newsletter-box__close {
	color: #cd0036;
	position: absolute;
	line-height: 0.6;
	right: 3px;
	top: 2px;
	font-size: 35px;
	width: 30px;
	height: 30px;
}

@media screen and (max-width:767px) {
	.newsletter-box {
		bottom: 35px;
	}
	
	.newsletter-box.show {
		right: 50%;
		transform: translateX(50%);
	}
}