/* General styles for all menus */
.cbp-spmenu {
	background: #2e2e2e;
	position: fixed;
    border-bottom: 1px solid rgba(177, 157, 107, .5);
    height: 100%;
    overflow: scroll;
    -ms-overflow-style: none !important;
}

.cbp-spmenu #menuClose {
    width: 80px;
    height: 100%;
    display: block;
    color: #b19d65;
    float: right;
    cursor: pointer;
    text-align: center;
    padding-top: 30px;
    height: 80px;
    position: absolute;
    top: 42px;
    right: 0px;
}

.cbp-spmenu #menuClose {
    border-bottom: none !important;
}

.cbp-spmenu #menuClose i {
    font-size: 21px;
}

.cbp-spmenu .side_logo {
    height: 170px;
    border-bottom: 1px solid rgba(177, 157, 107, .5);
    padding-top: 0px;
    text-align: center !important;
    width: 100%;
    padding-top: 20px;
}

.cbp-spmenu .side_logo a {
    height: 0px;
}

.cbp-spmenu .side_logo a:hover {
    background: transparent;
}

.cbp-spmenu .side_logo img {
    max-height: 130px;
    margin: auto;
}

.cbp-spmenu a {
	display: block;
	color: #b19d65;
	font-size: 18px;
	font-weight: 300;
    font-family: 'Rozha One', serif;
    font-size: 19px;

    padding: 16px !important;
}

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

.cbp-spmenu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.cbp-spmenu li {
    margin-bottom: 0px;
}

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

.cbp-spmenu-vertical {
	width: 360px;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
    border-bottom: 1px solid rgba(177, 157, 107, .5);
	padding: 1em;
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.cbp-spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

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

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

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

.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;
}

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

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

/* Transitions */

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

@media screen and (max-width: 600px) {
    
    #header .menu_nav {
        display: none;
    }
    
    .cbp-spmenu-vertical {
        width: 100%;
    }
    
    .cbp-spmenu-right {
        right: -100%;
    }
    
    .cbp-spmenu {
        border-left: none;
    }

}