/* Public styles go here */
.loader {
    width: 15px;
    height: 15px;
    border: 2px solid #000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-bottom: -1px;
    margin-right: 5px;
    display: inline-block;
}

.loader.loader-white {
    border: 2px solid #fff;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}