﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline-color: #f2b800;
}

body {
    font-family: arial,helvetica,sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: #404040;
    overflow: hidden;
}

input {
    height: 30px;
    border: 1px solid #dadada;
    padding: 0px 10px;
}
.k-dateinput input {
    height: 28px
}

/*############### login-page-container ######################*/
.login-page-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction:column;
}

.login-page-container__text {
    padding:80px 0px 20px;
    font-size: 32px;
    text-align:center;
}

.login-page-container__login-button {
    height: 30px;
    width: 100px;
    line-height: 30px;
    background-color: #49468f;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    margin: auto;
    text-align: center;
}

.login-page-container__footer {
    text-align: right;
    padding: 10px 20px;
}

.login-page-container__a {
    color: #404040;
    text-decoration: none;
    margin: 0px 5px;
}
.login-page-container__a:hover {    
    text-decoration: underline;
}



@media (max-width: 767px) {
    .login-page-container__footer {
    text-align:center;
    }
}


/*###################################*/
.page-naviagation {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    border-bottom: 1px solid #dadada;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.page-naviagation__link {
    height: 30px;
    padding: 0px 5px;
    border-width: 3px 0px 3px;
    border-color: transparent;
    border-style: solid;
    line-height: 24px;
    text-decoration: none;
    cursor: pointer;
    color: #404040;
}
.page-naviagation__link.active {
        height: 30px;
        border-bottom-color: #f2b800;
        font-weight: bold;
        cursor: default;
    }

    .page-naviagation__link.signout-link {
        background-image: url(./images/sign-out.svg);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 20px;
        cursor: pointer;
        padding-left: 25px;
    }

