/* Three spinning rings (no center image) */

.loader-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

.ring-outer {
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    border-top-color: #7033C8;
    border-left-color: #7033C8;
    animation: spin 2s linear infinite;
}

.ring-mid {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: #00BFEA;
    border-right-color: #00BFEA;
    animation: spin-reverse 1.4s linear infinite;
}

.ring-inner {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #F5921E;
    border-right-color: #F5921E;
    animation: spin 1s linear infinite;
}
