.select2-placeholder {
  position: relative;
}

.select2-placeholder select.form-control:not([size]):not([multiple]) {
  color: #bbb !important;
  padding-left: 12px;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  line-height: normal;
}

.select2-placeholder_active select.form-control:not([size]):not([multiple]) {
  color: var(--color-black) !important;
}

.select2-placeholder_active:before,
.select2-placeholder:after {
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  /*noinspection CssNoGenericFontName*/
  font-family: "Font Awesome 5 Pro";
  color: var(--color-858585);
  display: block;
  font-size: 10px;
  position: absolute;
  cursor: pointer;
  z-index: 0;
}

.select2-placeholder_active:before {
  content: "×";
  top: 8px;
  right: 30px;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  color: var(--color-black);
  opacity: 0.4;
  font-weight: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.select2-placeholder:after {
  content: "\f078";
  right: 15px;
  top: 14px;
}

.select2-placeholder .select2-container {
  z-index: 1;
}
