/*
Ellen van 't Klooster
Programmeerproject
*/

/*style for html*/
#bs-example-navbar-collapse-1{
  cursor: pointer;
}

#dropdownOption{
  cursor: pointer;
}

/*style for sankey diagram*/
.sankeySelect{
  display: block;
  margin: auto;
  width: 50%;
}

.majorNode {
  cursor: pointer;
}

.node .textSankey {
  pointer-events: none;
  font-size: 11.5px;
}

.node:hover .textSankey {
  font-size: 14px;
  background-color: white;
}

path.link {
  fill: none;
  stroke: #000000;
  stroke-opacity: .5;
}

/*tooltip*/
.d3-tip h1 {
  font-weight: 500;
  font-size: 14px;
  padding: 0;
  margin-bottom: 5px;
  width: 100%;
}
.d3-tip h2 {
  font-weight: bold;
  font-size: 12px;
  padding-right: inherit;
  padding-left: inherit;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 0px;
}
.d3-tip h3 {
  font-weight: normal;
  font-size: 8px;
  margin: 0;
  padding: 0;
}
.d3-tip table {
  font-weight: normal;
  font-size: 12px;
  padding: none;
  margin: 0;
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.d3-tip td {
  padding-top: 2px;
  padding-bottom: 2px;
}
.d3-tip .col-left {
  padding-right: 8px;
}
.d3-tip .table-wrapper {
  margin: 0;
  padding: inherit;
  border: none;
}
.d3-tip {
  line-height: 1;
  font-weight: normal;
  padding: 4px;
  background: white;
  color: black;
  border-radius: 2px;
  pointer-events: none;
  background:  white;
  box-shadow: 1px 1px 4px grey;
}

/*style for pie chart*/

svg {
	width: 100%;
	height: 100%;
}

path.slice{
	stroke-width:2px;
}

polyline{
	opacity: .3;
	stroke: black;
	stroke-width: 2px;
	fill: none;
}

.labelValue
{
	font-size: 60%;
	opacity: .5;

}

.toolTip {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    display: none;
    width: auto;
    height: auto;
    background: none repeat scroll 0 0 white;
    border: 0 none;
    border-radius: 8px 8px 8px 8px;
    box-shadow: -3px 3px 15px #888888;
    color: black;
    font: 12px sans-serif;
    padding: 5px;
    text-align: center;
}
text {
  font: 12px sans-serif;
}

.labelText {
    alignment-baseline: middle;
    font-size: 11.5px;
    font-family: arial,helvetica,"sans-serif";
    fill: #393939;
}

.labelLine {
    stroke-width: 1;
    stroke: #393939;
}

.labelDot {
    fill: #393939;
}

/*layout line chart*/

.axis path,
.axis line,
.axis1 path,
.axis1 line {
  fill: none;
  stroke: #E6E7E8;
  shape-rendering: crispEdges;
}

.x.axis path, .x.axis1 path {
  display: none;
}

.line {
  fill: none;
  stroke-width: 1.5px;
}

.line:hover {
  stroke-width: 6px;
}

.legend-box {
  cursor: pointer;
}

#mouse-tracker {
  stroke: #E6E7E8;
  stroke-width: 1px;
}

.hover-line {
  stroke: #E6E7E8;
  fill: none;
  stroke-width: 14px;
  left: 14px;
  shape-rendering: crispEdges;
  opacity: 1e-6;
}

.hover-text {
  stroke: none;
  font-size: 30px;
  font-weight: bold;
  fill: #000000;
}

.tooltip {
  font-weight: normal;
}
