:root {
    --main-text-color: #4a4a4a;
    --link-blue: #5774e7;
    --border-line: 1px solid #dcdcdc;
    --trans-duration: 0.4s;
    --trans-fn: cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-line-opacity: 1px solid rgba(220, 220, 220, 0.4);
    --border-light-blue: #abb8f8;
}

.mt-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    /* padding: 0 20px 0 20px; */
    box-sizing: border-box;
}

.mt-container .mt-body {
    display: flex;
    height: calc(100% - 58px);
    background-color: #ffffff;
}

.mt-container .mt-body .mt-sidebar {
    flex: 0 0 auto;
}

.mt-container .mt-body .mt-sidebar .side-bar {
    height: 100%;
    border-right: var(--border-line);
}

/* table START */

.mt-container .mt-table-wrapper {
    height: 100%;
    width: 100%;
    min-width: 0px;
    border-top: var(--border-line);
    /* border-left: var(--border-line); */
    /* border-right: var(--border-line); */
}

.mt-container .mt-table-wrapper perfect-scrollbar .ps {
    display: flex;
    align-items: baseline;
}

.mt-container .mt-table-wrapper .menuButtons-container .columns perfect-scrollbar .ps .ps-content {
    width: 100%;
}

.mt-container .mt-table {
    height: 100%;
    /* overflow: hidden; */
}

.mt-container .mt-table--expand {
    height: 100%;
    /* overflow: auto; */
}

.mt-container .mt-table__header {
    display: flex;
    flex-wrap: nowrap;
    height: 41px;
    width: max-content;
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: var(--border-line);
    z-index: 2;
    padding-right: 20px;
}

.mt-container .mt-table__header .mt-table__header-selectAll {
    margin-top: 10px;
    margin-left: 7px;
}

.mt-container .mt-header__settings {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 36px;
    min-width: 36px;
    height: 100%;
}

.mt-container .mt-table__body {
    width: 100%;
    color: #4a4a4a;

}

.mt-container .mt-table__content{
    width: max-content;
}

.mt-container .mt-table__category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 4px 0;
    border-bottom: var(--border-line-opacity);
    position: sticky;
    top: 40px;
    left: 0;
    background: #ffffff;
    z-index: 1;
}

.mt-container .mt-table__category-title.group-tasks {
    height: 40px;
    z-index: 1;
    border-bottom: none;
    margin-bottom: 1px;
}

.mt-container .mt-table__category-title my-tasks-category-title {

}

.mt-container .mt-table__category-title include-group-tasks {
    min-width: 36px;
}

.mt-container .no-tasks {
    color: #b6b6b6;
    background-color: white;
    padding: 5px 0 5px 30px;
    width: max-content;
    position: sticky;
    left: 0;
}

.mt-container .taskCard {
    display: flex;
    flex: 1 1 auto;
}
.mt-container .topStepCardContainer {
    flex: 1 1 auto;
}

.mt-container.mt-container_ae .topStepCardContainer {
    flex: 0 1 auto;
}

/* .mt-container .my-tasks__task-card-wrapper {
    max-width: 550px;
    min-width: 550px;
} */

/* table END */

/* table row START */

.mt-container .mt-table__row {
    display: flex;
    /* align-items: flex-start; */
    flex-wrap: nowrap;
    min-height: 28px;
    /* width: max-content; */
    border-top: var(--border-line-opacity);
    border-bottom: var(--border-line-opacity);
    margin-top: -1px;
    background: #ffffff;
}

.mt-container .mt-table__row.disabled {
    opacity: .4;
    pointer-events: none;
}

.mt-container .mt-table__row--selectedBudget {
    background: #FFF7E5;
}

.mt-container .mt-table__row--hovered:hover,
.mt-container .mt-table__row_hover {
    background: #eef1fe;
}

.mt-container .mt-table__row--selected {
    background: #eef1fe;
}

.mt-container .mt-table__row--selected .cell-wrapper__name {
    color: inherit;
}

.mt-container .mt-table__row--selected .cell-wrapper__name:hover {
    cursor: default;
    color: inherit;
}
.mt-container .mt-table__row--selected .cell-wrapper__name .cell-wrapper__group-icon:hover {
    cursor: pointer;
}

