/* General styles for the modal */

/* 
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the 
perspective effects (not including the modals and the overlay).
*/
.md-perspective,
.md-perspective body {
	height: 100%;
	overflow: hidden;
}

.md-perspective body  {
	background: #222;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}

.container {
	background: #e74c3c;
	min-height: 100%;
}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50%;
	max-width: 630px;
	min-width: 320px;
	height: auto;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(240,195,87,0.6);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.md-content {
	background: #ffffff;
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
	border: 1px solid #fff;
	
	font-family: 'ff-netto-web';
	font-size: 16px;
	color: #353535;	
}

.md-content h3 {
	margin: 0;
	padding: 1em 0.4em 0.4em;
	text-align: center;
	background: #f0c357;
	border-radius: 3px 3px 0 0;
	border: 1px solid #fff;
}
.md-content > div {
	padding: 15px 20px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
	letter-spacing: normal;
}

.md-content > div p {
	margin: 0;
	padding: 10px 0;
}

.md-content > div ul {
	margin: 0;
	padding: 0 0 30px 20px;
}

.md-content > div ul li {
	padding: 5px 0;
}

.md-content button {
	display: block;
	margin: 0 auto;
	border: none;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}
.md-close {
	width: 19px;
	height: 20px;
	background: url(../images/close.png) no-repeat 0 0;
		
}

.border { height: 1px; background: #000; margin: 10px 0; }

.md-content .form { overflow: auto; }
.md-content .field {
	margin-top: 20px;
	float: left;
	width: 50%;
}

.md-content input, .md-content textarea {
	border: 1px solid #353535; 
	font-family: 'ff-netto-web';
	font-size: 17px;
	margin: 0 0 20px;
	padding: 5px;
	width:90%;
}

.submit-btn {
	margin: 20px 0 0;
	padding: 2px;
	border: 4px solid #f0c357;
	cursor: pointer;
}
.submit-btn .link {
	padding: 5px 0;
	background: #f0c357;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	border: 1px solid #f0c357;
	transition: background, color 0.5s ease-in; 
	-webkit-transition: background, color 0.5s ease-in; 
	-moz-transition: background, color 0.5s ease-in; 
	-o-transition: background, color 0.5s ease-in;
	
}
.submit-btn .link:hover {
	border: 1px solid #f0c357;
	background: #fff;
	color: #353535; }
/* Individual modal styles with animations/transitions */

/* Effect 7:  slide and stick to top */
.md-effect-7{
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.md-effect-7 .md-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}

.md-show.md-effect-7 .md-content {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}


@media screen and (max-width: 32em) {
	.md-content, .md-content input, .md-content textarea { font-size: 80%; margin-bottom: 10px; }
	.md-content .field { float: none; width: 100%; margin: 5px 0 0; padding: 0; }
	h3 img { width: 75%; }

}