﻿/* Loading skeletons */
.skeleton {
    height: 14px;
    width: 60%;
    margin: 6px 0;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(0,0,0,.04), rgba(0,0,0,.08), rgba(0,0,0,.04));
    animation: shimmer 1.2s infinite;
}

.skeleton-lg {
    height: 22px;
    width: 40%
}

/* Keyframes local to skeletons */
@keyframes shimmer {
    0% {
        background-position: -200px 0
    }

    100% {
        background-position: 200px 0
    }
}
