@charset "UTF-8";
/* CSS Document */

/*.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
	z-index:15000;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
    width: 15em;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
.close {
    background: #FFF;
    color: #000;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
.close:hover {
    background:#999;
	color:#FFF;
}
.modalDialog{
 display:none;
}

.modalDialog{
 display:block;
}*/

 
/* Normal styles for the modal */
#modal {
	left:50%;
	background-color:#068442;
	margin:-250px 0 0 -10em;
	padding: 15px 15px 15px 15px;
	opacity: 0;
	top:-50%;
	visibility: hidden;
	width: 25em;
	box-shadow:
	0 0 0 10px #000,
	0px 10px 10px 10px rgba(0,0,0,.4);
	box-sizing:border-box;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	z-index:1500000;
	position:fixed;
    color:#000;
	border-color:#FEFB06;
	border-style:solid;
	border-width:1px;
}

@media screen and (max-width: 500px ) {
  #modal { 
  	left:40%;
	
	}

}

	/* Make the modal appear when targeted */
	#modal:target {
		opacity: 1;
		top:50%;
		visibility: visible;
	}
#modal .header,#modal .footer {
	border-bottom: 1px solid #e7e7e7;
	border-radius: 5px 5px 0 0;
}
	#modal .footer {
		border:none;
		border-top: 1px solid #e7e7e7;
		border-radius: 0 0 5px 5px;
	}
#modal h2 {
	margin:0;
	color:#FEFB06;
	font-family:GothamBold;
	font-size:2.5em;
	line-height:1em;
}

#modal p {
	margin:10px 0 10px 0;
	color:#fff;
	font-family:Arial;
	font-size:1.2em;
}

#modal .btn {
	float:right;
}
#modal .copy,#modal .header, #modal .footer {
	padding:15px;
}
.modal-content {
	background: #f7f7f7;
	position: relative;
	z-index: 20;
	border-radius:5px;
}
#modal .copy {
	background: #fff;
}

#modal .overlay {
	background-color: #000;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

input[type=submit] {
    padding:5px 15px; 
    background:#ccc; 
    border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 0px; 
}

/******** DEMO STYLES ********/


.btn {
	background-color: #000;
	border: 1px solid #ccc;
	color:#ccc;
	display:inline-block;
	padding:5px 11px;
	text-decoration:none;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	box-shadow:0 1px rgba(0,0,0,.35);
	-moz-box-shadow:0 1px rgba(0,0,0,.35);
	-webkit-box-shadow:0 1px rgba(0,0,0,.35);
	position:absolute;
     top:-1.5em;
     right:-1.5em;
}
	.btn:active {
		background-color: #000;
		
	}
	.btn.go {
		background-color: #000;
		color:#fff;
	}
		.btn.go:active {
			background-color: #000;
			
		}
	