@charset "UTF-8";
#sidebar{
  position: fixed;
  top: 0;
  left: 0;
  background-color: #347AB8;
  height: 100%;
  width: 240px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: .2s;
  z-index: 1030;
  display: flex;
  flex-direction: column;
}
.sidebar-nav {
  overflow-y: auto;
}
.nav-close .sidebar-nav {
  overflow-y: visible;
}
.sidebar-toggler {
  background: transparent;
  border: 0;
  width: fit-content;
  margin-left: 16px;
  margin-top: 15px;
}
.sidebar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.sidebar-toggler img {
  width: 20px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 24px 12px 16px;
  text-decoration: none;
  white-space: nowrap;
  color: var(--white);
  min-width: 100px;
  position: relative;
}
body:not(.nav-close) .nav-group .nav-item .nav-link {
  padding-left: 42px;
}
body.nav-close .nav-group-items {
  margin-left: 42px;
}

.nav-link:hover{
  background: #4289c7;
}
.nav-link:focus {
  box-shadow: none;
  outline: none;
}

img.nav-icon {
  height: 18px;
  margin-right: 16px;
}
ul.nav-group-items {
  margin-bottom: 0;
}
.nav-close .nav-item,
.nav-close .nav-group {
  overflow: hidden;
}
.nav-close .nav-item:hover,
.nav-close .nav-group:hover {
  overflow: visible;
}

.nav-close .nav-group .nav-group-items{
  position: absolute;
  right: 200px;
}
.nav-close .nav-item:hover .nav-item,
.nav-close .nav-group:hover .nav-group-items {
  position: absolute;
  left: 8px;
  background-color: #347ab8;
  width: 180px;
}
.nav-close .nav-link.nav-group-toggle:after {
  left: 200px;
}

.nav-close .sidebar-nav > .nav-item:hover > .nav-link > .nav-link-text,
.nav-close .sidebar-nav > .nav-group:hover > .nav-link > .nav-link-text {
  position: absolute;
  left: 50px;
  width: 180px;
  background: #347ab8;
  padding: 12px 24px 12px 20px;
  height: 43px;
  line-height: 2;
}
.nav-close .sidebar-nav > .nav-item > .nav-link > .nav-link-text:hover {
  background: #4289c7;
}
.nav-link.nav-group-toggle:after {
  content: '';
  background-image: url("../../assets/img/nav_icon_arrow.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  transform: rotate(180deg);
  transition: transform 0.1s ease-in-out;
}
.nav-link.nav-group-toggle.menu-close:after {
  transform: rotate(0deg);
}
.nav-link:hover span {
  background: #4289c7!important;
}

/* Addition Aug 2024 */
.nav-link-text.category-name {
	font-weight: 700;
}