/**
 * CSS for the jquery.stickyJump plugin
 *
 * @author Tim Crosas|RHT 03/12/2014
 */
@CHARSET "UTF-8";

.sticky-wrapper {
	width: 100%;
	height: 100%;
}
.jumper {
	width: 100%;
	background-color: #fff;
	/*box-shadow: 0px 5px 5px #333;*/
	border-bottom: 2px solid #333;
	color: #fff;
}
.inner-jumper {
	width: 96%;
	height: auto;
	margin: 0 auto;
}
.jumper .jump {
	float: left;
	font-size: 18px;
	background-color: #333;
	cursor: pointer;
	border-right: 1px solid gray;
	border-bottom: 1px solid gray;
	width: 31px;
	height: 25px;
	text-align: center;
}
.jumper .jump:hover {
	background-color: #00529B;
}
.jumper-mobile {
	display: none;
}
.inner-jumper-mobile {
	width: 315px;
	height: auto;
	margin: 0 auto;
	background-color: #ECECEC;
	box-shadow: 5px 5px 5px #333;
	padding: 5px;
}
.inner-jumper-mobile span, 
.inner-jumper-mobile select {
	display: inline;
}
.inner-jumper-mobile span {
	font-size: 16px;
	margin: 0 20px;
}
.inner-jumper-mobile .form-control {
	width: 300px;
}
.stick {
    position: fixed;
    top: 0px;
	z-index: 99999;
}
.selected {
	box-shadow: 0 0px 20px orange, orange 0 0px 20px inset !important;
}
@media (max-width: 980px) {
	.jumper {
		display: none;
	}
	.jumper-mobile {
		display: block;
	}
}
@media (max-width: 980px) and (min-width: 630px) {
	.inner-jumper-mobile {
		width: 565px;
	}
}
@media (max-width: 630px) {
	.inner-jumper-mobile {
		width: 100%;
		text-align: center;
	}
	.inner-jumper-mobile span {
		margin: 0;
	}
	.inner-jumper-mobile .form-control {
		width: 40%;
		margin-left: 5px;
	}
}