/* Navbar */
ul.navigation-bar {
  max-width: 98vw;
  margin: 24px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: #323232;
  padding: 0;
  list-style-type: none;
  height: 50px;
}

@media (min-width: 480px) {
  ul.navigation-bar {
    max-width: 700px;
    margin: 10px auto 0 auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1.5px solid #e5e5e5;
    left: 0;
    right: 0;
  }
}

ul.navigation-bar li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

ul.navigation-bar li a {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

ul.navigation-bar li a img {
  width: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  margin-bottom: -8px;
}

ul.navigation-bar li a span {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.7;
  font-size: 10px;
}

ul.navigation-bar li.center-menu {
  padding: 0 20px;
}

ul.navigation-bar li.center-menu a {
  width: 110px;
  position: absolute;
  top: -32px;
}

ul.navigation-bar li.center-menu a img {
  width: 86%;
}

ul.navigation-bar li a.active_org {
    color: #FFD93C;
}

ul.navigation-bar li img.active_org {
    filter: brightness(0) saturate(100%) invert(45%) sepia(86%) saturate(1888%) hue-rotate(3deg) brightness(105%) contrast(94%);filter: brightness(0) saturate(100%) invert(69%) sepia(87%) saturate(366%) hue-rotate(357deg) brightness(108%) contrast(101%);
}

/* Sidebar container mobile */
.sidebar-container {
  position: fixed;
  z-index: 5;
  background: #00000075;
  width: 100%;
  height: 100vh;
  display: none;
  overflow-x: hidden;
}

.sidebar-container ul {
  background: #fff;
  width: 0;
  right: 0;
  padding: 20px 6vw;
  margin: 0;
  height: -webkit-fill-available;
  position: absolute;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.sidebar-container ul.open {
  width: 75vw;
  height: 100vh;
  overflow-y: scroll;
  padding-bottom: 9rem;
}

.sidebar-container ul li {
  list-style-type: none;
  margin-bottom: 25px !important;
}

.sidebar-container ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar-container ul li img {
  width: 62vw;
}

.sidebar-container ul li span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.sidebar-container ul li.divider {
  border: 1px solid grey;
  margin: 10px auto;
}

/* sidebar container mobile end */
