<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General styles for all menus */
.cbp-spmenu {
    background: #eaeaea;
    position: fixed;
}

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-horizontal {
    width: 100%;
    /* height: 150px; */
    left: 0;
    z-index: 90;
    overflow: hidden;
    padding: 30px 5px;
}

/* Horizontal menu that slides from the top or bottom */
.cbp-spmenu-top {
    top: -500px;
}

.cbp-spmenu-top.menu-open {
    top: 92px;
}

/* Push classes applied to the body */
.push-body {
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.push-body-toright {
    left: 240px;
}

.push-body-toleft {
    left: -240px;
}

/* Transitions */
.cbp-spmenu,
.push-body {
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
            transition: all 0.5s ease;
}

/* Example media queries */
@media screen and (max-width: 55.1875em) {
    .cbp-spmenu-horizontal {
        font-size: 75%;
        height: 110px;
    }

    .cbp-spmenu-top {
        top: -110px;
    }

    .cbp-spmenu-bottom {
        bottom: -110px;
    }
}

@media screen and (max-height: 26.375em) {
    .cbp-spmenu-vertical {
        font-size: 90%;
        width: 190px;
    }

    .cbp-spmenu-left,
    .push-body-toleft {
        left: -190px;
    }

    .cbp-spmenu-right {
        right: -190px;
    }

    .push-body-toright {
        left: 190px;
    }
}
</pre></body></html>