/* General formatting */

body {
	padding: 0 10px;
	font: 18px/1.5 -apple-system, BlinkMacSystemFont, "avenir next", avenir, "Segoe UI", "lucida grande", "helvetica neue", helvetica, "Fira Sans", roboto, noto, "Droid Sans", cantarell, oxygen, ubuntu, "franklin gothic medium", "century gothic", "Liberation Sans", sans-serif;
}

h1, h2, h3 {
	line-height: 1.2
}

#titles {
	line-height: 0.7;
	font-size: 20px;
	font-weight: normal;
	padding-left: 7px;
}

/* Your text should be in a nice narrow column */

.content-column {
	max-width: 650px;
	margin: 40px auto;
}

/* But your visualization should be full-width and full-height */

.vis-holder {
	width: 100%;
	height: 100%;
}

.column-table {
	float: left;
	width: 40%;
	padding-left: 60px;
	padding-top: 70px;
}

.container {
	height: 400px;
	width: 100%;
	transform: scale(0.9);
	overflow-y: hidden;
	overflow-x: hidden;
}

.container-slider {
	height: 400px;
	width: 30%;
	overflow-y: hidden;
	overflow-x: hidden;
}

.map {
	height: 100%;
	width: 100%;
	color: rgba(10, 20, 43, 0.808);
}

.land {
  fill: #a1a1a1;
  stroke: #000;
  stroke-width: .1px;
}


h1 {
	font-family: "Open Sans";
	padding-top: 20px;
	padding-left: 40px;
}


table {
	width: 100%;
	border-collapse: collapse;
	color: rgba(10, 20, 43, 0.808);
	background-color: rgba(211, 234, 255, 0.795);
	font-family: "Open Sans";
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

table thead {
	top: 0;
	font-weight: bold;
	background-color: rgba(0, 71, 129, 1.0);
	color: #FFF;
	column-width: 100px;
	cursor: default;
	position: sticky;
}

th {
	padding: 4px;
}

table tbody tr:hover {
	background-color: rgb(139, 209, 250);
}

table tbody tr.hovered {
	background-color: rgb(252, 227, 160);
}

td {
	border: solid 1px rgb(201, 201, 201);
	text-align: center;
	font-size: 14px;
	padding: 2px;
}

.even {
	background-color: White;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.column {
	float: left;
	width: 40%;
	padding-left: 60px;
}

.column-sliders {
	float: left;
	width: 65%;
	transform: scale(0.8);
}

.column-directions {
	float: left;
	width: 100%;
	height: 100%;
	padding-top: 30px;
}

.row {
	height: 10%;
	/* content: "";
	display: table;
	clear: both; */
}

.row-sliders {
	height: 60%;
	padding-top: 30px;
	/* content: "";
	display: table;
	clear: both; */
}

/* Fork on GitHub ribbon via https://codepo8.github.io/css-fork-on-github-ribbon/# */

#forkongithub a {
	background: #00F;
	color: #fff;
	text-decoration: none;
	font-family: arial, sans-serif;
	text-align: center;
	font-weight: bold;
	padding: 5px 40px;
	font-size: 1rem;
	line-height: 1.4rem;
	position: relative;
	transition: 0.5s;
}

#forkongithub a:hover {
	background: #118;
	color: #fff;
}

#forkongithub a::before, #forkongithub a::after {
	content: "";
	width: 100%;
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	height: 1px;
	background: #fff;
}

#forkongithub a::after {
	bottom: 1px;
	top: auto;
}

@media screen and (min-width:1000px) {
	#forkongithub {
		position: fixed;
		display: block;
		top: 0;
		right: 0;
		width: 200px;
		overflow: hidden;
		height: 200px;
		z-index: 9999;
	}
	#forkongithub a {
		width: 200px;
		position: absolute;
		top: 60px;
		right: -60px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
	}
}
.ticks {
	font-size: 10px;
  }

  .track,
  .track-inset,
  .track-overlay {
	stroke-linecap: round;
  }

  .track {
	stroke: #000;
	stroke-opacity: 0.3;
	stroke-width: 10px;
  }

  .track-inset {
	stroke: #ddd;
	stroke-width: 8px;
  }

  .track-overlay {
	pointer-events: stroke;
	stroke-width: 50px;
	stroke: transparent;
	cursor: crosshair;
  }

  .handle {
	fill: #fff;
	stroke: #000;
	stroke-opacity: 0.5;
	stroke-width: 1.25px;
  }

div.tooltip { 
          position: absolute;     
          text-align: left;     
          width: 140px;          
          height: 30px;         
          padding: 2px;       
          font: 12px sans-serif;    
          background: #F0F0F0; 
          border: 1px;        
          pointer-events: none;     
	  }
	  
.selectbox {
	width: 140px;
	height: 30px;
	border: 1px solid #999;
	font-size: 10px;
	color: #000;
	background-color: #fff;
	border-radius: 3px;
	margin-left: 30px;
}

 
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
