/*
 * ALBARON OPTIONS V33
 * Sticky header.
 * Desktop + mobile.
 * Presentation only.
 */

.topbar {
    position: -webkit-sticky !important;
    position: sticky !important;

    top: 10px !important;

    z-index: 2000 !important;

    isolation: isolate !important;

    backdrop-filter:
        blur(18px) !important;

    -webkit-backdrop-filter:
        blur(18px) !important;

    box-shadow:
        0 14px 40px
        rgba(0, 0, 0, .24) !important;
}

/*
 * Slightly tighter offset on phones.
 */

@media (max-width: 760px) {

    .topbar {
        top: 6px !important;

        z-index: 2000 !important;
    }
}
