/* 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
}

/* 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%;
}

/* 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);
	}
}

.vis-holder {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
  justify-content: flex-start;
}

.legend-holder {
	border: 1px solid black;
	min-width: 13%;
	height: 20%;
	padding: 5px 5px 5px 5px;
	font-size: 100%;
	flex: 0 0 10%;
	flex-shrink: .1;
	align-items: baseline;
}
#deselect {
	background: #ff0000;
	opacity: 0.5;
	outline: none;
}

.my-legend {
	flex: inherit;
	width: 100%;
	height: 00%;
}

.my-legend .legend-title {
text-align: left;
margin-bottom: 5px;
font-weight: bold;
font-size: 90%;
}
.my-legend .legend-scale ul {
margin: 0;
margin-bottom: 5px;
padding: 0;
float: left;
list-style: none;
}
.my-legend .legend-scale ul li {
font-size: 80%;
list-style: none;
margin-left: 0;
line-height: 18px;
margin-bottom: 2px;
}
.my-legend ul.legend-labels li span {
display: block;
float: left;
height: 16px;
width: 30px;
margin-right: 5px;
margin-left: 0;
border: 1px solid #999;
opacity: 0.8;
}

.linechart-holder {
  flex: 0 0.1 40%;
}


.barchart-holder {
  flex: 0 0 40%;
  margin-left: 35px;
}

.map-table {
	display: flex;
	margin-top: 25px;

}

.map-holder{
	margin-left: 30px;
}

.table-holder{
	float: left;
	font-size: 100%;
	margin-left: 25px;
	visibility: hidden;
}


*/
.axis line{
stroke: #706f6f;
stroke-width: 0.5;
shape-rendering: crispEdges;
}

/* axis contour */
.axis path {
stroke: #706f6f;
stroke-width: 0.7;
shape-rendering: crispEdges;
}

/* axis text */
.axis text {
fill: #2b2929;
font-family: Georgia;
font-size: 120%;
}

.axis_label {
	font-weight: bold;
	font-size: 200%;
}


path.line-0 {
fill: none;
stroke: #0000ff;
opacity: 0.5;
stroke-width: 7;
}

path.line-1 {
fill: none;
stroke: #008000;
opacity: 0.5;
stroke-width: 7;
}


.highlight_0 {
fill: none;
stroke: #0000ff;
opacity: 1;
stroke-width: 8;
}

.highlight_1 {
fill: none;
stroke: #008000;
opacity: 1;
stroke-width: 8;
}

.serie_label {
fill: #2b2929;
font-family: Georgia;
font-size: 60%;
padding: 5px 20px 5px 5px;
}

table {
  border: 1px solid black;
  border-collapse: collapse;
  max-width: 45%;
  align-self: stretch;
  flex: 0 0 10%;
  flex-shrink: .1;
}
/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
}
th { 
	background: #333; 
	color: white; 
	font-weight: bold; 
	cursor: s-resize;
	background-repeat: no-repeat;
	background-position: 3% center;
}
td, th { 
	padding: 6px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	width: 50%;
	align-self: stretch;
}

th.des:after {
  content: "\21E9";
}

th.aes:after {
  content: "\21E7";
}

.point {
stroke: none;
fill: #D3D3D3;
}

.bar { fill: steelblue; }

.tick line{
  visibility:hidden;
}

.grid line {
stroke: lightgrey;
stroke-opacity: 0.6;
shape-rendering: crispEdges
}


.barSelected {
	fill: #FF00FF;
}


.selected {
	fill: #FF0000;
	opacity: 0.5;
	stroke: black;
	stroke-width: 1.7;

}


