/*

COLOUR STYLES

*/

.primary-text {
  color: #40444f;
}

.secondary-text {
  color: #a5aab6;
}

.tertiary-text {
  color: #898f9f;
}

.primary-link {
  color: #2d77aa;
}

.primary-bg {
  color: #1e2025;
}

.secondary-bg {
  color: #ebecef;
}

.tertiary-bg {
  color: #f9fafb;
}

.quaternary-bg {
  color: #f1f2f4;
}

.primary-border {
  color: #dddfe4;
}

.create {
  color: #60aa1b;
}

.read {
  color: #3e92cc;
}

.delete {
  color: #d34638;
}

.information {
  color: #deb841;
}

.pending {
  color: #7e4999;
}

.warning {
  color: #f48535;
}

/*

Sidebar

*/

/*
    DEMO STYLE
*/


body {
    background: #dae6f0;
}

.py-4 {
  padding-bottom: 0 !important;
}

a, a:hover, a:focus {
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 10px;
    background: #fff;
    border: 1px;
    border-radius: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.py-4 {
    padding-top: 0px !important;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 120px;
    max-width: 250px;
    background: #1e2025;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -120px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #1e3035;
}

#sidebar ul.components {
    padding: 30px 0;
    border-bottom: 1px solid #1e2025;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar .list-group-item:hover {
    color: #ebecef;
    background: #f1f2f4;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #f1f2f4;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -120px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}


/* ---------------------------------------------------
    HEADER
------------------------------------------------------ */

#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: rgba(52, 59, 64, 0.9);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}
