body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#navbar {
    width: 100%;
    height: 76px;
    background-color: #133A57;
    position: fixed;

}

#logo-nav > img{
  width: 20%;
  height: 55%;
  margin-top: 15px;
  margin-left: 40px;
  float: left;
}

.profile {
  height: 73%;
  width: 4%;
  border-radius: 50%;
  border: none;
  margin-top: 10px;
  margin-right: 40px;
  float: right;
  background-color: white;
}

.right-menu {
  width: 170px;
  height: 60px;
  margin-top: 25px;
  margin-right: 5px;
  float: right;
}

.left-menu {
  width: 500px;
  height: 60px;
  margin-top: 25px;
  margin-left: 55px;
  float: left;
}

.tab {
  display: inline-block;
  margin-right: 18px;
  padding: 4px;
  text-decoration: none;
  color: white;
}

.tab:hover {
  text-decoration: none;
  color: white;
  border-bottom: 2px solid white;
  padding-bottom: 0;
}


.header-dropdown {
  border-bottom: 1px solid gray;
  height: 10%;
}

.header-dropdown:hover {
  cursor: default;
  text-decoration: none;
  color: #133A57;
}

.dropdown-profile {
  display: none;
  background-color: white;
  width: 200px;
  border-radius: 2px;
  border: 1px solid gray;
  margin-top: 75px;
  margin-right: -80px;
  float: right;
}

.dropdown-profile a {
  padding: 7%;
  padding-left: 10%;
  display: block;
  text-decoration: none;
  color: #133A57;
  font-size: 20px;
}

.icon {
  margin-top: -2px;
  margin-right: 8px;
  height: 22px;
  display: inline-block;
}

.sidebar {
    margin-top: 76px;
    padding: 0;
    width: 17%;
    height: 100%;
    background-color: #f1f1f1;
    position: fixed;
    overflow-x: hidden;
  }
  
  .sidebar a, .dropdown-btn {
    width: 100%;
    display: block;
    color: black;
    padding: 16px;
    padding-left: 24px;
    text-decoration: none;
    text-align: left;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    font-size: 12pt;
    height: 55px;
  }

  .dropdown-container {
    display: none;
    background-color: #f1f1f1;
    padding-left: 8px;
    text-decoration: none;
  }
   
  .sidebar a.active, .dropdown-profile a:hover:not(.notactive) {
    background-color: #A9B6C0;
    color: #133A57;
    text-decoration: none;
  }
  
  .sidebar a:hover:not(.active), .dropdown-btn:hover{
    /* background-color: #555; */
    color: #133A57;
    text-decoration: none;
  }

  .sidebar a.notactive {
    cursor: default;
    color: gray;
  }

  .sidebar a.notactive:hover {
    color: gray;
  }

  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }

  .dropdown-container-active {
      display: block;
      padding-left: 8px;
  }

@media screen and (max-width: 500px) {
  body {
    height: auto;
  }

  .navbar {
    width: 100%;
    display: block;
  }

  #logo-nav > img {
    height: 30%;
    width: 12%;
  }

  .profile {
    width: 45%;
  }
}