/* General styles for all menus */
.cbp-spmenu {
	border:0;
	position: fixed;
}


.cbp-spmenu h3 {
	background: transparent;
	border:0;
	color:#f0f0f0;
	cursor:pointer;
	font-size: 1.5em;
	font-weight: 100;
	height:2.25em;
	margin:0;
	padding:0;
	
	-webkit-transition: all 300ms linear;
	-moz-transition: 	all 300ms linear;
	-o-transition: 		all 300ms linear;
	-ms-transition: 	all 300ms linear;
	transition: 		all 300ms linear;
}

.cbp-spmenu h3 span {
	background:none;
	left:0.8em;
	position:absolute;
	top:0.55em;
}
.cbp-spmenu h3:hover,
.cbp-spmenu h3:hover span {
	background:#c0411a;
}

.cbp-spmenu h3:hover span {
	background:none;
	color:#fff;
}

.cbp-spmenu a {
	background:none;
	border:0;
	border-bottom:2px solid transparent;
	display: block;
	color: #f0f0f0;
	font-family:"Lato",sans-serif;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing:0.1em;
	outline:none;
	padding:1.25em 1em 1.25em 1em;
	text-transform:uppercase;
	
	-webkit-transition: all 300ms linear;
	-moz-transition: 	all 300ms linear;
	-o-transition: 		all 300ms linear;
	-ms-transition: 	all 300ms linear;
	transition: 		all 300ms linear;
}

.cbp-spmenu a:hover {
	border-color:#60e1e3;
	color:#60e1e3;
}

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
	width: auto;
	height: 100%;
	top: 0;
	z-index: 1000;
}
/* Vertical menu that slides from the left or right */
.cbp-spmenu-left {
	left: -240px;
}
.cbp-spmenu-right {
	right: -240px;
}
.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}
.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-toright {
	left: 240px;
}

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

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

/* Example media queries */
@media screen and (max-width: 41.6em) { 
	.cbp-spmenu-vertical {
		font-size: 80%;
		width: 190px;
	}
	
	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}
	
	.cbp-spmenu h3 {
		font-size:2em;
		top:90px;
	}

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

	.cbp-spmenu-bottom {
		bottom: -110px;
	}
	
	.cbp-spmenu-vertical {
		font-size: 70%;
		width: 180px;
	}

}

@media screen and (max-width: 25em) { 
	.cbp-spmenu {
		font-size:70%;
	}
	.cbp-spmenu-vertical {
		font-size: 60%;
		width: 160px;
	}
	
	.cbp-spmenu h3 {
		top:90px;
	}
	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft {
		left: -190px;
	}

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

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