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

.cbp-spmenu button {
	border: none;
	background: #111;
	color: #fdfdfd;
	font-size: 1rem;
	margin: 0;
	padding: 20px 20px 20px 0;
	cursor: pointer;
	width: 100%;
}
	
	.cbp-spmenu button h3 {
		margin-left: 1em;
	}
	
	.cbp-spmenu button h3, .cbp-spmenu button i {
		display: inline;
	}

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

.cbp-spmenu a:hover {
	background: #ce6b07;
}

.cbp-spmenu a:active {
	background: #141414;
	color: #ce6b07;
}

	a.level-two {
		margin-left: 1em;
	}

/* 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 #111;
	padding: 1em;
}

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

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

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

/* Transitions */

.cbp-spmenu {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

@media screen and (max-height: 26.375em){

	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 190px;
	}

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