﻿.skeleton {
    animation: skeleton-loading 6s linear infinite alternate;
    background-color: rgba(226,229,231,0);
}
.skeleton-text {
    width: 100%;
    height: 0.8rem;
    margin-bottom: .25rem;
    border-radius: .3rem;
}

.skeleton-text:last-child {
    margin-bottom: 0;
    width: 80%;
}


@keyframes skeleton-loading {
    from {
        background-color: rgba(226,229,231,0);
    }

    to {
        background-color: rgba(226,229,231,1)
    }
}