.mt-container .mt-table__row--hovered:hover img,
.mt-container .mt-table__row_hover img {
    visibility: visible;
}

.mt-container .mt-table__row--hovered:hover .hidden_element .inherited-icon,
.mt-container .mt-table__row_hover .hidden_element .inherited-icon {
    display: none;
}

.mt-container .settings-cell {
    display: flex;
    align-items: center;
    width: 36px;
    min-width: 36px;
    /* height: 100%; */
    padding-left: 8px;
}

.mt-container .settings-cell img {
    visibility: hidden;
}

.mt-container .settings-cell img:hover {
    cursor: pointer;
}

.mt-container .cell-padding.cell__inner-wrapper {
    padding: 0;
    width: 100%;
    display: block;
}

.mt-container .cell-name__suggestedResource.cell__inner-wrapper {
    width: 100%;
}

.mt-container .cell-name__suggestedResource.cell__inner-wrapper .cell__inner,
.mt-container .cell-name__budgetedResource.cell__inner-wrapper .cell__inner,
.mt-container .cell-name__budget.cell__inner-wrapper .cell__inner {
    display: block;
}


.mt-container .cell-padding.cell__inner-wrapper.cell-assignee {
    cursor: pointer;
}

.mt-container .cell__inner-wrapper .cell__inner {
    width: 100%;
    padding: 6px 8px;
    border-bottom: var(--border-line-opacity);
    display: flex;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 32px;
    max-height: 32px;
}

