.bst-posts-show-more {
    background: #1DB954;
    font-size: 18px;
    width: 100%;
    max-width: 197px;
    margin: 20px auto 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 54px;
}

.bst-posts-show-more:focus {
    background: #1DB954;
}

@media screen and (min-width: 992px) {
    .bst-posts-show-more:hover {
        background: #1DB954;
        opacity: 0.8;
    }
}

.bst-posts-show-more-loader-container {
    background: #1DB9541A;
}

.bst-posts-show-more.bst-posts-show-more-loader-container:focus {
    background: #1DB9541A;
}

.bst-posts-show-more-loader {
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #1DB954;
    animation: bst-posts-show-more-loader-1 0.8s infinite linear alternate, bst-posts-show-more-loader-2 1.6s infinite linear;
    display: block;
    height: 24px;
}

.bst-posts-items-author .bst-posts-show-more {
    margin-top: 40px;
}

@keyframes bst-posts-show-more-loader-1{
    0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
    12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
    25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
    50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
    100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes bst-posts-show-more-loader-2{
    0%    {transform:scaleY(1)  rotate(0deg)}
    49.99%{transform:scaleY(1)  rotate(135deg)}
    50%   {transform:scaleY(-1) rotate(0deg)}
    100%  {transform:scaleY(-1) rotate(-135deg)}
}