/* Loading Styles */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spinner-wrapper {
    margin-bottom: 1rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border: 3px solid #4099ff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-dots span {
    opacity: 0;
    animation: dots 1.4s infinite;
    margin-left: 2px;
}

    .loading-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .loading-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dots {
    0%, 20% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px);
    }

    80%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
}


.jquery-waiting-base-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    bottom: 0px;
    z-index: 999999;
    text-align: center;
    background-color: #191d20;
    filter: alpha(opacity=90);
    -moz-opacity: 0.6;
    opacity: 0.6;
    display: block;
    position: fixed;
}

.ClassCarregando {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
    z-index: 99999;
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=80);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: #fff url("/assets/images/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 999999;
}

