/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 100%;
  height: auto;
}
.view{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #1e4b97;
}
.view .fa-bars{
  color: #fff;
  font-size: 20px;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 15px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 100%;
  border-left: none;
  height: auto;
  display: none;
}

/* Style the dropdown */
.dropdown-content {
  display: none;
  background-color: #f9f9f9;
  padding-left: 20px;
}
.dropdown-content button {
  font-size: 15px;
  padding: 10px;
  width: 90%;
}

@media (min-width: 768px) {
  .fa-bars{
    display: none;
  }
}