.custom-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

/* 
@media (min-width: 992px) {
  .custom-panel {
    height: calc(100vh - 100px) !important;
    overflow: auto;
  }

  .panel-sticky-lg {
    position: sticky;
    top: 86px;
  }
} */

.custom-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 999999;
  overflow: auto;
}

.custom-panel.open {
  right: 0;
}

.custom-panel .close-btn {
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
}

.btn-style {
  background-color: #374151 !important;
  color: white !important;
  border-radius: 30px;
  cursor: pointer;
}
