﻿/* transparent fullscreen background */

 
.my-popup-background-layer {

  position: fixed;

  width: 100%;

  height: 100%;

  top:80px;

  left:0;

  background: rgba(0, 0, 0, 0.7);

  font-size: 100%;

  font-family: 'Open Sans', Arial, Helvetica, sans-serif;

  z-index: 9999;

}


/* master popup div container */

.my-popup-container {

  position: fixed;

  left: 50%;

  margin-left: -200px;

  top: 40%;

  margin-top: -180px;

  width: 400px;

  min-height: 400px;

  background-color: #ffffff;

  padding: 0px;

  text-align: center;

  border-radius: 0px;

  box-sizing: border-box;

  border:thick #FCAC45 solid ;

-moz-box-shadow: 0px 0px 25px 2px #333333; 

	-webkit-box-shadow: 0px 0px 25px 2px #333333; 

	box-shadow: 0px 0px 25px 2px #333333; }

.mlctr-close {
  display: block;
  position: absolute;
  color: #ffffff;
  font-size: 40px;
  line-height: 20px;
  font-weight: 100;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s, opacity ease-in-out .25s;
  -moz-transition: -moz-transform 0.5s, opacity ease-in-out .25s;
  -o-transition: -o-transform 0.5s, opacity ease-in-out .25s;
  transition: transform 0.5s, opacity ease-in-out .25s;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mlctr-close:hover {
  opacity: 1;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.my-popup-container h1 {
  width: 100%;
  font-size: 30px;
  line-height: 26px;
  font-weight: 600;
  background-color: #FCAC45;
  color: #ffffff;
  padding: 30px 30px;
  margin: 0;
  box-sizing: border-box;
}
.my-popup-container h1 span {
  font-size: 18px;
  line-height: 25px;
}
.my-popup-container h1 p {
  color: #ffffff;
  padding: 0;
}
.my-popup-container p {
  width: 100%;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #000000;
  padding: 20px 40px 0;
  margin: 0;
  box-sizing: border-box;
}
.my-popup-container .mlctr-check {
  width: 100%;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #000000;
  padding: 10px 40px 0 90px;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
}
.mlctr-message-error {
  display: block;
  width: 100%;
  height: 15px;
  font-size: 12px;
  margin: 8px 0;
  padding: 0 30px;
  font-weight: bold;
  text-align: center;
  color: #DF1423;
  box-sizing: border-box;
}
.my-popup-container input[type=text] {
  width: 320px;
  height: 40px;
  font-size: 13px;
  line-height: 16px;
  padding: 5px 18px;
  background-color: RGBA(255,255,255,0.85);
	border: 1px solid #d8d5d5;
  color: #000000;
  text-align: center;
  margin: 0;
   -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: border ease-in-out .15s;
  -moz-transition: border ease-in-out .15s;
  transition: border ease-in-out .15s;
  box-sizing: border-box;
}
.my-popup-container input[type=text]:focus {
	border: 1px solid #DF1423;
  outline: 0;
}
.my-popup-container input[type=submit], .my-popup-container input[type=button] {
  width: 320px;
  height: 40px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  padding: 0 0 1px 0;
  margin: 15px 0px;
	border: 0;
  background-color: #DF1423;
  color: #ffffff;
   -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color ease-in-out .15s;
  -moz-transition: background-color ease-in-out .15s;
  -o-transition: background-color ease-in-out .15s;
  transition: background-color ease-in-out .15s;
  cursor: pointer;
  box-sizing: border-box;
  outline: 0;
}
.my-popup-container input[type=submit]:hover, .my-popup-container input[type=button]:hover {
  background-color: red;
}
.my-popup-container input[type=submit]:active, .my-popup-container input[type=button]:active {
  padding: 2px 0 0 0;
  box-shadow: inset 2px 2px 8px RGBA(0,0,0,0.4);
  -moz-box-shadow: inset 2px 2px 8px RGBA(0,0,0,0.4);
  -webkit-box-shadow: inset 2px 2px 8px RGBA(0,0,0,0.4);
  outline: 0;
}
.mlctr-privacy {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  color: #000000;
  padding: 0;
  margin: 0;
}
.mlctr-privacy a {
  color: #DF1423;
}
.m-5 {
	margin:3em;}
	
	.my-popup-container a:hover {
	color:white; text-decoration:none; 
	} 
		.lowercase {
	font-variant: normal;
	text-transform: lowercase;
} 

