/* General styles for all menus */
.cbp-spmenu {
    background: #e60012;
    position: fixed;
	box-shadow: 0px 0 10px 0 rgba(0,0,0,0.5);
	padding-top: 0.5rem;
	padding-bottom: 2rem;
	box-sizing: border-box;
}

.cbp-spmenu h3 {
    color: #afdefa;
    font-size: 1.9em;
    padding: 20px;
    margin: 0;
    font-weight: 300;
    background: #0d77b6;
}

.cbp-spmenu a {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    display: block;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 300;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.cbp-spmenu a.active {
    background-color: #ffffff;
    color: #383838;
    font-weight: 700;
}

.cbp-spmenu .expanded a {
    background-color: #ffffff;
    color: #383838;
}

.cbp-spmenu .nav-sub-title-current {
    font-weight: 700;
}

.ul-menu-mobile .selected {
    background-color: rgba(230, 0, 18, 0.5);
}

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
    width: 100%;
	max-width: 360px;
    height: 100%;
    top: 0;
    z-index: 1000;
    overflow-y: scroll;
}

.cbp-spmenu-vertical a {
    /*border-bottom: 1px solid #676767;*/
    padding: 1rem 2rem;
}

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


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


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