html, body {
	height: 100%;
	padding: 0;
	margin: 0;
}

#control-box {
	margin: 5px;
	background-color: red;
	border: 5px solid black;
	text-align: center;
}

#controls {
	background-color: white;
	border-top: 5px solid blue;
	font-weight: bold;
}

#map {
	border: 1px dashed black;
	margin: 5px;
	height: 98%;
}

#career-box {
	padding: 10px;
	background-color: white;
	border: 3px solid black;
}

#floating-box {
	position: absolute;
	z-index: 100;
	left: 10px;
	top: 10px;
}

.sliderbox {
	width: 99%;
	margin: 3px;
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  height: 25px; /* Specified height */
  width: 100%; /* Full-width */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

.yearbox {
	border: 1px dashed black;
	margin: 2px;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: blue; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: blue; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
