/* Core styles injected on every public page (via core/head.html).
   Background images use relative paths (../img/bg/...) resolved from this
   file's location, so they work identically in local and on S3/Linux. */

main {
    background: url("../img/bg/bg-dot.png"), url("../img/bg/bg-dot.png"), url("../img/bg/bg-round.png");
    background-position: 10px 10px, top 550px right 86px , left 55% top -1%;
    background-repeat: no-repeat;
}

.cl {
    display: none !important;
}

#global-loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #0c0c0c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease,visibility 0.2s ease;
}

#global-loader.gl-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gl-spin {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(242,239,233,0.12);
    border-top-color: #3FAEDC;
    border-radius: 50%;
    animation: gl-rot 0.75s linear infinite;
}

@keyframes gl-rot {
    to {
        transform: rotate(360deg);
    }
}
