: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 label {
  margin-bottom: 10px;
}
.custom-select-wrapper .select2-container--default .select2-selection--single {
  background: #fff;
  border: 1px solid var(--themeprimaryclr);
  border-radius: 16px;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--darkclr);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.custom-select-wrapper .select2-container--default .select2-selection--single:hover {
  border-color: var(--themehoverclr);
  box-shadow: none;
}
.custom-select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--darkclr);
  font-weight: 500;
  line-height: 52px;
}
.custom-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.custom-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--themeprimaryclr) transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  transition: transform 0.3s ease;
}
.custom-select-wrapper .select2-container--default .select2-dropdown {
  border-radius: 16px;
  border: 1px solid var(--themeprimaryclr);
  margin-top: 6px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.custom-select-wrapper .select2-container--default .select2-dropdown .select2-search--dropdown {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #f8f8f8;
}
.custom-select-wrapper .select2-container--default .select2-dropdown .select2-search--dropdown input.select2-search__field {
  width: 100% !important;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--themeprimaryclr);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}
.custom-select-wrapper .select2-container--default .select2-dropdown .select2-search--dropdown input.select2-search__field:focus {
  border-color: var(--themehoverclr);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.custom-select-wrapper .select2-container--default .select2-dropdown .select2-results__option {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.custom-select-wrapper .select2-container--default .select2-dropdown .select2-results__option:hover {
  background: var(--themehoverclr);
  color: var(--plainclr);
}
.custom-select-wrapper .select2-container--default .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background: var(--themeprimaryclr);
  color: var(--plainclr);
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--themeprimaryclr);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
}/*# sourceMappingURL=searchabletagsDesign2.css.map */