.ArtistProfilesList {
    height: auto;
    opacity: 1;
    transition: opacity .3s ease-in;

    &-hidden {
        height: 0;
        opacity: 0;
        overflow: hidden;
    }

    &-title {
        padding: 10px;
    }

    &-items {
        height: auto;
        max-height: 420px;
        overflow: hidden;
        padding-right: 13px;

        &:hover {
            overflow: auto;
        }
    }

    &-no-result {
        background-color: $gray-100;
        border-radius: 4px;
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: center;

        &-text {
            color: $gray-400;
            padding-bottom: 10px;
            margin-top: 30px!important;
        }
        &-no-more-result-text, p {
            color: $gray-600;
            padding: 5px!important;
            margin-top: 5px!important;
            font-size: 13px;
        }
    }

    &-fetch-more {
        width: 100%;
        padding: 25px 0 25px 0;
        text-align: center;
        padding-right: 13px;
    }
}

.No-result-icon {
    position: relative;
    top: 10px;
}
