.Tooltip {
  $this: &;

  // Reset styles coming straight from Blueprint before setting our own
  .bp4-transition-container {
    z-index: 10001;
  }
  .bp4-popover {
    border-radius: 4px;
    box-shadow: none;

    &-arrow {
      width: 20px;
      height: 19px;

      &-border {
        fill: $color-gray-10;
      }
      &::before {
        box-shadow: none;
        height: 12px;
        margin: 4px;
        width: 12px;
      }
      &-fill {
        fill: $color-gray-10;
      }
    }
    &-content {
      padding: 0;
      background: $color-gray-10;
      max-width: 400px;
      border-radius: 4px;
    }
  }

  // Default Tooltip styles
  &__title {
    margin: 0;
    @extend .Font__caption--20;
    color: $color-mint;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 12px 5px;
    border-bottom: 1px solid $color-gray-30;
    letter-spacing: 0.8px;

    & + #{$this}__content {
      @extend .Font__body--20;
      padding-top: 11px;
      padding-bottom: 9px;
      text-align: left;
    }
  }
  &__content {
    @extend .Font__body--20;
    padding: 7px 12px 5px;
    margin: 0;
    color: $color-white;
  }
  &__trigger {
    cursor: help;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.2em;

    &--block {
      display: block;
      margin-left: 0;

      span.bp4-popover-target {
        display: block;
      }
    }
    &--disabled {
      cursor: not-allowed;
    }
  }

  &--light {
    .bp4-popover {
      box-shadow: 0 1px 1px 0 rgba(0, 0, 30, 0.06), 0 8px 14px 0 rgba(0, 0, 30, 0.16);

      &-arrow {
        &-border {
          fill: $color-white;
        }
        &::before {
          box-shadow: 1px 1px 8px rgba(0, 0, 30, 0.15);
        }
        &-fill {
          fill: $color-white;
        }
      }
      &-content {
        padding: 0;
        background: $color-white;
      }
    }
    #{$this}__title {
      color: $color-indigo;
      border-bottom-color: $color-gray-120;
    }
    #{$this}__content {
      color: $color-gray-00;
    }
  }

  &--full-width .bp4-popover-content {
    max-width: 100%;
  }

  &--small #{$this}__content {
    @extend .Font__body--10;
  }
}
