.loading-dialog { position: fixed; top: 0; bottom: 0; left: 0; right: 0; width: 100vw; height: 100vh; backdrop-filter: blur(5px); background-color: rgba($color: #000, $alpha: 0.2); display: flex; justify-content: center; align-items: center; z-index: 999; } .loader { position: fixed; border: 16px solid var(--white); border-top: 16px solid var(--light-blue); border-radius: 50%; width: 50px; height: 50px; animation: spin 2s linear infinite; margin: auto; margin-top: 20px; } .loading-text { position: fixed; text-align: center; margin-top: 200px; color: var(--white); text-shadow: 3px 3px 3px var(--black); p { font-size: 21px; font-weight: 400px; margin-bottom: 6px; } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }