/* input(13,25): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-->' */
body {
}
.div-loader {
    min-height: 210px !important
}


.IndivisualLoader {
    position: absolute;
    left: calc(50% - 60px / 2);
    top: calc(50% - 60px / 2);
    border: 6px solid #F3F3F3;
    border-radius: 50%; -->
    border-top: 6px solid silver;
    border-right: 6px solid silver;
    border-bottom: 6px solid silver;
    border-left: 6px solid silver;
    /* border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    border-left: 16px solid pink;*/
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 