@charset "UTF-8";
/* Original file: layouts/rx-flex-layout-main/components/header/header-nav.scss */
.app-header-nav {
  position: relative;
  margin-left: 2.5rem;
  height: 100%;
}
@media (max-width: 1024px) {
  .app-header-nav {
    display: none;
  }
}
.app-header-nav > ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  height: 100%;
}
.app-header-nav > ul > li {
  position: relative;
  height: 100%;
  margin-right: 0.5rem;
}
.app-header-nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.75rem 0.75rem;
  color: #646f7c;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  transition: 0.2s ease;
}
.app-header-nav > ul > li > a .app-header-nav-more {
  color: #C5C8CE;
  font-size: 1rem;
  margin-left: 0.25rem;
  --ionicon-stroke-width: 3rem;
}
.app-header-nav > ul > li > a:hover {
  color: #28323c;
}
.app-header-nav > ul > li.active > a {
  color: #161d24;
  font-weight: 600;
}
.app-header-nav-child {
  position: absolute;
  top: 90%;
  left: 0;
  list-style-type: none;
  max-height: 400px;
  min-width: 150px;
  padding: 8px;
  margin: 0;
  overflow-y: auto;
  border-radius: 6px;
  background-color: #fefefe;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1px 4px, rgba(0, 0, 0, 0.1) 0 8px 24px;
  transform: translateY(-0.25rem);
  transition: 0.3s ease;
}
.app-header-nav-child > li {
  margin-bottom: 0.25rem;
}
.app-header-nav-child > li:last-child {
  margin-bottom: 0;
}
.app-header-nav-child > li > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75em;
  color: #374553;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s ease;
}
.app-header-nav-child > li > a:hover {
  color: black;
  background-color: #f7f8f9;
}
.app-header-nav-child > li.active > a {
  color: #247bff;
}
.app-header-nav-child {
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}
.app-header-nav > ul > li > a:hover + .app-header-nav-child, .app-header-nav-child:hover {
  opacity: 1;
  visibility: visible;
  user-select: initial;
  pointer-events: initial;
  transform: translateY(0);
}

