.transaction-activity-log {
  &__card {
    background: $white;
    height: 100%;
  }

  &__activities-container {
    padding-top: 8px;
  }

  &__activity {
    padding: 4px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;

    &::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 6px;
      border-right: 1px solid $geyser;
    }

    &:first-child::after {
      height: 50%;
      top: 50%;
    }

    &:last-child::after {
      height: 50%;
    }

    &:first-child:last-child::after {
      display: none;
    }
  }

  &__activity-icon {
    width: 15px;
    height: 15px;
    margin-right: 6px;
    border-radius: 50%;
    background: $geyser;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  &__activity-text {
    color: $black;
    font-size: .75rem;
    cursor: pointer;

    &:hover {
      color: #4a4a4a;
    }
  }

  &__value {
    display: inline;
    font-weight: 400;
  }

  &__entry-container {
    min-width: 0;
  }

  &__action-link {
    font-size: .75rem;
    cursor: pointer;
    color: $black;
    text-decoration: underline;
  }

  b {
    font-weight: 400;
  }
}