.initial-loading-screen{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:9999;background-color:var(--white);pointer-events:none;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2.5vh}.initial-loading-screen.fade-out{animation:fade-out .25s ease-in-out .25s forwards}@keyframes fade-out{0%{opacity:1}to{opacity:0;display:none}}.initial-loading-screen-loader{width:20vw;height:1px;background-color:rgba(200,200,200,.25)}.initial-loading-screen-loader-inner{width:100%;height:100%;background-color:var(--blue);animation:loading-animation 1s ease}@keyframes loading-animation{0%{width:0}to{width:100%}}