.loading-container .cls-1, .loading-container .cls-3 {
    fill: #c0e83e;
}

.loading-container .cls-1 {
    stroke: #c0e83e;
    stroke-linejoin: round;
    stroke-width: 2.38px;
}

.loading-container .cls-2 {
    fill: #fff;
}
.loading-container {
    background: #000000;
}

.container {
    overflow: hidden;
    position: relative;
    width: 25%;
    margin: 10px auto;
}
.loading-container .cls-1, .loading-container .cls-3, .loading-container .cls-2,
.loading-container .path_epico{
    transform: scale(0,0);
    transform-origin: center;
    animation: s2b1_rotation 0.4s ease forwards;
    animation-delay: 0.6s;
}
.loading-container .path_1{
    transform: scale(0,0);
    transform-origin: center;
    animation: s2b1_rotation 0.4s ease forwards;
    animation-delay: 0.4s;
}
.loading-container .path_2{
    transform: scale(0,0);
    transform-origin: center;
    animation: s2b1_rotation 0.4s ease forwards;
    animation-delay: 0.2s;
}
.loading-container .path_exterior {
    transform: scale(0,0);
    transform-origin: center;
    animation: s2b1_rotation 0.4s ease forwards;
}

@keyframes s2b1_rotation {
    0% {
        transform: scale(0,0);
    }
    50% {
        transform: scale(1,1);
    }
    75% {
        transform: scale(0.8,0.8);
    }
    100% {
        transform: scale(1,1);
    }
}
#svg{
    transform-origin: center;
    animation: anim_zoom 1.5s linear 1.2s infinite;
}
@keyframes anim_zoom {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(0.97,0.97);
    }
    100% {
        transform: scale(1,1);
    }
}