/*!
* Based on Bootstrap Dashboard Example v4.5 (https://getbootstrap.com/docs/4.5/examples/dashboard/)
* Copyright 2011–2021 the Bootstrap Authors and Twitter, Inc
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.0rem;
  background-color: #f2f2f2;
}

a {
  color: #0063b4;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 150px 0 0; /* Height of navbar */
}
.sidebar.breadcrumb-enabled {
  padding: 195px 0 0; /* Height of navbar + breadcrumb */
}

@media (max-width: 767.98px) {
  .sidebar {
    padding: 100px 0 0; /* Height of navbar */
  }
  .sidebar.breadcrumb-enabled {
    padding: 145px 0 0; /* Height of navbar + breadcrumb */
  }
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 150px); /* Total height - height of navbar */
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  background-color: #ffffff;
}
.sidebar-sticky.breadcrumb-enabled {
  height: calc(100vh - 150px - 45px); /* Total height - height of navbar + breadcrumb */
}

@media (max-width: 767.98px) {
  .sidebar-sticky {
    height: calc(100vh - 100px); /* Total height - height of navbar */
  }
  .sidebar-sticky.breadcrumb-enabled {
    height: calc(100vh - 100px - 45px); /* Total height - height of navbar + breadcrumb */
  }
}

@media (min-width: 992px) {
  .sidebar-sticky {
    height: calc(100vh - 150px - 30px); /* Total height - height of navbar */
  }
  .sidebar-sticky.breadcrumb-enabled {
    height: calc(100vh - 150px - 30px - 45px); /* Total height - height of navbar + breadcrumb */
  }
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav ul {
  list-style: none;
  padding-left: 1.5rem;
}

.sidebar [data-bs-toggle="collapse"] .fa:before {  
  content: "\f063";
}

.sidebar [data-bs-toggle="collapse"].collapsed .fa:before {
  content: "\f061";
}

.sidebar .nav-item-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.sidebar .nav-collapse-icon {
  color: #000;
}

.sidebar .nav-collapse-icon.active {
  color: #0063b4;
}

.sidebar .nav-link {
  font-weight: 600;
  color: #000;
  padding: 0.1rem 1rem;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-link.active {
  font-weight: 700;
  color: #0063b4;
}

.sidebar .nav-link:hover {
  color: #0063b4;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/*
 * Navbar
 */

.navbar {
  background-color: #e6e6e6;
  height: 150px;
}
.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
}
.navbar .site-logo {
  height: 130px;
}
.navbar .site-heading {
  color: #825b51;
  line-height: 1.875rem;
  font-size: 1.875rem;
  font-weight: bold;
  text-transform: uppercase;
}
.navbar .site-subheading {
  color: #000000;
  font-size: 1.875rem;
  font-weight: normal;
}
.navbar-breadcrumb {
  background-color: #f2f2f2;
  top: 150px;
  height: 45px;
  display: flex;
  font-size: 0.75rem;
}
.navbar-breadcrumb .breadcrumb {
  margin-bottom: 0;
}
.breadcrumb-item a {
  text-decoration: none;
  color: #000000;
}

@media (max-width: 767.98px) {
  .navbar {
    height: 100px;
  }
  .navbar .site-heading {
    line-height: 1.2rem;
    font-size: 1.2rem;
  }
  .navbar .site-subheading {
    font-size: 1.2rem;
  }
  .navbar .site-logo {
    height: 80px;
  }
  .navbar-breadcrumb {
    top: 100px;
  }
}

.navbar .navbar-toggler {
  top: .25rem;
  right: 1rem;
}
.navbar .navbar-toggler-icon {
  color: #ff0;
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.main-content {
  background-color: #ffffff;
}

[data-bs-toggle="collapse"] {
  color: #000;
}

.column-group-title [data-bs-toggle="collapse"] .fa:before {
  content: "\f077";
}
.column-group-title [data-bs-toggle="collapse"].collapsed .fa:before {
  content: "\f078";
}
.column-group-title a {
  text-decoration: none;
}
.column-group-title {
  font-size: 1.2rem;
  font-weight: bold;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.column-title {
  font-weight: bold;
}
.column-content {
  font-weight: normal;
}

.footer {
  /*height: 100px;*/
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
