/*Styles used only in milestone card*/
.milestoneCard-container .cardHeader .cardName-container .stepIcon {
    margin-right: 7px;
}

    .milestoneCard-container .cardHeader .cardName-container .milestoneTypeIcon {
        font-family: GlowSemibold;
        font-size: 9px;
        color: #4a4a4a;
        position: absolute;
        top: 9px;
        left: 32px;
    }

.milestoneCard-container .header .stepComponent.fullWorkingHours .topLine-container {
    height: 4px;
}

/*Style for component to take the width by content*/
step-deadline {
    display: inline-block;
}

    .milestoneCard-container .body .stepComponent.milestone {

    }

    .milestoneCard-container .body .stepComponent.milestone .componentValue {
        width: 100%;
        margin: 0;
        display: table;
        min-height: 36px;
    }

        .milestoneCard-container .body .stepComponent.milestone .componentValue .milestoneInfo-container {
            display: table-cell;
            word-break: break-word;
            padding: 4px 10px;
            min-width: 100px;
        }

        /*As Mozilla and Edge do not support break-word - override style browser specifically*/
        @supports ((-moz-appearance:none) or (-ms-ime-align:auto)) {
            .milestoneCard-container .body .stepComponent.milestone .componentValue .milestoneInfo-container {
                word-break: break-all;
            }
        }

        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
            .milestoneCard-container .body .stepComponent.milestone .componentValue .milestoneInfo-container {
                word-break: break-all;
            }
        }

        .milestoneCard-container .body .stepComponent.milestone .componentValue .pencil-container {
            text-align: right;
            padding-left: 5px;
            vertical-align: middle;
            display: table-cell;
        }

            .milestoneCard-container .body .stepComponent.milestone .componentValue .pencil-container .trashIcon {
                margin-right: 6px;
            }

        .milestoneCard-container .body .stepComponent.milestone .componentValue .pencil-container img {
            display: none;
        }

        .milestoneCard-container .body .stepComponent.milestone .componentValue.editable:hover {
            cursor: pointer;
        }

            .milestoneCard-container .body .stepComponent.milestone .componentValue.editable:hover .milestoneInfo-container {
                border-radius: 4px;
                background-color: #f5f5f5;
                cursor: pointer;
            }

            .milestoneCard-container .body .stepComponent.milestone.milestoneBaseline .componentName {
                display: flex;
            }

            .milestoneCard-container .body .stepComponent.milestone.milestoneBaseline .title {
                flex: 1 1 auto;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .milestoneCard-container .body .stepComponent.milestone.milestoneBaseline .buttons-container {
                flex: 0 0 50px;
                display: none;
            }

                .milestoneCard-container .body .stepComponent.milestone.milestoneBaseline .buttons-container .refreshButton,
                .milestoneCard-container .body .stepComponent.milestone.milestoneBaseline .buttons-container .resetButton {
                    cursor: pointer;
                    vertical-align: top;
                    margin-top: 5px;
                }

                .milestoneCard-container .body .stepComponent.milestone.milestoneBaseline .buttons-container .refreshButton {
                    margin-left: 5px;
                    margin-right: 5px;
                    margin-top: 4px;
                }

            .milestoneCard-container .body .stepComponent.milestone.milestoneBaseline.editable:hover .buttons-container {
                display: inline-block;
            }

        .milestoneCard-container .body .stepComponent.milestone .componentValue.editable:hover .pencil-container img {
            display: inline-block;
            cursor: pointer;
        }

        .milestoneCard-container .body .stepComponent.milestone .milestonePicker-container {
            margin: 2px 0px 1px 10px;
            width: 120px;
        }

            .milestoneCard-container .body .stepComponent.milestone .milestonePicker-container .datepicker {
                width: 100%;
                height: 28px;
                border-radius: 4px;
                border: solid 1px #dcdcdc;
                outline: none;
                font-family: GlowRegular;
                font-size: 13px;
                color: #4a4a4a;
                background: #ffffff url(../../../../images/shared/small-calendar.png) no-repeat right 10px center;
                padding: 0 30px 0 10px;
                cursor: pointer;
                margin-top: 2px;
            }

            .milestoneCard-container .body .stepComponent.milestone .milestonePicker-container .datepicker[disabled] {
                border-color: #F1F1F1;
                cursor: default;
            }

    .milestoneCard-container .bottomTabsWrapper .infoForHiddenPredecessors {
        padding-left: 20px;
        padding-top: 15px;
        font-family: GlowRegular;
        font-size: 14px;
        color: #b6b6b6;
    }