﻿.overlay-custom {
    background-color: rgba(255,255,255,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    cursor: not-allowed;
    z-index: 999;
}

.container-loader-custom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.loader-custom {
    position: fixed;
    top: 40%;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
    z-index: 1000;
    display: none;
    cursor: not-allowed
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