.mt-container .cell__inner-wrapper.cell-assignee .cell__inner {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.mt-container .cell__inner-wrapper .cell__inner.cell__stage-wrapper {
    border-bottom: none;
    display: flex;
    align-items: center;
}

.mt-container .cell__inner-wrapper.cell__stage-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-container .cell__assignee-wrapper .cell__assignee:hover {
    cursor: pointer;
}

.mt-container .cell__inner-wrapper .cell__inner:last-child {
    border-bottom: none;
    min-height: 32px;
}

.mt-container .cell__inner.attributes.user-attributes,
.mt-container .cell__inner.attributes.group-attributes {
    border-bottom: none;
    padding: 0;
    min-height: 32px;
}

.mt-container .cell__status-wrapper {
    display: flex;
    align-items: center;
}

.mt-container .cell__inner-wrapper .cell__status-wrapper {
    display: flex;
    padding: 5.5px 4px;
}

.mt-container .cell__status-icon:hover {
    cursor: pointer;
}

.mt-container .cell__progress.group-tasks .taskStatusComponent {
    position: unset;
}

.mt-container .cell__progress.group-tasks .taskStatusComponent .arrowIcon-container {
    padding-left: 4px;
}

.mt-container .cell__status-icon--not-clickable:hover {
    cursor: default;
}

.mt-container .cell__status-wrapper.cell-padding .cell__progress {
    display: none;
}

.mt-container .cell-padding.cell__inner-wrapper .cell__inner.cell__status-wrapper .cell__progress {
    display: none;
}

.mt-container .cell__progress .taskStatusComponent {
    left: -3px;
    position: relative;
}

.mt-container .cell-padding.cell__inner-wrapper .cell__inner.cell__status-wrapper .cell__progress.cell__progress--opened {
    display: flex;
}

.mt-container .cell__status-wrapper.cell-padding .cell__progress--opened {
    display: flex;
}

.mt-container .cell__status-wrapper.cell-padding:hover .cell__progress {
    display: flex;
}

.mt-container .cell-padding.cell__inner-wrapper .cell__inner.cell__status-wrapper:hover .cell__progress {
    display: flex;
}

.mt-container .mt-table__row-cells {
    border-left: var(--border-line-opacity);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
}

.mt-container .mt-table__row-cells:last-child {
    border-right: var(--border-line-opacity);
}

.mt-container .cell-wrapper.is-quick-filter:hover  {
    outline: 1px solid #ABB8F8;
}

.mt-container .cell-wrapper .cell__inner.cell__inner_outline, .mt-container .cell-wrapper .cell__outer.cell__inner_outline {
    min-height: 31px;
}

.mt-container .cell__inner.cell__status-wrapper.cell__inner_is-multiple.cell__inner_outline {
    min-height: 32px;
}

.mt-container .cell-wrapper .cell__inner_outline:hover {
    outline: 1px solid #ABB8F8;
    border: 0;
}

.mt-container .cell-wrapper__filter,
.mt-container .cell__inner .cell-wrapper__multi-filter,
.mt-container .cell-name__userTags .cell-wrapper__multi-filter,
.mt-container .cell-name__groupTags .cell-wrapper__multi-filter,
.mt-container .cell-name__attributes .cell-wrapper__multi-filter {
    display: none;
    cursor: pointer;
    border-radius: 4px 0px 0px 4px;
    position: absolute;
    max-height: 32px;
    height: 100%;
    width: 32px;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transform: translate(-100%);
    background-color: #EEF1FE;
    pointer-events: none;
}

.mt-container .cell-wrapper__filter:before,
.mt-container .cell__inner .cell-wrapper__multi-filter:before,
.mt-container .cell-name__userTags .cell-wrapper__multi-filter:before,
.mt-container .cell-name__groupTags .cell-wrapper__multi-filter:before,
.mt-container .cell-name__attributes .cell-wrapper__multi-filter:before {
    content: '';
    position: absolute;
    border-radius: 4px 0px 0px 4px;
    outline: 1px solid #ABB8F8;
    background-color: #EEF1FE;
    width: 100%;
    height: 100%;
    left: -1px;
    z-index: -1;
}

.mt-container .cell__inner:not(.attributes) .cell-wrapper__multi-filter {
    left: -8px;
    top: -6px;
}

.mt-container .cell__inner.cell__status-wrapper .cell-wrapper__multi-filter {
    left: -4px;
    top: 0px;
}

.mt-container .cell__inner.cell__status-wrapper.cell__inner_is-multiple .cell-wrapper__multi-filter {
    left: -4px;
    top: 16px;
}


.mt-container .cell-wrapper.is-quick-filter:hover .cell-wrapper__filter {
    display: flex;
    opacity: 0;
    animation: fadeToFullOpacity 300ms 600ms ease-out forwards;
}

.mt-container .cell__inner .cell-wrapper__multi-filter,
.mt-container .cell-name__userTags .cell-wrapper__multi-filter,
.mt-container .cell-name__groupTags .cell-wrapper__multi-filter,
.mt-container .cell-name__attributes .cell-wrapper__multi-filter {
    opacity: 0;
    animation: fadeToFullOpacity 300ms 600ms ease-out forwards;
}

.mt-container .cell-wrapper__multi-filter img.cell-wrapper__multi-filter--hidden,
.mt-container .cell-wrapper__multi-filter.cell-wrapper__multi-filter--hidden {
    visibility: hidden;
    pointer-events: none;
}

@keyframes fadeToFullOpacity {
    from {
        opacity: 0;
        pointer-events: none;
    }
    to {
        opacity: 1;
        pointer-events: all;
    }
}

.mt-container .cell-wrapper__group-icon {
    margin-left: 4px;
}

.mt-container .cell-wrapper__group-icon:hover {
    cursor: pointer;
}

.mt-container .cell-wrapper__name .cell-wrapper__right-icons {
    display: flex;
    align-items: center;
}

.mt-container .cell-wrapper__name .cell-wrapper__right-icons.moreAssignments, .mt-container .cell-wrapper__name .cell-wrapper__right-icons.budget {
    margin-left: -26px;
}

.mt-container .cell-wrapper__name .open-card__wrapper {
    flex: 1 1 auto;
    height: 100%;
    cursor: pointer;
    padding-top: 3px;
}

.mt-container .cell-wrapper__name.cell-padding.group-tasks .open-card__wrapper {
    padding-top: 4px;
}

    .mt-container .cell-wrapper__name:hover .open-card__wrapper .open-card__image,
    .mt-container .cell-wrapper:hover .cell-wrapper__name .open-card__wrapper .open-card__image{
        background-image: url('/../../../images/pipeline/open_card_grey.svg');
        width: 16px;
        height: 16px;
    }

    .mt-container .cell-wrapper__name .open-card__wrapper:hover .open-card__image {
        background-image: url('/../../../images/pipeline/open_card_blue.svg');
        width: 16px;
        height: 16px;
    }

    .mt-container .cell-wrapper__name .open-card__wrapper.moreAssignments {
        margin-left: 6px;
    }

    .mt-container .cell-wrapper__name .open-card__wrapper.budget.moreAssignments {
        margin-left: -14px;
    }

.mt-container .cell-wrapper__name {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    transition-duration: var(--trans-duration);
    transition-timing-function: var(--trans-fn);
    transition-property: all;
}


.mt-container .cell-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    hyphens: auto;
    word-break: break-all;
    white-space: normal;
}

