#loading-modal .container {
    background-image: url("/images/background.svg");
    background-size: 100% 100%;
    position: relative;
    width: 360px;
    height: 87px;
    z-index: 0;
}

#loading-modal .loader {
    position: relative;
    width: fit-content;
    margin: 20px auto;
}

#loading-modal .moving-image img {
    transform: translateY(6px);
}

#loading-modal .moving-image {
    position: absolute;
    offset-path: ellipse(50% 50% at 50% 50%);
    z-index: 5;
}

#loading-modal .moving-image1 {
    animation: moveInEllipse 7s linear infinite;
}

#loading-modal .moving-image2 {
    animation: moveInEllipse 13s linear infinite;
}

#loading-modal .moving-image3 {
    animation: moveInEllipse 17s linear infinite;
}

#loading-modal .centerpiece {
    position: relative;
    top: 52px;
    left: 110px;
    z-index: 10;
}

@keyframes moveInEllipse {
    from {
        offset-distance: 0;
    }
    to {
        offset-distance: 100%;
    }
}
