/**,
*:after,
*::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body,
.st-container,
.st-pusher,
.st-content {
	height: 100%;
}*/

.st-content {
	/*overflow-y: scroll;*/
	overflow: auto;
	background: #fff;
}

.st-content,
.st-content-inner {
	position: relative;
	/*overflow-y: hidden;*/
	overflow: auto;
}

.st-container {
	position: relative;
	overflow: auto;/*hidden
	height: 100vh;*/
}

.st-pusher {
	position: relative;
	overflow: auto;
	left: 0;
	z-index: 99;
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-pusher::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu-open .st-pusher::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
  z-index: 9999;
}

.st-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	/*width: 300px;*/
	width: 230px;
	padding: 0 25px;
	height: 100%;
	background: #FFF;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

/*.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}*/
.st-menu ul {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

.st-menu h2 {
	margin: 0;
	padding: 1em;
	color: rgba(0,0,0,0.4);
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
}

/*.st-menu ul li a {
	display: block;
	padding: 1em 1em 1em 1.2em;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	color: #f3efe0;
	text-transform: uppercase;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	letter-spacing: 1px;
	font-weight: 400;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}*/
.st-menu ul li a {
    display: inline-block;
    padding: 8px 0;
    outline: none;
    box-shadow: none;
    color: #7c7c81;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: normal;
    font-weight: normal;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
    font-size: 14px;
    line-height: 18px;
}
.st-menu ul.st-menu-list li a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #8b734c;
 /*   transition: width .3s;*/
	-moz-transition: all .5s;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.st-menu ul.st-menu-list li a:hover::after {
    width: 100%;
}
/*.st-menu ul li:first-child a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}*/
.st-menu ul li:first-child a {
    box-shadow: none;
}

/*.st-menu ul li a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
	color: #fff;
}*/
.st-menu ul li a:hover {
    background: transparent;
    box-shadow: inset 0 -1px rgba(0,0,0,0);
    color: #7c7c81;
}
/* Individual effects */

 

/* Effect 2: Reveal */
.st-effect-2.st-menu-open .st-pusher {
	-webkit-transform: translate3d(230px, 0, 0);
	transform: translate3d(230px, 0, 0);
}

.st-effect-2.st-menu {
	z-index: 1;
}

.st-effect-2.st-menu-open .st-effect-2.st-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	height: 100vh;
	position: fixed;
}

.st-effect-2.st-menu::after {
	display: none;
}
 