.lur-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}

.lur-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lur-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 380px;
  max-width: 92vw;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  transform: translateX(110%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}

.lur-drawer.is-open { transform: translateX(0); }

.lur-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.lur-drawer__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.lur-drawer__close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}

.lur-drawer__body {
  padding: 16px;
  overflow: auto;
  flex: 1;
}

.lur-nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lur-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.lur-nav-icon svg { width: 20px; height: 20px; }

.lur-navbar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.lur-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #ffc03d;
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-dark .navbar-toggler-icon{
	background: transparent !important;
}

.navbar-dark .navbar-toggler{
	border: none !important;
}

.navbar-toggler-icon i {
  font-size: 22px;
}

.dropdown-item.active, .dropdown-item:active {
  color: #16181b !important;
  text-decoration: none;
  background-color: #e9ecef !important;
}

@media screen and (max-width: 1024px) {
	#navbarNavDropdown ul li{
		padding: 10px 10px;
		border-bottom: 1px solid #eee
	}
}
@media screen and (max-width: 768px) {

  .lur-navbar-icons {
	  position: relative;
	  margin-left: auto;
	  margin-right: 15px;
	  gap:5px;
  }

 
  
}