/**
 * (C) Copyright Mindus SARL, 2025.
 * All rights reserved.
 * 
 * The IIZI Network CSS.
 */

/* No connection div, over busy cover */
.izNC_offline{
 position:fixed;
 left:0;
 top:100%;
 width:100%;
 height:0;
 -webkit-filter:blur(0) !important;
         filter:blur(0) !important;
 }
.izNC_offline>div{
         transition:top .3s;
 -webkit-transition:top .3s;
 z-index:2147483646;
 pointer-events:none;
 height:50px;
 font: 16px '-apple-system',HelveticaNeue,Helvetica,Arial,sans-serif;
 text-align:center;
 line-height:50px;
 color:#FFF;
 background-color:#D24020;
 position:relative;
 top:0;
 }
.izNC_show>div{
 top:-50px;
}
