/* Header */

.header_div_flex {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 40px;
  z-index: 10;
}

.header_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 48px;
  background: rgba(244, 244, 244, 0.5);
  backdrop-filter: blur(10px);
  width: 100%;
  /* max-width: 800px; */
  padding: 12px 12px 12px 40px;
}

/* Logo */

#navbar_logo {
  cursor: pointer;
}

/* Ticker */

.ticker {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--Dark-Grey, #3c3c3c);
  text-overflow: ellipsis;
  font-family: Inter, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: all 0.5s ease-out;
}

/* Navbar */

.navigation_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.nav_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

@media (max-width: 700px) {
  .nav_item a {
    padding: 4px 8px !important;
  }
}

.nav_item a {
  padding: 12px 24px;
}

.nav_item:hover {
  background: #fff;
}

.nav_active,
.nav_active:hover {
  background: var(--Orange, #fe6a25);
  color: #fff;
}

#nav_item_link_news {
  border-radius: 24px;
}

.nav_item_text {
  color: var(--Black, #141919);
  font-family: Inter, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 24px;
}

/* Filter button */

.header_filter_btn_div {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 4px;
  margin-left: 30px;
  padding: 4px;
  visibility: hidden;
  display: none;
}

.header_filter_btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.marquee_routes_div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  /* max-width: 180px; */
  width: 100%;
  height: 20px;
  font-family: Inter, serif;
}
