.popup {
	position: fixed;
	width: 120%;
	height: 100%;
	left: -10%;
	top: 0;
	overflow-y: scroll;
	background: rgba(1, 1, 1, 0.7);
	z-index: 10000002;
	display: none;
}

.popup .window {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 100px;
	margin-bottom: 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 400px;
	padding: 40px;
	background: #fff;
	text-align: center;
	border-radius: 6px;
}

.popup .window .close {
	opacity: 1;
	right: 10px;
	top: 10px;
	position: absolute;
	color: #000;
	font-size: 20px;
}

div .form-group > label {
	color: #444;
	font-size: 14px;
}

input#purchaserPromo {
	height: 55px;
}

.form-text {
	font-size: 12px;
}

.form-control {
	padding: 8px 11px;
}

@media only screen and (max-width: 375px) {
	.popup .window {
		width: 350px;
		padding: 20px;
	}	
}

@media only screen and (max-width: 320px) {
	.popup .window {
		width: 300px !important;
		padding: 20px;
	}
}