body {
    background: #f4f7fb 0% 0% no-repeat padding-box;
    /* overflow-x: hidden; */
}



.list-group-item.sidebar {
    color: white;
    background: #00C1FF 0% 0% no-repeat padding-box;

}


.list-group-item.sidebar:hover {
    text-decoration: none;
    background-color: #4b86b4;
    color: white;
}

.selected {
    /*color: white !important;*/
    /*background-color: #4b86b4;*/
    background: #00AFE7 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
}

#sidebar-wrapper {
    background: #16212f 0% 0% no-repeat padding-box;
    /*background-color: #00B0E8;white;*/
    box-shadow: 12px 0 28px rgba(5, 12, 40, 0.32);
    /*box-shadow: 0px 0px 3px #c1c1c1;    */
    min-height: 100vh;
    margin-left: -15rem;
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
}



/*Logo*/
.sidebar-heading img{    
    width: 150px;
    margin: auto;
}

.user-profile p{        
    text-align: left;
    padding-top: 10px;
    padding-bottom: 5px;
}

.user-usage-info{
    font-size: 13px;
    text-align: left;
    padding: 5px;
}

.user-name{
    font-weight: bold;
    margin-bottom: 2px;
}

.progress{
    /*height: calc(1.5em + 0.75rem + 2px)*/
    height: 25px;
}

.progress-bar{
    background: #FFF700;
}


#sidebar-wrapper .sidebar-heading {
    text-align: center;
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
    width: 15rem;
}

#page-content-wrapper {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 246, 251, 0.9) 100%);
    color: #1f2d3d;
    min-width: 100vw;
    padding: 28px 24px 36px;
    min-height: 100vh;
    box-shadow: inset 0 1px 0 rgba(20, 41, 86, 0.05);
    backdrop-filter: blur(10px);
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

#page-content-wrapper {
    min-width: 0;
    width: 100%;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: -15rem;
    }
}


/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #f1f1f1;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  background: #00AFE7 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  /*background-color: green;*/
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  /*background-color: #262626;*/
  background: #00C1FF 0% 0% no-repeat padding-box;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

