﻿/* The Modal (background) */
.simple-modal {
	position: fixed; /* Stay in place */
	z-index: 6000; /* Sit on top */
	padding-top: 50px; /* Location of the box */
	left: 0;
	top: 0px;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* The Modal (background) */
.simple-modal-nobg {
	position: fixed; /* Stay in place */
	z-index: 6000; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 10px;
	top: 10px;
}


/* Modal Content */
.simple-modal-content-nobg {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 60%;
	background-color: #ffffff;
	min-height: 90vh;
	width: 90vw;
	color: white;
	/* 
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  
    -moz-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;

        */
}

/* Modal Content */
.simple-modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 1050px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
	-moz-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	max-height: 100%;
	overflow-y: auto;
}


@media (max-width: 1050px), (max-device-width: 1050px) {
	.simple-modal-content {
		width: 100%;
	}
}

	.simple-modal-content p {
		color: #1D1D1D;
	}

	.simple-modal-content a {
		color: #002D62;
	}

/* 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;
	}
}


/*
	Gold = #AA9F78
	Black = #1D1D1D
	BlackLighter = #959595
	Grey = #DBDAD9
	Brown = #452112
	Red = #b81010
*/
.simple-modal-header {
	padding: 2px 16px;
	background-color: #002D62;
	color: #EFF1F2;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

	.simple-modal-header h2 {
		color: #EFF1F2;
		font-family: "Arial", Sans-Serif;
	}
	.simple-modal-header h2 {
		color: #EFF1F2;
		font-family: "Arial", Sans-Serif;
	}

.simple-modal-body {
	padding: 10px 16px 2px 16px;
}

	.simple-modal-body h3{
		font-size:16px;
	}

	.simple-modal-footer {
		padding: 2px 16px;
		background-color: #002D62;
		color: #1D1D1D;
	}
