
$tooltip-bg: rgba(0, 0, 0, .75);
$tooltip-color: #fff;
$tooltip-caret-bg: $tooltip-bg;
$tooltip-border: transparent;
$tooltip-spacing: 10px;

$popover-bg: #fff;
$popover-color: #3d3d3d;
$popover-caret-bg: $popover-bg;
$popover-border: transparet;
$popover-spacing: 10px;

.highlightOnOverlay{
  position:relative;
  z-index: 9999;
  box-shadow: 0 0 7px 4px rgba(245, 165, 35, 0.34);
  border-radius: 4px;
}

.showCursorPointer:before{

    font-family: FontAwesome;
    content: "\f25a";
    position: absolute;
    color: #3d3d3d;
    font-size: 18px;
    font-weight: bolder;
    bottom: -12px;

}

.overlay{
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040 !important;
  content: "";
}

.bm-tour-content {
  position: fixed;
  max-width: 400px;
  border-radius: 3px;
  z-index: 5000;
  display: block;
  font-weight: normal;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #3d3d3d;
  box-shadow:  0 0 4px 1px #ebeeee;
  border: 1px solid transparent;
  font-size: 13px;
  padding: 15px;

  .title{
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .tour-step-content{
    color: #979797;
    margin-right:10px;
    font-size: 1.4rem;
  }

  span.close-tour{
        &:before {
          content: 'x';
          font-weight: bold;
          font-family: sans-serif;
          font-size: 15px;
          color: #979797;
          line-height: 1;
          top: 12px;
          right: 10px;
          cursor: pointer;
          position: absolute;
        }
        &:hover::after{
          font-size: 15px;
          color: #36b7a4;
          transition: all 0.2s linear;
        }
      }

    .btn-color{
      border-radius: 4px;
      background-color: #36b7a4;
      float:right;
      color:white
    }

    .tooltip-caret {
      position: absolute;
      z-index: 5001;
      width: 0;
      height: 0;

      &.position-left {
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: 7px solid $popover-caret-bg;
      }

      &.position-top {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid $popover-caret-bg;
      }

      &.position-right {
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-right: 7px solid $popover-caret-bg;
      }

      &.position-bottom {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid $popover-caret-bg;
      }
    }
  .tooltip-caret {
    position: absolute;
    z-index: 5001;
    width: 0;
    height: 0;
  }

  &.position-right {
    transform: translate3d(10px, 0, 0);
  }

  &.position-left {
    transform: translate3d(-10px, 0, 0);
  }

  &.position-top {
    transform: translate3d(0, -10px, 0);
  }

  &.position-bottom {
    transform: translate3d(0, 10px, 0);
  }

  &.animate {
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }




}
