.chartist-tooltip 
{
  position: absolute;
  display: block;
  opacity: 0;
  min-width: 5em;
  padding: 10px 15px;
  background: #F4C63D;
  color: #453D3F;
  font-family: Lato;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
  z-index: 9999;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear; 
}
.chartist-tooltip strong
{
    font-weight: 900;
}
.chartist-tooltip:before 
{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top-color: #F4C63D; 
}
.chartist-tooltip.tooltip-show 
{
    opacity: 1; 
}

.ct-area, .ct-line 
{
  pointer-events: none; 
}

/*# sourceMappingURL=chartist-plugin-tooltip.css.map */
