﻿.loaderSection {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: #00000082;
    z-index: 999;
}

.loaderSection-dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: #00000082;
    z-index: 999;
}

.spinners {
    width: 14.4px;
    height: 14.4px;
    border-radius: 14.4px;
    box-shadow: 36px 0px 0 0 rgba(153,171,99,0.2), 29.2px 21.2px 0 0 rgba(153,171,99,0.4), 11.16px 34.2px 0 0 rgba(153,171,99,0.6), -11.16px 34.2px 0 0 rgba(153,171,99,0.8), -29.2px 21.2px 0 0 #99ab63;
    animation: spinner-b87k6z 0.8s infinite linear;
}

@keyframes spinner-b87k6z {
    to {
        transform: rotate(360deg);
    }
}

