.modal{
	display:none;
	position:fixed;
	z-index:3;
	padding-top:10px; /* determines content location from top of screen */
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow:auto;
	background-color:rgb(0,0,0);
	background-color:rgba(0,0,0,1.0); /* sets color & opacity of modal background */
	}

.modal-content{
	display: inline-block;
	position:relative;
	outline:0;
	background-color: black;
	margin-left:20px;
	padding:0;
	border: 0px solid black;
	height:95%;
/* width:600px */
	}

.modal-button{
	border:none;
	display:inline-block;
	padding:8px 16px;
	vertical-align:middle;
	overflow:hidden;
	text-decoration:none;
	color:white;
	background-color:transparent;
	text-align:center;
	cursor:pointer;
	white-space:nowrap
/*	font-size:24px; */
	}

.hover-opacity:hover{opacity:0.60} /* higher is darker */

.modal-button:hover{color:#000!important;background-color:#fff!important}

.modal-close:hover{color:#fff!important;background-color:#f44336!important} /* red background; white text */

.modal-close{
	font-size:24px!important;
	position:absolute;right:0;top:0;
	font-family:Verdana,sans-serif;
	} 

