/* Buttons */

.modal-cover {
	display:none;
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index: 999;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.5);	
}

.modal {	
	position:relative;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;	
	outline: none !important;	
	padding: 25px 0 0 0;
	max-width: 90%;
	max-height: 95%;
	overflow: auto;
	background: #fff;
	color: #2e333a;
	box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	opacity: 1;
	transition: opacity 0.5s linear 0s;
	/*transition-duration: 1s; transition: height 1s; -moz-transition: height 1s; -webkit-transition: height 1s; -o-transition: height 1s;*/
}
.modal p { padding: 0 20px 20px 20px }

.modal-inisde {
	background: #fff;
}


@media screen and (max-width: 720px) {
	.modal { max-width: 100%; width: 100% }
}
