@charset "utf-8";
/*******************************
The Redirect Popup Window
*******************************/
/* The Modal (background) */
.modalBox {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1;
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}
/* Modal Content */
.modal-frame {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	width: 40%;
	height: 200px;
	padding: 2px;
	border: medium #9F6D32 solid;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	color: #9F6D32;
	font-size: 25px;
	text-align: center;
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}
@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
/* The Close Button */
.close {
	color: white;
	float: right;
	font-size: 30px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: goldenrod;
	text-decoration: none;
	cursor: pointer;
}
.modal-header {
	padding-right: 5px;
  	background-color: #9F6D32;
  	color: white;
	text-align: center;
}
h3 {
	margin-top: 0px;
	padding-top: 12px;
	padding-bottom: 12px;
}
.modal-body {
	padding: 1px;
}
@media only screen and (max-width: 700px) {
.modal-frame {
	width: 80%;
}
}
