.spin-wrapper {
    padding-left: 0em;
    padding-right: 0em;
    margin: auto;
    display: block;
    width: 65px;
}
.spin-loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 1em;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.spin-loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 1em;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.spin-loader,
.spin-loader:before,
.spin-loader:after {
    animation: 0.5s infinite ease-in-out;
    -o-animation: 0.5s infinite ease-in-out;
    -ms-animation: 0.5s infinite ease-in-out;
    -webkit-animation: 0.5s infinite ease-in-out;
    -moz-animation: 0.5s infinite ease-in-out;
}
.spin-loader:before,
.spin-loader:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.spin-loader:before,
.spin-loader:after {
    content: "";
}
.spin-loader:before,
.spin-loader:after {
    content: "";
    background-color: rgb(51, 51, 51);
    transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    animation: spin-animation 0.745s infinite ease-in-out;
    -o-animation: spin-animation 0.745s infinite ease-in-out;
    -ms-animation: spin-animation 0.745s infinite ease-in-out;
    -webkit-animation: spin-animation 0.745s infinite ease-in-out;
    -moz-animation: spin-animation 0.745s infinite ease-in-out;
}
.spin-loader:after {
    animation-delay: 0.3775s;
    -o-animation-delay: 0.3775s;
    -ms-animation-delay: 0.3775s;
    -webkit-animation-delay: 0.3775s;
    -moz-animation-delay: 0.3775s;
}
@keyframes spin-animation {
    0% {
        transform: translateX(-100%) scale(0);
    }
    50% {
        transform: translateX(0%) scale(1);
    }
    100% {
        transform: translateX(100%) scale(0);
    }
}
@-o-keyframes spin-animation {
    0% {
        -o-transform: translateX(-100%) scale(0);
    }
    50% {
        -o-transform: translateX(0%) scale(1);
    }
    100% {
        -o-transform: translateX(100%) scale(0);
    }
}
@-ms-keyframes spin-animation {
    0% {
        -ms-transform: translateX(-100%) scale(0);
    }
    50% {
        -ms-transform: translateX(0%) scale(1);
    }
    100% {
        -ms-transform: translateX(100%) scale(0);
    }
}
@-webkit-keyframes spin-animation {
    0% {
        -webkit-transform: translateX(-100%) scale(0);
    }
    50% {
        -webkit-transform: translateX(0%) scale(1);
    }
    100% {
        -webkit-transform: translateX(100%) scale(0);
    }
}
@-moz-keyframes spin-animation {
    0% {
        -moz-transform: translateX(-100%) scale(0);
    }
    50% {
        -moz-transform: translateX(0%) scale(1);
    }
    100% {
        -moz-transform: translateX(100%) scale(0);
    }
}