.modal {
	/* display:none; */
	display: inline-block;
	display: inline-block;
	position: fixed;
	z-index:99999;
	border-radius: 5px;
	min-width:20%;
	max-width: 80%;
	box-shadow: 3px 3px 12px 0 rgba(0, 0, 0, 0.4);
	background: #fff;
	opacity: 0;
	color: #aaa;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);

	transition: opacity 0.2s ease-in-out, top 0.2s ease-in-out ; 
}
.modal-animate{
	/* display: inline-block; */
	top:50%;
	opacity: 1;
}
.modal-overlay {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index:99998;
	background: rgba(0,0,0,0.2);
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0;
	transition: all 1s ease-in-out;
}
.modal .modal-content {
	text-align: center;
	padding:20px;
}
.modal .modal-close{
	position: absolute;
	top: 2px;
	right: 5px;
	cursor:pointer;
	padding: 4px;	
}

