*,
*:before,
*:after {
    outline: 0;
    box-sizing: border-box;
}

.contenedor_loader {
    background-color: #ffffff;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    transition: all 1.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0;
}

.loader-1 {
    position: relative;
}

.loader-1:after {
    content: "";
    width: 60px;
    height: 60px;
    background-color: #eab600;
    animation: giro .5s linear infinite;
    position: absolute;
    top: 0;
    left: -30px;
    border-radius: 3px;
}

.loader-1:before {
    content: "";
    width: 60px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    animation: sombra .5s linear infinite;
    position: absolute;
    top: 70px;
    left: -30px;
    border-radius: 50%;
}

@keyframes giro {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes sombra {
    50% {
        transform: scale(1.3, 1);
    }
}