#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  #wrapper.toggled {
    padding-left: 250px;
  }

  #sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: calc(100% - 56px);
    margin-left: -250px;
    overflow-y: auto;
    background: #fff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #fff, #fff);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #fff, #fff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  #wrapper.toggled #sidebar-wrapper {
    width: 100%;
    height: 100%;
  }

  #page-content-wrapper {
    width: 100%;
    position: absolute;
    /* padding: 15px; */
  }

  #wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  /* Sidebar Styles */

  .sidebar-nav {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sidebar-nav>.sidebar-brand {
    height: 50px;
    font-size: 18px;
    line-height: 50px;
  }

  .sidebar-nav>.sidebar-brand a {
    color: rgba(255, 255, 255, 0.9);
  }

  .sidebar-nav>.sidebar-brand a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
  }


  .sidebar-nav li {
    line-height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sidebar-nav li a {
    padding-left: 18px;
  }

  .sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border-left: 5px solid transparent;
  }

  .sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-left: 5px solid rgba(255, 255, 255, 0.9);
  }

  .sidebar-nav li a:hover .fa {
    color: #fff !important;
  }

  .sidebar-nav li a:active, .sidebar-nav li a:focus {
    text-decoration: none;
  }

  .sidebar-nav>.active a {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-left: 5px solid rgba(255, 255, 255, 0.9);
  }

  .sidebar-nav>.active a .fa {
    color: #fff !important;
  }

  .nav-list {
    padding-left: 0;
    list-style: none;
  }

  .nav-list li {
    border-bottom: 0;
  }

  .nav-list li a {
    padding-left: 20px;
  }

  .nav-list>.active a {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-left: 5px solid rgba(255, 255, 255, 0.9);
  }

  @media(min-width:768px) {
    #wrapper {
      padding-left: 0;
    }
    #wrapper.toggled {
      padding-left: 250px;
    }
    #sidebar-wrapper {
      width: 0;
    }
    #wrapper.toggled #sidebar-wrapper {
      width: 250px;
      height: 100%;
    }
    #page-content-wrapper {
      padding: 20px;
      position: relative;
    }
    #wrapper.toggled #page-content-wrapper {
      position: relative;
      margin-right: 0;
    }
  }

  .menu-toggle-back{
    height: 10px;
    padding: 10px;
  }


  /* #text_message
  {
    border:1px solid #999999;
    width:100%;
    margin:5px 0;
    padding:15px;
  } */


  /* input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    content: 'Select some files';
    display:none;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
  } */

  /* input[type=file]::file-selector-button:hover {
    background: #0d45a5;
  } */

