.select2-container .select2-container--default .select2-selection--multiple,
.select2-container--default {
  .select2-dropdown {
    top: 4px;
    padding: 4px 0;
    border: none;
    border-radius: 3px !important;
    box-shadow: 0 9px 28px 8px #0000000d;
  }

  .select2-selection--single,
  .select2-selection--multiple {
    display: flex;
    align-items: center;
    width: 100%;
    height: 36px !important;
    padding: 0;
    border: 1px solid #c1c7d0;
    border-radius: 3px !important;
    color: var(--primary-colors-almost-black);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-indent: 1px;
  }

  .select2-selection__arrow {
    position: relative;
    display: flex;
    align-items: center;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    margin-left: auto;

    & b {
      position: relative;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      box-sizing: border-box;
      width: 16px;
      height: 16px;
      border: 2px solid transparent;
      border-radius: 100px;
      transform: scale(1);

      &::after {
        position: absolute;
        display: block;
        box-sizing: border-box;
        width: 8px;
        height: 8px;
        border-right: 1.5px solid var(--elements-e-300);
        border-bottom: 1.5px solid var(--elements-e-300);
        transform: rotate(45deg);
        content: '';
      }
    }
  }

  .select2-results__options {
    color: var(--primary-colors-almost-black);
    font: var(--roboto-13-400);
    text-align: left;
  }

  .select2-results__option {
    padding: 5px 12px;
  }

  .select2-results__option--selected {
    color: var(--topaz-topaz);
    background-color: var(--primary-colors-white) !important;
  }

  .select2-results__option--highlighted {
    color: var(--primary-colors-almost-black) !important;
    background-color: var(--background-bg-200) !important;
  }

  .select2-dropdown--below .select2-search {
    display: none;
  }

  .select2-selection__rendered {
    display: flex;
    align-items: center;
    margin: 0;

    .select2-selection__choice {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      height: 28px;
      margin: 0 4px 0 0;
      padding: 0;
      border: none;
      border-radius: 6px;
      color: var(--primary-colors-almost-black);
      font: var(--roboto-13-500);
      background-color: var(--background-bg-200);

      & span {
        padding-left: 8px;
        vertical-align: text-top;
      }
    }

    .select2-selection__choice__remove {
      position: static;
      padding: 9px;
      border: none;
      color: var(--primary-colors-almost-black);
      font-size: 19px;
      font-weight: 100;

      &:hover {
        background-color: inherit;
      }
    }
  }

  .select2-selection--multiple {
    padding: 8px 12px;
  }

  .select2-search--inline {
    display: flex;
    width: 100%;

    .select2-search__field {
      margin: 0;

      &::placeholder {
        color: var(--elements-e-300);
      }
    }
  }
}

.select2-container--focus .select2-selection {
  border: var(--focused-border) !important;
}

.select2-container--open {
  .select2-selection__arrow {
    & b {
      border: 2px solid transparent !important;
      transform: rotate(180deg) !important;

      &::after {
        left: 4px;
      }
    }
  }
}
