/* ---------------- HELPERS ---------------- */

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.small-muted-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

.section-margin-top {
    margin-top: 20px;
}

.data-loading {
    width: 100%;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-loading-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.data-loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--payment-neutral-border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: data-loading-spin 0.8s linear infinite;
}

.data-loading-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

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