.custom-select .select2-container--default .select2-selection--single {
  border-color: var(--color-border-width-border-width-inactive);
  border-radius: var(--border-radius-md);
  height: 48px;
  display: flex;
  align-items: center;
}
.custom-select .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .custom-select .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: var(--border-radius-md);
}
.custom-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: var(--space-lg);
  padding-right: var(--space-xs);
  padding-right: var(--space-3xl);
  width: 100%;
}
.custom-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px;
  right: var(--space-lg);
}
.custom-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 8.2px 6px 0 6px;
  border-color: var(--color-foreground-foreground-default) transparent transparent transparent;
}
.custom-select .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-width: 0 6px 8.2px 6px;
  border-color: transparent transparent var(--color-foreground-foreground-default) transparent;
}
body .select2-container--open .select2-dropdown--below,
body .select2-container--open .select2-dropdown--above {
  box-shadow: 0px 8px 28px -4px #01041433;
  border: 0;
  border-radius: var(--border-radius-md);
  margin-top: var(--space-sm);
  overflow: hidden;
}
body .select2-container--open .select2-dropdown--above {
  margin-bottom: var(--space-sm);
  margin-top: 0;
}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selected.select2-results__option--selectable {
  background-color: var(--color-surface-surface-subtle-neutral);
  color: var(--color-foreground-foreground-active);
  font-weight: var(--font-weight-bold);
}
body .select2-container--default .select2-results__option {
  padding: var(--space-md) 56px var(--space-md) var(--space-lg);
  font-size: var(--typography-font-size-label1-sm);
  line-height: var(--typography-line-height-label1-sm);
  color: var(--color-foreground-foreground-default);
}
body .select2-container--default .select2-results__option--selected {
  background-color: var(--color-surface-surface-subtle-neutral);
  color: var(--color-foreground-foreground-active);
  position: relative;
  font-weight: var(--font-weight-bold);
}
body .select2-container--default .select2-results__option--selected:after {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  display: inline-flex;
  background-color: var(--color-foreground-foreground-active);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../select/images/check-24.svg');
  mask-image: url('../select/images/check-24.svg');
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-surface-surface-subtle-neutral);
  color: var(--color-foreground-foreground-default);
}
