/** Default Class Prefix **/
.ED_MultiChart {
    color: #000000;
}

/** Light Theme Class Prefix **/
.mojo-theme-light .ED_MultiChart {
    color: #111111;
}

/** Dark Theme Class Prefix **/
.mojo-theme-dark .ED_MultiChart {
    color: #FFFFFF;
}

/**************************
* Tool Tip Styles
***************************/

.ED_MultiChart .d3tooltip {
  position: absolute;
  padding: 8px;

  z-index: 10000;

  color: #FFF;
  background-color: #333;
  border: none;

  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  pointer-events: none;

  white-space: nowrap;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ED_MultiChart .d3tooltip h4 {
  margin: 0;
  padding-bottom: 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: bold;
}

.ED_MultiChart .d3tooltip p {
  margin: 0;
  padding: 4px 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
}

.ED_MultiChart .d3tooltip-pending-removal {
  position: absolute;
  pointer-events: none;
}

.ED_MultiChart .arrow-tooltip-down:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 8px 0;
  border-color: #333 transparent;
  display: block;
  width: 0;
  z-index: 1;
  margin-left: -8px;
  bottom: -8px;
  left: 50%;
}

.ED_MultiChart .arrow-tooltip-up:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: #333 transparent;
  display: block;
  width: 0;
  z-index: 1;
  margin-left: -8px;
  top: -8px;
  left: 50%;
}

.ED_MultiChart .arrow-tooltip-left:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #333;
  display: block;
  width: 0;
  z-index: 1;
  margin-top: -8px;
  left: -7px;
  top: 50%;
}

.ED_MultiChart .arrow-tooltip-right:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent #333;
  display: block;
  width: 0;
  z-index: 1;
  margin-top: -8px;
  right: -7px;
  top: 50%;
}

.mojo-theme-dark .ED_MultiChart .d3tooltip {
  color: #444;
  background-color: #f1f1f1;
}

.mojo-theme-dark .ED_MultiChart .arrow-tooltip-down:not(.no-arrow):after,
.mojo-theme-dark .ED_MultiChart .arrow-tooltip-up:not(.no-arrow):after {
  border-color: #f1f1f1 transparent;
}

.mojo-theme-dark .ED_MultiChart .arrow-tooltip-left:not(.no-arrow):after,
.mojo-theme-dark .ED_MultiChart .arrow-tooltip-right:not(.no-arrow):after {
  border-color: transparent #f1f1f1;
}



