/* General styles for all menus */

@import url(https://fonts.googleapis.com/css?family=Lato:400,900);

* {
	font-family: 'Lato', sans-serif; 
	font-weight:400;
}

.cbp-spmenu {
	position: fixed;
	z-index:550;
	background:#000;
    padding-bottom: 50px;
}

.cbp-spmenu p {
	font-family: 'Lato', sans-serif; 
	font-weight:400;
	font-size:14px;
	letter-spacing:3px;
	color:#fff;
	line-height:0;
	text-align:right;
}

.cbp-spmenu a {
	display: block;
	color: #fff;
}

.cbp-spmenu a:hover {
	background:#c1272d;
	color:#fff;
}

.cbp-spmenu a:active {
	background: #fff;
	color:#0071bc;
}

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

.cbp-spmenu-vertical {
	top:0;
	z-index: 1000;
}
	
.cbp-spmenu-vertical a {
	border-bottom: 1px solid #000;
	padding:10px 30px;
}

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

.cbp-spmenu-left {
	left: -325px;
}
	
.cbp-spmenu-right {
	right: -300px;
}

.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 (max-width:1024px)
{
	.cbp-spmenu-vertical {
		top: 110px;
		z-index: 550;
	}
	
	.cbp-spmenu-left {
		left: -325px;
	}
}
@media (max-width:768px)
{
	.cbp-spmenu-vertical {
		top:100px;
	}
}
@media (max-width:414px)
{
	.cbp-spmenu-vertical {
		top:80px;
	}
	
	.cbp-spmenu-left {
		left: -420px;
	}
}

@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 {
		left: -190px;
	}

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

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