.loadingDecorator {
    position: absolute;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: loading;
    animation-timing-function: linear;
    background: linear-gradient(
        to right,
        #d6d6d6 2%,
        rgba(255, 255, 255, 0.3) 20%,
        #d6d6d6 50%
    );
    background-size: 800px 100px;
    height: 100%;
    width: 100%;
}

.decorator {
    background-color: #d6d6d6;
}

@keyframes loading {
    0% {
        background-position: -800px 0;
    }
    100% {
        background-position: 800px 0;
    }
}
