#overlay{	
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: inherit;
    background: rgba(255,255,255,0.4);
}

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

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 3px #363636 solid;
    border-radius: 50%;
    animation: sp-anime 0.9s infinite linear;
}

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


/* ATTACHMENTS DATA LOADER */
.on-attachments-loader {
    width: 70px;
    height: 70px;
    /* margin: 20px auto; */
    position: relative;
}
.on-attachments-loader::before {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    margin: 8px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-color: #2a41e2 #08AF0D #F7C600 #AB0D22;
    animation: lds-dual-ring 0.95s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}

.btn .material-icons, .btn:not(.btn-just-icon):not(.btn-fab) .fa {
    position: relative;
    display: inline-block;
    top: 0;
    margin-top: -2px;
    margin-bottom: -0em;

}
