.no-caret:after {
  display: none;
}

/* global dropdown */
.dropdown .dropdown-menu {
  --bs-dropdown-link-color: var(--bs-link-color);
  --bs-dropdown-link-hover-color: var(--senbee-theme-1);
  --bs-dropdown-link-hover-bg: rgba(var(--senbee-theme-1-rgb), 0.1);
  --bs-dropdown-link-active-color: var(--senbee-theme-1-text);
  --bs-dropdown-link-active-bg: var(--senbee-theme-1);
  --bs-dropdown-padding-x: 0.5rem;
  --bs-dropdown-item-padding-y: 0.45rem;
  --bs-dropdown-item-padding-x: 0.5rem;
  border: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
}
.dropdown .dropdown-menu .dropdown-item {
  border-radius: var(--bs-border-radius);
}
.dropdown .dropdown-menu .dropdown-item i,
.dropdown .dropdown-menu .dropdown-item svg {
  color: var(--bs-dropdown-link-color);
  stroke: var(--bs-dropdown-link-color);
}
.dropdown .dropdown-menu .dropdown-item svg {
  margin-top: -3px;
}
.dropdown .dropdown-menu .dropdown-item:hover i,
.dropdown .dropdown-menu .dropdown-item:hover svg, .dropdown .dropdown-menu .dropdown-item:focus i,
.dropdown .dropdown-menu .dropdown-item:focus svg {
  color: var(--bs-dropdown-link-hover-color);
  stroke: var(--bs-dropdown-link-hover-color);
}
.dropdown .dropdown-menu .dropdown-item:active i,
.dropdown .dropdown-menu .dropdown-item:active svg, .dropdown .dropdown-menu .dropdown-item.active i,
.dropdown .dropdown-menu .dropdown-item.active svg {
  color: var(--bs-dropdown-link-active-color);
  stroke: var(--bs-dropdown-link-active-color);
}
.dropdown .dropdown-menu [class*=theme-] {
  --bs-dropdown-link-color: var(--senbee-theme-1);
  --bs-dropdown-link-hover-color: var(--senbee-theme-1);
  --bs-dropdown-link-hover-bg: rgba(var(--senbee-theme-1-rgb), 0.1);
  --bs-dropdown-link-active-color: var(--senbee-theme-1-text);
  --bs-dropdown-link-active-bg: var(--senbee-theme-1);
}
.dropdown .list-group {
  --bs-list-group-item-padding-x: 0.5rem;
}
.dropdown .dropdown.dropend:hover [data-bs-trigger=hover] ~ .dropdown-menu {
  display: block;
  top: 0;
  right: auto;
  left: 100%;
  margin-left: 0;
}
.dropdown .dropdown.dropend .dropdown-menu.show {
  display: block;
  top: 0;
  right: auto;
  left: 100%;
  margin-left: 0 !important;
}

/* notification dropdown */
.notification-dd {
  width: 300px;
}
.notification-dd li {
  border-bottom: 1px solid var(--border-color);
}
.notification-dd li .dropdown-item {
  white-space: normal;
}
.notification-dd li:last-child {
  border-bottom: 0px;
}

/* global dropdown center */
.dropdown-menu-center {
  width: 300px;
  margin-left: 50%;
  left: -150px !important;
}

/* dropdown rtl */
[dir=rtl] {
  /* global dropdown rtl */
}
[dir=rtl] .dropdown .dropdown-menu {
  text-align: right;
}
[dir=rtl] .dropdown .dropdown-menu .dropdown-item i:first-child,
[dir=rtl] .dropdown .dropdown-menu .dropdown-item svg:first-child {
  margin-right: 0px;
  margin-left: 10px;
}
[dir=rtl] .dropdown .dropdown-menu-end {
  right: auto;
  left: 0;
}

/* dark mode */
[data-bs-theme=dark] .dropdown .dropdown-menu {
  --bs-dropdown-bg: var(--bs-dd-bg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}
[data-bs-theme=dark] .dropdown .dropdown-menu .dropdown-item:hover, [data-bs-theme=dark] .dropdown .dropdown-menu .dropdown-item:focus {
  color: #ffffff;
}
[data-bs-theme=dark] .dropdown .dropdown-menu .dropdown-item:hover i,
[data-bs-theme=dark] .dropdown .dropdown-menu .dropdown-item:hover svg, [data-bs-theme=dark] .dropdown .dropdown-menu .dropdown-item:focus i,
[data-bs-theme=dark] .dropdown .dropdown-menu .dropdown-item:focus svg {
  color: #ffffff;
  stroke: #ffffff;
}
[data-bs-theme=dark] .offcanvas {
  --bs-offcanvas-bg: var(--bs-dd-bg);
}