#wrapper {
	width: auto;
	height: 100%;
	position: fixed;
	top: 94px;
	bottom: 0;
	transition: all 0.5s;z-index:9;
}

#wrapper .sidebar {
    width: 200px;
    height: 100%;
    position: absolute;
    top: 20px;
    left: -200px;
    bottom: 0;
    background-color: #333;
    overflow: hidden;
}
#wrapper .menu {width: 40px;height: 100%;background: #20C6CF;position: absolute;
    top: 20px;
    left: 0px;}
#wrapper .menu button {
    width: 30px;height: 120px;
    background: url(../images/icon12r.png) no-repeat center top;
    border: 0;
    outline: none;
    position: absolute;
    top: 20px;
    left: 0px;
    transition: all 0.5s;
    cursor: pointer;font-size: 16px;color:#fff;padding-top:20px;margin-left:5px
}
@media screen  and (max-width:785px){
    #wrapper .menu{display: none;}  
}
.option,
.option ul li {
    width: 100%;
}

.option ul {
    padding: 30px 20px;
}

.option ul li {
    display: flex;
    align-items: center;
    width:100%;
    margin-top: 10px;
    padding-left:0px;
    cursor: pointer;
    color: #D0D1D7;
    transform: translateZ(0);
    position: relative;
    transition-property: color;
    transition-duration: 0.4s;
    transition: all 1s;height: 25px;
    line-height: 25px;
}

.sidebar .option ul li.li{
    transform: translate(0,0);
}
.option ul li:hover,
.option ul li:focus{
    color: #ffffff;
}
.option .active {
    color: #20C6CF;
}
.option ul li p{padding-left:10px;font-size: 12px;}

