﻿
@keyframes placeHolderShimmer {
    0% {
        background-position: -800px 0
    }

    100% {
        background-position: 800px 0
    }
}

.animated-background {
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background-color: hsl(210deg 12.5% 96.86%);
    background: linear-gradient(to right, hsl(0deg 0% 93.33%) 8%, hsl(0deg 0% 73.33%) 18%, hsl(0deg 0% 93.33%) 33%);
    background-size: 800px 104px;
    min-height: 10px;
    position: relative;
}

    .animated-background.animated-background-dark {
        background-color: hsl(210deg 10.81% 14.51%);
        background: linear-gradient(to right, hsl(0deg 0% 17.33%) 8%, hsl(0deg 0% 24%) 18%, hsl(0deg 0% 17.33%) 33%);
        animation-duration: 6s;
    }

    .animated-background.animated-background-white {
        background-color: hsl(210deg 10.81% 100%);
        background: linear-gradient(to right, hsl(0deg 0% 96.33%) 8%, hsl(0deg 0% 80%) 18%, hsl(0deg 0% 96.33%) 33%);
        animation-duration: 6s;
    }
