#lm-spinner-overlay-v1{
    position: fixed;
    top: 0;
    z-index: 100000;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.lm-spinner-cv-spinner-v1 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lm-span-spinner-v1 {
    width: 40px;
    height: 40px;
    border: 4px #000000 solid;
    border-top: 4px #4f565b solid;
    border-radius: 50%;
    animation: lm-sp-anime-v1 0.8s infinite linear;
}
@keyframes lm-sp-anime-v1 {
    100% {
        transform: rotate(360deg);
    }
}
