
@media(min-width: 1280px) {
    .rpv-default-layout__sidebar--opened {
        width: 24rem;
    }
}

.TextNoSelect{
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fader:before {
    content: '';
    background: #00000052;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9998;
    overflow: hidden;
    -webkit-animation: fadein 0.3s linear forwards;
    animation: fadein 0.3s linear forwards;
}

.loading-indicator:before {
    content: '';
    background: #00000086;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9998;
    overflow: hidden;
    -webkit-animation: fadein 0.3s linear forwards;
    animation: fadein 0.3s linear forwards;
}

.loading-indicator:after {
    content: 'Caricamento...';
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 9999;
    color:rgb(0, 0, 0);
    text-align:center;
    font-weight:bold;
    font-size:1.5rem;    
    -webkit-animation: fadeinout 0.8s linear forwards infinite;
    animation: fadeinout 0.8s linear forwards infinite;
    background-image: url(../assets/img/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 230px;
    filter: invert(100%);
}

@-webkit-keyframes fadein {
    0% { opacity: 0; }
    50% { opacity: 1; }
}
  
@keyframes fadein {
    0% { opacity: 0; }
    50% { opacity: 1; }
}

@-webkit-keyframes fadeinout {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
  
@keyframes fadeinout {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}