/*------------------------------------------------------------------
[Stylesheet]
Color Palette - Blue

background_solid    { background: #1565c0; }
button              { background: #2196f3; }
button_hover        { background: #249cff; }
-------------------------------------------------------------------*/

.btn,
.btn-large {
	background-color: #fff68a;
	color: #7a3233;
}

.btn:hover,
.btn-large:hover {
	background-color: #FFF;
	color: #7a3233;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=date]:focus,
textarea:focus {
	border-bottom: 1px solid #2196f3;
    -webkit-box-shadow: 0 1px 0 0 #2196f3;
    -moz-box-shadow: 0 1px 0 0 #2196f3;
    box-shadow: 0 1px 0 0 #2196f3; 
}

.hero_fullscreen.background_solid {
	background-color: #1565c0;
}

a {
	color: #7a3233;
}

a:hover {
	text-decoration: underline;
}

.hero_fullscreen.gradient_overlay {
	/* IE10 Consumer Preview */ 
	background-image: -ms-linear-gradient(top left, #2196F3 0%, #311B92 100%);
	
	/* Mozilla Firefox */ 
	background-image: -moz-linear-gradient(top left, #2196F3 0%, #311B92 100%);
	
	/* Opera */ 
	background-image: -o-linear-gradient(top left, #2196F3 0%, #311B92 100%);
	
	/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #2196F3), color-stop(1, #311B92));
	
	/* Webkit (Chrome 11+) */ 
	background-image: -webkit-linear-gradient(top left, #2196F3 0%, #311B92 100%);	
}