/* Advantage-Popup */
@import url(//fonts.googleapis.com/css?family=Lato:400,700,900);
.ppt-form {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-weight: 400;
	color: #505154;
}

.ppt-form .wrapper {
	background: white;
	overflow: auto;
	border: 3px #3399cc solid;
	border-radius: 5px;
	padding: 0;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 16px;
}

.ppt-form .wrapper.form-success .container h1 {
	-webkit-transform: translateY(85px);
		-ms-transform: translateY(85px);
			transform: translateY(85px);
}

.ppt-form .container {
	max-width: 600px;
	margin: 0 auto;
	padding: 80px 0;
	height: 400px;
	text-align: center;
}

.ppt-form .container h1 {
	font-size: 40px;
	-webkit-transition-duration: 1s;
			transition-duration: 1s;
	-webkit-transition-timing-function: ease-in-put;
			transition-timing-function: ease-in-put;
}

.ppt-form .wrapper {
	border-spacing: 0;
}

.ppt-form .wrapper td {
	/*padding: 10px 10px 15px 10px;*/
	padding: 5px 10px 10px 10px;
	margin: 0;
	border-top: none;
}

.ppt-form .title {
	background: #3399cc;
	text-align: center;
	color: white;
	font-size: 24px;
	font-weight: 900;
	line-height: 2em;
	width:100%;
}

.ppt-form .wrapper form {
	padding: 20px 0;
	position: relative;
	z-index: 2;
}

.ppt-form .wrapper select {
	width: auto;
    margin-right: 5px;
}

.ppt-form .wrapper input, .ppt-form .wrapper input.email {
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	outline: 0;
	border: 1px solid #d7d7d7;
	height: 2em;
	width: 250px;
	border-radius: 3px;
	display: block;
	text-align: center;
	color: black;
	-webkit-transition-duration: 0.25s;
			transition-duration: 0.25s;
}

.ppt-form .wrapper input:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

.ppt-form .wrapper input:focus {
	background-color: white;
	color: black;
}

.ppt-form .wrapper label input {
	line-height: 1em; 
	position: relative;
	vertical-align: middle;
	bottom: 2px;
}

.ppt-form .wrapper input[type='submit'] {
	font-size: 16px;
}

.ppt-form .wrapper input[type='text'] {
	font-size: 16px;
	text-align: left;
	padding-left: 10px;
}

.ppt-form .wrapper input[type='checkbox'] {
 	-webkit-appearance: checkbox !important;
     -moz-appearance: checkbox !important;
      -ms-appearance: checkbox !important;
       -o-appearance: checkbox !important;
          appearance: checkbox !important;

	border: 0;
	width: 25px;
	height: 20px;
	padding: 5px 10px 5px 5px;
	display: inline;
	background-color: transparent !important;
}

.ppt-form .wrapper input.form-captcha {
	width: 100px;
}

.ppt-form .wrapper textarea {
	width: 250px;
	height: 50px;
}

.ppt-form .wrapper input[type='radio'] {
 	-webkit-appearance: radio !important;
     -moz-appearance: radio !important;
      -ms-appearance: radio !important;
       -o-appearance: radio !important;
          appearance: radio !important;

	border: 0;
	width: 25px;
	height: 20px;
	padding: 5px 10px 5px 5px;
	display: inline;
	background-color: transparent !important;
}

.ppt-form .wrapper button, .ppt-form .wrapper input.update-button {

	/* These override Interspire's form.css */
	font-family: 'Lato', sans-serif;
	margin: 0;
	font-weight: 400;
	background: none;

	/* Actual definition */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #5dc67b;
	border: 0;
	padding: 10px 0 25px 0;
	height: 40px;
	color: white;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transition-duration: 0.25s;
			transition-duration: 0.25s;
}

.ppt-form .wrapper form button:hover {
	background-color: blue;
}

.ppt-form .branding {
	font-size: 14px;
	line-height: 1em;
	padding-bottom: 20px;
}

.ppt-form .grey {
	background-color: #f5f5f5;
	font-size: 14px;
	line-height: 1.25em;
}

.ppt-form .bottom {
	background-color: #3399cc;
	font-size: 6px;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}

.ppt-form .wrapper .form-tags input[type='checkbox'] {
	margin-top: -2px;
}

.ppt-form .wrapper .form-tags td:first-of-type {
	width: 25px;
}

.ppt-form .wrapper .form-tags td {
	padding: 0 10px;
}

.ppt-form .wrapper .form-tags {
	margin-top: 10px;
}

/* Popup Code */

.ppt-form .popupbutton {
	-webkit-appearance: button;
	   -moz-appearance: button;
			appearance: button;
	text-decoration: none;
	color: initial;
}

.ppt-form .modalDialog {
	position: fixed;
	font-family: 'Source Sans Pro', sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8); 
	z-index: 99999;
	opacity: 0;
	-webkit-transition: opacity 400ms ease-in;
	   -moz-transition: opacity 400ms ease-in;
			transition: opacity 400ms ease-in; 
	pointer-events: none;
}

.ppt-form .modalDialog:target {
	opacity: 1;
	pointer-events: auto;
}

.ppt-form .modalDialog > div {
	width: 500px;
	position: relative;
	margin: 10% auto;
	margin-top: 40px;
}

.ppt-form .close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: 20px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
			border-radius: 12px;
	-webkit-box-shadow: 1px 1px 3px #000;
	   -moz-box-shadow: 1px 1px 3px #000;
			box-shadow: 1px 1px 3px #000;
	z-index: 999;
}

.ppt-form .close:hover {
	background: #00d9ff;
}

.ppt-form .btn {
	-webkit-border-radius: 3;
	   -moz-border-radius: 3;
			border-radius: 3px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #ffffff;
	font-size: 20px;
	background: #3399cc;
	padding: 10px 20px 10px 20px;
	text-decoration: none;
}

.ppt-form .ppt-form a {
	text-decoration: none;
}
