@charset "utf-8";
/* CSS Document */

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 4px #ddd solid;
    border-top: 4px #2759ab solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}