margin: 0; } #loader-root { align-items: center; background-color: #fafafa; color: #676b71; display: flex; flex-direction: column; height: 100%; justify-content: center; position: absolute; width: 100%; } .loading-spinner { width: 24px; height: 24px; border: 3px solid #000; border-bottom-color: transparent; border-radius: 50%; display: inline-block; box-sizing: border-box; animation: rotation 1s linear infinite; } #loading-message { display: none; margin-top: 20px; padding-inline: 16px; } #loading-message p { color: #676b71; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; font-size: 12px; line-height: 14px; margin: 0; text-align: center; } #loading-message.visible { display: block; } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }