/* 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;
}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 70%;
	max-width: 650px;
	min-width: 660px;
	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(18, 18, 18, 0.8);
	-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 {
	color: #333333;
	background: #F7F7F7;
	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: 600;
	opacity: 0.8;
	background: rgba(0,0,0,0.1);
	border-radius: 3px 3px 0 0;
	color:#C99702;
	text-transform:uppercase;
}

.md-content > div {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 15px;
  color:#666;
}

.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;
}

/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.column{
  margin:0px auto;
  width:140px;
}

.column button {
  /*background: rgba(0, 0, 0, 0) none repeat scroll 0 0;*/
  background:none;
  border: 1px solid #fff;
  color: #EB0089;
  padding: 7px 15px;
  position: relative;
  top: -5px;
  font-weight:400;
}

.md-close {
  background: none;
  border: 1px solid #333;
  font-size: 15px !important;
  margin-bottom: 10px;
  padding: 6px 15px;
  position: relative;
  text-transform: uppercase;
  top: -8px;
}

.column button:hover{
	border:1px solid #EB0089;
	color:#EB0089;
}

.md-close:hover{
	background:#D8A201;
	border:1px solid #D8A201;
	color:#fff;
}


/* pop up form */
.topHeading { color:#fff !important; background:#EB0089; padding:10px; font-weight:400;}
.clalenderPart{ overflow:hidden;}
.clalenderPart label { color: #666; display: block; font-weight: 400; font-size: 14px; padding-left:10px;}
.clalenderPart input[type="text"]{ border:none; padding:10px; border:1px solid #E6E6E6; width:100%;}
.checkBox_de { padding: 15px 30px !important;}
.checkBox_de input[type="checkbox"] { display: inline-block; margin-top: 0; vertical-align: text-bottom;}

.namePart{ overflow:hidden;}
.namePart input[type="text"]{ border:none; padding:10px; border:1px solid #E6E6E6; width:100%;}
.namePart label { color: #666; float: left; font-size: 14px; font-weight: 400; padding: 10px 10px 10px 0; color:#666;}

.namePart .col-md-6{ margin-top:8px;}
.namePart input[type="number"]{ padding:10px; width:60%}
.paddNone{ padding:0px;}
.marNone{ margin:0px !important;}
.textAre{ width:100%; padding:0 30px !important;}
.textAre textarea{  border:none; padding:10px; border:1px solid #E6E6E6; width:100%;}

.sendTitle { color: #666; font-size: 14px; overflow: hidden; padding: 20px 30px !important;}
.sendTitle a{ color:#EB0089; display:inline-block !important;}




