/* menu side bar*/
/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 1s;
  padding-top: 60px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a,
.dropdown-btn {
  padding: 10px 8px 6px 20px;
  text-decoration: none;
  font-size: 60px;
  color: #818181;
  display: block;
  transition: 1s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
}

/* On mouse-over */
.sidenav a:hover,
.dropdown-btn:hover {
  background-color: #eeeeee;
  color: #484848;
  font-weight: bolder;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 60px;
  margin-left: 0;
  color: #000;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: #eeeeee;
  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; */
  padding-left: 18px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 16px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 10px;
  }

  .sidenav a {
    font-size: 24px;
    font-weight: bolder;
  }
}

.icon-bar {
  position: fixed;
  top: 60px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 30px;
}

/* On screens that are less than 700px wide, make the sidebar into a top bar */
@media screen and (max-width: 1024px) {
  .icon-bar {
    width: 100%;
    height: 80px;
    position: relative;
  }

  .icon-bar a {
    float: left;
  }

  div.content {
    margin-left: 0;
  }
}

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
  .icon-bar a {
    text-align: center;
    float: none;
  }
}