.customer-service-contact {
  @extend %flexbox-column;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: $margin-double;

  @include breakpoint(sm) {
    flex-flow: row nowrap;
  }

  > ul {
    @extend %flexbox-column;
    flex-grow: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0;

    &:last-child {
      > li {
        /* stylelint-disable max-nesting-depth */
        &:last-child {
          border-bottom: 0;
        }
        /* stylelint-enable */
      }
    }

    > li {
      @extend %flexbox-row;
      justify-content: space-between;
      align-items: stretch;
      border-bottom: 1px solid $color-tui-grey-25;
      flex-grow: 1;

      @include breakpoint(sm) {
        border: 0;
        flex-flow: column nowrap;
      }
    }

    h2,
    h3 {
      margin-top: 0;

      a {
        color: $link-color;
        /* stylelint-disable max-nesting-depth */
        &:hover {
          color: $link-hover-color;
        }
        /* stylelint-enable */
      }
    }

    .text {
      flex-grow: 1;
      padding: $margin-double $margin-normal;
    }

    p {
      @include breakpoint(sm) {
        max-width: 240px;
      }
    }
  }

  /* stylelint-disable declaration-no-important, selector-max-id */
  #talkNowActiveContent {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;

    .lekane-show-chat-available .lekane-show-chat-available {
      @extend .btn;
      @extend .ghost-gray;
      background: transparent;
      color: $text-color !important;

      &:hover {
        background: rgba($text-color, .1);
      }
    }

    .lekane-show-chat-unavailable {
      color: $color-red-400;
    }
  }
  /* stylelint-enable */
}
