.Select {
    font-size: $input-font-size;

    .Select__control,
    .Select__control:hover {
        border-color: $gray-400;
        min-height: $input-height;
    }

    .Select__placeholder {
        color: $placeholder-color;
    }

    .Select__menu {
        z-index: 2; // otherwise can be wonky in a modal
    }

    .Select__control--is-focused,
    .Select__control--is-focused:hover {
        border-color: #61b0ff;
        box-shadow: 0 0 0 0.2rem rgba(0, 112, 224, 0.25);
    }

    .Glyph.ChevDown {
        fill: $gray-500;
    }

    .Glyph.Clear {
        fill: $gray-400;
    }

    .Glyph.Clear:hover {
        fill: $gray-500;
    }

    .Select__multi-value {
        background-color: $gray-300;
        border-radius: 3px;
        color: $gray-900;
        padding: 4px;
        // Remove the space below the selected value if selected value is too long
        max-width: 90%;
    }

    .Select__multi-value__label {
        padding: 0;
    }

    .Select__multi-value__remove {
        padding-right: 0;
    }

    .Select__multi-value__remove:hover {
        background-color: inherit;
        color: inherit;
        cursor: pointer;
    }

    &.Select-no-value .Select__control {
        background-color: transparent;
    }

    &.Select-no-value .Select__control.Select__control--is-disabled {
        background-color: $input-disabled-bg;
    }
}
