.assignee-filter {
    display: inline-block;
    width: 180px;
    max-width: 100%;
    position: relative;
}

    .assignee-filter .ui-input-bordered {
        padding-left: 10px;
        padding-right: 24px;
        width: 100%;
        cursor: default;
    }

    /* Clear icon that is shown only when search is enabled */
    .assignee-filter .clear-input {
        width: 10px;
        height: 10px;
        position: absolute;
        top: 12px;
        right: 26px;
        z-index: 999;
        cursor: pointer;
        background: url(../../../../images/shared/close.png);
    }

        .assignee-filter .clear-input:hover {
            background: url(../../../../images/shared/close-hovered.png);
        }

    /* Arrow icon */
    .assignee-filter .arrowIcon-container {
        width: 24px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
        cursor: pointer;
        padding-top: 13px;
        padding-left: 8px;
    }

        .assignee-filter .arrowIcon-container .arrowIcon {
            width: 6px;
            height: 3px;
            background: url('../../../../images/shared/smallDownArrow.png');
        }

            .assignee-filter .arrowIcon-container.opened .arrowIcon {
                background: url('../../../../images/shared/smallUpArow.png');
            }

        .assignee-filter .arrowIcon-container.disabled {
            opacity: 0.4;
            cursor: default;
        }

    .assignee-filter .dropdown-content {
        overflow-x: hidden !important;
        overflow-y: hidden;
        border-radius: 4px;
        background-color: #ffffff;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
        height: 150px;
        position: fixed;
        width: 440px;
        z-index: 1000;
        margin-top: 2px;
    }

        .assignee-filter .dropdown-content .section {
            padding: 10px 0;
            width: 50%;
            height: 100%;
            display: none;
        }

            .assignee-filter .dropdown-content .section.shown {
                display: block;
            }

            .assignee-filter .dropdown-content .section.groups-section {
                border-right: 1px solid #d8d7d7;
            }

            .assignee-filter .dropdown-content .section.users-section {
                background-color: #fbfbfb;
            }

            .assignee-filter .dropdown-content .section .scrollable {
                height: 100%;
                position: relative;
            }

            .assignee-filter .dropdown-content .section .section-title {
                padding-left: 20px;
                font-family: GlowSemibold;
                font-size: 14px;
                color: #4a4a4a;
                margin-top: 11px;
                margin-bottom: 7px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .assignee-filter .dropdown-content .section .section-title .ui-btn-link {
                height: 20px;
            }

            .assignee-filter .dropdown-content .section .section-title .selectedGroupName {
                display: inline-block;
                font-size: 13px;
                color: #808080;
                font-family: GlowRegular;
            }

            .assignee-filter .dropdown-content .section .section-title.all-users-title {
                margin-top: 5px;
                border-top: 1px solid #d8d7d7;
                padding-top: 10px;
            }

            .assignee-filter .dropdown-content .section .section-title.all-users-title.withoutUsersInGroup {
                margin-top: 0;
                border-top: none;
            }

            .assignee-filter .dropdown-content .section .resourceRow {
                display: flex;
                width: 100%;
                padding-left: 20px;
                cursor: pointer;
                align-items: center;
                min-height: 28px;
            }

            .assignee-filter .dropdown-content .section.groups-section .resourceRow {
                padding-left: 0px;
            }

            .assignee-filter .dropdown-content .section .resourceRow .selectedMarkContainer {
                flex: 0 0 20px;
                vertical-align: middle;
            }

                .assignee-filter .dropdown-content .section .resourceRow .selectedMarkContainer .selectedMarkIcon {
                    height: 28px;
                    width: 2px;
                    background-color: #5774e7;
                    display: none;
                }

                .assignee-filter .dropdown-content .section .resourceRow.hasSelectedUser .selectedMarkContainer .selectedMarkIcon {
                    display: block;
                }

                .assignee-filter .dropdown-content .section .resourceRow.hasSelectedUser .resourceItemNameContainer .resourceItemText {
                    color: #5774e7;
                }

            .assignee-filter .dropdown-content .section .resourceRow.specificGroup {
                cursor: default;
            }

            .assignee-filter .dropdown-content .section .resourceRow.hovered,
            .assignee-filter .dropdown-content .section.users-section .resourceRow:hover {
                background: #F6F7FE;
            }

            .assignee-filter .dropdown-content .section .resourceRow .checkbox-container {
                flex: 0 0 28px;
                padding-top: 4px;
            }

            .assignee-filter .dropdown-content .section .resourceRow .resourceItemNameContainer {
                flex: 1 1 auto;
            }

            .assignee-filter .dropdown-content .section .resourceRow .resourceItemNameContainer .resourceItemText {
                position: relative;
                font-size: 14px;
                font-family: GlowRegular;
                word-break: break-word;
                color: #4a4a4a;
                padding-right: 5px;
            }

            /*As Mozilla and Edge do not support break-word - override style browser specifically*/
            @supports ((-moz-appearance:none) or (-ms-ime-align:auto)) {
                .assignee-filter .dropdown-content .section .resourceRow .resourceItemNameContainer .resourceItemText {
                    word-break: break-all;
                }
            }

            @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
                .assignee-filter .dropdown-content .section .resourceRow .resourceItemNameContainer .resourceItemText {
                    word-break: break-all;
                }
            }

            .assignee-filter .dropdown-content .section .resourceRow.selected .resourceItemNameContainer .resourceItemText {
                color: #5774e7;
            }

            .assignee-filter .dropdown-content .section .resourceRow .rightArrowContainer {
                vertical-align: middle;
                flex: 0 0 25px;
            }

            .assignee-filter .dropdown-content .section .resourceRow .rightArrowContainer .rightArrowIcon {
                width: 6px;
                height: 10px;
                background: url(/images/graphs/enter_resource_arrow_button.png);
            }

            .assignee-filter .dropdown-content .section .resourceRow.hovered .rightArrowContainer .rightArrowIcon {
                background: url(/images/graphs/enter_resource_arrow_button_hovered.png);
            }

            .assignee-filter .dropdown-content .section .resourceRow.isLastDefaultGroup {
                border-bottom: solid 1px #dcdcdc;
            }

            .assignee-filter .dropdown-content .section .multigroupMembersContainer {
                height: 100%;
                width: 100%;
                text-align: center;
                display: table;
            }

            .assignee-filter .dropdown-content .section .multigroupMembersContainer .multigroupMembersInfo {
                display: table-cell;
                vertical-align: middle;
            }

            .assignee-filter .dropdown-content .section .multigroupMembersContainer .title {
                margin-top: 20px;
                font-family: GlowSemibold;
                font-size: 14px;
                color: #808080;
            }

            .assignee-filter .dropdown-content .section .multigroupMembersContainer .subgroupsNames {
                font-family: GlowRegular;
                font-size: 13px;
                color: #b6b6b6;
                width: 180px;
                margin-left: 45px;
                word-break: break-word;
                padding-right: 52px;
                overflow: hidden;
            }

            /*As Mozilla and Edge do not support break-word - override style browser specifically*/
            @supports ((-moz-appearance:none) or (-ms-ime-align:auto)) {
                .assignee-filter .dropdown-content .section .multigroupMembersContainer .subgroupsNames {
                    word-break: break-all;
                }
            }

            @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
                .assignee-filter .dropdown-content .section .multigroupMembersContainer .subgroupsNames {
                    word-break: break-all;
                }
            }

            .assignee-filter .dropdown-content .section .topBlur {
                position: absolute;
                height: 12px;
                width: 50%;
                pointer-events: none;
                /* Go from completely solid white on the top to completely transparent on the bottom */
                background-image: linear-gradient(rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
                top: 10px;
            }

            .assignee-filter .dropdown-content .section .bottomBlur {
                position: absolute;
                height: 12px;
                width: 50%;
                pointer-events: none;
                /* Go from completely transparent on the top to completely solid white on the bottom */
                background-image: linear-gradient(rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%);
                bottom: 10px;
            }

            .assignee-filter .dropdown-content .section.groups-section .topBlur {
                width: 49%;
            }

            .assignee-filter .dropdown-content .section.groups-section .bottomBlur {
                width: 49%;
            }

            .assignee-filter .dropdown-content .section.users-section .topBlur {
                /* Go from completely solid white on the top to completely transparent on the bottom */
                background-image: linear-gradient(#fbfbfb 10%, rgba(255, 255, 255, 0) 100%);
            }

            .assignee-filter .dropdown-content .section.users-section .bottomBlur {
                /* Go from completely transparent on the top to completely solid white on the bottom */
                background-image: linear-gradient(rgba(255, 255, 255, 0) 10%, #fbfbfb 100%);
            }

            /* Top blur */
            .assignee-filter .dropdown-content .section.users-section perfect-scrollbar.ps-show-active > .ps.ps--active-y > .ps-overlay:not(.ps-at-top) .ps-indicator-top {
                background: linear-gradient(to bottom,#fbfbfb 0,rgba(255,255,255,0) 100%) !important;
            }

            /* Bottom blur */
            .assignee-filter .dropdown-content .section.users-section perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom {
                background: linear-gradient(to top,#fbfbfb 0,rgba(255,255,255,0) 100%) !important;
            }

        .assignee-filter .dropdown-content .noGroupsMessageContainer {
            font-family: GlowRegular;
            font-size: 14px;
            text-align: center;
            color: #b6b6b6;
            height: 100%;
            width: 100%;
            display: none;
        }

            .assignee-filter .dropdown-content .noGroupsMessageContainer.shown {
                display: table;
            }

            .assignee-filter .dropdown-content .noGroupsMessageContainer .noGroupsMessageText {
                display: table-cell;
                vertical-align: middle;
            }
