/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 15/12/2025, 12:11:47
    Author     : Rui
*/



/* ============================================================
 |  DecorInova – Infinite Scroll Loader (isolated)
 ============================================================ */

.di-infinite-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.di-spinner {
    width: 42px;
    height: 42px;

    border: 4px solid rgba(0, 0, 0, 0.15);
    border-top-color: #BB976D;

    border-radius: 50%;
    animation: di-spin 0.8s linear infinite;
}

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




