﻿
.laf-clu-editor {
    position: relative;
}

.laf-clu-busy-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 48px;
    z-index: 5;
    pointer-events: none;
}

.laf-clu-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--LAF-palette-primary);
    border-top-color: transparent;
    border-radius: 50%;
    margin-top: -5px;
    animation: laf-clu-spin 0.7s linear infinite;
}

@keyframes laf-clu-spin {
    to {
        transform: rotate(360deg);
    }
}
