.loading{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.loading::after{
    content: '';
    width: 20px;
    height: 20px;
    border: 5px solid #dddddd;
    border-top-color: #025ec6;
    border-radius: 50%;
    animation: loading 1s linear infinite;
}

@keyframes loading{
    to{
        transform: rotate(1turn);
    }
}

.no_more_items{
    margin-top: 10px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}