:root,
[data-theme='light'] {
  --rf-black: #000000;
  --rf-gray-darker: #1A2229;
  --rf-gray-dark: #3E5061;
  --rf-gray-medium: #99a1a3;
  --rf-gray: #d9e1e2;
  --rf-gray-light: #edf6f7;
  --rf-gray-lighter: #f2f7f8;
  --rf-white: #ffffff;
  --rf-primary: #233354;
  --rf-primary-light: #405479;
  --rf-primary-dark: #1A1D26;
  --rf-body-bg: #f6f9f9;
  --rf-content-bg: #ffffff;
  --rf-bg-faded: #f2f7f8;
  --rf-border-color: rgba(0, 0, 0, 0.2);
  --rf-border-color-light: rgba(0, 0, 0, 0.1);
  --rf-text-primary: #1A1D26;
  --rf-text-muted: #99a1a3;
  --rf-radius-sm: 2px;
  --rf-radius-base: 3px;
  --rf-radius-lg: 5px;
  --rf-skeleton-bg: var(--rf-gray);
  --rf-skeleton-shimmer: var(--rf-gray-lighter);
  --rf-overlay-bg: rgba(255, 255, 255, 0.7);
  --rf-spinner-color: var(--rf-primary);
}
[data-theme='dark'] {
  --rf-black: #000000;
  --rf-gray-darker: #111416;
  --rf-gray-dark: #1a1c1e;
  --rf-gray-medium: #353a3e;
  --rf-gray: #5a6771;
  --rf-gray-light: #b7c7d2;
  --rf-gray-lighter: #eaf5fc;
  --rf-white: #ffffff;
  --rf-primary: #6D91CD;
  --rf-primary-light: #8CAAE0;
  --rf-primary-dark: #405479;
  --rf-body-bg: #0f1012;
  --rf-content-bg: #111416;
  --rf-bg-faded: #1e2023;
  --rf-border-color: rgba(255, 255, 255, 0.15);
  --rf-border-color-light: rgba(255, 255, 255, 0.08);
  --rf-text-primary: #eaf5fc;
  --rf-text-muted: #5a6771;
  --rf-skeleton-bg: var(--rf-gray-medium);
  --rf-skeleton-shimmer: var(--rf-gray-dark);
  --rf-overlay-bg: rgba(0, 0, 0, 0.5);
  --rf-spinner-color: var(--rf-primary);
}
@keyframes rf-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rf-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes rf-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.rf-spinner {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border: 3px solid color-mix(in srgb, var(--rf-spinner-color) 25%, transparent);
  border-top-color: var(--rf-spinner-color);
  border-radius: 50%;
  animation: rf-spin 0.7s linear infinite;
}
.rf-spinner--sm {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}
.rf-spinner--lg {
  width: 2rem;
  height: 2rem;
}
.rf-spinner--muted {
  border-color: rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--rf-text-muted) 25%, transparent);
  border-top-color: var(--rf-text-muted);
}
.rf-loading-overlay {
  position: absolute;
  inset: 0;
  background: var(--rf-overlay-bg);
  border-radius: inherit;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-skeleton {
  display: block;
  height: 0.875rem;
  width: 100%;
  background: linear-gradient(90deg, var(--rf-skeleton-bg) 25%, var(--rf-skeleton-shimmer) 50%, var(--rf-skeleton-bg) 75%);
  background-size: 400% 100%;
  animation: rf-shimmer 2s ease-in-out infinite;
  border-radius: var(--rf-radius-sm);
  margin-bottom: 0.75rem;
}
.rf-skeleton--heading {
  height: 1.5rem;
  width: 60%;
}
.rf-skeleton--text {
  height: 0.875rem;
  width: 100%;
}
.rf-skeleton--short {
  width: 40%;
}
.rf-skeleton--row {
  height: 2.5rem;
  width: 100%;
  margin-bottom: 0.25rem;
}
.rf-skeleton--circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.rf-skeleton--card {
  height: auto;
  background: var(--rf-content-bg);
  border: 1px solid var(--rf-border-color-light);
  border-radius: var(--rf-radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
  animation: none;
}
.rf-skeleton--toolbar {
  height: 2.25rem;
  width: 30%;
  margin-bottom: 1rem;
}
.rf-skeleton--table-row {
  height: 3rem;
  width: 100%;
  margin-bottom: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--rf-border-color-light);
}
.rf-skeleton--stat {
  height: 4.5rem;
  border-radius: var(--rf-radius-base);
}
.htmx-indicator {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.htmx-request .htmx-indicator,
.htmx-indicator.htmx-request {
  opacity: 1;
}
.htmx-settling .htmx-added {
  opacity: 0;
}
.htmx-added {
  opacity: 1;
  transition: opacity 200ms ease-in;
}
.htmx-swapping {
  opacity: 0;
  transition: opacity 200ms ease-out;
}
[hx-post].htmx-request,
[hx-put].htmx-request,
[hx-delete].htmx-request,
[hx-patch].htmx-request {
  pointer-events: none;
  opacity: 0.75;
}
[hx-post].htmx-request > .icon,
[hx-put].htmx-request > .icon,
[hx-delete].htmx-request > .icon,
[hx-patch].htmx-request > .icon {
  display: none;
}
[hx-post].htmx-request::before,
[hx-put].htmx-request::before,
[hx-delete].htmx-request::before,
[hx-patch].htmx-request::before {
  content: '';
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border: 2px solid var(--rf-border-color);
  border-top-color: var(--rf-spinner-color);
  border-radius: 50%;
  animation: rf-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.25rem;
}
[hx-post].htmx-request.btn-icon::before,
[hx-put].htmx-request.btn-icon::before,
[hx-delete].htmx-request.btn-icon::before,
[hx-patch].htmx-request.btn-icon::before {
  margin-right: 0;
}
.rf-dropdown {
  position: relative;
  display: inline-block;
}
.rf-dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.375rem;
  vertical-align: middle;
  content: "";
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.rf-dropdown-toggle:empty::after {
  margin-left: 0;
}
.rf-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 8.75rem;
  padding: 0.5rem 0;
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--rf-text-primary);
  text-align: left;
  list-style: none;
  background-color: var(--rf-content-bg);
  background-clip: padding-box;
  border: 1px solid var(--rf-border-color);
  border-radius: var(--rf-radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.rf-dropdown-menu.show {
  display: block;
}
.rf-dropdown-menu.rf-dropdown-menu--sm {
  min-width: 8.75rem;
  padding: 0.375rem 0;
  font-size: 0.75rem;
}
.rf-dropdown-menu.rf-dropdown-menu--sm .rf-dropdown-item {
  padding: 0.375rem 0.75rem;
}
.rf-dropdown-menu.rf-dropdown-menu--sm .rf-dropdown-header {
  padding: 0.375rem 0.625rem;
  font-size: 0.6875rem;
}
.rf-dropdown-menu.rf-dropdown-menu--sm .rf-dropdown-divider {
  margin: 0.375rem 0;
}
.rf-dropdown-menu.rf-dropdown-menu--sm .rf-dropdown-item-text {
  padding: 0.5rem 0.75rem;
}
.rf-dropdown-menu.rf-dropdown-menu--md {
  min-width: 15rem;
}
.rf-dropdown-menu.rf-dropdown-menu--lg {
  min-width: 18.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
}
.rf-dropdown-menu.rf-dropdown-menu--lg .rf-dropdown-item {
  padding: 0.625rem 1.25rem;
}
.rf-dropdown-menu.rf-dropdown-menu--lg .rf-dropdown-header {
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
}
.rf-dropdown-menu.rf-dropdown-menu--lg .rf-dropdown-divider {
  margin: 0.625rem 0;
}
.rf-dropdown-menu.rf-dropdown-menu--lg .rf-dropdown-item-text {
  padding: 0.75rem 1.25rem;
}
.rf-dropdown-menu--up {
  top: auto;
  bottom: 100%;
  margin: 0 0 0.25rem;
}
.rf-dropdown-menu-end {
  right: 0;
  left: auto;
}
.rf-dropdown-menu-start {
  right: auto;
  left: 0;
}
.rf-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  clear: both;
  font-weight: 400;
  color: var(--rf-text-primary);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.rf-dropdown-item.rf-dropdown-item--split {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.rf-dropdown-item:hover,
.rf-dropdown-item:focus {
  background-color: var(--rf-bg-faded);
}
.rf-dropdown-item.active,
.rf-dropdown-item:active {
  color: var(--rf-primary);
  background-color: var(--rf-bg-faded);
}
.rf-dropdown-item.disabled,
.rf-dropdown-item:disabled {
  color: var(--rf-text-muted);
  pointer-events: none;
  cursor: not-allowed;
}
.rf-dropdown-item > .icon {
  margin-right: 0.5rem;
  width: 1rem;
  text-align: center;
}
.rf-dropdown-header {
  display: block;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: var(--rf-text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.rf-dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--rf-border-color-light);
}
.rf-dropdown-item-text {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--rf-text-muted);
}
.rf-dropdown-menu-popout {
  padding: 0.5rem 0.75rem;
  min-width: 10rem;
  max-width: 30rem;
  max-height: 12.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .rf-dropdown-menu-popout {
    max-width: min(26.25rem, 85vw);
  }
}
@media (max-width: 767px) {
  .rf-dropdown-menu-popout {
    max-width: calc(100vw - (40 * 0.0625rem));
  }
}
@media (max-width: 479px) {
  .rf-dropdown-menu-popout {
    max-width: calc(100vw - (32 * 0.0625rem));
    min-width: 8.75rem;
  }
}
.rf-dropdown-form {
  padding: 0.75rem;
  min-width: 13.75rem;
}
.rf-dropdown-form .rf-dropdown-form__label {
  display: block;
  font-size: 0.75rem;
  color: var(--rf-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}
.rf-dropdown-form .form-control,
.rf-dropdown-form .form-control-sm {
  margin-bottom: 0.5rem;
}
.rf-dropdown-form .rf-dropdown-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.rf-dropdown-form--auto-save {
  padding: 0.5rem;
  min-width: 11.25rem;
}
.rf-dropdown-form--auto-save .form-control {
  margin-bottom: 0;
}
.rf-dropdown-form--auto-save .rf-dropdown-form__actions {
  display: none;
}
.rf-dropdown-confirm {
  padding: 0.75rem 1rem;
  min-width: 12.5rem;
  max-width: 17.5rem;
}
.rf-dropdown-confirm .rf-dropdown-confirm__message {
  font-size: 0.875rem;
  color: var(--rf-text-primary);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.rf-dropdown-confirm .rf-dropdown-confirm__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.rf-dropdown-detail {
  padding: 0.75rem 1rem;
  min-width: 15rem;
  max-width: 25rem;
}
.rf-dropdown-detail .rf-dropdown-detail__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rf-text-primary);
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}
.rf-dropdown-detail .rf-dropdown-detail__label {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rf-text-muted);
}
.rf-dropdown-detail .rf-dropdown-detail__text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--rf-text-primary);
  white-space: normal;
  word-break: break-word;
}
.rf-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--rf-border-color-light);
}
@media (max-width: 767px) {
  .rf-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767px) {
  .rf-filter-bar--wrap {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}
.rf-filter-bar__spacer {
  flex: 1;
}
.sidenav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 15rem;
  background: rgba(32, 32, 38, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  transition: width 0.25s cubic-bezier(0.76, 0, 0.24, 1);
  overflow: visible;
}
.sidenav--open {
  width: 17.5rem;
}
.sidenav--open .sidenav__body,
.sidenav--open .sidenav__brand {
  width: 3.75rem;
}
.sidenav--open .nav__label,
.sidenav--open .nav__chevron {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.sidenav--open .nav__link {
  justify-content: center;
  padding: 0.625rem 0;
}
.sidenav--open .sidenav__panel {
  width: 13.75rem;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .sidenav {
    transform: translateX(-100%);
    transition: width 0.25s cubic-bezier(0.76, 0, 0.24, 1), transform 0.25s cubic-bezier(0.76, 0, 0.24, 1);
    max-width: 18.75rem;
    overflow: hidden;
  }
  .sidenav--mobile-open {
    transform: translateX(0);
    overflow: visible;
  }
}
.sidenav__brand {
  grid-column: 1;
  grid-row: 1;
  padding: 0 1.25rem;
  height: 3.375rem;
  width: 15rem;
  transition: width 0.25s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.sidenav__brand img {
  height: 1.75rem;
}
.sidenav__body {
  grid-column: 1;
  grid-row: 2;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem;
  width: 15rem;
  transition: width 0.25s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
}
.sidenav__body > .nav {
  flex-shrink: 0;
}
.sidenav__footer {
  margin-top: auto;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}
.nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__item {
  margin-bottom: 0.125rem;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0.75rem;
  height: 2.25rem;
  color: #ccd6e2;
  text-decoration: none;
  border-radius: 1.25rem;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  white-space: nowrap;
  overflow: hidden;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ccd6e2;
}
.nav__link--active {
  background: #6988bd;
  color: #000;
}
.nav__icon {
  width: 1.75rem;
  flex-shrink: 0;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1;
  color: rgba(219, 219, 219, 0.82);
}
.nav__label {
  flex: 1;
  transition: opacity 0.15s ease, width 0.15s ease;
}
.nav__chevron {
  font-size: 0.8125rem;
  color: rgba(232, 232, 240, 0.6);
  transition: opacity 0.15s ease, width 0.15s ease, transform 0.2s ease;
}
.nav__link--active .nav__chevron {
  transform: rotate(90deg);
  color: #4A7CC9;
}
.nav__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.125);
  margin: 0.5rem 0;
}
.nav__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}
.sidenav__panel {
  grid-column: 2;
  grid-row: 1 / -1;
  width: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: none;
  background: transparent;
  transition: width 0.25s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.25s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
}
.sidenav__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.625rem 0 1rem;
  height: 3.375rem;
  flex-shrink: 0;
}
.sidenav__panel-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ccd6e2;
}
.sidenav__panel-close {
  background: none;
  border: none;
  color: #ccd6e2;
  cursor: pointer;
  font-size: 1.0625rem;
  padding: 0.25rem;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidenav__panel-close:hover {
  color: #ccd6e2;
  background: rgba(255, 255, 255, 0.1);
}
.sidenav__panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
  background: rgba(11, 17, 33, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 0.5rem 0 0 0;
}
.subnav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #ccd6e2;
  text-decoration: none;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.subnav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ccd6e2;
}
.subnav__link--active {
  color: #4A7CC9;
}
.subnav__link::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(226, 232, 240, 0.52);
  flex-shrink: 0;
}
.subnav__link--active::before {
  background: #4A7CC9;
}
.sidenav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.sidenav-overlay--visible {
  opacity: 1;
  visibility: visible;
}
.sidenav--gradient {
  background: linear-gradient(135deg, #263c67 0%, #1e293b 52%, #0f172a 100%);
}
.sidenav--gradient .sidenav__panel {
  background: transparent;
}
.sidenav-tooltip {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.92);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
}
.sidenav .nav__item + .nav__item {
  margin-top: 0.25rem;
}
.sidenav .nav__link {
  justify-content: flex-start;
  text-align: left;
}
.sidenav .nav__link--active:hover {
  background: #6988bd;
}
.sidenav .nav__link--active .nav__icon .icon {
  color: #000;
}
.sidenav .nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sidenav .nav__icon .icon {
  width: 1.0625rem;
  height: 1.0625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sidenav .nav__label {
  margin-left: 1.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidenav .nav__chevron {
  margin-left: 0.75rem;
  display: flex;
  align-items: center;
}
.sidenav .nav__chevron .icon {
  font-size: 0.875rem;
  opacity: 0.7;
}
.sidenav .nav__divider {
  margin: 0.75rem -0.75rem;
}
.sidenav__panel-header h2 {
  letter-spacing: 0.01em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.62);
}
.sidenav__panel-close {
  font-size: 0.875rem;
}
.sidenav__panel-close:hover {
  color: #ccd6e2;
}
.sidenav__footer {
  padding: 0.5rem 0.75rem;
  border-top-color: rgba(255, 255, 255, 0.125);
}
.sidenav__footer .sidenav__footer-kebab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.25rem;
  background: none;
  border: none;
  color: rgba(219, 219, 219, 0.82);
  cursor: pointer;
  border-radius: 1.25rem;
  font-size: 1.25rem;
  transition: background 0.2s;
  padding: 0;
}
.sidenav__footer .sidenav__footer-kebab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ccd6e2;
}
.sidenav__footer .sidenav__footer-group {
  margin-bottom: 0.5rem;
}
.sidenav__footer .sidenav__footer-item {
  display: flex;
  align-items: center;
  height: 2.25rem;
  padding: 0 1rem;
  color: #ccd6e2;
  text-decoration: none;
  border-radius: 1.25rem;
  transition: background 0.2s;
  white-space: nowrap;
  font-size: 0.8125rem;
}
.sidenav__footer .sidenav__footer-item .icon {
  color: rgba(219, 219, 219, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.125rem;
  width: 1.125rem;
}
.sidenav__footer .sidenav__footer-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ccd6e2;
  text-decoration: none;
}
.sidenav__footer .sidenav__copy {
  display: block;
  text-align: center;
  color: rgba(226, 232, 240, 0.38);
  font-size: 0.6875rem;
  padding: 0.5rem 0;
}
.sidenav__footer--expanded .sidenav__footer-content {
  display: block !important;
}
.sidenav__footer--expanded .sidenav__footer-kebab {
  background: rgba(255, 255, 255, 0.1);
}
.sidenav--open .sidenav__body {
  padding: 0.5rem 0.75rem;
  overflow-y: hidden;
  overflow-x: hidden;
}
.sidenav--open .nav__label,
.sidenav--open .nav__chevron {
  display: none;
}
.sidenav--open .nav__link {
  justify-content: center;
  padding: 0;
  width: 2.25rem;
  border-radius: 1.125rem;
  margin: 0 auto;
}
.sidenav--open .nav__icon {
  min-width: auto;
  width: auto;
}
.sidenav--open .nav__link--active .nav__icon .icon {
  color: #000;
}
.sidenav--open .sidenav__brand {
  justify-content: center;
  padding: 0.75rem 0;
}
.sidenav--open .sidenav__brand img {
  height: 2.125rem;
  max-width: 2.125rem;
  object-fit: cover;
  object-position: left;
}
.sidenav--open .sidenav__panel-header {
  padding-top: 1rem;
  padding-bottom: 0.75rem;
}
.sidenav__panel .rf-sidenav-submenu-header {
  display: none;
}
.sidenav__panel .rf-sidenav-submenu-content {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: none !important;
}
.sidenav__panel .nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidenav__panel .nav-item {
  margin-bottom: 0.0625rem;
}
.sidenav__panel .nav-link {
  display: flex;
  align-items: center;
  padding: 0.375rem 1rem 0.375rem 2rem;
  color: #ccd6e2;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}
.sidenav__panel .nav-link::before {
  content: "" !important;
  font-family: inherit !important;
  position: absolute !important;
  left: 0.75rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 0.375rem !important;
  height: 0.375rem !important;
  border-radius: 50% !important;
  background: rgba(226, 232, 240, 0.52) !important;
  font-size: 0 !important;
  margin-left: 0 !important;
  color: transparent !important;
}
.sidenav__panel .nav-link:hover {
  background: rgba(125, 161, 232, 0.25);
  color: #ccd6e2;
  text-decoration: none;
}
.sidenav__panel .nav-link.active {
  color: inherit;
  background: #6988bd;
  font-weight: 500;
}
.sidenav__panel .nav-link.active::before {
  background: #4A7CC9;
}
.sidenav__panel .nav-link.show-modal {
  cursor: pointer;
}
.sidenav__panel .nav-link.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.sidenav__panel .nav-heading {
  border: none;
  padding: 0.75rem 1rem 0.75rem 1rem;
  margin-left: 0 !important;
  position: relative;
  list-style: none;
}
.sidenav__panel .nav-heading:not(:first-child):not(:only-child) {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.125);
}
.sidenav__panel .nav-heading:first-child {
  margin-top: 0;
}
.sidenav__panel .nav-list-header {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.62);
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}
.sidenav__panel .dropdown-header {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem 0.25rem;
  margin: 0.5rem 0 0;
}
.sidenav__panel .dropdown-header:first-child {
  margin-top: 0;
}
.sidenav__panel .nav-divider,
.sidenav__panel .dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.125);
  margin: 0.5rem 0;
  list-style: none;
  border: none;
}
.sidenav__panel .nav-divider hr,
.sidenav__panel .dropdown-divider hr {
  display: none;
}
.sidenav__panel .nav-subheading:not(.nav-link) {
  font-weight: 500;
  color: #ccd6e2;
  padding: 0.5rem 0.75rem;
}
.sidenav__panel .nav-subheading:not(.nav-link):hover {
  color: #fff;
  background: rgba(125, 161, 232, 0.25);
}
.sidenav__panel .nav-subheading.nav-link {
  font-weight: 500;
  padding-right: 2rem;
}
.sidenav__panel .nav-group,
.sidenav__panel .nav-base-group {
  padding-left: 0;
  background: rgba(0, 0, 0, 0.15);
  margin: 0.25rem 0;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.sidenav__panel .nav-group .nav-link,
.sidenav__panel .nav-base-group .nav-link {
  font-size: 0.8125rem;
  padding: 0.25rem 0.75rem 0.25rem 2rem;
}
.sidenav__panel .nav-group .nav-link::before,
.sidenav__panel .nav-base-group .nav-link::before {
  display: none;
}
.sidenav .nav {
  display: block;
  flex-wrap: initial;
}
.user-authenticated .offcanvas-wrapper,
.user-authenticated .offcanvas-wrapper-inner {
  transform: none !important;
  overflow: visible !important;
}
.user-authenticated .offcanvas-content {
  margin-left: 15rem;
  transition: margin-left 0.25s cubic-bezier(0.76, 0, 0.24, 1);
}
.user-authenticated .sidenav--open ~ .offcanvas-content,
.user-authenticated .sidenav--open ~ .sidenav-overlay ~ .offcanvas-content {
  margin-left: 17.5rem;
}
.user-authenticated .offcanvas[data-offcanvas="left"] {
  display: none;
}
@media (max-width: 767px) {
  .user-authenticated .offcanvas-content {
    margin-left: 0;
  }
  .user-authenticated .sidenav--open ~ .offcanvas-content,
  .user-authenticated .sidenav--open ~ .sidenav-overlay ~ .offcanvas-content {
    margin-left: 0;
  }
}
/*# sourceMappingURL=rf-compat.css.map */