#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 10000;
}
#loader #loader-inner {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -75px 0 0 -25px;
    border-radius: 50%;
    border: 3px solid #333;
    border-top-color: #333;
    border-left-color: transparent;
    border-right-color: #333;
    animation: spin 1s linear infinite;
}
#loader #loader-inner:after {
/*
    content: "";
    position: absolute;
    top: -5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #333;
    background: #333;
    animation: spin 1.5s linear infinite;
*/
}
@keyframes spin {
    0% {
    transform: rotate(0deg);
}
to {
    transform: rotate(1turn);
}
}