body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: rgb(0, 0, 0);
}

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

#header {
    width: 80%;
}

.wrapper {
    position: absolute;
    display: flex;
    width: 100%;
}

#login-window.bg-login-image {
    width: 100%;
    background-image: url("/assets/img/iot.png");
}

#sidebar {
    /* don't forget to add all the previously mentioned styles here too */
    float:left;
    min-width: 150px;
    max-width: 150px;
    min-height: 100vh;
    width: 150px 20%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background-color: black;
    color: #000;
    transition: all 0.3s;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

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

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

.card-body {
    color: rgb(20, 2, 175);
}

.card-body img {
    width: 100%;
}

.menu img {
    width: 150px;
}

#sidebar .accordion>.card .card-header {
    background-color: black;
    color: white;
}

#sidebar .btn-link {
    color: white;
}

#sidebar a {
    color: white;
}

.error-text {
    color: red;
    text-align: center;
    font-size: 12;
}

.row-striped:nth-of-type(odd){
    background-color: #EBEDFE;
  }
  
  .row-striped:nth-of-type(even){
    background-color: white;
  }