@keyframes placeholder {
    0% {
        background-position: -600px 0
    }
    100% {
        background-position: 600px 0
    }
}

[data-async-block-process="true"] .loader-container .animated-background {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 9999;
    border-radius: 3px
}

[data-async-block-process="true"] .preloader-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.animated-preloader {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeholder;
    animation-timing-function: linear;
    background: linear-gradient(to right, #eee 8%, #ddd 18%, #eee 50%);
    background-size: 1200px 100px;
}

[data-async-block-process="true"] .animated-background__text {
    text-align: center;
}

[data-async-block-process="true"] .animated-background__text a {
   -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: bold;
}

[data-async-block-process="true"] .preloader-container .animated-background__line {
    border-radius: 5px;
    min-height: 7px;
}

.animated-background__line:not(:first-child) {
    margin-top: 10px;
}