/**
 * Sliding swipe menu CSS
 */
.navpanel {
    height: calc(100% - 60px);
    width: 280px;
    background-color: #ffffff;
    left: -1px;
    top: 0;
    z-index: 2;
    position: fixed;
    overflow-y: auto;
    overflow-x: visible;
    transform: translate(-280px,0);
    border-right: 1px solid #ddd;
}
.ssm-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
    display: none;
    z-index: 1;
}
