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: 3;
    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: 4 !important;
    left: calc(100% - 15px);
    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: 280px;
    height: 100%;
    float: right;
    background-color: #163A5C;
    overflow: auto;
}
.side-content-active{
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.side-handle{
    width: 15px;
    height: 100%;
    float: left;
    clear: none;
    /*background-color: #000;*/
}
.menu-bt-bar{
    position: fixed;
    top: 80px;
    right: 0;
}

.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;
}

.panel,
a.list-group-item,
button.list-group-item{
    color: #fff;
    border-radius: 0;
    background-color: transparent;
}
.list-group-item {
    border: none;
    background-color: transparent;
    line-height: 30px;
}
.list-group-item:first-child,
.list-group-item:last-child{
    border-radius: 0;
}
.list-group-item-success{
    background-color: #042f50 !important;
    color: #fff !important;
    border-bottom: 1px solid #033962;
    margin-bottom: 1px;
}
.list-group-item-success:hover{
    background-color: #00223c !important;
}
a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
    color: #fff !important;
    background-color: #00223c !important;
}
.sm-sub{
    background-repeat: no-repeat;
    background-position: 5% center;
    background-image: url(../images/sub-menu-arr.png);
}
.side-sign-bt {
    background-color: #2bde73 ;
    border-radius: 5px ;
    margin: 10px;
    font-size: 16px;
    text-align: center;
    padding: 7px 0;
    display: block;
    color: #fff;
}
.side-sign-bt:hover {
    background-color: #119a48 ;
    color: #fff;
}