.navbar {
  background: #1e1d22;
  height: 145px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 999;
  transition: all 0.25s ease;
}

.navbar * {
  font-family: "Roboto", sans-serif;
}

.nav_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 960px;
  margin: 0;
  padding: 10px 10px 0 10px;
}

.navbar.home-page {
  height: 80px;
}

.navbar.home-page .nav_content {
  justify-content: center;
  padding: 10px;
}

.nav_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#nav_top {
  min-height: 50px;
  padding: 0 10px;
}

.nav_tab {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.nav_tab_selected {
  background: #343137;
  font-weight: bold;
}

#nav_tab_main {
  font-size: 1.5rem;
}

#nav_tab_main .nav_tab_logo {
  margin-right: 10px;
}

#btn_donate {
  background: #D36078;
  padding: 6px 10px;
  font-size: 0.9rem;
  font-weight: normal;
}

.logo_label {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0 15px 0 0;
}

#site_logo {
  margin-right: 10px;
}

#site_label {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar_items {
  display: flex;
  padding: 0;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f0f0f0;
  padding: 0 1rem;
  text-align: left;
}

.navbar_item_text {
  color: #f0f0f0;
  font-weight: bold;
  text-decoration: none;
}

.drop_heading_arrow {
  margin-left: 5px;
}

.resource_button {
  margin-left: 15px;
}

#navbar_toggle {
  position: absolute;
  top: -1000px;
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 21px;
  justify-content: space-between;
  cursor: pointer;
  /* margin: auto 0 auto 10px; */
}

#navbar_toggle .bar {
  background: #f0f0f0;
  display: block;
  width: 30px;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

#navbar_toggle.is_active .bar:nth-child(2) {
  opacity: 0;
}

#navbar_toggle.is_active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#navbar_toggle.is_active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#left_navbar_items {
  margin-left: 20px;
  margin-right: auto;
}

@media screen and (max-width: 960px) {
  #left_navbar_items {
    background: #1e1d22;
    filter: drop-shadow(0 5px 5px rgb(19, 19, 19));
    display: grid;
    grid-template-columns: auto;
    margin: 80px 0 0 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 998;
  }

  #left_navbar_items.is_active {
    top: 0;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 998;
  }

  .left_navbar_item {
    border-top: #f0f0f0;
    border-style: solid;
    border-width: 1px 0 0 0;
    margin: 0 20px;
  }

  #navbar_toggle {
    position: relative;
    top: 0;
  }
}
