#barba-loader{
    position:fixed;
    inset:0;
    background:#ffffff;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
}

.barba-spinner{
    width:60px;
    height:60px;
    border:5px solid #e5e5e5;
    border-top:5px solid #2563eb;
    border-radius:50%;
    animation:barbaSpin 1s linear infinite;
}

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

.barba-container{
    min-height:100vh;
    transition:opacity .3s ease;
}
