.relationsDropdownMultiselect {
    width: 100%;
    position: relative;
}

    .relationsDropdownMultiselect .ui-input-bordered {
        padding-left: 10px;
        width: 100%;
        color: #777;
        font-size: 13px;
        font-family: GlowRegular;
    }

        .relationsDropdownMultiselect .ui-input-bordered.dropdownWithSearch {
            padding-right: 40px;
        }

    /* Clear icon that is shown only when search is enabled */
    .relationsDropdownMultiselect .clear-input {
        width: 10px;
        height: 10px;
        position: absolute;
        top: 12px;
        right: 26px;
        z-index: 999;
        cursor: pointer;
        background: url(../../../../images/shared/close.png);
    }

        .relationsDropdownMultiselect  .clear-input:hover {
            background: url(../../../../images/shared/close-hovered.png);
        }

    /* Arrow icon */
    .relationsDropdownMultiselect .arrowIcon-container {
        width: 24px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
        cursor: pointer;
        padding-top: 15px;
        padding-left: 8px;
    }

        .relationsDropdownMultiselect .arrowIcon-container .arrowIcon {
            width: 6px;
            height: 3px;
            background: url('../../../../images/shared/smallDownArrow.png');
        }

        .relationsDropdownMultiselect .arrowIcon-container.opened .arrowIcon {
            background: url('../../../../images/shared/smallUpArow.png');
        }

        .relationsDropdownMultiselect .arrowIcon-container.disabled {
            opacity: 0.4;
            cursor: default;
        }

    .relationsDropdownMultiselect  .dropdown-content {
        border-radius: 4px;
        background-color: #ffffff;
        box-shadow: 0 2px 4px 0 rgba(0, 41, 199, 0.2), 0 0 2px 0 rgba(70, 89, 191, 0.3);
        position: fixed;
        width: 100%;
        z-index: 1000;
        padding: 12px 0px;
        /*opacity: 0;*/
    }

    .relationsDropdownMultiselect  .dropdown-content.rendered {
        opacity: 1;
    }

        .relationsDropdownMultiselect  .dropdown-content .sectionTitle {
            font-family: GlowSemibold;
            font-size: 14px;
            color: #4a4a4a;
            padding-left: 20px;
            padding-top: 5px;
            padding-bottom: 4px;
        }

            .relationsDropdownMultiselect .dropdown-content .sectionTitle .ui-btn-link {
                display: inline-block;
                margin-left: 10px;
            }

            .relationsDropdownMultiselect .dropdown-content .showSectionButton {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 28px;
            }

        .relationsDropdownMultiselect  .dropdown-content .option {
            display: flex;
            padding: 0px 20px;
            line-height: 24px;
        }

            .relationsDropdownMultiselect .dropdown-content .option[hidden] {
                display: none;
            }

            .relationsDropdownMultiselect  .dropdown-content .option:not(.disabled):hover {
                background-color: #F6F7FE;
                cursor: pointer;
            }

            .relationsDropdownMultiselect .dropdown-content .option.disabled {
                opacity: 0.4;
                cursor: default;
            }

            .relationsDropdownMultiselect .dropdown-content .option.theLastInsideSummary {
                border-bottom: 1px solid #d8d7d7;
            }

            .relationsDropdownMultiselect  .dropdown-content .option .checkbox-container {
                flex: 0 0 28px;
                padding-top: 4px;
            }

            .relationsDropdownMultiselect  .dropdown-content .option .icon-container {
                flex: 0 0 18px;
                padding-top: 5px;
                display: flex;
                justify-content: center;
                margin-left: -3px;
                margin-right: 5px;
            }

                .relationsDropdownMultiselect  .dropdown-content .option .icon-container .icon {
                    background-image: url('../../../../images/tasksList/newTaskIcon.png');
                    width: 16px;
                    height: 16px;
                }

                .relationsDropdownMultiselect  .dropdown-content .option .icon-container.summary .icon {
                    background-image: url('../../../../images/tasksList/newSummaryIcon.png');
                    width: 16px;
                    height: 16px;
                }

                .relationsDropdownMultiselect  .dropdown-content .option .icon-container.milestone .icon {
                    background-image: url('../../../../images/tasksList/milestone.png');
                    width: 12px;
                    height: 12px;
                    margin-top: 1px;
                }

            .relationsDropdownMultiselect  .dropdown-content .option .value-container {
                flex: 1 1 auto;
                font-family: GlowRegular;
                font-size: 14px;
                color: #4a4a4a;
                padding-top: 2px;
                word-break: break-word;
            }

                @supports ((-moz-appearance:none) or (-ms-ime-align:auto)) {
                    .relationsDropdownMultiselect  .dropdown-content .option .value-container {
                        word-break: break-all;
                    }
                }

                @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
                    .relationsDropdownMultiselect  .dropdown-content .option .value-container {
                        word-break: break-all;
                    }
                }

                .relationsDropdownMultiselect  .dropdown-content .option .value-container .idValue {
                    font-size: 13px;
                    color: #808080;
                    white-space: pre;
                }

                .relationsDropdownMultiselect .dropdown-content .option .value-container .stageIcon {
                    width: 12px;
                    height: 12px;
                    vertical-align: top;
                    margin-top: 4px;
                }

                .relationsDropdownMultiselect  .dropdown-content .option .value-container .linkIcon {
                    background: url(../../../../images/tasksList/linkToTask.png) no-repeat;
                    width: 12px;
                    height: 12px;
                    margin-top: 2px;
                    margin-left: 6px;
                    cursor: pointer;
                    display: none;
                }

                .relationsDropdownMultiselect  .dropdown-content .option:hover .linkIcon {
                    display: inline-block;
                }

                .relationsDropdownMultiselect .dropdown-content .option.selectedOption .value-container {
                    font-family: GlowSemibold;
                }

                .relationsDropdownMultiselect .dropdown-content .ps-content {
                    padding-right: 0 !important;
                }

            .relationsDropdownMultiselect .dropdown-content .noOptionsFound-container {
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .relationsDropdownMultiselect .dropdown-content .noOptionsFound-container .noFound {
                    font-family: GlowRegular;
                    font-size: 13px;
                    text-align: center;
                    color: #b6b6b6;
                }
