.nicemodal-overlay{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	overflow-y: auto;
	background-color:rgba(0,0,0, 0.7);
	z-index: 20000;
}
.nicemodal-wrap-modal-content{
	display: none;
}
.nicemodal-window{
	position: relative;
	overflow:hidden;
	display: none;
	background-color: #FFF;
	z-index: 200000;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(img/loader.gif);
	background-opacity: 0.2;
	background-size: 40px;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0px 0px 20px 0px rgba(0, 0, 0, 0.5);
	box-shadow:         0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}
.nicemodal-close-button{
	cursor: pointer;
	background-image: url(img/btn-close.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
	border: 0;
	margin: 10px 10px 0 0;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0.6;
	z-index: 3000;
}
.nicemodal-close-button:hover {
	opacity: 1;
}
.nicemodal-alert-message{
	background: #e74c3c;
	padding: 10px;
	margin: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #FFF;
	font-size: 14px;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
	margin-top: 50px;
}