/* General styles for all menus */
.cbp-spmenu {
  background: #0082CE;
  position: fixed;
  z-index: 99999;
  display: block;
  overflow: visible !important;
  height: 100% !important;
}
.cbp-spmenu a {
  text-align: center;
  text-decoration: none;
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: normal;
}
.cbp-spmenu a:hover {
  color: #34A853;
}
.cbp-spmenu a:focus {
  color: #34A853;
}
.cbp-spmenu a:active {
  color: #34A853;
}
/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
  width: 450px;
  height: 100%;
  top: 0;
  padding: 120px 0px 0px 0px;
  overflow: visible;
}
.cbp-spmenu-vertical a {
  padding: 5px;
}
/* Vertical menu that slides from the left or right */
.cbp-spmenu-right {
  left: -450px;
}
.cbp-spmenu-right.cbp-spmenu-open {
  left: 0px;
}
/* Push classes applied to the body */
.cbp-spmenu-push {
  overflow-x: hidden;
  position: relative;
  right: 0;
}
.cbp-spmenu-push-toleft {
  right: -450px;
}
/* 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: 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 {
		right: -190px;
	}

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

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

@media screen and (max-width: 480px){
  .cbp-spmenu-vertical.cbp-spmenu-open{
    width: 100%!important;
  }
}

.ios .cbp-spmenu-push-toleft {
  right: 0 !important;
}