/* 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).
*/





.main {
    position: absolute;
    z-index: 100;
}





.md-perspective,
.md-perspective body {
	height: 100%;
	overflow: hidden;
}

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

.container {
	background-color:none;
	min-height: 100%;
}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50%;
	max-width: 630px;
	min-width: 320px;
	height: auto;
	z-index: 1010;
	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:1002;
	opacity: 0;
	background:rgba(0, 0, 0, 0.0);
	-webkit-transition: all 1.3s;
	-moz-transition: all 1.3s;
	transition: all 1.3s;
}

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

/* Content styles */
.md-content {
	color: #fff;
	background:none;
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
}

.md-content h3 {
	margin: 0;
	padding: 0.4em;
	text-align: center;
	font-size: 2.4em;
	font-weight: 300;
	opacity: 0.8;
	background: rgba(0,0,0,0.0);
	border-radius: 3px 3px 0 0;
}

.md-content > div {
	padding: 15px 40px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
}

.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;
	font-size: 0.8em;
}












/* Effect 16:  Blur */
.md-show.md-effect-16 ~ .md-overlay {
	background:none;
}

.md-show.md-effect-16 ~ .bg-blur {
	-webkit-filter: blur( 4px) drop-shadow( 0px 0px 0px black);
	-moz-filter:   blur( 4px);
	-ms-filter:    blur( 4px);
	-o-filter:     blur( 4px);
	filter:     blur( 4px);
	}



.md-effect-16 .md-content {
	-webkit-transform: translateY(70%) scale(0.2295);
	-moz-transform: translateY(70%) scale(0.2295);
	-ms-transform: translateY(70%) scale(0.2295);
	transform: translateY(70%) scale(0.2295);
	opacity: 0;
	color:white;
    background: #fff;
    border-radius: 3px;
    border: none;
-webkit-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.021);
-moz-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.021);
box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.021);}

.md-show.md-effect-16 ~ .bg-blur{
	-webkit-transition:	all  ease-in 700ms;
	-moz-transition: 	all  ease-in 700ms;
	transition: 		all  ease-in 700ms;
}

.bg-blur{
	-webkit-transition:	all  ease-in 600ms;
	-moz-transition: 	all  ease-in 600ms;
	transition: 		all  ease-in 600ms;
}

.md-effect-16 .md-content {
	-webkit-transition:	all cubic-bezier(1,-0.1,.53,1.19) 900ms;
	-moz-transition: 	all cubic-bezier(1,-0.1,.53,1.19) 900ms;
	transition: 		all cubic-bezier(1,-0.1,.53,1.19) 900ms;
}

.md-show.md-effect-16 .md-content {
	padding:10px 0;
	-webkit-transform: translateY(0) scale(1.0);
	-moz-transform: translateY(0) scale(1.0);
	-ms-transform: translateY(0) scale(1.0);
	transform: translateY(0) scale(1.0);
		  opacity: 1;
    background: #fff;
    border-radius: 3px;
    border:none;
	color:#444;
-webkit-box-shadow: 0px 10px 56px 0px rgba(0,0,0,0.71);
-moz-box-shadow: 0px 10px 56px 0px rgba(0,0,0,0.71);
box-shadow: 0px 10px 56px 0px rgba(0,0,0,0.71);
}


.md-show.md-effect-16 + main img  {
	opacity: 0;
}


.black {color:#111;}





@media screen and (max-width: 768px) {


.black {color:#111;}

}