.loading-container {
    background: #00665a;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.container {
    overflow: hidden;
    position: relative;
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
}

#svg {
    transform-origin: center center;
    animation: anim_zoom 1.5s linear 0.2s;
    width: 100%;
    height: auto;
}

@keyframes anim_zoom {
    0% {
        transform: scale(1, 1);
    }
    20% {
        transform: scale(0, 0);
    }
    100% {
        transform: scale(1, 1);
    }
}

.cls-1 {
  fill: #36fdd1;
}

.cls-2 {
  fill: #00c0a3;
}
