#overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
    }
    .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .spinner {
        background-position: center;
        background-repeat: no-repeat;
        position: fixed;
        z-index: 1000000;
        left: 0;
        top: 0;
        right: 0;

        bottom: 0;
        opacity: 1;
        background-size: 40px;
        background-color: #fff;
        background-image: url('public/website/assets/images/loader.gif')
    }
    @keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
    }
    