/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2025 | 23:37:37 */
.rabbit-dropdown {
  position: relative;
  display: inline-block;
  width: 55%;
  margin-bottom: -0.7rem;
}

.rabbit-dropdown-toggle {
  padding: 2px;
  background-color: white;
  border-bottom: 1px solid #5EE0E8;
  cursor: pointer;
  color:#1f2f77;
}

.rabbit-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  margin-top: 4px;
}

.rabbit-dropdown-menu.show {
  display: block;
}

.rabbit-dropdown-item {
  padding: 8px 16px;
  color:#1f2f77;
  cursor: pointer;
}

.rabbit-dropdown-item.active {
  font-weight:bold;
  color: #5EE0E8;
}