html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    background: #FCFCFB;
}

.loader-shell {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    background: #FCFCFB;

    transition:
        opacity 120ms ease;

    z-index: 2147483647;
}

.loader-shell.visible {
    opacity: 1;
}

.loader-wheel {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    border:
        4px solid
        rgba(30, 41, 59, .14);

    border-top-color:
        #B8891F;

    animation:
        ccf-spin .72s linear infinite;
}

@keyframes ccf-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (
    prefers-reduced-motion:
    reduce
) {
    .loader-wheel {
        animation-duration: 1.6s;
    }
}
