.Dropdown {
    color: var(--gray-900);
    width: unset;

    &-option,
    &-option-icon {
        align-items: center;
        display: flex;
    }

    &-option-icon {
        margin-right: 0.5rem;
    }

    .Select {

        &__group {
            padding-bottom: 0;
        }

        &__group-heading {
            font-size: 100%;
        }

        &__menu {
            width: auto;
            min-width: 100%;
            max-width: 600px;
        }

        &__option {

            &--is-selected {

                .Glyph {
                    fill: var(--white);
                }
            }
        }

        &--is-disabled {
            color: var(--gray-500);
        }
    }

    &.separateFirstOption {

        .Select__menu .Select__option:first-child {
            border-bottom: 1px solid var(--gray-400);
        }
    }

    &.alignRight {

        .Select__menu {
            right: 0;
        }
    }

    .Select__indicator-separator {
        display: none;
    }
}
