﻿.spin {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #29BAD9;
    border-bottom: 12px solid #29BAD9;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.loader {
    width: 24px;
    height: 24px;
    border: 3px dotted #0671BA;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
    /*left:5%;*/
}

.cv-loader {
    height: 100%;
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    /*position:absolute;
    top:0;
    bottom:0;*/
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
