.winLayerParent {
	overflow: hidden;
}

.winLayer {
	width: 100%;
	min-height: 100%;
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	z-index: 199999991;
}

.winLayerCloser {
	width: 25px;
	height: 25px;
	background: transparent;
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: -25px;
	z-index: 2;
}

.winLayerCloser::before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: '\f00d';
	font-family: 'FontAwesome';
	font-size: 16px;
	text-align: center;
	color: white;
	line-height: 150%; 
}

.winLayerLay {
	max-height: 100%;
	background: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	overflow: auto;
}

.winLayerContent {
	position: relative;
	width: 100%;
	max-width: 910px;
	min-height: 200px;
	padding: 30px;
	margin: 45px 0;
	background: #fff;
	display: none;
	border-radius: 0px;
	box-shadow:0 0 5px #666;
}

.winLayerFooter {
	width: 100%;
	height: 85px;
	background: transparent;
}


.winLayerContent {
	
}

.winLayerContent div.descr {
	
}

.winLayerContent .btn {

}

.winLayerContent .btn label {
	width: auto;
	display: inline-block;
}


.winLayerContent h1 {
	margin: 0;
}

@media screen and (max-width: 1070px) {
	.winLayerCloser {
		right: 0px;
		z-index: 20;
	}
	.winLayerCloser::before {
		content: '\f00d';
		color: #007fff;
	}
}