.loading-container {
    background: #004109;
    height: 100vh;
    width: 100vw;
}
.container-animation {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 35vh !important;
    width: 46% !important;
}
.cls-1 {
    fill: #fff;
}

.cls-2 {
    fill: #32c332;
}
.animated-element {
    transform: scale(0,0);
    transform-origin: center;
    animation: s2b1 1s linear 0.7s forwards;
}
@keyframes s2b1 {
    0% {
        transform: scale(0,0);
    }
    50% {
        transform: scale(1,1);
    }
    75% {
        transform: scale(0.8,0.8)
    }
    100% {
        transform: scale(1,1);
    }
}
