@charset "utf-8";

/* tooltip styles */
.tooltip {
    display: block;
    opacity: 0;
    padding: 5px;
    position: absolute;
	text-shadow: none;
    visibility: visible;
    z-index: 1020;
}
.tooltip.in {
    opacity: 0.8;
}
.tooltip.top {
    margin-top: -2px;
}
.tooltip.right {
    margin-left: 2px;
}
.tooltip.bottom {
    margin-top: 2px;
}
.tooltip.left {
    margin-left: -2px;
}
.tooltip.top .tooltip-arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #293541;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
}
.tooltip.left .tooltip-arrow {
    border-bottom: 5px solid transparent;
    border-left: 5px solid #293541;
    border-top: 5px solid transparent;
    margin-top: -5px;
    right: 0;
    top: 50%;
}
.tooltip.bottom .tooltip-arrow {
    border-bottom: 5px solid #293541;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    left: 50%;
    margin-left: -5px;
    top: 0;
}
.tooltip.right .tooltip-arrow {
    border-bottom: 5px solid transparent;
    border-right: 5px solid #293541;
    border-top: 5px solid transparent;
    left: 0;
    margin-top: -5px;
    top: 50%;
}
.tooltip-inner {
    background-color: #293541;
    border-radius: 4px 4px 4px 4px;
    padding: 4px 8px;
    color: #fff;
    font-size: 85%;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 #000;
    -webkit-box-shadow:  0px 1px 4px 1px rgba(0, 0, 0, .2);
    box-shadow:  0px 1px 4px 1px rgba(0, 0, 0, .2);
}
.tooltip-inner:before,
.tooltip-inner:after {
  display: table;
  content: ' ';
}
.tooltip-inner:after {
  clear: both;
}
.tooltip-arrow {
    height: 0;
    position: absolute;
    width: 0;
}
.tooltip.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
     -moz-transition: opacity 0.15s linear;
      -ms-transition: opacity 0.15s linear;
       -o-transition: opacity 0.15s linear;
          transition: opacity 0.15s linear;
}
.tooltip.fade.in {
  opacity: 1;
}