/* General styles for all menus */
.cbp-spmenu {
        background: #6854e7;
        color: #ff00ff;
        height: 100%;
        position: fixed;
        text-align: center;
        top: 0;
        width: 18em;
        left: 0;
}

.cbp-spmenu h1 {
    color: #ffffff;
    
}

.cbp-spmenu h3 {
    color: #ffffff;
    
}

.cbp-spmenu a {
    color: #d1f1e9;
}

.cbp-spmenu a:hover {
    color: #ffffff !important;
}

.cbp-spmenu a:active {
    background: #afdefa;
    color: #47a3da;
}

.cbp-spmenu > header {
            padding: 3em;
        }

            .cbp-spmenu > header .avatar {
                display: block;
                margin: 0 auto 2.25em auto;
                width: 8em;
            }

            .cbp-spmenu > header h1 {
                font-size: 1.75em;
                margin: 0;
            }

            .cbp-spmenu > header p {
                color: #d1f1e9;
                font-style: italic;
                margin: 1em 0 0 0;
            }

        .cbp-spmenu > footer {
            bottom: 0;
            left: 0;
            padding: 2em;
            position: absolute;
            width: 100%;
        }

            .cbp-spmenu > footer .icons {
                margin: 0;
            }

                .cbp-spmenu > footer .icons li a {
                    color: #b6e9dc;
                }

.cbp-spmenu > nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .cbp-spmenu > nav ul li {
                border-top: solid 2px #5ccfb0;
                display: block;
                padding: 0;
            }

                .cbp-spmenu > nav ul li a {
                    -moz-transition: none;
                    -webkit-transition: none;
                    -ms-transition: none;
                    transition: none;
                    border: 0;
                    color: #ffffff !important;
                    display: block;
                    padding: 0.85em 0;
                    text-decoration: none;
                }

                    .cbp-spmenu > nav ul li a.active {
                        background: #fff;
                        color: #4acaa8 !important;
                    }

                .cbp-spmenu > nav ul li:first-child {
                    border-top: 0;
                }

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
                
                display: block;
                height: 100%;
                overflow-y: auto;
                position: fixed;
                top: 0;
                width: 18em;
                z-index: 10002;
                -moz-transform: translateX(-18em);
                -webkit-transform: translateX(-18em);
                -ms-transform: translateX(-18em);
                transform: translateX(-18em);
                left: 0;
            }

                .cbp-spmenu-vertical > footer {
                    bottom: auto;
                    left: auto;
                    margin: 1em 0 0 0;
                    position: relative;
                    right: auto;
                    top: auto;
                }


.cbp-spmenu-horizontal {
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1000;
    overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
    height: 100%;
    width: 20%;
    float: left;
}

.cbp-spmenu-horizontal a {
    float: left;
    width: 20%;
    padding: 0.8em;
    border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */
.cbp-spmenu-left {
    left: -18em;
}

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

.cbp-spmenu-left.menu-open {
    left: 18em;
}

.cbp-spmenu-right.menu-open {
    right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

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

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

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

.cbp-spmenu-bottom.menu-open {
    bottom: 0px;
}

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

.push-wrapper-toright {
    left: 18em;
}

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

/* Transitions */
.cbp-spmenu,
.push-wrapper {
    -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: 18em;
    }

    .cbp-spmenu-left,
    .push-body-toleft {
        left: -18em;
    }

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

    .push-wrapper-toright {
        left: 18em;
    }
}
