html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}


.offcanvas-collapse {
    position: fixed;
    top: 120px; /* Height of navbar */
    bottom: 0;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: right, visibility;
	z-index: 10;
	background-color: rgba(234,173,47,1);
}

.offcanvas-collapse.show{
    right: 0;
    visibility: visible;
	font-size: 1.2em;
	text-align: center;
	line-height: 2;
}


