/*
----------------------------------------------------------
#Tooltip
----------------------------------------------------------
*/
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 12px !important;
  opacity: 0;
}
.tooltip.in {
  opacity: 1;
}
.tooltip.top {
  margin-top: -6px;
  padding: 5px 0;
}
.tooltip-inner {
  max-width: 200px;
  padding: 6px 18px 6px 18px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #404040;
  border-radius: 4px;
  font-weight: 500;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #404040;
}
