@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
input[type="button"], input[type="submit"], input[type="reset"] {
-webkit-appearance: none !important;
}
body {
  background-color: #FFF;
  background: url('../png/background-polygon.png');
background-repeat: no-repeat;
background-size: 1920px;
background-position: top center;
  font-family: 'Montserrat', helvetica, arial, sans-serif;
  font-size: 15px;
  text-rendering: optimizeLegibility;
}
.wrapper
{
text-align: center;
max-width: 400px;
margin: 0 auto;
}

a {
color: #091d89;
text-decoration: none;
}

#header
{
height:60px;
display:table;
width: 400px;
text-align: center;
margin: 0 auto;
font-size: 14px;
font-weight: bold;
color:#53386F;
margin-top: 40px;
}

#header img
{
vertical-align: middle;
}

#header h1
{
border: 4px solid #FFF;
color:#FFF;
line-height: 32px;
padding: 5px;
margin-bottom: 10px;
margin-top: 30px;
font-size: 21px;
}
#header h2
{
font-size: 58px;
background-color: #FF8453;
color: #fff;
margin-top: 0;
margin-bottom: 10px;
}
h3
{
border: 4px solid #53386F;
padding: 8px 5px;
margin-bottom: 10px;
color: #53386F;
font-size: 28px;
}
.results
{
font-size:44px;
}
.form {
padding:20px;
background-color:#fff;
border:6px solid #53386F;
color:#414151;
font-size: 18px;

}
label { font-size: 18px;font-weight:bold;color:#222 }
label.sm { font-size: 12px;font-weight:normal;color:#95a5a6 }
.field-group{
			margin: 0 auto;
			padding:5px;
			border-style:solid;
			background:-moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, .25));
			background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0, rgba(255, 255, 255, 0)),color-stop(1, rgba(255, 255, 255, .25)));
			filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#3fffffff');
			-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#3fffffff')";
			width: 300px;
			text-align: left;
			
		}
		.field-group input{
			display:block;
			margin:0;
			padding:5px;
			border:0;
			background:none;
			width:98%;
			font-family:Arial;
			font-size:16px;
			color:#333333;
		}
		.field-group label{
			clear:none;
		}
		
select{
width: 100%;
padding: 8px 5px;
font-weight: bold;  
background-color: #FDF5EC;
border: 1px solid #999;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border linear .2s, box-shadow linear .2s;
-moz-transition: border linear .2s, box-shadow linear .2s;
-o-transition: border linear .2s, box-shadow linear .2s;
transition: border linear .2s, box-shadow linear .2s;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
font-family:inherit;
font-size: 18px;
color: #222;
cursor:pointer;
height: 40px;
}

.hours, .signup {
width: 40px;
font-size: 18px;
color: #555;
font-weight: bold;
background-color: #FDF5EC;
border: 1px solid #999;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border linear .2s, box-shadow linear .2s;
-moz-transition: border linear .2s, box-shadow linear .2s;
-o-transition: border linear .2s, box-shadow linear .2s;
transition: border linear .2s, box-shadow linear .2s;
padding: 4px 6px;
margin-bottom: 0px;
color: #555555;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
vertical-align: middle;
}
.fees,.weeks {
font-size: 12px;
width:35px;
color:#757584;
}
.weeks {
width:22px;
}
.go{
padding: 0px 20px !important;
margin: 30px 0;
font-size: 20px !important;
background-color: #2DAE88;
font-weight: bold;
color: white;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
font-family: 'Montserrat', Arial, Verdana;
width: 270px !important;
height: 46px !important;
}
.go:hover { background-color: #299575; }

#overlay {
position: absolute;
left: 0px;
top: 0px;
bottom: 0px;
right: 0px;
width: 100%;
background: rgba(25, 25, 25, .85);
text-align: center;
padding-top: 120px;
color: white;
font-size: 30px;
    }
#loading {
background-image: url('../svg/clock-2.svg');
background-repeat:no-repeat;
background-position: 50%;
height: 300px;
width: 100%;
}
/*
==============================================
slideDown
==============================================
*/

.slideDown{
animation-name: slideDown;
-webkit-animation-name: slideDown;	
animation-duration: 1s;	
-webkit-animation-duration: 1s;
animation-timing-function: ease;	
-webkit-animation-timing-function: ease;	
visibility: visible !important;						
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}
	50%{
		transform: translateY(8%);
	}
	65%{
		transform: translateY(-4%);
	}
	80%{
		transform: translateY(4%);
	}
	95%{
		transform: translateY(-2%);
	}			
	100% {
		transform: translateY(0%);
	}		
}

@-webkit-keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
	}
	50%{
		-webkit-transform: translateY(8%);
	}
	65%{
		-webkit-transform: translateY(-4%);
	}
	80%{
		-webkit-transform: translateY(4%);
	}
	95%{
		-webkit-transform: translateY(-2%);
	}			
	100% {
		-webkit-transform: translateY(0%);
	}	
}
.errors{color:red;margin-bottom: 10px;}
@media (min-width: 728px) {
body{background-size: cover;}
}
a.tooltip {
    outline: none;
    text-decoration: none;
    border-bottom: dotted 1px #091d89;
    position: relative;
}

a.tooltip strong {
    line-height: 30px;
}

a.tooltip > span {
    text-align:left;
	width: 180px;
    padding: 10px 20px;
    margin-top: 0;
    margin-left: -120px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: absolute;
    font-size: 12px;
    font-style: normal;
    border-radius: 3px;
    box-shadow: 2px 2px 2px #999;
    -webkit-transition-property: opacity, margin-top, visibility, margin-left;
    -webkit-transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
    -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    transition-property: opacity, margin-top, visibility, margin-left;
    transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
    transition-timing-function: 
        ease-in-out, ease-in-out, ease-in-out, ease-in-out;
}

/*a.tooltip > span:hover,*/
a.tooltip:hover > span {
    opacity: 1;
    text-decoration: none;
    visibility: visible;
    overflow: visible;
    margin-top: 50px;
    display: inline;
    margin-left: -74px;
}

a.tooltip span b {
    width: 15px;
    height: 15px;
    margin-left: 40px;
    margin-top: -19px;
    display: block;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-box-shadow: inset -1px 1px 0 #fff;
    -moz-box-shadow: inset 0 1px 0 #fff;
    -o-box-shadow: inset 0 1px 0 #fff;
    box-shadow: inset 0 1px 0 #fff;
    display: none\0/;
    *display: none;
}    

a.tooltip > span {
	color: #31708f; 
	background: #d9edf7;
	border: 1px solid #bce8f1;	     
}    
	  
a.tooltip span b {
	background: #d9edf7;
	border-top: 1px solid #bce8f1;
	border-right: 1px solid #bce8f1;
}