:root {
  --themeprimaryclr: #ff7000;
  /* Primary color */
  --themehoverclr: #ff8426;
  /* Hover/active color */
  --themesecondaryclr: #696969;
  /* Secondary/muted text */
  --darkclr: #000;
  /* Dark text / ink */
  --plainclr: #fff;
  /* White / plain background */
  --lightbg: #fafafa;
  /* Light background / surfaces */
  --errorclr: #ff4c4c;
  /* Error / remove color */
}

.custom-select-wrapper {
  max-width: 400px;
  margin: auto;
}
.custom-select-wrapper .select-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--themeprimaryclr);
  font-size: 15px;
}
.custom-select-wrapper .searchable-select + .select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
  background: var(--lightbg);
  border: 2px solid var(--themeprimaryclr);
  border-radius: 14px;
  min-height: 52px;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 22px;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.select2-container--default .select2-selection--multiple:hover {
  border-color: var(--themesecondaryclr);
  box-shadow: 0 4px 12px rgba(2, 189, 10, 0.25);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: var(--themeprimaryclr);
  color: var(--plainclr);
  margin-top: 0;
  border: none;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  gap: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: var(--plainclr);
  font-weight: bold;
  cursor: pointer;
  margin-right: 4px;
  transition: 0.3s;
  border: none;
  padding: 0px 8px;
  left: 1px;
  top: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
  color: var(--errorclr);
  background-color: transparent;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:focus {
  background-color: transparent;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin: 0;
  border: none !important;
  outline: none !important;
  background: transparent;
  font-size: 14px;
  height: 16px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 14px;
  margin-top: 0px;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 16px;
}

.select2-dropdown {
  background: var(--plainclr);
  border-radius: 12px;
  border: 1px solid var(--themeprimaryclr);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.select2-dropdown .select2-search--dropdown {
  padding: 10px;
  border-bottom: 1px solid var(--themesecondaryclr);
  background: var(--lightbg);
}
.select2-dropdown .select2-search--dropdown input {
  width: 100% !important;
  padding: 8px 12px;
  border: 1px solid var(--themesecondaryclr);
  border-radius: 8px;
}
.select2-dropdown .select2-search--dropdown .select2-search__field {
  border-radius: 10px;
  border: 1px solid var(--themeprimaryclr);
  padding: 8px 12px;
  outline: none;
  font-size: 14px;
}

.select2-container--default .select2-results__option {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--themeprimaryclr);
  color: var(--plainclr);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  display: flex;
  align-items: stretch;
}/*# sourceMappingURL=searchabletagsDesign1.css.map */