.GlobalSearchResults {
    padding-left: 0;
    position: relative;

    > .LoadingIndicator {
        top: 20px;
        transform: scale(.75, .75);
    }

    .Select {
        box-sizing: border-box;
        position: relative;
    }

    .Select-menu-outer {
        max-height: 768px;
    }

    /* as it was specified in react-select library */
    .Select-menu {
        max-height: 766px;
    }

    .Select-input {
        height: 40px;
    }

    /* stylelint-disable selector-no-type */
    .Select-input > input {
        line-height: 24px;
        max-width: $global_search_max_width_input;
    }
    /* stylelint-enable selector-no-type */

    .GlobalSearchResults-option {
        border-bottom: 1px solid $grey_150;
        cursor: pointer;
        min-height: 60px;
        padding: 5px 10px;
    }

    .GlobalSearchResults-option:hover {
        background: $mouse;
        border-color: $mouse;
    }

    /* stylelint-disable max-nesting-depth */
    .GlobalSearchResults-option .GlobalSearchResultsOption {

        &-image {
            cursor: pointer;
            float: left;
            height: 50px;
            margin-right: 10px;
            width: 50px;

            .TrackAlbumArt {
                max-height: 48px;
                max-width: 48px;
            }

            &-placeholder {
                background-color: $mouse;
                border: 3px;
                height: 48px;
                width: 48px;
            }

        }

        &-code {
            float: right;
        }

        &-artist {
            color: $grey_400;
        }

        &-name {
            height: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 280px;
        }

    }
    /* stylelint-enable max-nesting-depth */

    .Icons-search {
        position: absolute;
        right: 10px;
        top: 25%;
    }

    .Select-noresults {
        padding: 0;
        text-align: left;
    }

    /* stylelint-disable max-nesting-depth */
    .SearchResultsLoadingIndicator {
        margin: 0 auto;
        padding: 30px 20px;

        .LoadingIndicator {
            transform: scale(.5, .5);
        }

    }
    /* stylelint-enable max-nesting-depth */

}
