.skeleton {
    background: linear-gradient(-45deg, #ddd, #fcfcfc, #ddd, #fcfcfc);
    background-size: 400% 400%;
    -webkit-animation: Gradient 2.25s ease infinite;
    -moz-animation: Gradient 2.25s ease infinite;
    animation: Gradient 2.25s ease infinite;
    opacity: .5;
}

.p.skeleton {
    width: 100%;
    height: 20px;
}
.skeleton.round {
    border-radius: 5px;
}
.skeleton.fill {
    position: absolute;
    inset: 0;
}
.skeleton.static {
    animation: none;
    background: #ddd;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}