.modal-bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	cursor: pointer;
	z-index: 999;
}
.modal-window {
	display: none;
	padding: 17px;
	padding-top: 130px;
	position: fixed;
	top: 100px;
	left: 35%;
	width: 500px;
	height: 422px;
	background: white url("../img/modal-window-bg.jpg") no-repeat center 40px;
	border-radius: 5px;
	z-index: 1000;
}
.modal-text {
	text-align: center;
	margin: 25px auto;
	text-transform: none;
	color: #575757;
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
}
.modal-btn-ok {
	padding: 10px 32px;
}

@media screen and (max-width: 768px) {
	.modal-window {
		left: 0;
	}
}