@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

.avxInitLoader{display:grid;place-items:center;position:fixed;top:0;left:0;width:100%;height:100%;background-color:#FFFFFF;z-index:1018;}
.avxInitLoader > div{width:192px;height:192px;background:url('../img/react-logo192.png') no-repeat center center;background-size:contain;
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.avxInitLoader.hiddenLoader{display:none;}