.toolbar-refresh-button {
    background-image: url(./images/reload.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    cursor: pointer;
    padding-left: 25px;
    line-height: 30px;
}

.toolbar-design-button {
    background-image: url(./images/palette.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    cursor: pointer;
    padding-left: 25px;
    line-height: 30px;
}

.toolbar-filter-button {
    background-image: url(./images/filter.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    cursor: pointer;
    padding-left: 25px;
    line-height: 30px;
}

.toolbar-grid-button {
    cursor: pointer;
    height: 26px;
    width: 26px;
    margin: 2px 5px 0px 30px;
    background-image: url(./images/grid.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}
.toolbar-grid-button--selected {
    cursor: default;
    border-bottom: 3px solid #f2b800;
    background-size: 18px;
}

.toolbar-board-button {
    cursor: pointer;
    height: 26px;
    width: 26px;
    margin: 2px 30px 0px -15px;
    background-image: url(./images/board.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.toolbar-board-button--selected {
    cursor: default;
    border-bottom: 3px solid #f2b800;
    background-size: 18px;
}



@media (max-width: 767px) {
    .page-naviagation .toolbar-refresh-button,
    .page-naviagation .toolbar-filter-button,
    .page-naviagation .filter-menu-button,
    .page-naviagation__link.signout-link {
        width: 20px;
        overflow: hidden;
        background-position: center;
        color: transparent;
        padding: 0;
    }
}




.pcp-ms-team-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
}

.pcp-ms-team-container__content-wrapper {
    padding: 0px 20px;
    flex-grow: 1;
    overflow: auto;
    margin-bottom: 2px;
}

.pcp-ms-team-container__content-wrapper--bg-white {
    background-color: #fff;
}


.pcp-ms-team-container__filter-wrapper {
    padding: 0px 10px 10px 30px;
    display: flex;
    border-bottom: 1px solid #dadada;
    gap: 15px;
    background-image: url(./images/filter.png);
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pcp-ms-team-container__filter-apply-button {
    cursor: pointer;
    padding: 0px 10px;
    line-height: 30px;
    color: #fff;
    background-color: #49468f;
}

.pcp-ms-team-container__filter-clear-button {
    background-image: url(./images/cross.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    cursor: pointer;
    padding-left: 25px;
    line-height: 30px;
}


.pcp-ms-team-container__plan-configuration-wrapper {
    background-image: none;
    padding-left: 10px;
    padding-bottom: 0px;
    border-bottom: none;
    margin-bottom: 0;
    gap:5px;
}

/*#region search box*/
.search-box {
    height: 30px;
    width: 200px;
    border: 1px solid #dadada;
    box-sizing: border-box;
}

    .search-box.no-border {
        border: none;
    }

    .search-box .search-icon {
        background-image: url('./images/search-left.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 18px;
        height: 30px;
        width: 30px;
        float: left;
    }

    .search-box.right-side-icon .search-icon {
        background-image: url('./images/search-left.svg');
        margin-left: -1px;
        float: right;
    }

    .search-box .search-text {
        width: calc(100% - 30px);
        background-color: transparent;
        border-width: 0;
        float: left;
        text-indent: 5px;
        line-height: 28px;
    }

    .search-box.no-border .search-text {
        border-width: 0 0 1px;
    }

/*#endregion*/

/*#region filter-checkbox-dropdown*/
.filter-checkbox-dropdown {
    height: 30px;
    border: 1px solid #dadada;
    box-sizing: border-box;
    line-height: 28px;
    cursor: pointer;
}

.filter-checkbox-dropdown__header-name {
    float: left;
    padding: 0 7px;
    width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-checkbox-dropdown--selected-value-exist .filter-checkbox-dropdown__header-name {
    font-weight: bold;
}

.filter-checkbox-dropdown__icon-wrapper {
    float: left;
}

.filter-checkbox-dropdown__clear-button {
    background-image: url(./images/cross.png);
    background-size: 14px;
    background-position: left center;
    background-repeat: no-repeat;
    height: 30px;
    line-height: 30px;
    padding: 0px 0px 0px 20px;
    float: right;
    margin-right: 15px;
    cursor: pointer;
}

.filter-checkbox-dropdown-li {
    background-color: #fff !important;
    cursor: default !important;
    padding: 5px 8px !important;
    height: 28px !important;
}

    .filter-checkbox-dropdown-li .check-box-container {
        width: 100%;
    }

        .filter-checkbox-dropdown-li .check-box-container label {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }


/*#endregion*/


/*#region custom-context-menu*/

.custom-context-menu {
    border: 1px solid #dadada;
    background-color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    min-width: 120px;
    z-index: 1;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3) !important;
}

.custom-context-menu--width-100 {
    width: 100%;
}

.custom-context-menu > ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .custom-context-menu ul li {
        padding: 0px 25px 0 25px;
        height: 38px;
        line-height: 38px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

        .custom-context-menu ul li.hr {
            padding: 0;
            height: 11px;
        }

            .custom-context-menu ul li.hr::after {
                content: '';
                height: 1px;
                width: 100%;
                background-color: #dadada;
                position: absolute;
                left: 0;
                top: 50%;
            }


        .custom-context-menu ul li.no-hover,
        .custom-context-menu ul li.cursor-default {
            cursor: default;
        }

        .custom-context-menu ul li:not(.no-hover):hover {
            background-color: #f2f2f2;
        }

        .custom-context-menu ul li.selected {
            background-color: #f2f2f2;
            cursor: default;
        }

    .custom-context-menu.li-icon > ul > li {
        background-position: 15px center;
        background-repeat: no-repeat;
        background-size: 18px auto;
        padding-left: 45px;
    }


    .custom-context-menu.li-icon ul li.edit {
        background-image: url('./Images/edit.svg');
    }

    .custom-context-menu.li-icon ul li.delete {
        background-image: url('./Images/delete.svg');
    }

    .custom-context-menu.li-icon ul li.open-link {
        background-image: url('./Images/open-link.png');
    }

    .custom-context-menu.li-icon ul li.copy-link {
        background-image: url('./Images/copy-link.svg');
    }

    .custom-context-menu.li-icon ul li.rag-status {
        background-image: url(./Images/exclamation-vl.svg);
        background-size: 32px;
        background-position: 7px center;
    }

    .custom-context-menu.li-icon ul li.status {
        background-image: url('./Images/tick.svg');
    }


    /*sub menu*/

    .custom-context-menu ul li.sub-menu-exist:hover::after {
        content: '';
        height: 12px;
        width: 12px;
        background-image: url(./images/arrow-head-right.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 18px;
        position: absolute;
        right: 10px;
        top: calc(50% - 6px);
    }

    .custom-context-menu ul li.sub-menu-left-sided:hover::after {
        transform: rotate(180deg);
        right: auto;
        left: 3px;
    }


    .custom-context-menu .sub-menu-container {
        position: absolute;
        top: 0;
        left: 100%;
        display: none;
    }

    .custom-context-menu .sub-menu-left-sided .sub-menu-container {
        left: auto;
        right: 100%;
    }

    .custom-context-menu .sub-menu-container > ul {
        border: 1px solid #dadada;
        background-color: #fff;
        list-style: none;
        padding: 0;
        margin: 0px 0px 0px 5px;
    }

    .custom-context-menu .sub-menu-container.left-side > ul {
        margin: 0px 5px 0px 0px;
    }

    .custom-context-menu li:hover > .sub-menu-container {
        display: block;
    }

/*#######*/

/*#endregion*/

/*#region radioBox*/
.radio-box-container {
    float: left;
    position: relative;
}

    .radio-box-container > input {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        opacity: 0;
        cursor: pointer;
    }

        .radio-box-container > input[disabled] {
            cursor: default;
        }

    .radio-box-container > label {
        min-height: 20px;
        line-height: 20px;
        padding-left: 25px;
        position: relative;
        display: block;
        margin-bottom: 0;
        cursor: pointer;
    }
    .radio-box-container > input[disabled] + label {
        cursor: default;
    }

        .radio-box-container > label.no-text {
            padding-left: 20px;
        }

        .radio-box-container > label::before {
            background-color: transparent;
            border: 2px solid #808080;
            content: "";
            height: 20px;
            left: 0;
            position: absolute;
            top: calc(50% - 10px);
            width: 20px;
            box-sizing: border-box;
            border-radius: 50%;
        }

        .radio-box-container > label::after {
            background-color: transparent;
            content: "";
            height: 12px;
            left: 4px;
            position: absolute;
            top: calc(50% - 6px);
            width: 12px;
            box-sizing: border-box;
            border-radius: 50%;
        }

    .radio-box-container > input:checked + label::after {
        background-color: #808080;
    }

/*#endregion */

/*#region checkBox*/
.check-box-container {
    float: left;
    position: relative;
}

    .check-box-container input {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        opacity: 0;
        cursor: pointer;
    }

        .check-box-container input[disabled] {
            cursor: default;
        }

    .check-box-container label {
        min-height: 18px;
        line-height: 18px;
        padding-left: 25px;
        position: relative;
        display: block;
        cursor:pointer;
    }
    .check-box-container input[disabled] + label {
        cursor: default;
    }

        .check-box-container label.no-text {
            padding-left: 18px;
        }

        .check-box-container label::before {
            background-color: #ffffff;
            border: 1px solid #dadada;
            content: "";
            height: 18px;
            left: 0;
            position: absolute;
            top: calc(50% - 9px);
            width: 18px;
            box-sizing: border-box;
        }

    .check-box-container input:checked + label::before {
        color: #404040;
        content: "✓";
        font-size: 18px;
        line-height: 18px;
        text-align: center;
    }

/*#endregion */

/*#region switch*/
.switch-box-container {
    height: 17px;
    background-color: transparent;
    position: relative;
    width: 34px;
    margin: 2px 0px 3px;
}

    .switch-box-container input {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        cursor: pointer;
    }

    .switch-box-container label {
        background-color: #fff;
        cursor: pointer;
        float: left;
        height: 18px;
        line-height: 18px;
        position: relative;
        border: 2px solid #7e7e7e;
        border-radius: 10px;
        width: 34px;
    }

        .switch-box-container label::before {
            background-color: #7e7e7e;
            border-radius: 50%;
            content: "";
            display: inline-block;
            height: 10px;
            position: absolute;
            left: 4px;
            top: 2px;
            width: 10px;
            transition: left 0.1s ease 0s;
        }


    .switch-box-container input:checked + label {
        background-color: #0078d4;
        border-color: #0078d4;
    }

        .switch-box-container input:checked + label::before {
            transition: left 0.1s ease 0s;
            left: 16px;
            background-color: #fff;
        }

/*#endregion */

/*#region custom-tabstrip*/
.custom-tabstrip {
    display: flex;

}
.custom-tabstrip__item {
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: #dadada;
    background-color: #f2f2f2;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    cursor:pointer;
}
.custom-tabstrip__item:last-child {
    border-right-width: 1px;
}
.custom-tabstrip__item--selected {
    background-color: #fff;
    border-bottom-color: transparent;
    cursor: default;
}

.custom-tabstrip__item--attachments {
    background-image: url(./images/attachment.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding: 0px 10px 0px 36px;
}
.custom-tabstrip__item--comments {
    background-image: url(./images/comments.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding: 0px 10px 0px 36px;
}

/*#endregion*/

/*#region collapsible-area*/
.collapsible-area {
    display: flex;
    flex-direction:column;
    margin-right:20px;
}
.collapsible-area--collapsed {
    height:auto !important;
}
.collapsible-area--fullscreen {
    position: absolute;
    left: 0;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 2;
    background-color: #fff;
    margin: 0 !important;
    padding: 10px 20px;
}


.collapsible-area__header {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #dadada;
    padding: 0px 0px 10px 0px;
}

    .collapsible-area__name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight:bold;
        line-height:16px;
        flex-grow:1;
    }

.collapsible-area__fullscreen-button {
    cursor: pointer;
    height: 16px;
    width: 16px;
    margin: 0px;
    background-image: url('./images/fullscreen.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px;
}
.collapsible-area__toggle-collapse-button {
    cursor: pointer;
    height: 16px;
    width: 16px;
    margin: 0px;
    background-image: url('./images/arrow-head-down.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px;
    transform: rotate(180deg);
}
.collapsible-area--collapsed .collapsible-area__toggle-collapse-button {
    transform: rotate(0deg);
}

.collapsible-area__body {
    padding: 10px 0px 0px;
    overflow: auto;
    flex-grow: 1;
}

/*#endregion*/

/*#region no-app-license-container*/
.no-app-license {
    padding: 80px 20px 60px;
}

.no-app-license__title-text {
    font-size: 30px;
    text-align: center;
}

.no-app-license__info-text {
    text-align: center;
}

.no-app-license__login-button {
    margin: 0 auto;
    width: 200px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    background-color: #47448c;
    color: #fff;
    display: block;
    text-decoration: none;
}
/*#endregion*/

/*#region attachment-grid*/
.attachment-grid tbody tr td {
    background-color: #7E7E7E !important;
    color: #fff !important;
    border-bottom: 10px solid #fff !important;
}

.attachment-grid__file-icon {
    background-image: url('./images/attachment/file-white.png');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    width: 20px;
    height: 20px;
}


.attachment-grid tr.doc td,
.attachment-grid tr.docx td {
    background-color: #2B569A !important;
}

.attachment-grid tr.doc .attachment-grid__file-icon,
.attachment-grid tr.docx .attachment-grid__file-icon {
    background-image: url('./images/attachment/docx-white.png');
}


.attachment-grid tr.ppt td,
.attachment-grid tr.pptx td {
    background-color: #C65241 !important;
}

.attachment-grid tr.ppt .attachment-grid__file-icon,
.attachment-grid tr.pptx .attachment-grid__file-icon {
    background-image: url('./images/attachment/pptx-white.png');
}


.attachment-grid tr.xls td,
.attachment-grid tr.xlsx td {
    background-color: #207346 !important;
}

.attachment-grid tr.xls .attachment-grid__file-icon,
.attachment-grid tr.xlsx .attachment-grid__file-icon {
    background-image: url('./images/attachment/xlsx-white.png');
}


.attachment-grid tr.pdf td {
    background-color: #DA251C !important;
}

.attachment-grid tr.pdf .attachment-grid__file-icon {
    background-image: url('./images/attachment/pdf-white.png');
}


.attachment-grid__attachment-name {
    color: #fff;
    text-decoration: none;
}

    .attachment-grid__attachment-name:hover {
        text-decoration: underline;
        cursor:pointer;
    }

.attachment-grid__delete-button {
    background-image: url('./images/attachment/close-white.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/*#endregion*/

/*#region comment-display*/
.comment-display {
    padding: 0px 20px 0px 0px;
}
.comment-display--icon {
    padding: 0px 20px;
    background-image: url(./images/comment.png);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: left 11px;
}


.comment-display__delete-button {
    width: 16px;
    height: 16px;
    background-image: url(./images/cross.png);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.comment-display__text {
    padding: 10px 0px 30px;
}

.comment-display--icon .comment-display__text {
    padding-top: 0;
    white-space:pre-wrap;
}
    .comment-display--icon .comment-display__text img {
        max-width: 100%;
    }

    .comment-display--icon .comment-display__text p {
        margin: 0;
    }
        .comment-display--icon .comment-display__text p:empty {
            height: 16px;
        }


/*#endregion*/

/*#region user-image-name*/
.user-image-name {
    display: flex;
    gap: 10px;
}
.user-image-name__image {
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    border: 1px solid #dadada;
    background-color: #fff;
}

.user-image-name__image--no-image {
    background-color: #bebebe;
    border-color: #bebebe;
}

.user-image-name__image img {
    background-color: transparent;
    max-height: 30px;
    max-width: 30px;
    padding: 2px;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    margin: auto;
}

.user-image-name__name {
    line-height: 36px;
    flex-grow:1;
}
/*#endregion*/


/*#region dropdownlist-tab*/
.dropdownlist-tab__header {
    height: 30px;
    border: 1px solid #dadada;
    box-sizing: border-box;
    line-height: 28px;
    cursor: pointer;
}

.dropdownlist-tab__header--bg-white {
   background-color:#fff;
}

.dropdownlist-tab__header.new-plan-map-tab {
    width: 80px !important;
    background-color: #fff;
    margin-left: 10px;
}
    .dropdownlist-tab__header.new-plan-map-tab .dropdownlist-tab__header-name {
        text-align: left;
        font-size: 14px !important;
        padding: 0px 30px 0px 7px;
        font-weight: bold;
        background-image: url(./images/add.svg);
        background-repeat: no-repeat;
        background-position: calc(100% - 10px) center;
        background-size: 19px;
    }


.dropdownlist-tab__header-name {
    float: left;
    padding: 0px 7px;
    width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dropdownlist-tab__header--bold .dropdownlist-tab__header-name {
    font-weight: bold;
}

.dropdownlist-tab__header-icon-wrapper {
    float: left;
}

.dropdownlist-tab__tab {
    display: flex;
    gap:20px;
    padding:0px 15px;
}
.dropdownlist-tab__tab-item {
    line-height: 20px;
    padding: 5px 3px 0px;
    cursor: pointer;
    border-width: 0px 0px 3px 0px;
    border-style: solid;
    border-color: transparent;
}

.dropdownlist-tab__tab-item--selected {
    font-weight:bold;
    cursor: default;
    border-bottom-color: #00b0f0;
}

.dropdownlist-tab__li {
    background-color: #fff;
    cursor: pointer;
    padding: 5px 8px;
    height: 28px;
}

    .dropdownlist-tab__li:hover {
        background-color: #f2f2f2;
    }
.dropdownlist-tab__li--selected {
    background-color: #f2f2f2;
    cursor: default;
}
/*#endregion*/

.plan-map-project-dropdown-wrapper .dropdownlist-tab__header {
    border:none;
}
.plan-map-project-dropdown-wrapper .dropdownlist-tab__header-name {
    width:100%;
    text-align:center;
    font-size:20px;
}
.plan-map-project-dropdown-wrapper .dropdownlist-tab__header-icon-wrapper {
    display: none;
}


.kendo-dropdown-container-header-bold .k-input-inner {
    font-weight: bold;
}

/*#region plan-map-header-tab*/
.plan-map-header-tab {
    height: 30px;
    padding-left: 30px;
    background-image: url(./images/map/map.svg);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
}
.plan-map-header-tab {
    height: 30px;
    padding-left: 35px;
    background-image: url(./images/map/map.svg);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor:pointer;
}
.plan-map-header-tab--selected {
    background-color: #fff;
    position: relative;
    padding-right: 20px;
    cursor: default;
    margin-left: 10px;
    border-width: 1px 1px 0px;
    border-style: solid;
    border-color: #dadada;
}
    .plan-map-header-tab--selected::after {
        content: '';
        width: 100%;
        height: 1px;
        background-color: #fff;
        position: absolute;
        left: 0;
        bottom: -1px;
    }
.plan-map-header-tab__name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height:30px;
}
.plan-map-header-tab__close-button {
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-image: url(./images/cross.png);
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 3px;
    right: 3px;
}
/*#endregion*/

.pcp-ms-team-container__content-wrapper--plan {
    margin-bottom: 0px;
}
/*#region plan-map-view-wrapper*/
.plan-map-view-wrapper {
    display: flex;
    height: 100%;
    background-color: #fff;
}
    .plan-map-view-wrapper > .k-splitter > .k-splitbar * {
        display: none;
    }
    .plan-map-view-wrapper > .k-splitter > .k-splitbar {
        width: 2px;
        background-color: #dadada;
    }

.plan-map-view-wrapper__container {
    flex-grow: 1;
    overflow: hidden;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #dadada;
    display: flex;
    flex-direction: column;
}
.plan-map-view-wrapper__toolbar {
    width: 34px;
    display:flex;
    flex-shrink:0;
    flex-direction:column;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #dadada;
    gap:3px;
}
.plan-map-view-wrapper__toolbar-horizontal-line {
    height: 1px;
    background-color: #dadada;
}

.plan-map-view-wrapper__toolbar-button {
    height: 34px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    position:relative;
}
.plan-map-view-wrapper__toolbar-button--zoom {
    text-align: center;
    color: #787878;
    padding-top:9px;
}

.plan-map-view-wrapper__toolbar-button:hover,
.plan-map-view-wrapper__toolbar-button--selected {
    background-color: #dadada;
}
.plan-map-view-wrapper__toolbar-button--mm {
    background-image: url(./images/map/crosshair.png);
}
.plan-map-view-wrapper__toolbar-button--gks {
    background-image: url(./images/map/select.png);
}
.plan-map-view-wrapper__toolbar-button--filter {
    background-image: url(./images/map/filter.png);
}
.plan-map-view-wrapper__toolbar-button--duration {
    background-image: url(./images/map/duration.png);
}
.plan-map-view-wrapper__toolbar-button--connection {
    background-image: url(./images/map/connector.png);
}
.plan-map-view-wrapper__toolbar-button--navigation {
    background-image: url(./images/map/navigation.png);
}
.plan-map-view-wrapper__toolbar-button--ds {
    background-image: url(./images/map/palette.png);
}

.plan-map-view-wrapper__toolbar-button-notification {
    background-color: #c00000;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    right: 2px;
    top: -5px;
    text-align: center;
    line-height: 18px;
    height: 18px;
    width: 18px;
}

.plan-map-view-wrapper__container-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-map-view-wrapper__container-body-header {
    overflow: hidden;
}
.plan-map-common-scroll-area {
    overflow: hidden;
}

.plan-map-view-wrapper__container-body-header table {
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}
    .plan-map-view-wrapper__container-body-header table th {    
        border-style: solid;
        border-color: #dadada;
        font-weight: normal;
        text-align: center;
        padding: 5px 0px;
        cursor:default;
    }
        .plan-map-view-wrapper__container-body-header table tr.top-row th{
            border-width: 0px 1px 1px 0;
        }
        .plan-map-view-wrapper__container-body-header table tr.bottom-row th{
            border-width: 0px 1px 1px 0;
        }


.plan-map-view-wrapper__container-body-indicator {
    flex-grow: 1;
    overflow:hidden;
}

    .plan-map-view-wrapper__container-body-indicator .k-splitter {
        height: 100%;
        border:none;
    }
    .plan-map-view-wrapper__container-body-indicator .k-splitbar {
        height: 2px;
        background-color: #dadada;
    }
    .plan-map-view-wrapper__container-body-indicator .k-splitbar > * {
        display: none;
    }


.plan-map-view-wrapper__container-footer {
    display: flex;
    height: 33px;
    border-top: 1px solid #dadada;
    gap: 5px;
    padding: 6px 10px;
}
.plan-map-view-wrapper__container-footer-vm {
    background-color: #dadada;
    border-radius: 10px;
    color: #404040;
    cursor: pointer;
    line-height: 21px;
    text-align: center;
    width: 34px;
    height: 20px;
}
.plan-map-view-wrapper__container-footer-vm--selected {
    background-color: #f2b800;
}

.plan-map-view-wrapper__container-footer-today-button {
    height: 32px;
    width: 28px;
    background-image: url(./images/map/calendar.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px;
    margin: -6px 0px 0px 10px;
    cursor: pointer;
}
    .plan-map-view-wrapper__container-footer-today-button:hover {
        background-color: #f2b800;
    }

    .plan-map-view-wrapper__container-footer-date {
        height: 20px;
        line-height: 20px;
        padding-left:20px;
    }
/*#endregion*/

/*#region plan-map-indicator-container*/
.plan-map-indicator-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.plan-map-indicator-container__header {
    height: 41px;
    padding: 5px 10px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #dadada;
    flex-shrink: 0;
}
.plan-map-indicator-container__name-delete-wrapper {
    border: 1px solid #dadada;
    border-radius: 5px;
    display: flex;
    margin-right: auto;
    gap: 20px;
    height: 30px;
    padding: 5px;
}
.plan-map-indicator-container__name {
    height:18px;    
    line-height:18px;    
}
.plan-map-indicator-container__header-button {
    height: 24px;
    width: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    border: 1px solid #dadada;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 3px;
    display:none;
}
    .plan-map-indicator-container__header-button:hover {
        background-color: #dadada;
    }
.plan-map-indicator-container:hover .plan-map-indicator-container__header-button {
    display: block;
}


.plan-map-indicator-container__header-button--delete {
    background-image: url(./images/cross.png);
    height: 18px;
    width: 18px;
    background-size: 14px;
    border: none;
    margin-top: 0;
    display: block;
}
.plan-map-indicator-container__header-button--move-up {
    background-image: url(./images/arrow-head-down.png);
    transform: rotate(180deg);
}
.plan-map-indicator-container__header-button--move-down {
    background-image: url(./images/arrow-head-down.png);
}
.plan-map-indicator-container__header-button--toggle-expand {
    background-image: url(./images/fullscreen.svg);
}

.plan-map-indicator-container__body {
    min-height:100%;
    height:0px;/*this is for only scrolling perfectly other its going over to flex body*/

}
/*#endregion*/


/*#region plan-phase-indicator-group*/
.plan-phase-indicator-group {
    height:56px;
    padding:5px 0px;
    position:relative;
}
.plan-phase-indicator-item {
    position: absolute;
    padding: 3px 10px;
    top: 5px;
}
.plan-phase-indicator-item__name {
    font-weight:bold;
}
    /*#endregion*/

/*#region plan-appointment-indicator-group*/
.plan-appointment-indicator-group {
    height: 30px;
    padding: 5px 0px;
    position: relative;
}

.plan-appointment-indicator-item {
    position: absolute;
    padding: 3px 10px;
    top: 5px;
    width: 20px;
    height: 20px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
}
.plan-appointment-indicator-item--status-0 {
    background-image:url(./images/map/clock.svg);
}
.plan-appointment-indicator-item--status-1 {
    background-image: url(./images/map/task.svg);
}
.plan-appointment-indicator-item--status-2 {
    background-image: url(./images/map/key.svg);
}


/*#endregion*/



.plan-map-keypoint-display-group-header {
    height: 30px;
    display:flex;
    gap:10px;
    position:relative;
    padding:5px 0px;
}
    .plan-map-keypoint-display-group-header.collapsed {
        height: 31px;
        border-bottom: 1px solid #dadada;
    }

.plan-map-keypoint-display-group-header__name {
    line-height: 18px;
    cursor: pointer;
    padding-left: 5px;
    font-weight: bold;
    padding-right: 25px;
    background-image: url(./images/arrow-head-down.png);
    cursor: pointer;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) 3px;
    background-color:#fff;
}
.plan-map-keypoint-display-group-header.collapsed .plan-map-keypoint-display-group-header__name {
    background-image: url(./images/arrow-head-right.png);
    background-size:12px;

}
/*.plan-map-keypoint-display-group-header__icon {
    height: 16px;
    width: 18px;
    background-image: url(./images/arrow-head-down.png);
    cursor: pointer;
    margin-top: 8px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}
.plan-map-keypoint-display-group-header.collapsed .plan-map-keypoint-display-group-header__icon {
    transform: rotate(-90deg);
}*/


.plan-map-keypoint-group-by-rank {
    height: 40px;
    position: relative;
    /*margin: 10px 0px;
    background-color: #f2f2f2;*/
}
    .plan-map-keypoint-group-by-rank.show-duration,
    .plan-map-keypoint-group-by-rank.show-labeling {
        height: 56px;
    }
    .plan-map-keypoint-group-by-rank.show-duration.show-labeling {
        height: 90px;
    }


.plan-map-keypoint-group-by-rank__label {
    position: absolute;
    padding: 1px 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #0070c0;
    border-radius: 5px;
    background-color: #fff;
    max-width: 130px;
    top: 50%;
    transform: translate(calc(-100% - 25px),-50% );    
}
    .plan-map-keypoint-group-by-rank__label.right {
        transform: translate(25px,-50% );
    }

    .plan-map-keypoint-group-by-rank__label.left.has-duration-line {
        margin-top: -20px;
    }

    .plan-map-keypoint-group-by-rank__label .text {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-wrap: break-word;
    }

    .plan-map-keypoint-group-by-rank__label .connector {
        width: 15px;
        height: 1px;
        background-color: #0070c0;
        position: absolute;
        left: 100%;
        top: 50%;
    }
    .plan-map-keypoint-group-by-rank__label.left.has-duration-line .connector {
        transform: rotate(25deg);
        width: 25px;
    }

    .plan-map-keypoint-group-by-rank__label.right .connector {        
        left: -16px;
    }



.plan-map-keypoint-group-by-rank__icon-wrapper {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.plan-map-keypoint-group-by-rank__icon {
    height: 30px;
    width: 30px;
    -webkit-mask: url(./images/map/map-kp.svg);
    mask: url(./images/map/map-kp.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0070c0;
}

.plan-map-keypoint-group-by-rank__symbol {
    position: absolute;
    pointer-events: none;
    z-index:1;
}
    .plan-map-keypoint-group-by-rank__symbol.symbol-1 {
        left: 10px;
        top: 6px;
        width: 11px;
        height: 10px;
        -webkit-mask: url(./images/map/shapes/1.svg);
        mask: url(./images/map/shapes/1.svg);
        -webkit-mask-size: 11px 10px;
        mask-size: 11px 10px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-2 {
        left: 9px;
        top: 6px;
        width: 12px;
        height: 10px;
        -webkit-mask: url(./images/map/shapes/2.svg);
        mask: url(./images/map/shapes/2.svg);
        -webkit-mask-size: 12px 10px;
        mask-size: 12px 10px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-3 {
        left: 11px;
        top: 6px;
        width: 8px;
        height: 11px;
        -webkit-mask: url(./images/map/shapes/3.svg);
        mask: url(./images/map/shapes/3.svg);
        -webkit-mask-size: 8px 11px;
        mask-size: 8px 11px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-4 {
        left: 10px;
        top: 6px;
        width: 11px;
        height: 10px;
        -webkit-mask: url(./images/map/shapes/4.svg);
        mask: url(./images/map/shapes/4.svg);
        -webkit-mask-size: 11px 10px;
        mask-size: 11px 10px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-5 {
        left: 9px;
        top: 6px;
        width: 12.5px;
        height: 9.5px;
        -webkit-mask: url(./images/map/shapes/5.svg);
        mask: url(./images/map/shapes/5.svg);
        -webkit-mask-size: 12.5px 9.5px;
        mask-size: 12.5px 9.5px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-6 {
        left: 9.2px;
        top: 5.2px;
        width: 11.9px;
        height: 11.9px;
        -webkit-mask: url(./images/map/shapes/6.svg);
        mask: url(./images/map/shapes/6.svg);
        -webkit-mask-size: 11.9px 11.9px;
        mask-size: 11.9px 11.9px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-7 {
        left: 9.4px;
        top: 5.5px;
        width: 11px;
        height: 11px;
        -webkit-mask: url(./images/map/shapes/7.svg);
        mask: url(./images/map/shapes/7.svg);
        -webkit-mask-size: 11px 11px;
        mask-size: 11px 11px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-8 {
        left: 9px;
        top: 5px;
        width: 10px;
        height: 12px;
        -webkit-mask: url(./images/map/shapes/8.svg);
        mask: url(./images/map/shapes/8.svg);
        -webkit-mask-size: 10px 12px;
        mask-size: 10px 12px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-9 {
        left: 9px;
        top: 7px;
        width: 12px;
        height: 10px;
        -webkit-mask: url(./images/map/shapes/9.svg);
        mask: url(./images/map/shapes/9.svg);
        -webkit-mask-size: 12px 10px;
        mask-size: 12px 10px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-10 {
        left: 11px;
        top: 5px;
        width: 10px;
        height: 12px;
        -webkit-mask: url(./images/map/shapes/10.svg);
        mask: url(./images/map/shapes/10.svg);
        -webkit-mask-size: 10px 12px;
        mask-size: 10px 12px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-11 {
        left: 9px;
        top: 5px;
        width: 12px;
        height: 10px;
        -webkit-mask: url(./images/map/shapes/11.svg);
        mask: url(./images/map/shapes/11.svg);
        -webkit-mask-size: 12px 10px;
        mask-size: 12px 10px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-12 {
        left: 10px;
        top: 7px;
        width: 10px;
        height: 8px;
        -webkit-mask: url(./images/map/shapes/12.svg);
        mask: url(./images/map/shapes/12.svg);
        -webkit-mask-size: 10px 8px;
        mask-size: 10px 8px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-13 {
        left: 8.8px;
        top: 3.6px;
        width: 13px;
        height: 12px;
        -webkit-mask: url(./images/map/shapes/13.svg);
        mask: url(./images/map/shapes/13.svg);
        -webkit-mask-size: 13px 12px;
        mask-size: 13px 12px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-14 {
        left: 9.4px;
        top: 5.5px;
        width: 11px;
        height: 11px;
        -webkit-mask: url(./images/map/shapes/14.svg);
        mask: url(./images/map/shapes/14.svg);
        -webkit-mask-size: 11px 11px;
        mask-size: 11px 11px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-15 {
        left: 10px;
        top: 6px;
        width: 10px;
        height: 10px;
        -webkit-mask: url(./images/map/shapes/15.svg);
        mask: url(./images/map/shapes/15.svg);
        -webkit-mask-size: 10px 10px;
        mask-size: 10px 10px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .plan-map-keypoint-group-by-rank__symbol.symbol-16 {
        left: 10px;
        top: 7px;
        width: 10px;
        height: 9px;
        -webkit-mask: url(./images/map/shapes/16.svg);
        mask: url(./images/map/shapes/16.svg);
        -webkit-mask-size: 10px 9px;
        mask-size: 10px 9px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }



.plan-map-keypoint-group-by-rank-duration__line {
    position: absolute;
    top:50%;
    height: 16px;
    line-height: 16px;
    border-bottom: 2px solid #0070c0;
    padding:0px 20px 0px 5px;
}
    .plan-map-keypoint-group-by-rank-duration__line .vr-line {
        position: absolute;
        left: -1px;
        bottom: -5px;
        height: 10px;
        width: 2px;
        background-color: #0070c0;
    }
    .plan-map-keypoint-group-by-rank-duration__line .date {
       overflow:hidden;
       white-space:nowrap;
       text-overflow:ellipsis;
    }

.plan-map-keypoint-group-by-rank-bottom-line {
    height: 20px;
    border-bottom: 1px solid #dadada;
}




.plan-map-checkpoint-group-by-rank {
    height: 56px;
    position: relative;
}


.plan-map-checkpoint-group-by-rank__label {
    position: absolute;
    padding: 1px 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #0070c0;
    border-radius: 5px;
    background-color: #fff;
    max-width: 130px;
    top: 50%;
    transform: translate(calc(-100% - 20px),-50% );
}

    .plan-map-checkpoint-group-by-rank__label.right {
        transform: translate(20px,-50% );
    }

    .plan-map-checkpoint-group-by-rank__label .text {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-wrap: break-word;
    }
.plan-map-checkpoint-group-by-rank__icon {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    width: 20px;
}

.plan-map-keypoint-tooltip {
    background-color: #fff;
    color: #404040;
    padding: 0;
    margin: 0;
}
    .plan-map-keypoint-tooltip .item-summary {
        margin: 0;
        /*box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3) !important;*/
    }   

/*#region plan-map-navigation-window*/
.plan-map-navigation-window {
    box-shadow: 1px 1px 7px 1px rgba(0,0,0,0.3);
}

.plan-map-navigation-window .k-window-titlebar {
    padding: 2px 5px;
    height: 26px;
}

.plan-map-navigation-window .k-window-titlebar-actions > button:not(:last-child) {
    display: none;
}

.plan-map-navigation-window .k-window-content {
    padding: 0px;
}

    .plan-map-navigation-window .k-resize-handle {
        display: none !important;
    }


    .pcp-map-scroll-navigation-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
.pcp-map-scroll-navigation-container__handler {
    background-color: #000;
    border: 1px solid #bebebe;
    box-sizing: border-box;
    cursor: move;
    width: 60px;
    height: 38px;
    opacity: 0.25;
    position: absolute;
    left: 0;
    top: 0;
    z-index:1;
    cursor:move;
}
.pcp-map-scroll-navigation-container__handler-helper {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 20px;
    min-width: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pcp-map-scroll-navigation-container__marker-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: left top;
    height: 100%;
    width: 100%;
}
.pcp-map-scroll-navigation-container__marker {
    height: 8px;
    width: 8px;
    -webkit-mask: url(./images/map/map-kp.svg);
    mask: url(./images/map/map-kp.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    position: absolute;
    background-color: #0070c0;
    transform: translate(-50%, -50%);
}
/*#endregion*/

/*#region filter-menu*/

.design-settings-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.design-settings-menu__header {
    height: 60px;
    display: flex;
    flex-shrink: 0;
    padding: 10px 10px 20px;
    line-height: 30px;
}

.design-settings-menu__header-name {
    flex-grow: 1;
    font-weight: bold;
}

.design-settings-menu__close-button {
    margin: 5px 5px 5px 0px;
    width: 20px;
    height: 20px;
    background-image: url(./images/cross.png);
    background-position: 5px center;
    background-size: 16px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    cursor: pointer;
}

.design-settings-menu__body {
    flex-grow: 1;
    overflow: auto;
}

.design-settings-menu__group {
    display: flex;
    flex-direction: column;
    margin: 10px;
    border: 1px solid #dadada;
    border-radius: 7px;
    padding: 7px 10px;
}

.design-settings-menu__group-header {
    display: flex;
    cursor: pointer;
    gap: 8px;
}

.design-settings-menu__group-header-name {
    flex-grow: 1;
    font-weight: bold;
    line-height: 20px;
}

.design-settings-menu__group-toggle-button {
    width: 20px;
    height: 20px;
    background-image: url(./images/arrow-head-down.png);
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: rotate(-90deg);
}

.design-settings-menu__group-toggle-button--expanded {
    transform: rotate(0deg);
}


.design-settings-menu__group-body {
    flex-grow: 1;
    padding: 10px 0px 5px;
}

.design-settings-menu__group-item {
    padding: 3px 5px;
    display:flex;
    align-items:center;
}
.design-settings-menu__group-item-label {
    flex-grow:1;
}
.design-settings-menu__group-item-value {
    flex-shrink: 0;
}
/*#endregion*/



/*#region group-by*/
.group-by {
}

.group-by__header {
    display:flex;
    gap:5px;
    padding-bottom:10px;
}

.group-by__icon {
    width:20px;
    height:20px;
    background-image:url(./images/arrow-head-right.png);
    background-position:center;
    background-size:14px;
    background-repeat:no-repeat;
    cursor:pointer;
}
.group-by__icon--expanded {
    background-image: url(./images/arrow-head-down.png);
}
.group-by__name {
    cursor: pointer;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000;
}

.group-by__body {
    padding: 0px 0px 10px 20px;
}
/*#endregion*/

/*#region object-reference*/
.object-reference {
    padding: 10px;
    background-color: #fff;
    margin-right:10px;
}
.object-reference:hover{
    background-color: #f2f2f2;
}

/*.object-reference:hover .object-reference__item-name span {
        cursor: pointer;
        text-decoration: underline;
    }*/

.object-reference__link-type-name {
    padding-bottom: 10px;
}

.object-reference__item-name {
    font-weight: bold;
}

.object-reference__item-name--workitem-name {
    position: relative;
    padding-left: 25px;
}

.object-reference__workitem-type-icon {
    height: 18px;
    width: 18px;
    -webkit-mask-size: cover !important;
    mask-size: cover !important;
    position: absolute;
    left: 0;
    top: 0px;
}

.object-reference__item-name--keypoint-item {
    padding-left: 25px;
    background-position: 1px 0px;
    background-repeat: no-repeat;
    background-size: auto;
}

.object-reference__item-name--keypoint-item-type-0 {
    background-image: url(./images/keypoint-item-input.svg);
}

.object-reference__item-name--keypoint-item-type-1 {
    background-image: url(./images/keypoint-item-output.svg);
}

.object-reference__item-name--keypoint-item-type-2 {
    background-image: url(./images/keypoint-item-process-step.svg);
}

.object-reference__item-name--link-object {
    padding-left: 25px;
    background-position: 1px 0px;
    background-repeat: no-repeat;
    background-size: 18px;
}

.object-reference__item-name--link-object-type-0 {
    background-image: url(./images/keypoint.svg);
}

.object-reference__item-name--link-object-type-1 {
    background-image: url(./images/appointment.png);
    background-size: 16px;
}

.object-reference__item-name--link-object-type-2 {
    position: relative;
}

.object-reference__item-name--link-object-type-3 {
    background-image: url(./images/lesson.svg);
    background-position: 1px -4px;
}

.object-reference__item-name--link-object-type-4 {
    background-image: url(./images/risk.png);
    background-size: 16px;
}

.object-reference__item-name--link-object-type-5 {
    background-image: url(./images/wiki.png);
    background-size: 14px;
}

.object-reference__item-name--link-object-type-7 {
    background-image: url(./images/keypoint-item-input.svg);
}

.object-reference__item-name--link-object-type-8 {
    background-image: url(./images/keypoint-item-output.svg);
}

.object-reference__item-name--link-object-type-9 {
    background-image: url(./images/keypoint-item-process-step.svg);
}

.object-reference__field {
    display: flex;
    flex-wrap: wrap;
    padding-left:25px;
}

.object-reference__field-item {
    height: 20px;
    line-height: 20px;
    padding-right: 15px;
    flex-shrink: 0;
    margin: 5px 0px;
    max-width: 100%;

    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

/*#endregion*/

/*#region item-summary*/
.item-summary {
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #dadada;
    margin: 5px;
    width: 300px;
    display: inline-block;
    position:relative;
}
    .item-summary .grid-context-menu-button {
        position: absolute;
        right: 2px;
        top: 2px;
        font-weight: normal;
        display: inline;
    }
        .item-summary .grid-context-menu-button:hover,
        .grid-context-menu-button--selected {
            background-color: #f2f2f2;
        }


    .item-summary:hover .item-summary__item-name span {
        cursor: pointer;
        text-decoration: underline;
    }


.item-summary__item-name--keypoint-item {
    padding-left: 25px;
    background-position: 1px 0px;
    background-repeat: no-repeat;
    background-size: auto;
}

.item-summary__item-name--keypoint-item-type-0 {
    background-image: url(../Images/keypoint-item-input.svg);
}

.item-summary__item-name--keypoint-item-type-1 {
    background-image: url(../Images/keypoint-item-output.svg);
}

.item-summary__item-name--keypoint-item-type-2 {
    background-image: url(../Images/keypoint-item-process-step.svg);
}



.item-summary__item-name--object-type-0 {
    padding-left: 25px;
    background-image: url(./images/keypoint.svg);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: 18px;
}
.item-summary__item-name--object-type-2 {
    padding-left: 25px;
    background-image: url(./images/workitem.svg);
    background-position: 0px -1px;
    background-repeat: no-repeat;
    background-size: 18px;
}

.item-summary__item-name {
    font-weight: bold;
    color: #00b0f0;
}

.item-summary__project-name {
    padding: 10px 0px;
    opacity: 0.8;
}

.item-summary__field {
    display: flex;
    flex-wrap: wrap;
}

.item-summary__field-item {
    height: 20px;
    line-height: 20px;
    padding-right: 15px;
    flex-shrink: 0;
    margin: 5px 0px;
    max-width: 100%;
}

.item-summary__field-item--height-auto {
    height: auto;
}

.item-summary__field-item--date {
    padding-left: 20px;
    background-image: url(../Images/calendar.svg);
    background-position: left top;
    background-size: 17px;
    background-repeat: no-repeat;
    /*flex-basis: 120px;*/
}

.item-summary__field-item--key {
    padding-left: 20px;
    background-image: url(../Images/key.svg);
    background-position: left top;
    background-size: 17px;
    background-repeat: no-repeat;
    /*flex-basis: 100px;*/
}

.item-summary__field-item--no {
    padding-left: 20px;
    background-image: url(../Images/no.svg);
    background-position: left top;
    background-size: 17px;
    background-repeat: no-repeat;
    /*flex-basis: 100px;*/
}

.item-summary__field-item--user {
    padding-left: 20px;
    background-image: url(../Images/user.svg);
    background-position: left top;
    background-size: 17px;
    background-repeat: no-repeat;
}

.item-summary__field-item--edit {
    padding-left: 20px;
    background-image: url(../Images/edit.svg);
    background-position: left top;
    background-size: 17px;
    background-repeat: no-repeat;
    /*flex-basis: 120px;*/
}

.item-summary__tags {
    display: flex;
    flex-wrap: wrap;
}

.item-summary__tag-item {
    height: 24px;
    line-height: 24px;
    padding: 0px 15px;
    flex-shrink: 0;
    margin: 5px 5px 0px 0px;
    max-width: 100%;
    border-radius: 7px;
    background-color: #d0e5f6;
}

.item-summary__tag-item--dotted {
    background-color: #fff;
    padding: 0;
    font-size: 24px;
    line-height: 14px;
    opacity: 0.7;
}

.item-summary__tag-item--mr-auto {
    margin-right: auto;
}


.item-summary__responsibility {
    margin-top: 10px;
    border-top: 1px solid #dadada;
    padding-top: 10px;
    display: flex;
}

.item-summary__responsibility--contributor {
    margin-top: 0px;
    border-top: none;
    padding-top: 0px;
}

.item-summary__responsibility-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-summary__responsibility-icon--user {
    text-transform: uppercase;
    text-align: center;
    line-height: 28px;
}

.item-summary__responsibility-icon--group {
    background-color: #c5e0b4;
    background-image: url(../Images/group.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.item-summary__responsibility-name {
    line-height: 28px;
}
/*#endregion*/


.keypoint-tooltip-link {
    height: 20px;
    padding-left: 25px;
    background-image: url(./images/keypoint.svg);
    background-position: 0px center;
    background-repeat: no-repeat;
    background-size: 18px;
    display:flex;
    gap:10px;
    margin-top:10px;
}
.keypoint-tooltip-link__no {
    padding:0px 5px;
    border-radius:7px;
    line-height:20px;
}
.keypoint-tooltip-link__name {
    line-height: 20px;
}
.keypoint-tooltip-link:hover .keypoint-tooltip-link__name {
    cursor:pointer;
    text-decoration:underline;
    color:#0070c0;
}


/*#region my-task-status-group*/
.my-task-status-group {
    display:flex;
    flex-direction:column;
}
.my-task-status-group__header {
    padding: 5px 10px;
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 1;
}
.my-task-status-group__body {
    flex-grow: 1;
    padding: 10px;
    background-color: #ffff;
    border: 1px solid #dadada;
    column-gap: 0;
    column-width: 310px;
}

/*#endregion*/

/*#region item-details-view and details-view-item*/
.item-details-view {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 5;
}

.item-details-view__header {
    height: 51px;
    display: flex;
    flex-shrink: 0;
    padding: 10px 20px 10px;
    line-height: 30px;
    margin-bottom: 10px;
    border-bottom:1px solid #dadada
}

.item-details-view__header-name {
    flex-grow: 1;
    font-weight: bold;
}

.item-details-view__close-button {
    margin: 5px 5px 5px 0px;
    width: 20px;
    height: 20px;
    background-image: url(./images/arrow-head-right.png);
    background-position: 5px center;
    background-size: 16px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    cursor: pointer;
}

.item-details-view__save-button {
    cursor: pointer;
    padding: 0px 15px;
    color: #fff;
    background-color: #49468f;
    margin-right: 10px;
}
.item-details-view__save-button.disabled {
    cursor: default;
    opacity:0.5;
}
.item-details-view__body {
    flex-grow: 1;
    overflow: auto;
}



.details-view-item {
    display: flex;
    padding-right: 5px;
}

.details-view-item__icon {
    flex-basis: 35px;
    flex-shrink: 0;
    padding: 7px 0px;
    height:40px;
    background-position: center 12px;
    background-repeat: no-repeat;
    background-size: 17px;
}

.details-view-item__icon--circle {
    background-image: url(./images/circle.svg);
}

.details-view-item__icon--user {
    background-image: url(./images/user.svg);
    background-size: 16px;
}

.details-view-item__icon--group {
    background-image: url(./images/group.svg);
    background-size: 22px;
}

.details-view-item__icon--no {
    background-image: url(./images/no.svg);
}

.details-view-item__icon--calendar {
    background-image: url(./images/calendar.svg);
}

.details-view-item__icon--description {
    background-image: url(./images/description.svg);
    background-size: 16px;
}

.details-view-item__icon--reference {
    background-image: url(./images/reference.svg);
}

.details-view-item__icon--tag {
    background-image: url(./images/tag.svg);
    background-position: center 15px;
}

.details-view-item__icon--attachment {
    background-image: url(./images/attachment.png);
    background-position: center 15px;
}

.details-view-item__icon--comment {
    background-image: url(./images/comments.png);
    background-position: center 15px;
}


.details-view-item__label {
    flex-shrink: 0;
    flex-grow: 1;
    padding-right: 10px;
    border-bottom: 1px solid #dadada;
    padding: 14px 15px 5px 0px;    
    width: 150px;
}
    .details-view-item__label.kp-title {
        font-weight: bold;
        padding-right: 0;
    }

.details-view-item__value {
    border-bottom: 1px solid #dadada;
    padding: 5px 0px;
    width: 250px;
    display: flex;
    flex-direction:column;
    align-items: end;
    justify-content:center;
}

.details-view-item__value--tag {
    padding: 0px 0px 5px;
    overflow: hidden;
}

.details-view-item__arrow {
    flex-basis: 30px;
    flex-shrink: 0;
    border-bottom: 1px solid #dadada;
    padding: 5px 0px 5px 15px;
}

.details-view-item__arrow-icon {
    width: 20px;
    height: 20px;
    background-image: url(./images/arrow-head-right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
    margin-top:5px;
}

.details-view-item__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content:right;
    width:100%;
    padding-top:5px;
}

.details-view-item__tag-item {
    height: 24px;
    line-height: 24px;
    padding: 0px 15px;
    flex-shrink: 0;
    margin: 5px 5px 0px 0px;
    max-width: 100%;
    border-radius: 7px;
    background-color: #d0e5f6;
}

@media (max-width: 500px) {
    .details-view-item.break-when-mobile {
        flex-direction: column;
        padding:10px 5px 5px 0px;
        border-bottom: 1px solid #dadada;
        margin:0px 5px 0px 35px;
    }

        .details-view-item.break-when-mobile .details-view-item__icon,
        .details-view-item.break-when-mobile .details-view-item__arrow {
            display: none
        }
        .details-view-item.break-when-mobile > div {
            border-bottom: none;
            width: 100%;
            justify-content: left;
        }
        .details-view-item.break-when-mobile .details-view-item__label {
            padding-top:0px;
            padding-bottom:0px;
            opacity:0.7;
        }
        .details-view-item.break-when-mobile .details-view-item__label::after {
            content:':';
        }

        .details-view-item.break-when-mobile .details-view-item__value {
            align-items: start;
            justify-content: left;
        }

    .details-view-item__label.kp-title + .details-view-item__arrow {
        display: none;
    }
}


/*#endregion*/


.item-summary-conatiner-mobile-design {
    column-gap: 0;
    column-width: 310px;
}
    .item-summary-conatiner-mobile-design .item-summary {
        width: calc(100% - 10px);
    }


/* drag and drop my tasks*/
.my-task-grid-view .drop-status-container {
    position: absolute;
    left: 0;
    top: 26px;
    width: 100%;
    background-color: transparent;
    flex-direction: column;
    display: none;
}
.my-task-grid-view.item-moving-enable .drop-status-container {
    display: flex;
}
.my-task-grid-view .drop-status-container > div.opacity-0 {
    opacity: 0 !important;
}
.my-task-grid-view .drop-status-container > div {
    opacity:0;
    flex: auto;
    padding-top: 10px;
    font-weight: bold;
    text-align: center;
}
.my-task-grid-view .drop-status-container.hover > div {
    opacity: 1;
}

/*#############################*/

.filter-menu-button {
    background-image: url(./images/filter.png);
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 16px;
    cursor: pointer;
    padding-left: 25px;
    padding-right: 5px;
    line-height: 30px;
}

    .filter-menu-button + .page-naviagation__link.signout-link {
        margin-left: 0px !important;
    }

/*#region filter-menu*/

.filter-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color:#fff;
}

.filter-menu__header {
    height: 60px;
    display: flex;
    flex-shrink: 0;
    padding: 10px 20px 20px;
    line-height: 30px;
}
.filter-menu__header-name {
    flex-grow: 1;
    font-weight: bold;
}

.filter-menu__close-button {
    margin:5px 5px 5px 0px;
    width: 20px;
    height: 20px;
    background-image: url(./images/arrow-head-right.png);
    background-position: 5px center;
    background-size: 16px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    cursor:pointer;
}
.filter-menu__close-button--cross-icon {
    background-image: url(./images/cross.png);
    background-size: 14px;
    margin-left:20px;
    margin-right:0px;
}
.filter-menu__apply-button {
    cursor: pointer;
    padding: 0px 15px;
    color: #fff;
    background-color: #49468f;
    margin-right: 10px;
}
.filter-menu__clear-button {
    cursor:pointer;
    color:#0078d4;
}

.filter-menu__body {
    flex-grow: 1;
    overflow: auto;
}
.filter-menu__search-input {
    width: calc(100% - 40px);
    margin-left:20px;
    background-color: #f2f2f2;
    margin-bottom:20px;
}

.filter-menu__group {
    display:flex;
    flex-direction:column;
}

.filter-menu__group-header {
    background-color: #f2f2f2;
    padding: 5px 20px;
    margin: 10px 0px;
    display:flex;
    cursor:pointer;
}
.filter-menu__group-header-name {
    flex-grow: 1;
    font-weight: bold;
    line-height: 20px;
}
.filter-menu__group-toggle-button {
    width: 20px;
    height: 20px;
    background-image: url(./images/arrow-head-down.png);
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
    cursor: pointer;
    transform:rotate(0deg);
}
.filter-menu__group-toggle-button--expanded {
    transform: rotate(180deg);
}


.filter-menu__group-body {
    flex-grow: 1;
    overflow: auto;
    max-height: 250px;
}

.filter-menu__group-item {
    padding: 5px 20px;
    cursor:pointer;
}
.filter-menu__group-item--selected {
    padding-right: 40px;
    background-image: url(./images/tick.svg);
    background-position: calc(100% - 20px) center;
    background-size: 18px;
    background-repeat: no-repeat;
}
.filter-menu__group-item:hover {
    background-color:#f2f2f2;
}


/*#endregion*/

.keypoint-contributor {
    padding: 10px;
    margin-right: 10px;
}
.keypoint-contributor:hover{
   background-color:#f2f2f2;
}
.keypoint-contributor__name {
    padding-bottom: 3px;
}
.keypoint-contributor__text {
    opacity: 0.7
}

.grid-keypoint-icon {
    width: 20px;
    height: 20px;
    background-image: url(./images/keypoint.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}
.grid-workitem-icon {
    width: 20px;
    height: 20px;
    background-image: url(./images/workitem.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.grid-description-wrapper-container {
    max-height: 100%;
    overflow: auto;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3) !important;
}
.grid-description-wrapper {
    background-color: #fff;
    white-space: pre-wrap;
}
    .grid-description-wrapper img {
        max-width: 100%;
    }

.grid-description-button {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-image:url(./images/align-left.png);
    background-size:20px;
    background-position:center;
    background-repeat:no-repeat;
}



.grid-text-clickable {
    color: #0070C0;
}
.grid-text-clickable:hover {
    text-decoration:underline;
    cursor:pointer;
}





.custom-warning {
    color: red;
    font-weight: normal;
    width: 100%;
}

.object-icon{
    width:20px;
    height:20px;
    background-position:center;
    background-size:auto;
    background-repeat:no-repeat;
}
.object-icon--7 {
   background-image:url(./images/keypoint-item-input.svg);
}
.object-icon--8 {
    background-image: url(./images/keypoint-item-output.svg);
}
.object-icon--9 {
    background-image: url(./images/keypoint-item-process-step.svg);
}


/*name and grid context menu button*/
.k-table-td .name-button-wrapper {
    display: flex;
    gap: 30px;
}

    .k-table-td .name-button-wrapper .name {
        flex-grow: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.grid-context-menu-button {
    width: 20px;
    height: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    display: none;
    line-height: 10px;
}

.k-table-row:hover .grid-context-menu-button,
.grid-context-menu-button--selected {
    display: inline !important;
}

/*############*/

/*############## action menu #################*/
.action-menu-button {
    line-height: 30px;
    cursor: pointer;
    padding-right: 30px;
    background-image: url(./images/arrow-head-down.png);
    background-position: calc(100% - 5px);
    background-repeat: no-repeat;
    background-size: 16px;
}
.action-menu-button {
    line-height: 30px;
    cursor: pointer;
}

    .action-menu-button.map-indicator-action-button {
        background-image: url(./images/map/area-chart.png);
        background-position: left center;
        padding-left: 20px;
        padding-right: 10px;
    }


    /*###########################*/
    .corporate-blue-color {
        color: #00b0f0;
    }
.op-7-on-hover:hover {
opacity:0.7;
}
.show-title-when-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dialog-fullscreen-button {
    height: 30px;
    width: 30px;
    background-image: url(./images/fullscreen.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    cursor: pointer;
}
.dialog-close-button {
    height: 30px;
    width: 30px;
    background-image: url(./images/cross.png);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    cursor:pointer;
}
.dialog-save-button {
    height: 30px;
    line-height: 30px;
    padding: 0px 15px;
    background-color: #f2f2f2;
    cursor: pointer;
    border: 1px solid #dadada;
    min-width: 80px;
    flex-shrink: 0;
}
    .dialog-save-button.disabled {
        opacity: 0.5 !important;
        cursor: default;
    }

.dialog-cancel-button {
    height: 30px;
    line-height: 30px;
    padding: 0px 15px;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #dadada;
    min-width: 80px;
    flex-shrink: 0;
}

.add-delete-tag-section {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.add-delete-tag-section__tag-wrapper {
    background-color: #fff1c5;
    position: relative;
    padding: 0px 25px 0px 10px;
    max-width: 100%;
    height: 30px;
    line-height: 30px;
    border-radius:5px;
}
.add-delete-tag-section__tag_name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.add-delete-tag-section__delete-button {
    position: absolute;
    top: 4px;
    right: 3px;
    width: 10px;
    height: 10px;
    background-image: url(./images/cross.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.add-delete-tag-section__add-button {
    background-color: #fff1c5;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    cursor:pointer;
}


.add-delete-tag-section.responsive-on-mobile {
    flex-direction: column;
    gap: 0;
}

    .add-delete-tag-section.responsive-on-mobile .add-delete-tag-section__add-button {
        background-color: #49468f;
        text-align: center;
        color: #fff;
        padding:0px 0px 10px 0px;
        margin-bottom: 20px;
        border-radius:6px;
    }
        .add-delete-tag-section.responsive-on-mobile .add-delete-tag-section__add-button + .add-delete-tag-section__tag-wrapper {
            border-top: 1px solid #dadada;
        }

    .add-delete-tag-section.responsive-on-mobile .add-delete-tag-section__tag-wrapper {
        height:34px;
       padding: 7px 25px 7px 10px;
       line-height:20px;
       border-bottom:1px solid #dadada;
       border-radius:0;
       background-color:#fff;
    }
    .add-delete-tag-section.responsive-on-mobile .add-delete-tag-section__delete-button {        
        top: 10px;
        right: 5px;
        width: 14px;
        height: 14px;
        background-size: 12px;
    }







/*#################################*/
.color-text {
    display: flex;
    gap: 5px;
}

.color-text__color {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.color-text__color--mt-3 {
    margin-top: 3px;
}

.color-text__text {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*#####################################*/


/*##############################*/
.icon-text {
    display: flex;
    gap: 10px;
}

.icon-text__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

.icon-text__icon--link {
    background-image: url(./images/open-link.png);
}

.icon-text__icon a {
    width: 100%;
    height: 100%;
    display: block;
}

.color-text__text {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*############################*/

/*#########################*/
.workitem-type {
    display: flex;
    gap: 5px;
}

.workitem-type__icon {
    flex-shrink: 0;
    height: 16px;
    width: 16px;
    -webkit-mask-size: cover !important;
    mask-size: cover !important;
}

.workitem-type__icon--mt-2 {
    margin-top: 2px;
}

.workitem-type__name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*###########################*/


/*######################*/
.tag-wrapper {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tag-wrapper__tag {
    padding: 2px 5px;
    background-color: #fff1c5;
    color: #404040;
    margin: 0px 5px 0px 0px;
}

.tag-wrapper__tag--deebf7 {
    background-color: #deebf7;
}

.tag-wrapper__tag--project-type {
    background-color: #deebf7;
}

.tag-wrapper__tag--project-manager {
    background-color: #e2f0d9;
}
/*#############################*/


/*#region horizontal-tab-container*/
.horizontal-tab-container {
    float: left;
}

    .horizontal-tab-container > div {
        float: left;
        height: 30px;
        line-height: 30px;
        margin-right: 25px;
        cursor: pointer;
        border-bottom: 3px solid transparent;
    }

    .horizontal-tab-container.uppercase > div {
        text-transform: uppercase;
    }

    .horizontal-tab-container > div:last-child {
        margin-right: 0;
    }

    .horizontal-tab-container > div.selected-tab {
        border-color: #f2b800;
        font-weight: bold;
    }

/*#endregion*/

/*#region keypoint-process-flow-container*/
.keypoint-process-flow-container {
    display: flex;
    gap: 100px;
    align-items: center;
    position:relative;
    z-index:1;
}
.keypoint-process-flow-container__input {
    max-width: 300px;
    width:calc(35% - 100px);
    flex-shrink:0;
}
.keypoint-process-flow-container__process {
    max-width: 350px;
    flex-grow: 1;
}
.keypoint-process-flow-container__output {
    max-width: 300px;
    width: calc(35% - 100px);
    flex-shrink: 0;
}


.keypoint-process-flow-item {
    display: flex;
    padding: 5px;
    border-radius: 7px;
    border: 1px solid #dadada;
    background-color: #fff;
    margin:20px 0px;
    position:relative;
}
.keypoint-process-flow-item__icon {
    width: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    flex-shrink:0;
}
.keypoint-process-flow-item__icon--process {
    background-image: url(./images/keypoint-item-process-step.svg);
    background-size:22px;
}
.keypoint-process-flow-item__icon--deliverable {
    background-image: url(./images/deliverable.svg);
    background-size: 22px;
}

.keypoint-process-flow-item__vl-container {
    flex-shrink: 0;
}
.keypoint-process-flow-item__vl {
    height: calc(100% - 10px);
    width: 1px;
    background-color: #dadada;
    margin: 5px;
}
.keypoint-process-flow-item__content {
    flex-grow: 1;
    overflow: hidden;
}
.keypoint-process-flow-item__content-no {
    float: left;
    font-size:12px;
}
.keypoint-process-flow-item__content-status {
    float: right;
    height: 14px;
    width: 14px;
    border-radius: 50%;
}
.keypoint-process-flow-item__content-type-date {
    float: right;
    font-size: 12px;
    color: #808080;
    margin-right:5px;
}

.keypoint-process-flow-item__content-name {
    font-weight: bold;
    word-wrap: break-word;
}

.keypoint-process-flow-item__toggle-button {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(-100%,-50%);
    background-color: #dadada;
    width: 16px;
    height: 16px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    cursor:pointer;
}
    .keypoint-process-flow-item__toggle-button.right {
        left: auto;
        right: 0;
        transform: translate(100%,-50%);
    }

.keypoint-process-flow-item__count {
    position: absolute;
    left: 0px;
    top: 0;
    transform: translate(-100%, -100%);
    background-color: #dadada;
    padding: 0px 5px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}
    .keypoint-process-flow-item__count.right {
        left: auto;
        right: 0;
        transform: translate(100%, -100%);
    }
/*#endregion*/
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.color-red {
    color: red;
}

.popup-container-align-right {
    position: fixed !important;
    right: 10px;
    left: auto !important;
}
.popup-container-mobile-responsive {
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

popup-content {
}

popup-content--no-border {
    box-shadow: none;
    border-width: 0;
}

.popup-content--width-100p {
    width: 100%;
}
.popup-content--height-100p {
    height: 100%;
}

table.va-top th,
table.va-top td {
    vertical-align: top;
}
table.tl-fixed {
table-layout:fixed;
}

.underline-on-hover:hover {
    text-decoration: underline;
}

.no-data-message {
    padding: 25px 10px;
    text-align: center;
    width: 100%
}

.k-loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10004;
}


.plan-map-keypoint-tooltip-container {
z-index:10002 !important;
}
