/* Estilos del efecto loader */
.loader{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 15;
/*    display: none;*/
    transition: all 1.5s ease;
}

.loader .ring{
    position: relative;
    height: 85px;
    width: 85px;
    border: 15px solid #ddd;
    border-radius: 50%;
    display: flex;
    z-index: 15;
    align-items: center;
    justify-content: center;
}

.loader .ring:after{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
/*    border: 15px solid #366af0;*/
    border: 15px solid #ff3d00;
    border-radius: 50%;
    border-top-color: transparent;
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate{
    100%{
        transform: rotate(360deg);
    }    
}
/* aqui termina el efecto loader*/