.nav {
  width: 100vw;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  z-index: 980;
}
.nav .header-info {
  width: 100vw;
  background-color: #940000;
  color: white;
  text-align: center;
  padding: 5px;
  font-size: 14px;
}
.nav .spacer {
  width: 80%;
  height: 1px;
  background-color: #e3e3e3;
  margin-top: 10px;
}
.nav .n_line1 {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.nav .n_line1 .logo svg {
  width: 150px;
}
.nav .n_line1 .account a,
.nav .n_line1 .social a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  transition-duration: 0.2s;
}
.nav .n_line1 .account a:hover,
.nav .n_line1 .social a:hover {
  color: #940000;
}
.nav .n_line1 .account {
  position: relative;
}
.nav .n_line1 .account:has(.account-href:hover) .account-dropdown {
  display: flex;
}
.nav .n_line1 .account .account-dropdown {
  position: absolute;
  background-color: white;
  border: 1px solid #dedede;
  z-index: 990;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  width: 250px;
  color: black;
}
.nav .n_line1 .account .account-dropdown a {
  font-size: 16px;
  color: #282828;
  border: 1px solid white;
  padding: 5px 10px;
  border-radius: 5px;
}
.nav .n_line1 .account .account-dropdown a:hover {
  color: #000000;
  border: 1px solid #dedede;
}
.nav .n_line1 .account .account-dropdown a.logout {
  color: #ff6c6c;
}
.nav .n_line1 .account .account-dropdown a.logout:hover {
  color: #940000;
  border: 1px solid #940000;
}
.nav .n_line1 .account .account-dropdown .ad-spacer {
  width: 100%;
  background-color: #dedede;
  height: 1px;
}
.nav .n_line1 .account .account-dropdown:hover {
  display: flex;
}

.n_line2 {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100vw;
  border-bottom: 1px solid #e3e3e3;
  position: sticky;
  z-index: 980;
  top: 0;
  background-color: white;
  text-transform: uppercase;
}
.n_line2 ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.n_line2 ul a {
  text-decoration: none;
  color: black;
  font-size: 13px;
  transition-duration: 0.2s;
}
.n_line2 ul a::after {
  content: "";
  width: 0%;
  position: absolute;
  transform: translateX(-5%);
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: #940000;
  transition-duration: 0.2s;
}
.n_line2 ul a:hover {
  color: #940000;
}
.n_line2 ul a:hover::after {
  width: 110%;
}
.n_line2 ul a {
  position: relative;
}
.n_line2 ul a.active {
  color: #940000;
}
.n_line2 ul a.active::after {
  width: 110%;
}

/*# sourceMappingURL=navbar.css.map */
