/* Full-page Ganabid loading screen. It contains no external assets apart from the local brand icon. */
.ganabid-page-loader { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; background: #0b0c0d; color: #fff; opacity: 1; visibility: visible; transition: opacity .36s ease, visibility .36s ease; }
.ganabid-page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.ganabid-loader-stage { position: relative; width: 260px; min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.ganabid-loader-products { position: absolute; inset: 0; animation: ganabid-loader-orbit 3.2s linear infinite; }
.ganabid-loader-product { position: absolute; display: block; box-sizing: border-box; color: #d8a52f; opacity: 0; animation: ganabid-loader-pop 3.2s ease-in-out infinite; }
.ganabid-loader-icon { position: relative; z-index: 2; width: 76px; height: 76px; object-fit: contain; animation: ganabid-loader-icon 1.6s ease-in-out infinite; }
.ganabid-loader-stage strong { position: relative; z-index: 2; margin-top: 10px; color: #f3b621; font-family: Arial, Helvetica, sans-serif; font-size: 24px; letter-spacing: 0; }
.ganabid-loader-copy { position: relative; z-index: 2; margin-top: 5px; color: #d1d1d1; font: 13px Arial, Helvetica, sans-serif; }
.ganabid-loader-progress { position: relative; z-index: 2; display: block; width: 120px; height: 3px; margin-top: 18px; overflow: hidden; background: #333; }
.ganabid-loader-progress i { display: block; width: 44px; height: 100%; background: #d8a52f; animation: ganabid-loader-progress 1.1s ease-in-out infinite; }
.product-phone { top: 11px; left: 116px; width: 25px; height: 44px; border: 3px solid currentColor; border-radius: 6px; animation-delay: .05s; }
.product-phone:after { content: ''; position: absolute; right: 7px; bottom: 3px; left: 7px; height: 2px; background: currentColor; }
.product-watch { top: 99px; right: 16px; width: 34px; height: 34px; border: 3px solid currentColor; border-radius: 50%; animation-delay: .28s; }
.product-watch:before, .product-watch:after { content: ''; position: absolute; left: 8px; width: 12px; height: 7px; border-right: 3px solid currentColor; border-left: 3px solid currentColor; }
.product-watch:before { top: -10px; } .product-watch:after { bottom: -10px; }
.product-tablet { bottom: 27px; left: 30px; width: 43px; height: 31px; border: 3px solid currentColor; border-radius: 4px; animation-delay: .54s; }
.product-tablet:after { content: ''; position: absolute; bottom: 3px; left: 18px; width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.product-plane { right: 39px; bottom: 27px; width: 44px; height: 18px; border-top: 3px solid currentColor; transform: rotate(-24deg); animation-delay: .8s; }
.product-plane:before { content: ''; position: absolute; top: -8px; left: 13px; width: 19px; height: 18px; border-top: 3px solid currentColor; transform: skewX(-28deg); }
.product-plane:after { content: ''; position: absolute; top: -3px; right: -2px; width: 10px; height: 10px; border-top: 3px solid currentColor; transform: rotate(48deg); }
@keyframes ganabid-loader-orbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes ganabid-loader-pop { 0%, 17% { opacity: 0; } 27%, 73% { opacity: 1; } 86%, 100% { opacity: 0; } }
@keyframes ganabid-loader-icon { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1.05); } }
@keyframes ganabid-loader-progress { 0% { transform: translateX(-50px); } 100% { transform: translateX(125px); } }
@media (max-width: 680px) { .ganabid-loader-stage { width: 230px; min-height: 230px; } .ganabid-loader-icon { width: 70px; height: 70px; } .product-phone { left: 102px; } .product-watch { right: 4px; } .product-tablet { left: 17px; bottom: 17px; } .product-plane { right: 25px; bottom: 17px; } }
@media (prefers-reduced-motion: reduce) { .ganabid-loader-products, .ganabid-loader-product, .ganabid-loader-icon, .ganabid-loader-progress i { animation: none; opacity: 1; } }