﻿#overlay {
    position: fixed;
    top: 0;
    z-index: 50500000;
    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;
    position: relative;
}

.spinner {
    width: 100px;
    height: 100px;


    border-radius: 50%;
    border: 4px #ddd solid;
    border-top: 4px #fff solid;
background-color: white;
    animation: sp-anime 0.8s infinite linear;
}
.spinner-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}