#loadMore {
    filter: brightness(1)
}

.load-more-loading {
    display: flex;
    width: 100%;
    top: 7px;
}

.load-more-loading:after {
    content: '';
    height: 0;
    width: 0;
    padding: 12px;
    border: 4px solid #ccc;
    border-right-color: #888;
    border-radius: 22px;
    animation: rotate 1s infinite linear;
    position: absolute;
    left: 45%;
    top: 10%;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}