.#{$n}-unread-messages {
  display: none;
  position: absolute;
  bottom: $spacer;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;

  &.#{$n}-transition--visible {
    display: flex;
  }

  &.#{$n}-transition--in {
    transition: opacity $transition 1s;
    opacity: 1;
  }

  .#{$n}-button {
    display: flex;
    align-items: center;
    gap: $spacer * 0.5;
  }

  .#{$n}-icon {
    width: $spacer;
    height: $spacer;

    svg path {
      fill: $white;
    }
  }
}
