/* Editable Styles */
form { font-size: 12px }
form div.form-group label { color: #333; text-align:right; } /* Input field label color & alignment. */
form div.form-group input,
form div.form-group select { margin-bottom: 2px; height: 31px; } /* Input field heignt & vertical spacing. */
form div.form-group div.valid:after { color: #449d44; } /* Valid field marker. */
form div.form-group div.invalid:after { color: #c9302c; } /* Invalid field marker. */
form div.form-group div.valid .form-control { border-color: rgba(68, 157, 68, 0.85); box-shadow: 0px 0px 6px rgba(68, 157, 68, 0.75); } /* Valid field border/glow. */
form div.form-group div.invalid .form-control { border-color: rgba(201, 48, 44, 0.85); box-shadow: 0px 0px 6px rgba(201, 48, 44, 0.75); } /* Invalid field border/glow. */
form label.required:after { color:#f00; } /* Required marker color after form labels. */
#overlay { background: rgba(0,0,0,0.5); } /* Popup overlay color. */
form div.form-group { margin-bottom: 2px; }

/* Standard Styles & Overrides */
/* Basic validation style/font. */
form div.form-group label { padding-left:0px !important; padding-right:0px !important; }
form div.form-group div { padding-left:5px !important; padding-right:5px !important; }
form div.form-group div:after {
	margin: -1.4em 6px 0px 0px;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	display: inline-block !important;
	float: right !important;
	font-family: 'Glyphicons Halflings' !important;
	font-size: 20px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	pointer-events: none !important;
	transition: 0.15s !important;
}
form div.form-group div.valid:not(.nv):after { content: "\e013"; } /* Valid checkmark. */
form div.form-group div.invalid:not(.nv):after { content: "\e014"; } /* Invalid cross. */
/* Toggle class to hide container & content. */
.closed,
.closed * {
	color:transparent !important;
	border-color: transparent !important;
	box-shadow: none !important;
}
.closed * { transition: 1s !important; } /* Toggle class content transition speed. */
.closed { height:0px !important; transition:0.5s !important; } /* Toggle class transition speed. */
form label.required:after { content:"*"; } /* Required marker after form labels. */
form button { width: 100%; } /* Form's submit button width. */
a { cursor: pointer !important; } /* Make all links show pointer on hover. */
/* Invisible buttons. */
.btn-background {
	background: none !important;
	border: none !important;
}
/* Popup overlay position & style. */
#overlay {
	display: none;
	position: fixed !important;
	top: 0px !important;
	left: 0px !important;
	width: 100% !important;
	height: 100% !important;
	overflow-y: auto !important;
	transition: opacity 0.5s !important;
	z-index: 2000 !important;
}
#overlay dialog h1:nth-child(1),
#overlay dialog h2:nth-child(1),
#overlay dialog h3:nth-child(1),
#overlay dialog h4:nth-child(1) { margin-top: 0px !important; } /* First header of popup content. */
#overlay dialog h1,
#overlay dialog h2,
#overlay dialog h3,
#overlay dialog h4,
#overlay dialog strong { text-shadow: 1px 2px 3px rgba(0,0,0,0.25); } /* Popup header & strong text shadow. */
/* Popup dialog style. */
#overlay dialog:not(#backout) {
	display: none;
	position: absolute !important;
	top: 0px;
	margin-bottom: 100px !important;
	padding: 0px !important;
	background: #fff !important;
	border-radius: 8px !important;
	box-shadow: 0 5px 10px rgba(0,0,0,0.5) !important;
	filter: alpha(opacity=0);
	opacity: 0.0;
	transition: top 0.5s, opacity 0.5s !important;
	z-index: 10000 !important;
}
/* Popup button style. */
#overlay dialog button {
	background: #666;
	border: 2px solid #fff;
	border-radius: 16px;
	border-top-right-radius: 8px;
	box-shadow: 1px 1px 6px rgba(0,0,0,0.75) inset;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	right: 3px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.75);
	top: 3px;
}
/* Popup button hover style. */
#overlay dialog button:hover {
	background: #555;
	border: 2px solid #fff;
	border-radius: 16px;
	border-top-right-radius: 8px;
	box-shadow: 1px 1px 6px rgba(0,0,0,0.75) inset;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	right: 3px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.75);
	top: 3px;
}

#overlay div h1:nth-child(1),
#overlay div h2:nth-child(1),
#overlay div h3:nth-child(1),
#overlay div h4:nth-child(1) { margin-top: 0px !important; } /* First header of popup content. */
#overlay div h1,
#overlay div h2,
#overlay div h3,
#overlay div h4,
#overlay div strong { text-shadow: 1px 2px 3px rgba(0,0,0,0.25); } /* Popup header & strong text shadow. */
/* Popup div.dialog style. */
#overlay div.dialog {
	display: none;
	position: absolute !important;
	top: 0px;
	margin-bottom: 100px !important;
	padding: 0px !important;
	background: #fff !important;
	border-radius: 8px !important;
	box-shadow: 0 5px 10px rgba(0,0,0,0.5) !important;
	filter: alpha(opacity=0);
	opacity: 0.0;
	transition: top 0.5s, opacity 0.5s !important;
	z-index: 10000 !important;
}
@media (min-width: 769px) {
	#overlay div.dialog.open {
		top:100px !important;
	}
}
@media (max-width: 768px) {
	#overlay div.dialog.open {
		top:0px !important;
		margin-bottom:0px !important;
	}
}
div.alert {
	font-size:16px;
	top: 0px;
	padding: 20px !important;
	text-align:center;
	transition: top 0.5s, opacity 0.5s !important;
	box-shadow: 0 5px 10px rgba(0,0,0,0.5) !important;
	z-index: 15000 !important;
}
#overlay>div>div {
	float:left !important;
	width:100%;
}
/* Popup button style. */
#overlay div.dialog button.close {
	background: #ccc !important;
	border-radius: 16px;
	border-top-right-radius: 9px;
	box-shadow: 1px 1px 6px rgba(0,0,0,0.45) inset;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: bold !important;
	position: absolute !important;
	top: 3px !important;
	right: 3px !important;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.45);
	padding: 4px 5px;
	filter: alpha(opacity=100);
	opacity: 1;
}
/* Popup button hover style. */
#overlay div.dialog button.close:hover {
	background: #999 !important;
	border-radius: 16px;
	border-top-right-radius: 9px;
	box-shadow: 1px 1px 6px rgba(0,0,0,0.55) inset;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	right: 3px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.55);
	top: 3px;
	filter: alpha(opacity=100);
	opacity: 1;
}

/* Navbar Styles. */
nav div ul li a,
nav div ul li a:hover {
	background: none !important;
	color: #fff;
	font-size: 16px !important;
	font-weight: bold;
}
nav div ul li a.order-now,
nav div ul li a.order-now:hover {
	background: url(/boost/img/nav-arrow.png) no-repeat top center !important;
	background-size: cover !important;
	color: #7d1c5b;
	font-size: 16px !important;
	font-weight: bold;
	height: 77px;
}
nav div ul li i {
	background: url(../img/nav-logo.png) no-repeat top center !important;
	background-size: contain !important;
	color: #428bca;
	font-weight: bold;
	height: 77px;
}