/* ---------------- INTERNET ICON ---------------- */ #internetAlert{ position:fixed; top:50%; left:50%; transform:translate(-50%,-50%); display:none; z-index:9999; padding:20px; border-radius:20px; background:red; /* ALWAYS RED */ box-shadow:0 0 20px red; } #internetAlert img{ width:80px; height:80px; } /* flashing ONLY when offline */ .offline{ display:block !important; animation:flash 0.6s infinite; } @keyframes flash{ 0%{opacity:1;} 50%{opacity:0.25;} 100%{opacity:1;} }