/* General styles for all menus */

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import 'https://fonts.googleapis.com/css?family=Slabo+27px';

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

.cbp-spmenu {
	background: url(../images/banners/silhouette-small.png) no-repeat center bottom #006f82;
	position: fixed;
	z-index:7000;
	color:#fff;
}

.cbp-spmenu p {
	font-family: 'Slabo 27px', serif;
	font-size:18px;
    color: #fff;
    margin: 0;
}

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

.cbp-spmenu p:hover {
    background: rgba(0,0,0,0.2);
}

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

.cbp-spmenu-vertical {
	width:320px;
	height: 100%;
	top:0;
	z-index: 1000;
}
	
.cbp-spmenu-vertical p {
	border-bottom: 1px solid #fff;
	padding:10px 10px 10px 40px;
}

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

.cbp-spmenu-left {
	left: -325px;
}
	
.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 (max-width:1024px)
{
	.cbp-spmenu-vertical {
		width:320px;
		height: 100%;
		top:0;
		z-index: 550;
	}
	
	.cbp-spmenu-left {
		left: -325px;
	}
}
@media (max-width:768px)
{
	.cbp-spmenu-vertical {
		top:0;
	}
}
@media (max-width:414px)
{
	.cbp-spmenu-vertical {
		width:calc(100% - 80px);
		top:0;
	}
	
	.cbp-spmenu-left {
		left: -420px;
	}
	
	.cbp-spmenu p {
		font-size:14px;
	}
}

@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: 80%;
		width: 190px;
	}

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

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

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