<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -60px 0 0 -60px;
    background: #fff;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    border: 20px solid #e5b3e0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 1) 0 0 30px -7px;
}
.loading:after {
    content: '';
    background: trasparent;
    width: 180%;
    height: 180%;
    position: absolute;
    border-radius: 100%;
    top: -40%;
    left: -40%;
    opacity: 0.7;
    box-shadow: rgba(229, 179, 224, 1) -4px -5px 5px -3px;
    animation: rotate2 0.25s infinite linear;
}

.loading span {
    flex: 1 0 auto;
    text-align: center;
    font-size: 1rem;
    color: #555;
    font-style: italic;
}

@keyframes rotate2 {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}</pre></body></html>