.mt-container .cell-wrapper__name.group-tasks .mt__cell-name-container .mt__cell-name--ellipsis:hover,
.mt-container .cell__inner-wrapper.cell-assignee .cell__inner:hover,
.mt-container .cell-wrapper__name .mt__cell-name--ellipsis:hover {
    cursor: pointer;
    color: var(--link-blue);
}

.mt-container .cell-wrapper .cell__inner-wrapper .cell__inner--active {
    outline: 1px solid #ABB8F8;
    z-index: 2;
    height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-container .cell-wrapper .cell__status-wrapper.cell__inner--active,
.mt-container .mt-table__row-cells .cell-wrapper .cell__inner--active {
    outline: 1px solid #ABB8F8;
    z-index: 2;
    height: 32px;
    width: 100%;
}

.cell-wrapper__name .cell-wrapper__otherAssignments {
    background-color: #F5F5F5;
    color: #808080;
    padding: 3px 2px 2px;
    font-size: 9px;
    border-radius: 2px;
    font-family: 'GlowSemibold';
    margin-top: 2px;
    margin-left: 6px;
    cursor: pointer;
}

.cell-wrapper__name:hover .cell-wrapper__otherAssignments {
    /* display: none; */
}

/* table row END */

/* resizable START */

.mt-container .resizable__wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.mt-container .resizable__separator {
    display: flex;
    min-width: 9px;
    cursor: ew-resize;
    position: relative;
    left: -5px;
}

.mt-container .resizable__line {
    width: 1px;
    height: 26px;
    background-image: linear-gradient(to top, #dcdcdc, #ffffff);
    align-self: flex-end;
    position: absolute;
    left: 5px;
}

.mt-container .resizable__line--right {
    width: 1px;
    height: 26px;
    background-image: linear-gradient(to top, #dcdcdc, #ffffff);
    align-self: flex-end;
    position: absolute;
    right: -1px;
}

.mt-container .text-right {
    text-align: right;
}

.mt-container .resizable__separator:hover .resizable__line {
    background: linear-gradient(to top, #5774e7, #ffffff);
}

.mt-container .resizable__content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    width: 100%;
}

.mt-container .resizable__content:hover .header-arrow {
    visibility: visible;
}

.mt-container .header-arrow {
    visibility: hidden;
}

.mt-container .header-arrow--visible {
    visibility: visible;
}

.mt-container .header-arrow--hidden {
    display: none;
}

.mt-container .arrow-down {
    transform: rotate(180deg);
}

.mt-container .header-cell {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    height: 100%;
    transition-duration: var(--trans-duration);
    transition-timing-function: var(--trans-fn);
    transition-property: color;
}

.mt-container .header-cell:hover {
    cursor: pointer;
}

.mt-container .header-cell.remove-pointer {
    cursor: default;
}

.mt-container .header-text-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 99%;
    padding-left: 10px;
    padding-right: 5px;
}

.mt-container .header-text {
    font-size: 13px;
    color: #808080;
    font-family: 'GlowSemibold';
    padding-right: 5px;
}

.mt-container .header-text-wrapper.header-cell--active .header-text {
    color: var(--link-blue);
}

.mt-container .header-text-wrapper .header-text-direction {
	display: none;
	margin-left: auto;
	cursor: pointer;
}

.mt-container .header-text-wrapper:hover .header-text-direction {
	display: block;
}

.mt-container .header-text-wrapper .header-text-direction.header-text-direction--enabled {
	transform: scaleX(-1);
}

/* resizable END */

/* cell START */

my-tasks-cell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

group-tasks-cell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.mt-container .cell-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
}

.mt-container .cell-wrapper.special-cell {
    display: inline-block;
}

.mt-container .cell-wrapper .cell-wrapper__priprity {
    justify-content: flex-end;
}

.mt-container .cell-wrapper .cell-name__group .mt__cell-name--ellipsis {
   overflow: visible;
}

.mt-container .cell-padding {
    padding: 6px 8px;
    height: 32px;
}

.mt-container .cell_alignment {
    padding: 6px 6px 6px 10px;
}

.mt-container .cell-name__projectManager{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-container .fill-all-cell {
    display: flex;
    flex: 1;
}

.mt-container .fill-all-cell:hover {
    cursor: pointer;
}

.mt-container .priority-wrapper {
    margin-left: auto;
}

.mt-container .cell-wrapper__priprity {
    font-weight: 600;
    text-align: right;
}

.mt-container .mt__cell-name-container {
    display: flex;
}

.mt-container .mt__cell-name-container img {
    margin-right: 4px;
}

.mt-container .mt__cell-name--ellipsis {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 3px;
}

.mt-container group-tasks-cell .mt__cell-name--ellipsis {
    overflow-x: clip;
    overflow-y: visible;
}

.mt-container .mt__cell-name--ellipsis.budget, .mt-container .mt__cell-name--ellipsis.moreAssignments {
    max-width: calc(100% - 19px);
}

.mt-container .mt__cell-name-container .mt__cell-name--ellipsis.budget.moreAssignments {
    max-width: calc(100% - 41px);
}

.mt-container .mt__cell-name--ellipsis img {
    margin-right: 2px;
}

.mt-container .cell-name__group {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.mt-container .cell-name__group.cell-name__group--outside-the-group-info {
    color: #ff7c10;
}

.mt-container .cell-name__group .cell__inner.cell-name__group--outside-the-group-info {
    color: #ff7c10;
}

.mt-container .cell-name__group .cell-name__group-icons {
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cell_assignee-action-dropdown-item {
    padding: 4px 0 4px 20px;
}

.cell_assignee-action-dropdown-item:hover {
    background-color: #EEF1FE;
    cursor: pointer;
}

.mt-container .cell-name__tags,
.mt-container .cell-name__attributes {
    display: inherit;
}

.mt-container .cell-name__description {
    padding: 6px 6px 6px 10px;
}

.mt-container .cell-name__comment {
    padding: 6px 6px 6px 10px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-container .cell-name__description span{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: initial;
    word-break: break-word;
}

.mt-container .cell-name__phases {
    padding-left: 10px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mt-container .cell-name__phases .phasesSelectionDropdown {
    flex-wrap: nowrap;
}

.mt-container .cell-name__phases .phasesSelectionDropdown .tag .tagText {
    max-width: 100%;
}

.mt-container .cell-name__parentPath:hover {
    /*cursor: pointer;*/
    /*color: var(--link-blue);*/
}

.mt-container .cell-name__firstMilestone {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.mt-container .cell-name__tags .tag,
.mt-container .cell-name__userTags .tag,
.mt-container .cell-name__groupTags .tag {
    border-radius: 4px;
    background-color: #f5f5f5;
    font-size: 13px;
    min-height: 20px;
    height: 28px;
    margin-top: 2px;
    line-height: 16px;
    position: relative;
    padding: 6px;
    width: -moz-fit-content;
    width: fit-content;
}

.mt-container .cell-name__tags .tag,
.mt-container .cell-name__userTags .tag,
.mt-container .cell-name__groupTags .tag  {
    margin-bottom: 2px;
}
.mt-container .cell-name__tags .show_tag_button,
.mt-container .cell-name__userTags .show_tag_button,
.mt-container .cell-name__groupTags .show_tag_button {
    width: 28px;
    min-width: 28px;
    min-height: 20px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    line-height: 22px;
    background-color: #F5F5F5;
}
.mt-container .cell-name__tags .show_tag_button,
.mt-container .cell-name__userTags .show_tag_button,
.mt-container .cell-name__groupTags .show_tag_button  {
    margin-top: 2px;
    height: 28px;
    padding-top: 0;
    padding-bottom: 0;
}
.mt-container .cell-name__userTags.cell__inner-wrapper .cell__inner,
.mt-container .cell-name__groupTags.cell__inner-wrapper .cell__inner {
    display: flex;
}

.mt-container .cell-name__tags .all_tags__dropdown,
.mt-container .cell-name__userTags .all_tags__dropdown,
.mt-container .cell-name__groupTags .all_tags__dropdown {
    display: flex;
    position: absolute;
    flex-wrap: wrap;
    z-index: 1000;
    align-content: flex-start;
    width: 250px;
    flex-wrap: wrap;
    padding-left: 12px;
    padding-right: 12px;
    box-shadow: 0px 0px 2px rgb(70 89 191 / 30%), 0px 2px 4px rgb(0 41 199 / 20%);
    border-radius: 4px;
    background-color: #ffffff;
    top: -16px;
}

.mt-container .cell-name__tags .all_tags__dropdown .tag,
.mt-container .cell-name__userTags .all_tags__dropdown .tag,
.mt-container .cell-name__groupTags .all_tags__dropdown .tag {
    margin-bottom: 6px;
    margin-top: 6px;
    overflow-wrap: break-word !important;
    word-wrap: break-word;
    /* word-break: break-all;  */
    height: unset;
    text-overflow: unset;
    white-space: normal;
    overflow: unset;
    width: -moz-fit-content;
    width: fit-content;
    flex-grow: 0;
}

/* .mt-container .cell-name__tags  */
/* cell END */

/* header START */

.mt-header {
    display: flex;
    padding: 16px 20px 15px 20px;
}

.mt-header-wrapper {
    display: flex;
    width: 100%;
}

.mt-header-btns {
    display: flex;
    flex-shrink: 0;
    margin-right: 12px;
}

.mt-header-btns :not(:first-child) {
    margin-left: -1px;
}

.mt-header-btns :first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.mt-header-btns :last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.mt-btn {
    background-color: #ffffff;
    padding: 0 12px;
    border: var(--border-line);
    font-size: 13px;
    line-height: 18px;
    font-family: GlowSemiBold;
    color: #4e4e4e;
    cursor: pointer;
    height: 28px;
    display: flex;
    align-items: center;
}

.mt-btn.active {
    color: var(--link-blue);
    cursor: default;
    border: 1px solid var(--border-light-blue);
    z-index: 1;
    transition-duration: var(--trans-duration);
    transition-timing-function: var(--trans-fn);
    transition-property: all;
}

.mt-btn.active.hover:hover {
    cursor: pointer;
}

.mt-btn.disabled {
    opacity: 0.5;
    cursor: default;
}

.mt-btn.withoutBG {
    background-color: transparent;
    border: none;
    padding: 0;
}

.mt-btn .showTooltipWhenDisabled {
    position: absolute;
    width: 110px;
    height: 20px;
}

.arrow-back {
    transform: rotate(180deg);
    margin-right: 5px;
}

.mt-header__search {
    position: relative;
    margin-left: 10px;
}

.mt-container .mt-header__search .ui-input-search-close {
    top: 10px;
    cursor: pointer;
}

.mt-header-right-btns {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.create-new-btn .mainButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 28px;
    width: 116px;
    border: 1px solid var(--border-light-blue);
    border-radius: 4px;
    margin-right: var(--toolbar-block-indent);
    background: #ffffff;
}

.create-new-btn .mainButton .ui-btn-link:hover {
    text-decoration: none;
}

.create-new-btn .createStepMenuComponent .menuButtons-container {
    top: 29px;
    left: 0;
}

.mt-header-export {
    background: #ffffff;
    border: var(--link-blue);
    box-sizing: border-box;
    border-radius: 4px;
    height: 28px;
    display: flex;
    justify-content: center;
    width: 30px;
    margin-left: auto;
    border: 1px solid var(--border-light-blue);
}
/* header END */

.mt-footer {
    display: flex;
    align-items: center;
    min-height: 25px;
    background-color: #ffffff;
    border-top: 1px solid rgba(220, 220, 220, 0.4);
    flex-wrap: wrap;
}

/* category-title start */

.mt-container .category-title {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 2px 8px;
}

.mt-container .category-title__name {
    padding: 0 2px 0 5px;
    color: var(--main-text-color);
    font-size: 13px;
    white-space: nowrap;
}

.mt-container .category-title__counter {
    display: flex;
    color: var(--main-text-color);
    font-size: 12px;
    padding-right: 10px;
    white-space: nowrap;
}

.mt-container .category-title__action-name {
    color: var(--link-blue);
    font-size: 13px;
    padding-right: 10px;
    white-space: nowrap;
}

.mt-container .category-title__action-name.load-more {
    padding-left: 6px;
}

.mt-container .category-title__action-name:hover {
    cursor: pointer;
}

.mt-container .category-title__action-name:active {
    opacity: 0.8;
}

.cell__outer {
    position: relative;
    display: flex;
    width: 100%;
    height: 32px;
    border-bottom: var(--border-line-opacity);
}

.mt-container .cell-name__tags .cell__outer {
    border-bottom: unset;
}

.cell__outer .cell__inner,
.mt-container .cell__inner-wrapper .cell__outer .cell__inner,
.mt-container .cell__inner-wrapper .cell__outer:last-child  {
    border-bottom: none;
}

/* category-title end */

/* toggle-with-title START */

.mt-container .toggle-with-title {
    display: flex;
    padding-right: 10px;
}

.mt-container .toggle-with-title__text {
    color: var(--main-text-color);
    font-size: 13px;
    padding-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 10px;
}

.mt-container .toggle-with-title__btn {
    width: 26px;
    height: 16px;
}

/* toggle-with-title END */

.mt-container perfect-scrollbar#scroll .ps .ps__rail-y .ps__thumb-y {
    right: 0px !important;
}

.mt-container perfect-scrollbar .ps__rail-x .ps__thumb-x {
    bottom: 0px !important;
}

/* side-bar START */
.mt-container side-bar {
    height: 100%;
    width: 100%;
    border-top: var(--border-line);
    border-left: var(--border-line);
    border-bottom: var(--border-line);
}


/* side-bar END */

attributes,
skills {
    width: 100%;
}

.mt-container .cell-name__tags,
.mt-container .cell-name__userTags,
.mt-container .cell-name__groupTags,
.mt-container .cell-name__attributes {
    flex-direction: column;
    width: 100%;
}

.mt-container .cell-name__tags ,
.mt-container .cell-name__userTags,
.mt-container .cell-name__groupTags {
    column-gap: 4px;
}

.mt-container .cell-name__attributes .cell__inner {
    padding: 0;
}

.mt-container .cell-name__tags .cell__inner,
.mt-container .cell-name__userTags .cell__inner,
.mt-container .cell-name__groupTags .cell__inner {
    display: flex;
    column-gap: 4px;
    padding: 0 10px;
}

.mt-container .cell-name__tags .cell__inner .tag,
.mt-container .cell-name__userTags .cell__inner .tag,
.mt-container .cell-name__groupTags .cell__inner .tag {
    min-width: 48px;
    flex-shrink: 0;
}

.mt-container .cell-name__tags .cell__inner .tag:first-child,
.mt-container .cell-name__userTags .cell__inner .tag:first-child,
.mt-container .cell-name__groupTags .cell__inner .tag:first-child {
    min-width: 28px;
}

.mt-container .cell-name__tags .cell__inner .tag.ellipsis,
.mt-container .cell-name__userTags .cell__inner .tag.ellipsis,
.mt-container .cell-name__groupTags .cell__inner .tag.ellipsis {
    flex-shrink: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.truncate-direction {
    display: none;
}

.truncate-direction:hover {
    cursor: pointer;
}

.mt-container .header-text-wrapper:hover .truncate-direction {
    display: flex;
}

.space-span {
    margin: 0 2px;
}

.cell__inner.highlight {
    background-color: #EEF1FE;
}
