/* General styles for all menus */
.cbp-spmenu {
	background: #3e3e3e;
	position: fixed;
}

.cbp-spmenu h3 {
	font-family: 'Miso', sans-serif;
	color: #fff;
	font-size: 1.9em;
	padding: 19px;
	margin: 0;
	font-weight: 300;
	background: #3e3e3e;
	border-bottom: 1px solid #222;
}

.cbp-spmenu a {
	display: block;
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
}

.cbp-spmenu a:hover {
	background: mediumaquamarine;
}

.cbp-spmenu a:active {
	background: mediumaquamarine;
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	border-bottom: 1px solid #222;
	padding: 1em;
}


/* Vertical menu that slides from the left or right */


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

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


/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

