.app-header-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1024px) {
  .app-header-nav {
    display: none;
  }
}
.app-header-nav > li {
  position: relative;
  height: 100%;
  margin-right: 1rem;
}
.app-header-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.5rem;
  color: #495057;
  font-size: 1rem;
  transition: 0.2s ease;
}
.app-header-nav > li > a:hover {
  color: black;
}
.app-header-nav > li.active > a {
  color: #6fa8dc;
  font-weight: 600;
}
.app-header-nav-child {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  max-height: 400px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  visibility: hidden;
  opacity: 0;
  background-color: white;
  border-radius: var(--border-radius-3);
  box-shadow: rgba(0, 0, 0, 0.15) 0 4px 12px;
  overflow: auto;
  transition: 0.3s;
}
.app-header-nav-child > li > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--color-black);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
}
.app-header-nav-child > li > a:hover {
  background-color: var(--color-gray-100);
}
.app-header-nav > li > a:hover + .app-header-nav-child, .app-header-nav-child:hover {
  visibility: visible;
  opacity: 1;
}
/*# sourceMappingURL=2eb4b318edfdec341c9fff13e94c82a4b07b513d.header-nav.scss.map */
