@charset "UTF-8";
html, body {
  height: 100%;
}

body {
  overflow-x: hidden;
}

a {
  color: #ffffff;
}

a#toggle, a.auth-link {
  color: rgb(255, 0, 0);
}

a#toggle:focus, a#toggle:hover {
  background-color: rgb(220, 75, 75);
  color: rgb(255, 255, 255);
}

div#sidebar a:focus, div#sidebar a:hover {
  background-color: rgb(220, 75, 75);
  color: rgb(255, 255, 255);
}

.wrapper, .row {
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}

.wrapper:before, .wrapper:after,
.column:before, .column:after {
  content: "";
  display: table;
}

.wrapper:after,
.column:after {
  clear: both;
}

#sidebar {
  background-color: #000000;
  padding-left: 0;
  padding-right: 0;
  float: left;
  min-height: 100%;
}

#sidebar .collapse.in {
  display: inline;
}

#sidebar > .nav > li > a {
  white-space: nowrap;
  overflow: hidden;
}

#main {
  padding: 0;
  left: 0;
}

#sidebar a.active {
  background-color: rgb(255, 0, 0);
  color: rgb(255, 255, 255);
}

/*
 * off canvas sidebar
 * --------------------------------------------------
 */
@media screen and (max-width: 768px) {
  #sidebar {
    min-width: 44px;
  }

  #sidebar a.active {
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
  }

  #main {
    width: 1%;
    left: 0;
  }

  #sidebar .visible-xs {
    display: inline !important;
  }

  .row-offcanvas {
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .row-offcanvas-left.active {
    left: 45%;
  }

  .row-offcanvas-left.active .sidebar-offcanvas {
    left: -45%;
    position: absolute;
    top: 0;
    width: 45%;
  }
}

@media screen and (min-width: 768px) {
  .row-offcanvas {
    position: relative;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }

  .row-offcanvas-left.active {
    left: 3%;
  }

  .row-offcanvas-left.active .sidebar-offcanvas {
    left: -3%;
    top: 0;
    width: 3%;
    text-align: center;
    min-width: 42px;
  }

  #main {
    left: 0;
  }
}

.margin-bottom {
  margin-bottom: 1.5em;
}

