/*Styles used only in milestone card*/
.projectGroup-container .cardHeader .cardName-container .stepIcon {
    margin-right: 7px;
}

.projectGroup-container .cardHeader .cardName-container .milestoneTypeIcon {
    font-family: GlowSemibold;
    font-size: 9px;
    color: #4a4a4a;
    position: absolute;
    top: 9px;
    left: 32px;
}

.projectGroup-container .header .stepComponent.fullWorkingHours .topLine-container {
    height: 4px;
}

.projectGroup-container .body .stepComponent.milestone {

}

.projectGroup-container .body .stepComponent.milestone .componentValue {
    width: 100%;
    margin: 0;
    display: table;
    min-height: 36px;
}

.projectGroup-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)) {
    .projectGroup-container .body .stepComponent.milestone .componentValue .milestoneInfo-container {
        word-break: break-all;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .projectGroup-container .body .stepComponent.milestone .componentValue .milestoneInfo-container {
        word-break: break-all;
    }
}

.projectGroup-container .body .stepComponent.milestone .componentValue .pencil-container {
    text-align: right;
    padding-left: 5px;
    vertical-align: middle;
    display: table-cell;
}

.projectGroup-container .body .stepComponent.milestone .componentValue .pencil-container .trashIcon {
    margin-right: 6px;
}

.projectGroup-container .body .stepComponent.milestone .componentValue .pencil-container img {
    display: none;
}

.projectGroup-container .body .stepComponent.milestone .componentValue.editable:hover {
    cursor: pointer;
}

.projectGroup-container .body .stepComponent.milestone .componentValue.editable:hover .milestoneInfo-container {
    border-radius: 4px;
    background-color: #f5f5f5;
    cursor: pointer;
}

.projectGroup-container .body .stepComponent.milestone.milestoneBaseline .componentName {
    display: flex;
}

.projectGroup-container .body .stepComponent.milestone.milestoneBaseline .title {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.projectGroup-container .body .stepComponent.milestone.milestoneBaseline .buttons-container {
    flex: 0 0 50px;
    display: none;
}

.projectGroup-container .body .stepComponent.milestone.milestoneBaseline .buttons-container .refreshButton,
.projectGroup-container .body .stepComponent.milestone.milestoneBaseline .buttons-container .resetButton {
    cursor: pointer;
    vertical-align: top;
    margin-top: 5px;
}

.projectGroup-container .body .stepComponent.milestone.milestoneBaseline .buttons-container .refreshButton {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 4px;
}

.projectGroup-container .body .stepComponent.milestone.milestoneBaseline.editable:hover .buttons-container {
    display: inline-block;
}

.projectGroup-container .body .stepComponent.milestone .componentValue.editable:hover .pencil-container img {
    display: inline-block;
    cursor: pointer;
}

.projectGroup-container .body .stepComponent.milestone .milestonePicker-container {
    margin: 2px 0px 1px 10px;
    width: 120px;
}

.projectGroup-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;
}

.projectGroup-container .body .stepComponent.milestone .milestonePicker-container .datepicker[disabled] {
    border-color: #F1F1F1;
    cursor: default;
}

.projectGroup-container .bottomTabsWrapper .infoForHiddenPredecessors {
    padding-left: 20px;
    padding-top: 15px;
    font-family: GlowRegular;
    font-size: 14px;
    color: #b6b6b6;
}


.bottomTabsWrapper .bottomTab .subItem__container {
    padding-top: 10px;
    padding-left: 20px;
}

    .bottomTabsWrapper .bottomTab .subItem__container .subItem {
        display: flex;
        align-items: center;
    }

        .bottomTabsWrapper .bottomTab .subItem__container .subItem:not(:first-child) {
        }

        .bottomTabsWrapper .bottomTab .subItem__container .subItem .subItemName {
            margin-left: 3px;
            padding: 5px;
            flex: 1 1 auto;
            word-break: break-word;
        }


            .bottomTabsWrapper .bottomTab .subItem__container .subItem .subItemName.isProjectGroup:hover,
            .bottomTabsWrapper .bottomTab .subItem__container .subItem .subItemName.isProject:hover {
                cursor: pointer;
                background: #F5F5F5;
                border-radius: 4px;
            }

            .bottomTabsWrapper .bottomTab .subItem__container .subItem .subItemName.isProjectGroup {
                font-family: GlowSemiBold;
                font-size: 14px;
            }

        .bottomTabsWrapper .bottomTab .subItem__container .subItem .pencil-container {
            display: none;
        }

        .bottomTabsWrapper .bottomTab .subItem__container .subItem:hover .subItemName.isProjectGroup~.pencil-container {
            display: inline-block;
            align-self: center;
            flex: 0 0 30px;
            text-align: center;
            cursor: pointer;
        }
