<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ajax-block {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-wrapper .loader.default {
    border: 12px solid #f3f3f3; /* Light grey */
    border-top: 12px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}
.tiktok-loader {
    display: flex;
    perspective: 1000px;
    overflow: visible;
}
.magenta,
.cyan {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transform-origin: 50% 50%;
    margin: 0 4px;
}
.magenta {
    background-color: #ff00ff;
    mix-blend-mode: multiply;
    animation: move-left 1s ease-in-out infinite;
}
.cyan {
    background-color: #00ffff;
    mix-blend-mode: multiply;
    animation: move-right 1s ease-in-out infinite;
}

@keyframes move-left {
    0%,
    10% {
        transform: scale(1) translateX(0);
    }
    15% {
        transform: scale(0.8) translateX(-16px);
    }
    40%,
    60% {
        transform: scale(1) translateX(-32px);
    }
    75% {
        transform: scale(1.2) translateX(-16px);
    }
    90%,
    100% {
        transform: scale(1) translateX(0);
    }
}
@keyframes move-right {
    0%,
    10% {
        transform: scale(1) translateX(0);
    }
    15% {
        transform: scale(1.2) translateX(16px);
    }
    40%,
    60% {
        transform: scale(1) translateX(32px);
    }
    75% {
        transform: scale(0.8) translateX(16px);
    }
    90%,
    100% {
        transform: scale(1) translateX(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ball-clip-rotate-multiple {
    position: relative;
}
.ball-clip-rotate-multiple &gt; div {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    left: -20px;
    top: -20px;
    border: 2px solid var(--fs-color-primary);
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-radius: 100%;
    height: 55px;
    width: 55px;
    -webkit-animation: rotate 1s 0s ease-in-out infinite;
    animation: rotate 1s 0s ease-in-out infinite;
}
.ball-clip-rotate-multiple &gt; div:last-child {
    display: inline-block;
    top: -10px;
    left: -10px;
    width: 35px;
    height: 35px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    border-color: var(--fs-color-primary) transparent var(--fs-color-primary) transparent;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(180deg) scale(0.75);
        transform: rotate(180deg) scale(0.75);
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}
</pre></body></html>