/*----- SIDEBAR MENU - Open -----*/
#sidebar-right .menu {
  list-style: none;
  margin: -0.75rem 0;
  padding: 0;
}

#sidebar-right .menu-item {
  border: none;
  display: block;
  position: relative;
  padding: 0.125rem 0;
}

#sidebar-right .menu-item-level-1 {
  border-bottom: 1px solid #9caac1;
  padding: 0.75rem 0;
}

#sidebar-right .menu-item-level-1:last-child {
  border: none;
}

#sidebar-right .menu-item > span {
  cursor: pointer;
}

#sidebar-right .menu-item > span:focus-visible {
  outline: 2px dashed #000000;
  border-radius: 4px;
  outline-offset: 2px;
  transition: none !important;
}

#sidebar-right .menu-item > span,
#sidebar-right .menu-item > a {
  color: #1c3462;
  display: flex;
  font-weight: 400;
  line-height: 130%;
  padding: 0.375rem 0;
  position: relative;
  text-decoration: none;
}
#sidebar-right .menu-item > span:hover,
#sidebar-right .menu-item > a:hover {
  color: #a3680f;
}

#sidebar-right .menu-item-has-children > span,
#sidebar-right .menu-item-has-children > a {
  justify-content: space-between;
}

#sidebar-right .menu-item-has-children > span::after,
#sidebar-right .menu-item-has-children > a::after {
  color: #1c3462;
  content: "\f054";
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 6 Pro";
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  transform-origin: center;
  text-decoration: none !important;
  width: 0.875rem;
  height: 0.875rem;

  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

#sidebar-right .menu-item-has-children > span:hover::after,
#sidebar-right .menu-item-has-children > a:hover::after {
  color: #a3680f;
}

#sidebar-right .menu-item.js-accordion-open > span,
#sidebar-right .menu-item.js-accordion-open > a {
  color: #a3680f;
  font-weight: 500;
}

#sidebar-right .menu-item.js-accordion-open > span::after,
#sidebar-right .menu-item.js-accordion-open > a::after {
  color: #a3680f;
  transform: rotate(90deg);
}
#sidebar-right .menu-item.active > span::after,
#sidebar-right .menu-item.active > a::after {
  color: #a3680f;
}
#sidebar-right .menu-item.active.js-accordion-open > span::after,
#sidebar-right .menu-item.active.js-accordion-open > a::after {
  color: #a3680f;
}

#sidebar-right .submenu {
  display: none;
  list-style: none;
  margin: 0;
  overflow: hidden;
}
#sidebar-right .submenu {
  padding-left: 1.25rem;
}

#sidebar-right .menu-item.active > span,
#sidebar-right .menu-item.active > a {
  color: #955f0e;
  font-weight: 500;
}

#sidebar-right .submenu span::before,
#sidebar-right .submenu a::before {
  background: #a3680f;
  bottom: 0;
  border-radius: var(--border-radius);
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 33%;

  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#sidebar-right .submenu .active > span::before,
#sidebar-right .submenu .active > a::before {
  background: #a3680f;
}
#sidebar-right .submenu span:hover::before,
#sidebar-right .submenu a:hover::before {
  opacity: 0.75;
  width: 100%;
}
/*----- SIDEBAR MENU - Close -----*/
