html, body {
  height: 100%;
  min-height: 100%;
  font-family: 'RobotoLight', sans-serif;
}

body {
  background-image: linear-gradient(to top, #887165 0%, white 30%);
  background-attachment: fixed;
}
.container {
  width:90%;
  height:100%;
}

.row{
  display: flex;
}

.col {
  flex: 1;
  padding-bottom: 50px;
}

.content-wrapper {
  padding: 40px 20px;
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

.content-wrapper img {
  max-width: 100%;
  width: 100%;
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

h3, h4, h5, h6 {
  color: rgb(63,136,112);
}

h1, h2 {
  color: #887165;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 30px;
  text-transform: uppercase;
}

h2 small {
  font-size: 20px;
  color: #887165;
  font-weight: 300;
  text-transform: none;
}

h3 {
  text-transform: uppercase;
  font-size: 20px;
}

h4 {
  font-size: 20px;
}

h5, h6 {
  font-size: 14px;
}

.text-center {
  padding-top: 20px;
}

#sidebar {
  float:left;
  min-height: 100%;
  padding: 10px 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 13px;
}
#sidebar .nav {
  width: 95%;
}
.sidebar-nav li {
  background: rgb(136,113,101);
  border-top: 4px solid white;
  min-width: 150px;
  max-width: 200px;
}
.sidebar-nav .active {
  background: rgb(63,136,112);
}
#sidebar-wrapper > ul > li * a{
  color: #fff;
  font-size: 1em;
  text-decoration: none;	
}

#sidebar-wrapper > ul > li > a:hover {
  background: none;
}

.brandlogo {
  width: 70%;
  padding-bottom: 20px;
}

.navbar-default {
  display: none;
}

#prefooter {
  bottom: 0;
  height: 200px;
  position: fixed;
  width: 100%;
}

#footer {
  background: rgb(136,113,101);
  position: fixed;
  width: 100%;
  bottom: 0;
  	margin-top: -40px; /* negative value of footer height */
  	height: 40px;
  	clear:both;
}
#footer ul {
  margin: 0;
  padding: 10px;
}

  #footer ul li
  {
      list-style-type: none;
      display: inline;
      height: 100%;
      padding: 10px 20px;
      min-width: 250px;
      max-width: 300px;
  }

#footer li+li {
  border-left: 1px solid #fff;
}

#footer li a {
  color: white;
  font-size: 14px;
  line-height: 1.42857;
  vertical-align: middle;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.table {
  width: auto !important;
}

.table td {
  border: none !important;
  padding: 0 15px 0 0 !important;
}

/* CSS für Dropdown-Menü */
.nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: rgb(136,113,101);
  text-decoration: none;
}

.nav > li > a:hover {
  background-color: rgb(63,136,112);
}

/* Die Submenüs (Unterpunkte) verstecken und nach rechts verschieben */
.submenu {
  display: none;
  position: absolute;
  left: 100%; /* Verschiebt das Submenü nach rechts */
  top: 0;
  background-color: rgb(136,113,101); /* Gleiche Farbe wie der Oberpunkt */
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu li a {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: rgb(63,136,112);
}

/* Das Submenü anzeigen, wenn der Benutzer mit der Maus über den Oberpunkt fährt */
.nav > li:hover .submenu {
  display: block;
}

/* collapsed sidebar styles */
@media screen and (max-width: 767px) {
.page-container {
      padding: 50px 0;
}

.brandlogo {
  display: none;
}

  .container {
    margin-left: 0;
    width: 100%;
  }

  .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-right
  .sidebar-offcanvas {
    right: -50%;
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -100%;
  }
  .row-offcanvas-right.active {
    right: 50%;
  }
  .row-offcanvas-left.active {
    left: 100%;
  }
  .sidebar-offcanvas {
    position: absolute;
    top: 70px;
    width: 100%;
  }
  #sidebar {
    padding-top:0;
  }
  .navbar-default {
    display: block;
  }
}
