.loading-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;background-color:#000;z-index:9999;display:flex;flex-direction:column;justify-content:center;align-items:center;transition:opacity .5s ease-out;opacity:1}.loading-overlay.fade-out{opacity:0}.loading-text{color:#fff;font-size:.8rem;font-weight:300;letter-spacing:.2rem;margin-top:15px}.loading-bar{width:200px;height:4px;margin-top:10px;margin-bottom:10px;background-color:#222;border-radius:2px;overflow:hidden;position:relative}.loading-bar:after{content:"";position:absolute;top:0;left:-100%;width:50%;height:100%;background-color:rgba(255,255,255,.9);border-radius:2px;animation:loading-bar-animation 1.5s ease-in-out infinite;transform:translateZ(0);will-change:transform}@keyframes loading-bar-animation{0%{left:-50%}to{left:100%}}