#loadingUpdate {
    position: absolute;
    background-color: rgba(106, 82, 133, 0.5);
    margin-left: -4vw;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
}

.row.plot {
    position: relative;
}

#loadingUpdate-spinner {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #410b84;
    animation: spin 1s infinite linear;
    display: none;
    z-index: 200;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}