.phaseStatusDropdown {
    display: inline-block;
    width: 100%;
    position: relative;
    outline: none !important;
}

    .phaseStatusDropdown .ui-input-bordered {
        padding-left: 10px;
        width: 100%;
        cursor: pointer;
    }

        .phaseStatusDropdown .ui-input-bordered.opened {
            border: 1px solid #5774e7;
        }

        .phaseStatusDropdown .ui-input-bordered.disabled {
            opacity: 0.4;
            cursor: default;
        }

        .phaseStatusDropdown .ui-input-bordered .option {
            height: 100%;
            padding-top: 3px;
        }

        .phaseStatusDropdown .ui-input-bordered .option img {
            margin-right: 6px;
            vertical-align: top;
            margin-top: 2px;
        }

    /* Arrow icon */
    .phaseStatusDropdown .arrowIcon-container {
        width: 24px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
        cursor: pointer;
        padding-top: 15px;
        padding-left: 8px;
    }

        .phaseStatusDropdown .arrowIcon-container .arrowIcon {
            width: 6px;
            height: 3px;
            background: url('../../../../images/shared/smallDownArrow.png');
        }

        .phaseStatusDropdown .arrowIcon-container.opened .arrowIcon {
            background: url('../../../../images/shared/smallUpArow.png');
        }

        .phaseStatusDropdown .arrowIcon-container.disabled {
            opacity: 0.4;
            cursor: default;
        }

    .phaseStatusDropdown .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: 100%;
        z-index: 1000;
        padding: 12px 0px;
        min-height: 50px;
        margin-top: 4px;
    }

        .phaseStatusDropdown .dropdown-content .option {
            display: flex;
            padding: 3px 20px;
        }

            .phaseStatusDropdown .dropdown-content .option:hover {
                background-color: #F6F7FE;
                cursor: pointer;
            }

            .phaseStatusDropdown .dropdown-content .option .value-container {
                flex: 1 1 auto;
                font-family: GlowRegular;
                font-size: 14px;
                color: #4a4a4a;
                padding-top: 2px;
            }

                .phaseStatusDropdown .dropdown-content .option .value-container.selectedOption {
                    font-family: GlowSemibold;
                }

                .phaseStatusDropdown .dropdown-content .option img {
                    margin-right: 10px;
                    vertical-align: top;
                    margin-top: 3px;
                }

.phaseStatusDropdown [hidden] {
    display: none !important;
}