.futureLoadDropdown {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    position: relative;
}

    .futureLoadDropdown .ui-input-bordered {
        width: 100%;
        cursor: default;
        white-space: nowrap;
        line-height: 14px;
        border: 0;
        padding: 0;
    }

    .futureLoadDropdown .ui-input-bordered.opened {
        outline: none;
        line-height: 14px;
    }

    /* Arrow icon */
    .futureLoadDropdown .arrowIcon-container {
        display: flex;
        align-items: center;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 800;
        cursor: pointer;
    }

        .futureLoadDropdown .arrowIcon-container .arrowIcon {
            width: 6px;
            height: 3px;
            background: url('../../../../images/shared/smallDownArrow.png');
        }

        .futureLoadDropdown .arrowIcon-container.opened .arrowIcon {
            background: url('../../../../images/shared/smallUpArow.png');
        }

        .futureLoadDropdown .arrowIcon-container.disabled {
            opacity: 0.4;
            cursor: default;
        }

    .futureLoadDropdown .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: absolute;
        width: 218px;
        z-index: 1000;
        padding: 12px 0px;
        min-height: 43px;
        margin-top: 2px;
    }

        .futureLoadDropdown .dropdown-content .title {
            font-family: GlowSemiBold;
            font-size: 14px;
            color: #4A4A4A;
            padding: 0px 20px;
            height: 27px;
        }

        .futureLoadDropdown .dropdown-content .option {
            display: flex;
            padding: 2px 20px;
            height: 28px;
            align-items: center;
        }

        .futureLoadDropdown .dropdown-content .option:hover {
            background-color: #F6F7FE;
            cursor: pointer;
        }

            .futureLoadDropdown .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)) {
                .futureLoadDropdown .dropdown-content .option .value-container {
                    word-break: break-all;
                }
            }

            @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
                .futureLoadDropdown .dropdown-content .option .value-container {
                    word-break: break-all;
                }
            }

            .futureLoadDropdown .dropdown-content .option .value-container.selectedOption {
                color: #5774E7;
            }

        .futureLoadDropdown .dropdown-content .addInactiveSection {
            border-top: 1px solid #DCDCDC;
            height: 40px;
            margin-top: 13px;
            display: flex;
            padding-left: 20px;
            padding-top: 12px;
            align-items: center;
        }

            .futureLoadDropdown .dropdown-content .addInactiveSection .ui-checkbox {
                flex: 0 0 16px;
            }

            .futureLoadDropdown .dropdown-content .addInactiveSection .checkBoxTitle {
                flex: 1 1 auto;
                cursor: pointer;
                display: inline-block;
                font-family: GlowRegular;
                font-size: 14px;
                color: #4a4a4a;
                -webkit-user-select: none; /* Chrome all / Safari all */
                -moz-user-select: none; /* Firefox all */
                -ms-user-select: none; /* IE 10+ */
                user-select: none; /* Likely future */
            }

    .futureLoadDropdown perfect-scrollbar .ps-content {
        padding-right: 0 !important;
    }