.st-container,
.st-pusher,
.st-content {
	height: 100%;
}

.st-content,
.st-content-inner {
	position: relative;
}

.st-container {
	overflow: auto;
}

#st-trigger-effects button{
    margin: 2px 0;
    color: #fff;
    font-size: 24px;
}

.st-pusher {
    top: 0;
	left: 0;
	z-index: 99;
	height: 100%;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.5s;
}

.st-pusher::after {
	position: fixed;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 0;
    z-index: 9999;
	-webkit-transition: opacity 0.2s, width 0.1s 0.2s, height 0.1s 0.2s;
	transition: opacity 0.2s, width 0.1s 0.2s, height 0.1s 0.2s;

}

.st-menu-open .st-pusher::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.st-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	visibility: hidden;
	width: 250px;
	height: 100%;
	background: #ffffff;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.st-menu::after {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.2s, width 0.1s 0.2s, height 0.1s 0.2s;
	transition: opacity 0.2s, width 0.1s 0.2s, height 0.1s 0.2s;
}

/* content style */
.logo-side-menu{
    padding: 20px 20px 20px 15px;
    border-bottom: 1px solid #dddddd;
}

.logo-small{
    background-color: #fff;
    padding: 10px;
    display: none;
    -webkit-transition: all 0.2s;
	transition: all 0.2s;
    margin-left: -15px;    
}
.logo-small-show{
    display: block;
}

.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-menu ul li a {
	display: block;
	padding: 15px;
	outline: none;
    font-size: 20px;
    color: #333;
}

    .st-menu ul li a:hover {
        text-decoration: none;
        background-color: #f8f8f8;
    }

/* Effect 1: Slide in on top */
.st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.st-effect-1.st-menu::after {
	display: none;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
	padding-left: 300px;
}