﻿  #sidebar-wrapper {
    margin-right: -250px;
    right: 0;
    width: 250px;
    background-color:white;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 10000;
    transition: all 0.5s ease-in 0s;
    -webkit-transition: all 0.5s ease-in 0s;
    -moz-transition: all 0.5s ease-in 0s;
    -ms-transition: all 0.5s ease-in 0s;
    -o-transition: all 0.5s ease-in 0s;
  }

  .sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sidebar-nav li {
    line-height: 50px;
    text-indent: 20px;
  }

  .sidebar-nav li a {
    color: #999999;
    display: block;
    text-decoration: none;
  }

  .sidebar-nav li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
    text-decoration: none;
  }

  .sidebar-nav li a:active, .sidebar-nav li a:focus {
    text-decoration: none;
  }

  .sidebar-nav > .sidebar-brand {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
  }

  .sidebar-nav > .sidebar-brand a {
    color: #999999;
  }

  .sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
  }

  #menu-toggle {
    /*top: 0;
    right: 0;
    position: fixed;
    z-index: 1;*/
  }

#sidebar-wrapper.active {
    right: 220px;
    width: 280px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    overflow: auto;
    z-index: 10000;
    box-shadow: 30px 30px 30px 30px rgba(0,0,0,.1);
}

  .toggle {
    margin: 5px 5px 0 0;
  }

  .sidebar-header{
      height:90px;
      background-color:#ff5353;
      text-align:center;
      padding:25px;
      padding-top:0px;
      padding-bottom:0px;
      color:white;
  }
  .sidebar-close{
      text-align:right;
      background-color:#ff5353;
      padding-top:10px;
      padding-right:10px;
  }
  .sidebar-all-header{
      background-color:#ff5353;
  }
@media (max-width: 767px) {
    #sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
  }
}