//colors
$text-color: #fff;
$border-color: #35405a;

//fonts
$font_0: 'Helvetica Neue';
$font_1: 'Helvetica';
$font_2: 'Arial';
$font_3: 'sans-serif';

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: $font_0, $font_1, $font_2, $font_3;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;

  &.show {
    opacity: 0.9;
    filter: alpha(opacity=90);
  }

  .tooltip-inner {
    max-width: 200px;
    font-size: 13px;
    padding: 6px 25px;
    border-radius: 6px;
    box-shadow: 0 10px 20px 0 rgba(53, 64, 90, 0.1);
    color: $text-color;
    text-align: center;
    background-color: $border-color;
    border-radius: 6px;
    line-height: 1.4em;
  }

  .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
  }

  &.tooltip-top {
    margin-top: -3px;
    padding: 5px 0;

    .tooltip-arrow {
      bottom: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 5px 5px 0;
      border-top-color: $border-color;
    }
  }

  &.tooltip-right {
    margin-left: 3px;
    padding: 0 5px;

    .tooltip-arrow {
      top: 50%;
      left: 0;
      margin-top: -5px;
      border-width: 5px 5px 5px 0;
      border-right-color: $border-color;
    }
  }

  &.tooltip-bottom {
    margin-top: 16px;
    padding: 5px 0;

    .tooltip-arrow {
      top: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 0 6px 10px;
      border-bottom-color: $border-color;
    }
  }

  &.tooltip-left {
    margin-left: -3px;
    padding: 0 5px;

    .tooltip-arrow {
      top: 50%;
      right: 0;
      margin-top: -5px;
      border-width: 5px 0 5px 5px;
      border-left-color: $border-color;
    }
  }

  &.tooltip-top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: $border-color;
  }

  &.tooltip-top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: $border-color;
  }

  &.tooltip-bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: $border-color;
  }

  &.tooltip-bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: $border-color;
  }
}
