body{
    margin: 0;
    padding: 0;
}
.side-box{
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    text-align: center;
    padding: 0;
}
.dimm{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.14, 0.44, 0.23, 1.07);
    visibility: hidden;
}
.dimm-show{
    visibility: visible;
    opacity: 1;
}
.side-menu{
    width: auto;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 2;
    left: calc(100% - 40px);
    transition: all 0.4s cubic-bezier(0.14, 0.44, 0.23, 1.07);
    opacity: 0;
}
.side-menu-active{
    left: calc(100% - 300px);
}
.side-content{
    width: 250px;
    height: 100%;
    float: right;
    background-color: #fff;
    overflow: auto;
}
.side-content-active{
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.side-handle{
    width: 40px;
    height: 100%;
    float: left;
    clear: none;
    /*background-color: #000;*/
}
.menu-bt-bar{
    position: fixed;
    top: 80px;
    right: 0;
}
.menu-bt{
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 5px;
    float: right;
    cursor: pointer;
    opacity: 1;
    background-image: url(../images/menu-ico.png);
    background-repeat: no-repeat;
    background-position: center 0;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 3;
}
.menu-bt:hover{
    background-color: #57a9c6;
    background-position: center -40px;
}

.animate {
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.no-animate {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}