
.featherlight .featherlight-close-icon {
	right: .5rem;
}

.featherlight .featherlight-content {
	padding: 2rem 0;
	max-width: inherit;
	
	margin: 0 auto;
	
	box-sizing: border-box;
	
	border-bottom: none !important;
	
	box-shadow: 0 10px 30px rgba(0,0,0,.6);
	
	overflow: visible;
}


.featherlight .featherlight-content section {
	padding: 0;
}

.remind-header {
	position: relative;
	
	padding: 0 45px 20px 90px;
	min-height: 48px;
	
	font-size: 20px;
	line-height: 28px;
	
}

.remind-header:after {
	position: absolute;
	
	content: '';
	
	z-index: 999;
	
	bottom: 30px;
	left: -30px;
	
	width: 120px;
	height: 96px;
	
	background: transparent url(/i/v3/reminder/email-reminder.png) no-repeat center center;
	background-size: cover;
	
	transform: rotate(-10deg);
}


@media (max-width:480px) {
	.remind-header {
		padding: 0 0 20px 0;
		}
	.remind-header:after {
		content: none;
	}
}


/*helper*/

.remind-btn,
.remind-btn:visited { 
	position: relative;
	box-sizing: border-box;

	width: 100%; 
	max-width: 300px; 
	background-color: rgba(96, 173, 66, 1);
	
	border-bottom-color: rgba(36,63,26,1) !important;
	border: none !important;
	margin: 10px 0 !important; 
	
	color: rgba(255,255,255,.9);
	
	box-shadow: 0 4px 8px rgba(0,0,0,.25);
	transition: color .25s ease, box-shadow .4s ease;
}
.remind-btn:after {
	content: "\00bb";
	margin-left: 5px;
	font-size: 22px;
}

.remind-btn:hover {
	color: rgba(255,255,255,1);
	box-shadow: 0 8px 16px rgba(0,0,0,.45);
}
.remind-helper {
	display: block;
	
	position: absolute;
	
	top: 100%;
	left: 10%;
	
	z-index: 99;
	
	width: 80%;
	
	font-size: 14px;
	line-height: 1rem;
	background: rgba(255,255,255,.9);
	
	opacity: 0;
	
	margin: 15px 0 0 0;
	padding: 1rem 2rem;
	
	
	box-sizing: border-box;

	pointer-events: none;
	
	color: rgba(45,45,45,.9);
	
	box-shadow: 0 8px 16px rgba(0,0,0,.35);
	
	
	transition: opacity .4s ease;
}


.remind-helper:after {
	content: '';
	
	display: block;
	
	position: absolute;
	
	z-index: 100;
	
	top: -8px;
	left: 50%;
	
	margin: 0 0 0 -5px;

	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 8px 10px;
	border-color: transparent transparent rgba(255,255,255,.9) transparent;
}

.remind-btn:hover .remind-helper {
	display: block;
	opacity: 1;
}



#remind input { 
	display: block;
	
	width: 100%; 
	
	font-size: 1rem;
	line-height: 1rem;
	
	margin: 0 0 .5rem 0;
}
		
#remind input[type="checkbox"],
#remind label { 
	width: auto;
	float: left;
	font-weight: 400 !important;
	line-height: 1rem; 	
	margin: .5rem 0 1rem 0;
	cursor: pointer;
	
}

#remind label {
	margin: .5rem 1rem 1rem .5rem;
}

#remind input[type="checkbox"] { clear: both; }




#remind input[type="submit"] {
	height: auto;
	
	background: #d1d1d1;
	color:#585858;
	padding: 20px 0;
	
	margin: 20px 0 0 0;
	
	font-size: 20px;
}

#remind input[type="submit"]:hover {
	/*background: #d3394c;*/
	/*color: #fff;*/
}


#remind input:required { border: 1px solid #d1d1d1; }


#remind input:required:invalid { border: 1px solid #d3394c; }

#remind input:focus:required,
#remind input:focus:required:invalid { border: 1px solid #d1d1d1;}

#remind input:required:valid { border: 1px solid #60ad42; }


#remind input:valid ~ input ~ input:valid ~ input[type="submit"] {
	background: #60ad42 !important;
	color: #fff !important;	
}
#remind input:valid ~ input ~ input:valid ~ input[type="submit"]:hover {
	background: #60ad42 !important;
	color: #fff !important;	
}


.mobile-download-overlay {
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	
	width: 100%;
	height: 100%;
	
	z-index: 99999999;
	
	background: rgba(0,0,0,.7);
}

.mobile-download-overlay .container {
	position: absolute;
	top: 50%;
	left: 50%;
	
	box-sizing: border-box;
	
	padding: .5rem;
	
	margin: -200px 0 0 -140px;
	
	width: 280px;
	height: 400px;
	
	background: #fff;
	
	border-radius: .5rem;
}

.mobile-download-overlay .container a.close {
	display: block;
	
	position: absolute;
	top: .25rem;
	right: .25rem;
	
	line-height: 1.5rem;
	width: 1.5rem;
	
	border-radius: 50%;
	
	background: #585858;
	color: #fff;
	
	text-align: center;
	
	text-decoration: none;	
}


.emlmsg-overlay {
	box-sizing: border-box;
	
	position: fixed;
	top: 0;
	left: 0;
	
	z-index: 9999999;
	
	width: 100%;
	
	padding: 32px;
	
	background: #3fb0ac;
	
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	
	text-align: center;
	
	box-shadow: 0 2px 4px rgba(0,0,0,.15);
	
	animation-name: remove-messaging;
    animation-duration: .4s;
    animation-delay: 3.8s;
    animation-fill-mode: forwards;

	pointer-events: none; 
}

.emlmsg-overlay.err {
	background: #d3394c;	
}


@-webkit-keyframes remove-messaging {
  from {
	  opacity: 1; 
  } 
  to {
	  opacity: 0; 
  } 
}

@keyframes remove-messaging {
  from {
	  opacity: 1; 
  } 
  to {
	  opacity: 0; 
  } 
}