.str-chat__message-notification,
.str-chat__message-notification-scroll-to-latest {
  display: block;
  position: absolute;
  align-self: center;
  background: var(--primary-color);
  border: none;
  color: var(--white);
  border-radius: 50px;
  padding: var(--xxs-p) var(--xs-p);
  font-size: var(--sm-font);
  bottom: 10px;
  z-index: 101;

  &-right {
    align-self: flex-end;
  }

  &-scroll-to-latest {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);

    .str-chat__jump-to-latest-icon {
      display: inline-block;
      height: 24px;
    }

    &-unread-count {
      font-size: 10px;
      left: 50%;
      transform: translateX(-50%);
      bottom: 30px;
    }
  }
}
