<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#carregamento {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading {
    position: fixed;
    display: none;
    border-radius: 50%;
    font-size: 25px;
    z-index: 1031;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 10em;
    border-top: 0.3em solid #00c7c1;
    height: 10em;
    top: 40%;
    /*  top: 35%;
    right: 45%;*/
    --direction: 1;
    animation: rotating 2s ease-in-out infinite;
}

.loading::before,
.loading::after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    box-sizing: border-box;
    top: -0.2em;
}

.loading::before {
    border-top: 0.3em solid dodgerblue;
    transform: rotate(120deg);
}

    .loading::after {
        border-top: 0.3em solid #0013b1;
        transform: rotate(240deg);
    }

    .loading span {
        position: absolute;
        color: white;
        color: black;
        width: inherit;
        height: inherit;
        text-align: center;
        line-height: 10em;
        font-family: sans-serif;
        animation: rotating 2s linear infinite;
        --direction: -1;
    }

@keyframes rotating {
    50% {
        transform: rotate(calc(180deg * var(--direction)));
    }

    100% {
        transform: rotate(calc(360deg * var(--direction)));
    }
}


/*.loading {
    position: fixed;
    display: none;
    z-index: 1031;
    height: 35px;
    width: auto;
    margin: auto;
    top: 50%;
    right: 45%;
}
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }
    .loading span:before {
        content: "";
        background: inherit;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        animation: wave 1.5s ease-out infinite;
    }


    .loading span {
        width: 25px;
        height: 25px;
        margin: 0 5px;
        border-radius: 50%;
        display: inline-block;
        position: relative;
    }

        .loading span:nth-child(1) {
            background: #ff8d00;
        }

        .loading span:nth-child(2) {
            background: #ffa433;
        }

        .loading span:nth-child(3) {
            background: #f5a53f;
        }

        .loading span:nth-child(4) {
            background: #ffb557;
        }


        .loading span:nth-child(1):before {
            animation-delay: 0.2s;
        }

        .loading span:nth-child(2):before {
            animation-delay: 0.4s;
        }

        .loading span:nth-child(3):before {
            animation-delay: 0.6s;
        }

        .loading span:nth-child(4):before {
            animation-delay: 0.8s;
        }

@keyframes wave {
    50%,75% {
        transform: scale(1.3);
    }

    80%,100% {
        opacity: 0;
        
    }
}
*/</pre></body></html>