.scroller-status {
    display: none;
    padding: .625rem 0;
    width: 100%
}

.scroller-status__message {
    text-align: center;
    color: #333
}

.scroller-more-button {
    display: none;
    margin: 0 auto
}

.loader-ellips {
    font-size: 1.25rem;
    position: relative;
    width: 4em;
    height: 1em;
    margin: .625rem auto
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: .5em;
    position: absolute;
    animation-duration: .5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    background: #0840f3
}

.loader-ellips__dot:nth-child(1),.loader-ellips__dot:nth-child(2) {
    left: 0
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em
}

.loader-ellips__dot:nth-child(4) {
    left: 3em
}

@keyframes reveal {
    from {
        transform: scale(0.001)
    }

    to {
        transform: scale(1)
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal
}

.loader-ellips__dot:nth-child(2),.loader-ellips__dot:nth-child(3) {
    animation-name: slide
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse
}