/*Random Variable*/
.hexagon {
  fill: white;
  opacity: 0.6;
  pointer-events: all;
}

.hexagon path {
  -webkit-transition: fill 250ms linear;
  transition: fill 250ms linear;
}

/*.hexagon :hover {
  opacity: 0.5
}*/

.hexagon .fill {
  fill: #c7c7c7;
}

.mesh {
  fill: none;
  stroke: #000;
  stroke-opacity: .2;
  pointer-events: none;
}

.border {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
  pointer-events: none;
}

#rvMap {
  cursor: pointer;
}


/*Discrete and Continuous*/

svg g image {
  opacity: 0.5;
  cursor: pointer;
}


svg g image:hover {
  opacity: 1;
}


/*graph table*/
/*.click { background-color: rgba(255,155,60,0.6); }
.hover { background-color: #eee; }
#mean {
  stroke: #FF9B3C;
  stroke-dasharray: 2, 2;
}*/

#descriptionTable td {
  vertical-align: middle;
}

#parameters {
  display: inline-flex;
  align-items: center;
  text-align: left;
}
label {
  padding-right: 10px;
  font-weight: normal; 
}
.slider.slider-horizontal {
  width: 140px;
  margin-right: 10px;
}

#graph{
	height: 500px;
}

.axis path,
.axis line {
	fill: none;
	stroke: black;
	stroke-width: 2;
	shape-rendering: crispEdges;
}

.axis text {
	font-family: "Helvetica Neue";
	font-size: 11px;
	fill: black;
}

.distribution{
	display: none;
}

#shift{
	cursor: move;
}

#pdf {
	fill: none;
	stroke:	#64bdff;
  stroke-width: 5;
}
#cdf {
	fill: none;
	stroke:	#00d0a1;
  stroke-width: 5;
}

#pdfArea {
	fill: #64bdff;
	opacity: 0.5;
}


/*Central Limit Theorem*/

circle {
  fill: #64bdff;
}

.bar rect {
  fill: #00d0a1;
  fill-opacity: 0.5;
}

.bar text {
  fill: black;
}


.normal {
	fill: #00d0a1;
}

#dt {
  width: 150px;
}