/* RESET
** ============================ */
*,
*:before,
*:after {
  border: none;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: 0;
}

ul, ol {
  list-style: none;
}

dd {
  margin-bottom: 20px;
}

/* GENERAL
** ============================ */
html, body {
  height: 100%;
  padding: 0;
  margin: 0;
}
body {
  background-color: #f0f0f0;
}

/* FONTS
** ============================ */
@font-face {
  font-family: NettoProBold;
  src: url('../fonts/NettoPro-Bold.otf');
  font-weight: bold;
}

/* NAV
** ============================ */
/* .navbar-nav {
  background-color: #ffffff;
  float: none;
  position: relative;
  z-index: 999;
} */
/* .nav-old {
  margin-top: 60px;
} */
.navbar-brand {
  color: #58595b;
  font-family: NettoProBold, sans-serif;
  padding: 10px 0;
}
.navbar-brand:hover {
  color: #58595b;
}
.navbar-brand > img {
  display: inline-block;
  margin-right: 10px;
}

/* CONTENT
** ============================ */
.main-content {
  padding-top: 68px;
}
.content-header {
  padding-top: 30px;
}
.content-body {
  margin-bottom: 15px;
}

/* MISC
** ============================ */
.headline {
  margin-bottom: 20px;
}
.headline h1 {
  color: #58595b;
  font-family: NettoProBold, sans-serif;
  line-height: 50px;
}

.login-form {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 10px;
}

ul.alert-list {
  margin: 0;
}

.input-spinner {
  display: none;
  position: absolute;
  top: 11px;
  right: 5px;
  z-index: 1;
}

/* SIDEBAR
** ============================ */
/* aside .btn {
  width: 100%;
  font-size: 16px;
  margin-bottom: 15px;
}
aside .btn:hover {
  text-decoration: none;
}
aside .btn:last-child {
  margin-bottom: 0;
} */
aside {
  background-color: #333333;
  padding: 68px 0 0 !important;
  overflow-y: scroll;
  right: auto;
  bottom: 0;
  z-index: 998 !important;
}
aside .nav-item {
  width: 100%;
}
aside .nav-pills .nav-link {
  color: #ffffff;
  font-size: 14px;
  border-radius: 0;
  padding: 15px;
}
aside .nav-pills .nav-link:hover {
  opacity: 0.7;
}
aside .nav-pills .nav-link.active,
aside .nav-pills .nav-link.active:hover,
aside .nav-pills .show>.nav-link,
aside .nav-pills .show>.nav-link:hover {
  background-color: #23995e;
  opacity: 1;
}

/* FOOTER
** ============================ */
footer {
  width: 100%;
  height: auto;
  text-align: center;
  background-color: #f0f0f0;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer span {
  color: #777777;
  font-size: 12px;
  line-height: 50px;
  margin: 0;
}

/* MEDIA QUERIES
** ============================ */
@media only screen and (max-width: 767px) {

  .navbar-nav {
    margin: 0;
  }

  aside .nav-pills .nav-link {
    text-align: center;
  }
  aside .nav-pills .nav-link span {
    display: none;
  }

  footer {
    text-align: center;
    padding: 0;
  }

  footer span {
    font-size: 8px;
  }
}

@media only screen and (max-width: 575px) {

  aside {
    bottom: auto;
  }

}