/******************************************************************************
 *  LOGO
 ******************************************************************************/
.loader{
    transform: translate(-50%, -50%) scale(0.2);
    transform-origin: center;
    background-color: black;
    /* @TODO border: 5px solid #fff;*/
    border: 2px solid #4973ff;
    box-shadow: none;
    border-radius: 50%;
    overflow: hidden;
}

.loader{
    position: absolute;
    top: 1.8rem;
    left: 2rem;
    width: 200px;
    height: 200px;
}

/* @TODO */
.wave{
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #4973ff;
    border-radius: 50%;
    /*box-shadow: inset 0 0 50px black;*/
}

.wave:before, .wave:after{
    content: '';
    position: absolute;
    height: 200%;
    width: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: black;
    will-change: transform;
}

.wave:before{
    border-radius: 40%;
    background-color: rgba(255,255,255,1);
    animation: animate 10s linear infinite;
}

.wave:after{
    border-radius: 35%;
    background-color: rgba(255,255,255,0.5);
    animation: animate 10s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}
