/* General styles for all menus */
.cbp-spmenu {
	background: #000000;
	position: fixed;
}

/* UI disabled when menu is open */

.cbp-spmenu-disabled:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1050;
    margin: 0;
    padding: 0;
    box-shadow: 0px 0px 0px 3000px rgba(0,0,0,0.5);
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 284px;
	height: 100%;
	top: 0;
	z-index: 1060;
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1060;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -284px;
}

.cbp-spmenu-right {
	right: -284px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-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.cbp-spmenu-open {
top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
    top: 0;
    float: left;
}

.cbp-spmenu-push-toright,
.cbp-spmenu-push-fromleft {
	left: 284px;
}

.cbp-spmenu-push-toleft,
.cbp-spmenu-push-fromright {
	left: -284px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Shadows based on orientation and source */

.cbp-spmenu-vertical.cbp-spmenu-left {
    box-shadow: inset -2px 0px 4px rgba(0,0,0,0.4);
}

.cbp-spmenu-vertical.cbp-spmenu-right {
    box-shadow: inset 2px 0px 4px rgba(0,0,0,0.4);
}

.cbp-spmenu-horizontal.cbp-spmenu-top {
    box-shadow: inset 0px -2px 4px rgba(0,0,0,0.4);
}

.cbp-spmenu-horizontal.cbp-spmenu-bottom {
    box-shadow: inset 0px 2px 4px rgba(0,0,0,0.4);
}

/* 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: 190px;
	}

	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft,
    .cbp-spmenu-push-fromright {
		left: -190px;
	}

	.cbp-spmenu-right {
		right: -190px;
	}

	.cbp-spmenu-push-toright,
    .cbp-spmenu-push-fromleft {
		left: 190px;
	}
}