﻿.section-loader {
    position: fixed;
   /* top: 0;
    left: 0;
    bottom: 0;
    right: 0;*/
    background-color: var(--bs-body-bg);
    z-index: 1050;
    height: 100vh;
    opacity: .7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:-20px -30px; /*per evitare di vedere margini della sezione*/
    width:100%;
    /*transform:translateX(-50%);*/
}
.section-loader.loaded {
    display: none;
}

.panel-loader-custom {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--app-component-bg);
    opacity: .9;
    z-index: 1030;
    -webkit-animation: fadeIn .2s;
    animation: fadeIn .2s;
    border-radius: 0 0 4px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}