/* Style for the dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style for the checkbox labels */
.dropdown-item label {
  display: block;
  color: var(--dark);
}

/* Optional: Style for the dropdown button */
.dropdown-toggle {
  border: 1px solid #ced4da;
  border-top: 3px solid var(--secondary);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 0.6rem 0.75rem;
  border-radius: 0;
  background-color: #fff;
  color: var(--dark);
  font-size: 0.875rem;
  line-height: 1.5;
  background-clip: padding-box;
  text-transform: capitalize;
  letter-spacing: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.dropdown-toggle:hover, .dropdown-toggle[aria-expanded=true] {
  background-color: white !important;
  color: var(--dark) !important;
  border: 1px solid #ced4da;
  border-top: 3px solid var(--secondary);
}
.dropdown-toggle:hover, .dropdown-toggle:focus {
  border-color: var(--secondary) !important;
}

/* Optional: Style for the dropdown menu */
.dropdown-menu {
  max-height: 150px;
  padding: 0;
  overflow-y: auto;
  border-radius: 0;
  right: 0;
}
.dropdown-menu.show {
  right: 0 !important;
}
.dropdown-menu .dropdown-item {
  margin: 0;
  font-size: 13px;
  padding: 0.5rem;
}
.dropdown-menu .dropdown-item:hover {
  background-color: var(--light);
  border-radius: 0;
  cursor: pointer;
}

/*# sourceMappingURL=main.css.map */
