.moduleLibraryContainer {
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .moduleLibraryContainer .header {
        display: flex;
        justify-content: space-between;
        flex: 0 0 40px;
        border-bottom: 1px solid #DCDCDC;
        font-size: 13px;
        font-family: GlowSemiBold;
        color: #4A4A4A;
        padding-left: 20px;
        padding-top: 10px;
        padding-right: 20px;
    }

    .moduleLibraryContainer .header .header__title .infoIcon {
        margin-left: 4px;
        margin-right: 12px;
        cursor: pointer;
        margin-top: 0;
    }

    .moduleLibraryContainer .header .header__icons-container .open-in-qem {
        margin-right: 15px;
    }

    .moduleLibraryContainer .header .header__icons-container .open-in-qem.disabled {
        opacity: .4;
        pointer-events: none;
    }

    .moduleLibraryContainer .header .header__icons-container img {
        margin-top: 2px;
        cursor: pointer;
    }

    .moduleLibraryContainer .selectedLibrary {
        display: flex;
        padding: 16px 20px 7px 20px;
        justify-content: space-between;
		flex-direction: column;
    }

	.moduleLibraryContainer .selectedLibrary .title {
		display: flex;
		justify-content: space-between;
	}

	.moduleLibraryContainer .selectedLibrary .selectedLibraryPath {
		color: #B6B6B6;
	}

	.moduleLibraryContainer .selectedLibrary .selectedLibraryPath.short {
		direction: rtl;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		position: relative;
		padding-bottom: 4px;
	}

	.moduleLibraryContainer .selectedLibrary .selectedLibraryPath .path {
		margin-bottom: 4px;
		word-break: break-all;
	}

	.moduleLibraryContainer .selectedLibrary .selectedLibrary__title:hover {
        cursor: pointer;
    }

    .moduleLibraryContainer .selectedLibrary .selectedLibrary__title > span {
        font-family: GlowSemiBold;
    }

    .moduleLibraryContainer .selectedLibrary .selectedLibrary__icon__container:hover,
	.moduleLibraryContainer .selectedLibrary .title-icons-container .open-card:hover {
        cursor: pointer;
    }

.moduleLibraryContainer .selectedLibrary .title-icons-container {
	display: flex;
	flex-direction: row-reverse;
}

.moduleLibraryContainer .selectedLibrary .title-icons-container .open-card {
	padding-right: 12px;
}

.moduleLibraryContainer .filtering {
    display: flex;
    flex: 0 0 40px;
    padding-top: 7px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.moduleLibraryContainer .filtering .searching {
    position: relative;
    width: 50%;
}

.moduleLibraryContainer .filtering .searching .ui-input-search {
    width: 100%;
}

.moduleLibraryContainer .filtering .searching .ui-input-search-close {
    top: 17px;
    right: 30px;
    cursor: pointer;
}

.moduleLibraryContainer .filtering .searching .clearSearch {
    position: absolute;
    top: 6px;
    left: calc(100% - 21px);
    display: none;
}

.moduleLibraryContainer .filtering .searching:hover .clearSearch {
    display: block;
}

.moduleLibraryContainer .filtering .searching .clearSearch:hover {
    cursor: pointer;
}

.moduleLibraryContainer .filtering .tag-filter {
    margin-left: 10px;
    width: 50%;
}

.moduleLibraryContainer .filtering .tag-filter .tags-filter .tagsContainer,
.moduleLibraryContainer .filtering .tag-filter .tags-filter.active .tagsContainer {
    min-width: 122px;
}

.moduleLibraryContainer .filtering .tag-filter .tags-filter .tagsContainer .clearDeleteFilter .deleteFilter {
    display: none;
}

.moduleLibraryContainer .main {
    flex: 1 1 0px;
    overflow: hidden;
}

.moduleLibraryContainer .node,
.rowsDragHelperContainer .node {
    display: flex;
    height: 28px;
        cursor: move;
    }

    .moduleLibraryContainer .node {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .moduleLibraryContainer .node.isDragged {
      opacity: 0.4;
    }

    .moduleLibraryContainer .node:not(.rowsDragIsInProgress):hover {
        background-color: #EEF1FE;
    }

        .moduleLibraryContainer .node .name,
        .rowsDragHelperContainer .node .name {
            font-family: GlowRegular;
            font-size: 14px;
            color: #4A4A4A;
            flex: 1 1 auto;
            overflow: hidden;
            margin-left: 4px;
            padding-right: 20px;
        }

        .moduleLibraryContainer .node .name .nodeName,
        .rowsDragHelperContainer .node .name .nodeName {
            padding-top: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .moduleLibraryContainer .node .ui-input-bordered {
            width: 100%;
            padding-left: 10px;
        }

        .moduleLibraryContainer .node .actions,
        .rowsDragHelperContainer .node .actions {
            display: none;
            flex: 0 0 auto;
        }



            .moduleLibraryContainer .node:not(.rowsDragIsInProgress):hover .actions {
                display: flex;
                padding-right: 10px;
            }

            .moduleLibraryContainer .node .actions .editIcon {
                flex: 0 0 25px;
                width: 25px;
                cursor: pointer;
                text-align: center;
                padding-top: 5px;
            }

            .moduleLibraryContainer .node .actions .dragIcon {
                flex: 0 0 25px;
                width: 25px;
                cursor: move;
                text-align: center;
                padding-top: 5px;
            }

            .moduleLibraryContainer .node .actions .copyIcon {
                flex: 0 0 25px;
                width: 25px;
                cursor: pointer;
                text-align: center;
                padding-top: 5px;
            }

            .moduleLibraryContainer .node .actions .trashIcon {
                flex: 0 0 25px;
                width: 25px;
                cursor: pointer;
                text-align: center;
                padding-top: 4px;
            }

            .moduleLibraryContainer .node .actions:not(.hasSubitems) .trashIcon {
                flex: 0 0 22px;
                width: 27px;
            }

            .moduleLibraryContainer .node .actions .collapseExpandIcon {
                flex: 0 0 35px;
                width: 35px;
                cursor: pointer;
                text-align: center;
            }

                .moduleLibraryContainer .node .actions .collapseExpandIcon img {
                    vertical-align: top;
                    margin-top: 13px;
                }

    .moduleLibraryContainer perfect-scrollbar.ps-show-active > .ps.ps--active-y > .ps-overlay:not(.ps-at-top) .ps-indicator-top {
        background: linear-gradient(to bottom, #FDFDFD 0, rgba(255,255,255,0) 100%) !important;
    }

    /* Bottom blur */
    .moduleLibraryContainer perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom {
        background: linear-gradient(to top, #FDFDFD 0, rgba(255,255,255,0) 100%) !important;
    }

    .moduleLibraryContainer .node .stepType,
    .rowsDragHelperContainer .node .stepType {
            vertical-align: top;
            position: relative;
    }

        .moduleLibraryContainer .node .expandCollapseButton {
            background: url("../../../../images/shared/expandCollapse_node_arrowDown.png");
            -moz-background-size: cover;
            -webkit-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
            height: 14px;
            padding: 7px;
            margin-right: 7px;
            align-self: center;
            cursor: pointer;
            transition: 0.30s;
            -webkit-transition: 0.30s;
            -moz-transition: 0.30s;
            -ms-transition: 0.30s;
            -o-transition: 0.30s;
        }

        .moduleLibraryContainer .node .expandCollapseButton.expanded {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        .moduleLibraryContainer .node:hover .expandCollapseButton {
            background-image: url("../../../../images/shared/expandCollapse_node_arrowDown_hover.png");
        }


            .moduleLibraryContainer .node .stepType:not(.budgetTask).task,
            .rowsDragHelperContainer .node .stepType:not(.budgetTask).task {
                padding-top: 7px;
            }

                .moduleLibraryContainer .node .stepType:not(.budgetTask).task .icon,
                .rowsDragHelperContainer .node .stepType:not(.budgetTask).task .icon {
                    background-image: url('../../../../images/tasksList/newTaskIcon.png');
                    width: 16px;
                    height: 16px;
                }

            .moduleLibraryContainer .node .stepType.summary,
            .rowsDragHelperContainer .node .stepType.summary {
                padding-top: 7px;
            }

                .moduleLibraryContainer .node .stepType.summary .icon,
                .rowsDragHelperContainer .node .stepType.summary .icon {
                    background-image: url('../../../../images/tasksList/newSummaryIcon.png');
                    width: 16px;
                    height: 16px;
                }

            .moduleLibraryContainer .node .stepType.milestone,
            .rowsDragHelperContainer .node .stepType.milestone {
                padding-top: 9px;
            }

                .moduleLibraryContainer .node .stepType.milestone .icon,
                .rowsDragHelperContainer .node .stepType.milestone .icon {
                    background: url('../../../../images/tasksList/milestone.png') no-repeat;
                    width: 12px;
                    height: 12px;
                    margin: 0 3px 0 1px;
                }

            .moduleLibraryContainer .node .stepType .milestoneTypeIcon,
            .rowsDragHelperContainer .node .stepType .milestoneTypeIcon {
                font-family: GlowSemibold;
                font-size: 9px;
                color: #4a4a4a;
                position: absolute;
                top: 2px;
                left: 9px;
            }

.moduleLibraryContainer .infoDropdown-container {
    position: absolute;
    top: 1px;
    left: 142px;
    z-index: 10000;
    font-family: GlowRegular;
    font-size: 14px;
    width: 190px;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 41, 199, 0.2);
    display: none;
    opacity: 0;
    line-height: normal;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.moduleLibraryContainer .infoDropdown-container .infoDropdown-arrow {
    content: " ";
    width: 0;
    height: 0;
    position: absolute;
    top: 40px;
}

.moduleLibraryContainer .infoDropdown-container .infoDropdown-arrow.leftArrow {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 5px solid #ffffff;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
    left: -5px;
    top: 16px;
}

.moduleLibraryContainer .infoDropdown-container .infoDropdown-text {
    padding: 15px 18px;
}

.moduleLibraryContainer .infoDropdown-container .infoDropdown-text .ui-btn-link {
    font-size: 14px;
}

.moduleLibraryContainer .no-libraries__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.moduleLibraryContainer .no-libraries__container > span {
    color: #B6B6B6;
    margin-bottom: 8px;
}

.moduleLibraryContainer .no-libraries__container > div {
    color: #5774E7;
}

.moduleLibraryContainer .no-libraries__container:hover > div {
    cursor: pointer;
}

.moduleLibraryContainer .no-steps__container {
    height: 100%;
    padding: 10px 20px 20px 20px;
    color: #B6B6B6;
}

.moduleLibraryContainer .footer {
    padding: 8px 20px 12px 20px;
    border-top: 1px solid #DCDCDC;
    margin-top: 8px;
}

.moduleLibraryContainer .footer .footer__title {
    display: flex;
    justify-content: space-between;
}

.moduleLibraryContainer .footer .footer__title .footer__title-info--container .footer__title-icon {
    margin-left: 5px;
}

.moduleLibraryContainer .footer .footer__progress-bar--container {
    margin-top: 8px;
    width: 100%;
    height: 5px;
    background-color: #FFEDC2;
    border-radius: 4px;
}

.moduleLibraryContainer .footer .footer__progress-bar--container.red {
    background-color: rgba(255, 0, 43, 0.2);
}

.moduleLibraryContainer .footer .footer__progress-bar--container.yellow {
    background-color: rgba(255, 180, 0, 0.2);
}

.moduleLibraryContainer .footer .footer__progress-bar--container.green {
    background-color: rgba(10, 194, 0, 0.2);
}

.moduleLibraryContainer .footer .footer__progress-bar--container.blue{
    background-color: rgba(0, 144, 255, 0.2);
}

.moduleLibraryContainer .footer .footer__progress-bar--container .footer__progress-bar {
    transition: width 1s ease-in;
    height: 5px;
    background-color: #FFD266;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.moduleLibraryContainer .footer .footer__progress-bar--container .footer__progress-bar.red {
    background-color: rgba(255, 0, 43);
}

.moduleLibraryContainer .footer .footer__progress-bar--container .footer__progress-bar.yellow {
    background-color: rgba(255, 180, 0);
}

.moduleLibraryContainer .footer .footer__progress-bar--container .footer__progress-bar.green {
    background-color: rgba(10, 194, 0);
}

.moduleLibraryContainer .footer .footer__progress-bar--container .footer__progress-bar.blue{
    background-color: rgba(0, 144, 255);
}

.moduleLibraryContainer .footer .footer__progress-bar--container .footer__progress-bar.full {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.node__container {
    display: flex;
    width: 0;
    flex-grow: 1;
}