.loading-container {
    background: #fcb3cd;
    height: 100vh;
    width: 100vw;
}
.container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 35vh !important;
    width: 46% !important;
}
@keyframes scaleAll {
    0% {
        transform: scale(0, 0);
    }
    100% {
        transform: scale(0.5, 0.5);
    }
}
@keyframes anim_zoom {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(0.5, 0.5);
    }
    100% {
        transform: scale(1, 1);
    }
}
#svg {
    height: 100%;
    transform-origin: center;
    animation: anim_zoom 1.5s linear 0.5s;
}
.cls-1,
.cls-2 {
    stroke-width: 0px;
}
.cls-2 {
    fill: #fff;
}
