
/*--------------
SPINNERS
--------------*/
#loader{
    position         : fixed;
    z-index          : 9999999999;
    width            : 100%;
    height           : 100%;
    top              : 0;
    left             : 0;
    background-color : rgba(255, 255, 255, .45);
    display          : flex;
    align-items      : center;
    justify-content  : center;
}

#loader .loader,
.inset-loader{
    margin        : auto;
    border-radius : 50%;
    animation     : spin .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
}



