@-webkit-keyframes loading-animation-line-scale-pulse-out {
    0%,
    100% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4);
    }
}
@keyframes loading-animation-line-scale-pulse-out {
    0%,
    100% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4);
    }
}
.loading-layout-1 .line-scale-pulse-out {
    line-height: 1;
}
.loading-layout-1 .line-scale-pulse-out > div {
    width: 4px;
    height: 35px;
    display: inline-block;
    vertical-align: top;
    border-radius: 2px;
    margin: 2px;
    background-color: var(--animation-color);
    -webkit-animation: loading-animation-line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
    animation: loading-animation-line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.loading-layout-1 .line-scale-pulse-out > div:nth-child(2),
.loading-layout-1 .line-scale-pulse-out > div:nth-child(4) {
    -webkit-animation-delay: -0.4s !important;
    animation-delay: -0.4s !important;
}
.loading-layout-1 .line-scale-pulse-out > div:nth-child(1),
.loading-layout-1 .line-scale-pulse-out > div:nth-child(5) {
    -webkit-animation-delay: -0.2s !important;
    animation-delay: -0.2s !important;
}
