/* [project]/src/components/ui/multiSelectDropdown.css [app-client] (css) */
.multi-select-dropdown-container {
  width: 316px;
  position: relative;
}

.multi-select-dropdown-label {
  height: 10px;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.multi-select-dropdown-header {
  cursor: pointer;
  background: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  display: flex;
}

.multi-select-dropdown-arrow {
  color: gray;
  height: 18px;
}

.multi-select-dropdown-options {
  z-index: 999;
  background-color: #fff;
  border: 1px solid #ccc;
  max-height: 200px;
  padding: 5px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
}

.multi-select-dropdown-option {
  cursor: pointer;
  border-bottom: 1px solid #eee;
  align-items: center;
  padding: 8px;
  display: flex;
}

.multi-select-dropdown-option:last-child {
  border-bottom: none;
}

.multi-select-dropdown-option:hover {
  background-color: #f0f0f0;
}

.multi-select-dropdown-option.selected {
  background-color: #e1e8f0;
}

.multi-select-dropdown-search {
  padding: 10px;
}

.multi-select-dropdown-search-input {
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
  padding: 5px;
}

.multi-select-dropdown-select-all {
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.multi-select-dropdown-select-all-label {
  margin-left: 8px;
}

.multi-select-dropdown-option {
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.multi-select-dropdown-option-label {
  margin-left: 8px;
}

.label-styles {
  font-size: 12px;
  font-weight: 500;
}

.placeholder-style {
  color: gray;
  font-size: 12px;
}

.placeholder-style-selected {
  color: #000;
  font-size: 12px;
}

.custom-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid gray;
  border-radius: 4px;
  outline: none;
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.custom-checkbox:checked {
  background-color: #eaf4ff;
}

.custom-checkbox:checked:after {
  content: "";
  border: 2px solid #669edb;
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 10px;
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(45deg);
}

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