@charset "UTF-8";

body {
    font-size: 16px;
    font-family:'Roboto', sans-serif;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%;
    padding: 0px;
    margin: 0px;
    max-width: 100%;
    /*overflow-x: hidden;*/
    /*overflow-y: scroll;*/
    margin-bottom: 100px;
    font-weight: 300;
    color: #515151;
    background: #eeeeee;
}

a {
    text-decoration: none;
    color: #515151;
}

div:focus {outline:none !important;}

.box-top {
    height: 56px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #E42129;
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
    z-index: 10;
}

.box-top-selected {
    height: 64px;
    position: fixed;
    display: none;
    top: 0px;
    width: 100%;
    background-color: #2196F3;
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
    z-index: 11;
}

.title {
    position: absolute;
    top: -2px;
    left: 60px;
    color: #fff;
    font-size: 1.1em;
    width: calc(100% - 145px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-navigation {
    height: 60px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #515151;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.no-show {
    display: none;
}

.add-button {
    height: 56px;
    width: 56px;
    position: fixed;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    bottom: 68px;
    right: 20px;
    background-color: #2196F3;
    border: none;
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
    z-index: 12;
    outline: 0;
}

.add-button-home {
    width: 156px!important;
}

.image-menu {
    top: 16px;
    left: 16px;
    position: relative;
    width: 24px;
    height: 24px;
}

.image-menu-right {
    top: 16px;
    right: 20px;
    position: absolute;
    width: 24px;
    height: 24px;
}

.image-search {
    top: 16px;
    right: 55px;
    position: absolute;
    width: 24px;
    height: 24px;
}

.image-selectedProcesses {
    top: 15px;
    right: 20px;
    position: absolute;
    width: 24px;
    height: 24px;
}

.image-add {
    left: 0px;
    width: 24px;
}

.image-add, .text-add {
    top: 2px;
    position: relative;
    height: 24px;

}

.text-add {
    right: 14px;
    width: 100px;
    float: right;
    line-height: 24px;
    color: white;
    display: block;
    font-size: 16px;
}

.nav-button {
    margin-left: 5px;
    padding: 5px 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    color: white;
    flex-wrap: wrap;
    width: 60px;
    box-sizing: border-box;
}

.nav-button:hover {
    background: #616161;
    transition: background-color linear 0.2s;
}

.nav-button .nav-icon {
    margin-bottom: 3px;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-button .nav-icon span {
    font-size: 24px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}

.nav-button .nav-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-button .nav-label {
    font-size: 10px;
    font-weight: 100;
    flex: 0 0 100%;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #CCC;
}

.image-navigation {
    top: 12px;
    margin-left: 30px;
    margin-right: 10px;
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

#view {
    display: none;
}

.process {
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    position: relative;
    min-height: 25px;
    width: 85%;
    max-width: 800px;
    top: 90px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    padding-bottom: 30px;
    font-weight: 400;
}

.process-box-child {
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    position: absolute;
    width: 100%;
    height: 55px;
    left: 8px;
    top: 8px;
    z-index: -1;
}

.process-name {
    position: relative;
    margin: 0px;
    width: calc(100% - 120px);
    left: 40px;
    top: 16px;
    font-size: 14pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.process-number {
    position: absolute;
    top: -6px;
    left: 10px;
    font-size: 10px;
}

.process-move {
    top: 15px;
    left: 8px;
    position: absolute;
    width: 24px;
    height: 24px;
    display: none;
}

.image-arrow-down {
    bottom: -36px;
    left: calc(50% - 15px);
    position: absolute;
    width: 28px;
    height: 36px;
}

.image-expand {
    top: 17px;
    right: 20px;
    position: absolute;
    width: 24px;
    height: 24px;
}

.image-attachementOrgChart {
    top: 16px;
    left: 7px;
    position: absolute;
    width: 20px;
    height: 20px;
    display: none;
}

.image-more {
    top: 17px;
    right: 55px;
    position: absolute;
    width: 24px;
    height: 24px;
    display: none;
}

.moreFlow {
    top: 10px;
    right: 55px;
    position: absolute;
    width: 24px;
    height: 24px;
    display: none;
}

.image-close {
    top: 16px;
    left: 16px;
    position: absolute;
    width: 24px;
    height: 24px;
}

.image-attachement {
    top: 20px;
    right: 80px;
    position: absolute;
    width: 24px;
    height: 24px;
}

.image-done {
    top: 20px;
    right: 20px;
    position: absolute;
    width: 24px;
    height: 24px;
    background: transparent url(/etc/flowler/static/images/ic_done_grey600_24dp.png) top left no-repeat;
    color: transparent;
    border: none;
}

.menu-process {
    position: absolute;
    min-width: 168px;
    min-height: 20px;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    background-color: #fff;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    z-index: 13;
    font-size: 1em;
    display: none;
    outline: 0;
    padding-top: 8px;
    padding-bottom: 8px;
}

.menu-process.fixed {
    position: fixed;
}

.menu-process hr {
    height: 1px;
    background: #ccc;
    border: 0;
    padding: 0;
    margin: 10px 0;
}

.menu-process p {
    position: relative;
    padding: 16px;
    margin: 0px;
    line-height: 16px;
    font-weight: 300;
}

.menu-process a {
    position: relative;
    padding: 8px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0px;
    line-height: 32px;
    font-weight: 300;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.menu-process p:hover, .menu-process a:hover, .button-create:hover, .newButton:hover {
    background-color: #E3F2FD;
}

.menu-process.small p {
    font-size: 14px;
    line-height: 14px;
    padding: 8px 16px;
}

.menu-process .column {
    float: left;
}

.buttonDialog:hover, .saveButton:hover, .cancelButton:hover, .aButton:hover {
    background-color: #E3F2FD;
}

/*.button-create:hover, .buttonHint:hover {
    background-color: #757575;
}*/

.newElement {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    z-index: 9999;
    background-color: #eeeeee;
    display: none;
    margin-bottom: 100px;
}

.newElementTop {
    height: 20px;
    background-color: #515151;
    color: #fff;
    padding: 20px;
}

.formInput {
    outline: none;
    position: relative;
    left: 20px;
    height: 56px;
    width: 100%;
    //text-indent: 20px;
    padding: 0 0 0 20px;//0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border: none;
    //border-bottom: 1px solid #d3d3d3;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: 400;
    font-size: 1em;
    background-color: transparent;
    font-family: "Roboto",sans-serif;
    box-shadow: none;
    overflow: hidden;
    margin-bottom: 20px;
}

@-moz-document url-prefix(){
  select.formInput { text-indent: 9px; }
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

select::-ms-expand {
    display: none;
}

select 
{
  -webkit-appearance:none;
  -moz-appearance:none;
  -o-appearance:none;
   appearance:none; 
}

select::-ms-expand{
  display:none;
}

.formDesc {
    padding-left: 20px;
    padding-top: 16px;
    margin: 0px;
    color: grey;
}

*::-webkit-input-placeholder {
    color: #808080;
}
*:-moz-placeholder {
    color: #808080;
}
*::-moz-placeholder {
    color: #808080;
}
*:-ms-input-placeholder {
    color: #808080;
}

#newElementName {
    /*outline: none;
    position: relative;
    //top: 61px;
    left: 0px;
    height: 56px;
    width: 100%;
    max-width: 660px;
    padding: 0px 20px;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: 300;
    font-size: 1em;*/
}

#newElementClass {
    /*outline: none;
    position: relative;
    //top: 118px;
    margin: 0px;
    left: 13px;
    height: 56px;
    width: 100%;
    max-width: 660px;
    padding: 0px 20px;
    color: #9e9e9e;
    border-radius: 0px;
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: 300;
    font-size: 1em;
    background-color: transparent;
    /*outline: none;
    position: relative;
    //top: 118px;
    margin: 0px;
    left: 0px;
    height: 40px;
    width: 100%;
    max-width: 660px;
    padding: 0px 20px;
    padding-top: 20px;
    color: #9e9e9e;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: 300;
    font-size: 1em;*/
}

#newElementDescriptionProcess, #newElementDescriptionFlow, #newElementDescriptionEntity {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px;
    text-indent: 0px;
    border: none;
    max-height: 200px;
    height: auto;
    /*outline: none;
    position: relative;
    //top: 150px;
    left: 0px;
    width: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    font-weight: 300;
    font-size: 1em;
    line-height: 20px;
    border-top: 1px solid #d3d3d3;*/
}


/*.new-process {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 250px;
    height: 100%;
    z-index: 11;
    background-color: #fff;
    display: none;
}

#new-processName {
    outline: none;
    position: absolute;
    top: 61px;
    left: 0px;
    height: 56px;
    width: 100%;
    padding: 0px 20px;
    border-radius: 0px;
    border: none;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: 300;
    font-size: 1em;
}

#new-processDescription {
    outline: none;
    position: absolute;
    top: 120px;
    left: 0px;
    width: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    font-weight: 300;
    font-size: 1em;
    line-height: 20px;
}*/

.line {
    position: absolute;
    width: 100%;
    border: none;
    border-top: 1px solid #d3d3d3;
    height: 1px;
}

.menu-main {
    background: #fff;
    bottom: 0;
    box-shadow: 0 0 4px rgba(0,0,0,.14),2px 4px 8px rgba(0,0,0,.28);
    color: #757575;
    line-height: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    white-space: nowrap;
    width: 232px;
    top: 0;
    z-index: 101;
    display: none;
}

ul {
    list-style-type: none;
}

#menu-mainFirst {
    position: relative;
    padding-left: 40px;
}

.menu-mainFirst {
    position: relative;
    left: 15px;
    font-size: 0.8em;
    font-weight: 400;
}

.image-main {
    top: 15px;
    left: -40px;
    position: absolute;
    width: 20px;
    height: 20px;
}

.horizontal-line {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 15px;
    margin-top: 15px;
    border-top: 1px solid #BDBDBD;
}

.process-comment {
    position: relative;
    margin: 0px;
    margin-top: 36px;
    display: none;
    font-weight: 100;
    padding-left: 40px;
    padding-top: 10px;
    padding-right: 40px;
    border-top: 1px solid #BDBDBD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    //max-height: 58px;
    line-height: 1.2em;
}

.process-details-title {
    position: relative;
    left: 40px;
    width: calc(100% - 80px);
    margin: 0px;
    margin-top: 20px;
    padding-bottom: 5px;
    padding-left: 40px;
    display: none;
    border-bottom: 1px solid #BDBDBD;
    color: #9E9E9E;
    font-weight: 0.9;
    font-weight: 400;
}

.process-details-entry {
    position: relative;
    left: 40px;
    width: calc(100% - 90px);
    margin: 0px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 50px;
    display: none;
    border-bottom: 1px solid #BDBDBD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.image-process-details {
    position: absolute;
    left: 0px;
    top: -2px;
    width: 20px;
    height: 20px;
}

.image-process-details-goTo {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 24px;
    height: 24px;
}

.image-navigation-more {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: none;
    transition: transform linear 0.15s;
}

.image-navigation-more.open {
    transform: rotate(-45deg);
}

.model {
    position: relative;
    height: 200px;
    width: 100%;
    max-width: 250px;
    top: 200px;
    margin-left: auto;
    margin-right: auto;
}

.model-box-top {
    background: #E42129;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    position: absolute;
    width: 100%;
    height: 80px;
}

.model-box-top-green {
    background: #21C429;
}

.model-box-top-yellow {
    background: #EFE000;
}

.model-box-top-blue {
    background: #1166E3;
}

.model-box {
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    position: absolute;
    top: 78px;
    width: 100%;
    height: 100px;
}

.model-name {
    position: absolute;
    margin: 0px;
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
    bottom: 10px;
    line-height: 1.2em;
    max-height: 58px;
    color: #fff;
    overflow: hidden;
}

.model-box-top-yellow .model-name {
    color: black;
}

.model-open {
    position: absolute;
    padding: 8px;
    font-size: 0.8em;
    left: 8px;
    top: 140px;
    color: #2196F3;
    font-weight: 400;
}

.model-open:hover {
    background-color: #E3F2FD;
}

.model-comment {
    position: absolute;
    left: 15px;
    top: 88px;
    width: 90%;
    max-height: 45px;
    overflow: hidden;
    line-height: 1.4em;
    margin: 0px;
    font-weight: 100;
    font-size: 0.7em;
}

.image-logo-menu {
    position: relative;
    top: 8px;
    left: 20px;
    height: 32px;  
}

#news {
    position:relative;
    justify-content: center;
    top:280px;
    display: flex;
    width: 100%;
    height: calc(100vh - 280px);
    align-items: stretch;

    #news-list {
        width: 50%;
        overflow-y: auto;
        padding-top: 20px;

        .news-item {
            display: flex;
            width: calc(100% - 10px);
            padding: 10px 5px;
        }

        .news-item.news-read-false {
            font-weight: bold;
        }

        .news-icon {
            width: 10%;
            max-width: 100px;
            display: flex;
            justify-content: center;
            padding-right: 5px;

            div {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 50px;
                height: 50px;
                border: 1px solid #000;
                background: white;
                border-radius: 50%;

                i {
                    font-size: 30px;
                }
            }
        }

        .news-content {
            width: 70%;

            .news-title {
                margin-bottom: 5px;
            }
        }
        .news-date {
            position: absolute;
            width: 60%;
            text-align: right;
        }

        @media (max-width: 1920px) {
            .news-date {
                position: relative;
                width: 20%;
            }
        }
    }

    #news-details {
        height: 100%;
        width: 100%;
        min-width: 300px;
        overflow-x: hidden;
        overflow-y: scroll;
        z-index: 13;
        background: #fff;
        flex-grow: 1;
        box-shadow: 0 0 4px rgba(0,0,0,.14),2px 4px 8px rgba(0,0,0,.28);

        left: 0;
        bottom: 0;
        position: fixed;

        form {
            height: 100%;

            @media (max-width: 1300px) {
                textarea[disabled] {
                    width: 70% !important;
                }

                .news-link {
                    width: calc(30% - 60px) !important;
                }
            }

            .comments-header {
                border-bottom: 1px solid #BDBDBD;
            }

            textarea[disabled] {
                padding-right: 20px;
                width: 50%;
            }

            textarea[disabled], .news-link {
                background: #fff;
                float: left;
                border-bottom: none;
            }

            .news-link {
                width: calc(50% - 60px);
                margin-top: 25px;
                padding-bottom: 35px;
                height: 38px;

                a {
                    position: relative;
                }
            }

            .comments-container {
                display: flex;
                flex-flow: column wrap;
                justify-content: space-between;
                width: 100%;
                height: calc(100% - 119px);
                padding-bottom: 20px;

                .list.comments {
                    flex: 1;
                    overflow-y: auto;
                    padding: 10px;
                    border-bottom: 1px solid #000;
                }
                .list.comments::-webkit-scrollbar {
                    width: 6px;
                }
                .list.comments::-webkit-scrollbar-track {
                    background: #ddd;
                }
                .list.comments::-webkit-scrollbar-thumb {
                    background: #bdbdbd;
                }

                .comment {
                    display: flex;
                    align-items: flex-end;
                    margin-bottom: 10px;

                    .comment-image {
                        width: 50px;
                        height: 50px;
                        line-height: 50px;
                        text-align: center;
                        margin-right: 10px;
                        background: #ddd;
                        background-repeat: no-repeat;
                        background-position: center;
                        background-size: cover;
                        border-radius: 50%;
                        min-width: 50px;
                    }

                    .comment-bubble {
                        max-width: 100%;
                        padding: 15px;
                        border-radius: 15px;
                        background: #ececec;
                        border-bottom-left-radius: 0;

                        .comment-info {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            margin-bottom: 10px;

                            .comment-info-time {
                                margin-right: 10px;
                                font-weight: bold;
                            }
                            .comment-info-private, .comment-info-delete {
                                font-size: 0.85em;
                            }
                        }
                    }
                }
                .comment.own {
                    flex-direction: row-reverse;

                    .comment-image {
                        background: #2196F3;
                        margin-right: 10px;
                        margin-left: 10px;
                    }

                    .comment-bubble {
                        background: #E3F2FD;
                        border-bottom-left-radius: 15px;
                        border-bottom-right-radius: 0;
                    }
                }
                .comment:last-of-type {
                    margin: 0;
                }
            }

            .settingsGroupEntry {
                border: none;
                left: 40px;
                width: calc(100% - 50px);
            }

            .settingsGroupEntry.action {
                display: flex;
                padding-right: 10px;

                * {
                    padding: 10px;
                    font-size: 1em;
                }

                .comment-input {
                    flex: 1;
                    background: #F8F8F8;
                    border: 1px solid #F8F8F8;
                    margin-right: 10px;
                    padding: 0;

                    .ql-editor {
                        padding: 12px 15px;

                        * {
                            padding: 0;
                        }
                    }
                }

                .comment-send-btn {
                    margin-left: 10px;
                    color: #000;
                    font-weight: bold;
                    cursor: pointer;
                    transition: background 0.23s;
                    border: 1px solid #000;
                }

                .comment-send-btn:hover {
                    background: #2196F3 !important;
                }
            }

            .settingsGroupEntry.type {
                height: 30px;
                padding: 0;
                display: flex;

                * {
                    padding-left: 10px;
                }

                label {
                    align-content: center;
                    padding-right: 5px;
                }

                .comment-input {
                    width: 300px;
                    background: #F8F8F8;
                    border: 1px solid #F8F8F8;
                    margin-right: 10px;
                    padding: 0;

                    .ql-editor {
                        padding: 4px;

                        * {
                            padding: 0;
                        }
                    }
                }
            }
        }
    }
}

.sideNav, .sideNavLeft {
    background: #fff;
    box-shadow: 0 0 4px rgba(0,0,0,.14),2px 4px 8px rgba(0,0,0,.28);
    color: #757575;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    //white-space: nowrap;
    width: 100%;
    min-width: 300px;
    height: 100%;
    z-index: 13;
    display: none;
    //right: 0px;
    padding-left: 20px;
    bottom: 0px;
}

.sideNavTitle {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
    margin: 0px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 70px;
    color: #fff;
    font-size: 1.1em;
    background-color: #E42129;
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
}

.sideNavEntryTitle {
    position: relative;
    width: calc(100% - 20px);
    margin: 0px;
    margin-top: 30px;
    margin-left: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #BDBDBD;
    color: #9E9E9E;
    font-size: 0.9em;
    font-weight: 400;
}

.sideNavEntryTitleNav, .sideNavEntryTitleNavOther {
    position: relative;
    left: 0px;
    width: 100%;
    margin: 0px;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 0.9em;
    font-weight: 400;
}

.sideNavEntryTitleNav, .sideNavEntryTitleNav a,
.sideNavEntryTitleNavOther, .sideNavEntryTitleNavOther a {
    color: #9E9E9E;
}

.sideNavEntry {
    position: relative;
    width: calc(100% - 70px);
    margin: 0px;
    margin-left: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 50px;
    border-bottom: 1px solid #BDBDBD;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sideNavEntryNav {
    position: relative;
    left: 0px;
    width: 100%;
    margin: 0px;
    margin-top: 12px;
    padding-top: 12px;
    padding-right: 50px;
    border-top: 1px solid #BDBDBD;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.sideNavEntryNav.level-0 {
    padding-left: 15px;
}

.sideNavEntryNav.level-1 {
    padding-left: 30px;
}

.sideNavEntryNav.level-2 {
    padding-left: 45px;
}

.sideNavEntryNav.level-3 {
    padding-left: 60px;
}

.sideNavEntryNav.level-4 {
    padding-left: 75px;
}

.sideNavEntryNav.active a {
    color: #2196F3;
}

.sideNavEntryNav.current a {
    color: #2196F3;
}

.sideNavEntryNav a {
    display: block;
}

.sideNavEntryNoBorder {
    position: relative;
    width: calc(100% - 70px);
    margin: 0px;
    margin-left: 20px;
    padding-top: 12px;
    padding-right: 50px;
    color: #000;
}

.sideNavFertig {
    position: absolute;
    right: 20px;
    top: -1px;
    padding: 8px;
    color: #fff;
    font-size: 0.9em;
    font-weight: 400;
}

.sideNavGap {
    position: relative;
    height: 40px;
}

#changeView {
    display: none;
}

.image-back, .image-back-left {
    background-image: url("/etc/flowler/static/images/ic_arrow_back_white_48dp.png");
    background-size: 28px 28px;
    top: -1px;
    left: 15px;
    position: fixed;
    width: 28px;
    height: 28px;
    z-index: 1;
}

.captionProcess {
    position: relative;
    left: 20px;
    width: calc(100% - 80px);
    margin: 0px;
    margin-top: 15px;
    margin-bottom: 5px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.captionFlow {
    position: relative;
    left: 20px;
    width: calc(100% - 80px);
    margin: 0px;
    margin-top: 20px;
    border-bottom: 2px solid #BDBDBD;
    color: #000;
    padding-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrowheadRight {
    position: relative;
    margin: 0px;
    width: 0;
    height: 0;
    top: -6px;
    left: calc(100% - 60px);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid;
}

.titleLandscape {
    position: relative;
    min-height: 25px;
    width: 80%;
    max-width: 800px;
    top: 80px;
    padding-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
}

.image-arrow-in {
    top: -26px;
    left: calc(25% - 15px);
    position: absolute;
    width: 34px;
    height: 34px;
}

.image-arrow-out {
    bottom: -26px;
    left: calc(75% - 15px);
    position: absolute;
    width: 34px;
    height: 34px;
}

/*neu*/

/*.managementProcesses, .supportProcesses {
    position: relative;
    background: #fff;
    height: 60px;
    width: 100px;
    margin: 10px;
    margin-left: 60px;
    display: inline-block;
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -webkit-border-radius: 4px;
    -webkit-transform: scale(1.0);
    -moz-border-radius: 4px;
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 4px;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border: 1px solid;
    font-size: 14px;
    padding: 10px;
    padding-top: 20px;
    text-align: center;
    vertical-align: top;
}

.keyProcesses {
    position: relative;
    background: #fff;
    height: 30px;
    margin: 10px;
    margin-left: 60px;
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -webkit-border-radius: 4px;
    -webkit-transform: scale(1.0);
    -moz-border-radius: 4px;
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 4px;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border: 1px solid;
    font-size: 14px;
    padding: 10px;
    padding-top: 20px;
    text-align: center;
}

.entities {
    position: relative;
    background: #e0e0e0;
    height: 40px;
    width: 100px;
    margin: 10px;
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -webkit-border-radius: 4px;
    -webkit-transform: scale(1.0);
    -moz-border-radius: 4px;
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 4px;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border: 1px solid black;
    font-size: 14px;
    padding: 10px;
    padding-top: 20px;
    text-align: center;
}

.processnumberLandscape {
    position: absolute;
    left: 8px;
    top: -4px;
	font-size: 10px;
}*/

.alertMessage {
    height: 200px;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
    position: fixed;
    top: 50%;
    width: 200px;
    z-index: 9999;
    background-color: #fff;
    display:none;
    padding: 20px;
    line-height: 150%;
    color: grey;
    -webkit-box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    -webkit-border-radius: 2px;
    -webkit-transform: scale(1.0);
    -moz-border-radius: 2px;
    -moz-box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    border-radius: 2px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.buttonDialog {
    position: absolute;
    padding: 8px;
    color: #2196F3;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 400;
    /*position: absolute;
    border: none;
    height: 20px;
    margin: 6px;
    padding: 8px;
    color: #E42129;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 400;*/
}

.buttonHint {
    position: absolute;
    border: none;
    height: 20px;
    padding: 10px 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    right: 10px;
    top: 11px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

.hintMessage {
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: #2196F3;
    color: #fff;
    bottom:0px;
    display: none;
    z-index: 9999;
    padding-top: 5px;
}

#hintMessageText {
    margin-left: 35px;
    margin-right: 100px;
}

.extern {
    position: fixed;
    left:0px;
    top:40%;
    width: 60px;
    height: 90px;
    display: none;
    z-index: 9999;
    background-color: #2196F3;
    color:white;
    -webkit-box-shadow: 6px 0 2px rgba(0,0,0,.12),4px 2px 4px rgba(0,0,0,.24);
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-transform: scale(1.0);
    -moz-border-top-right-radius: 4px;
    -moz-border-bottom-right-radius: 4px;
    -moz-box-shadow: 6px 0 2px rgba(0,0,0,.12),4px 2px 4px rgba(0,0,0,.24);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 6px 0 2px rgba(0,0,0,.12),4px 2px 4px rgba(0,0,0,.24);
}

.processSelected {
    -webkit-box-shadow: 3px 3px 5px rgba(255, 0, 0, 0.5);
    -moz-box-shadow: 3px 3px 5px rgba(255, 0, 0, 0.5);
    box-shadow: 3px 3px 5px rgba(255, 0, 0, 0.5);
}

/*.editButton {
    position: absolute;
    border: none;
    height: 20px;
    margin: 6px;
    padding: 8px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    top: 5px;
    right: 10px;
    z-index: 14;
}*/

.button-create {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    background-color: transparent;
    border: medium none;
    text-transform: uppercase;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    font-size: 1em;
    font-weight: 400;
    padding: 10px 16px;
    display: none;
    /*position: absolute;
    bottom: 30px;
    left: 30px;
    color: #E42129;//#fff;
    background-color: #fff;//#E42129;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    border: medium none;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 400;
    padding: 10px 16px;*/
}

fieldset {
    outline: none;
    position: relative;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    box-shadow: none;
    padding: 15px;
    color: grey;
}

#deleteFlow2 {
    left:0px;
    color: #2196F3;
}

.arrowhead-down {
  position: absolute;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-top: 10px solid;
  border-left: 5px solid transparent;
}

.arrowhead-right {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid;
}

.arrowhead-left {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid;
}

.arrowhead-up {
  position: absolute;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-bottom: 10px solid;
  border-left: 5px solid transparent;
}

.flow-top-top
{
  border-top: 2px;
  border-left: 0px;
  border-bottom: 0px;
  border-right: 0px;
  position: absolute;
  color: black;
  border-style: solid;
}

.groupCaption {
    position: absolute;
    top: -5px;
    left: 40px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

.flowcolor {
    width: 50px;
    height: 50px;
    margin-top: 10px;
    margin-right: 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    float: left;
    box-shadow: 2px 2px 4px rgba(0,0,0,.24);
    -moz-box-shadow: 2px 2px 4px rgba(0,0,0,.24);
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,.24);
    border: 1px solid transparent;
}

.flowStyle {
    position: relative;
    float: left;
    margin-right: 60px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid transparent;
    padding: 10px;
}

.selectedcolor, .selectedstyle {
    border: 1px solid red;
    box-shadow: 2px 2px 4px red;
    -moz-box-shadow: 2px 2px 4px red;
    -webkit-box-shadow: 2px 2px 4px red;
}

.picker {
    position: absolute;
    padding: 8px;
    border: none;
}

.picker input {
    cursor: pointer;
    border: 1px solid black !important;
    border-radius: 2px;
    display: block;
    height: 50px;
    margin-top: 5px;
    width: 50px !important;
}

.picker input.disabled {
    cursor: default;
}

.show-comments form {
    height: 100%;

    textarea[disabled] {
        padding-right: 20px;
        background: #fff;
        border-bottom: 1px solid #BDBDBD;
    }

    .comments-container {
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
        width: 100%;
        height: calc(100% - 124px);
        padding-bottom: 20px;

        .list.comments {
            flex: 1;
            overflow-y: auto;
            padding: 10px;
            border-bottom: 1px solid #000;
        }
        .list.comments::-webkit-scrollbar {
            width: 6px;
        }
        .list.comments::-webkit-scrollbar-track {
            background: #ddd;
        }
        .list.comments::-webkit-scrollbar-thumb {
            background: #bdbdbd;
        }

        .comment {
            display: flex;
            align-items: flex-end;
            margin-bottom: 10px;

            .comment-image {
                width: 50px;
                height: 50px;
                line-height: 50px;
                text-align: center;
                margin-right: 10px;
                background: #ddd;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                border-radius: 50%;
                min-width: 50px;
            }

            .comment-bubble {
                max-width: 100%;
                padding: 15px;
                border-radius: 15px;
                background: #ececec;
                border-bottom-left-radius: 0;

                .comment-info {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 10px;

                    .comment-info-time {
                        margin-right: 10px;
                        font-weight: bold;
                    }
                    .comment-info-private, .comment-info-delete {
                        font-size: 0.85em;
                    }
                }
            }
        }
        .comment.own {
            flex-direction: row-reverse;

            .comment-image {
                background: #2196F3;
                margin-right: 10px;
                margin-left: 10px;
            }

            .comment-bubble {
                background: #E3F2FD;
                border-bottom-left-radius: 15px;
                border-bottom-right-radius: 0;
            }
        }
        .comment:last-of-type {
            margin: 0;
        }
    }

    .settingsGroupEntry {
        border: none;
        left: 40px;
        width: calc(100% - 50px);
    }

    .settingsGroupEntry.action {
        display: flex;
        padding-right: 10px;

        * {
            padding: 10px;
            font-size: 1em;
        }

        .comment-input {
            flex: 1;
            background: #F8F8F8;
            border: 1px solid #F8F8F8;
            margin-right: 10px;
            padding: 0;

            .ql-editor {
                padding: 12px 15px;

                * {
                    padding: 0;
                }
            }
        }

        .comment-send-btn {
            margin-left: 10px;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.23s;
            border: 1px solid #000;
        }

        .comment-send-btn:hover {
            background: #2196F3 !important;
        }
    }

    .settingsGroupEntry.type {
        height: 30px;
        padding: 0;
        display: flex;

        * {
            padding-left: 10px;
        }

        label {
            align-content: center;
            padding-right: 5px;
        }

        .comment-input {
            width: 300px;
            background: #F8F8F8;
            border: 1px solid #F8F8F8;
            margin-right: 10px;
            padding: 0;

            .ql-editor {
                padding: 4px;

                * {
                    padding: 0;
                }
            }
        }
    }
}

.saveButton, .cancelButton, .aButton {
    position: absolute;
    padding: 8px;
    color: #2196F3;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 400;
    border: none;
    /*height: 18px;
    margin: 0px;
    margin-top: 50px;
    padding: 8px;
    color: #E42129;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 400;
    top: 15px;
    width: 70px;*/
}

#filename {
    font-size: 16px;
    font-family:'Roboto', sans-serif;
}

.settingsGroup {
    background: #fff;
    position: relative;
    min-height: 25px;
    width: 100%;
    top: 60px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    font-weight: 400;
    border-bottom: 1px solid #BDBDBD;
}

.settingsGroupEntry {
    position: relative;
    left: 40px;
    width: calc(100% - 90px);
    display: block;
    margin: 0px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 50px;
    border-bottom: 1px solid #BDBDBD;
    text-overflow: ellipsis;
}

.settingsGroupEntry.buttons {
    border:none;
    overflow:hidden;
    text-indent:0;
    height:20px;
}

.settingsGroupEntry.buttons .aButton {
    top: 0;
}

.settingsGroupEntryTextarea {
    position: relative;
    left: 40px;
    width: calc(100% - 45px);
    padding-top: 12px;
}

.settingsGroupName {
    position: relative;
    margin: 0px;
    padding: 20px;
    padding-left: 40px;
    padding-right: 0px;
    font-size: 18pt;
    border-bottom: 1px solid #BDBDBD;
    width: calc(100% - 40px);
}

.settingsGroupTitle {
    position: relative;
    left: 40px;
    width: calc(100% - 80px);
    margin: 0px;
    margin-top: 20px;
    padding-bottom: 5px;
    padding-left: 40px;
    border-bottom: 1px solid #BDBDBD;
    color: #9E9E9E;
    font-size: 0.9em;
    font-weight: 400;
}

.settingsGroupTitle.no-icon {
    width: calc(100% - 40px);
    padding-left: 0;
}

.settingsGroupTitle .far,
.settingsGroupTitle .fal,
.settingsGroupTitle .fas,
.settingsGroupTitle .fab {
    position: absolute;
    left: 0;
    font-size: 17px;
}

.newButton {
    position: absolute;
    border: none;
    height: 20px;
    margin: 6px;
    padding: 8px;
    color: #2196F3;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 400;
    top: 15px;
    right: 10px;
}

pre {
    font-size: 16px;
    font-family:'Roboto', sans-serif;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%;
    color:  #515151;
    white-space: pre-wrap;       /* CSS 3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.processMoveExtended {
    position: absolute;
    display: none;
    height: 20px;
    width: 20px;
    top: 3px;
    left: 5px;
}

.processCheckbox, .processChecked {
    position: absolute;
    display: none;
    height: 18px;
    width: 18px;
    bottom: 3px;
    left: 5px;
}

.box-top-home {
    height: 280px;
    position: absolute;
    top: 0px;
    width: 100%;
    background-color: #E42129;
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
    z-index: 11;
}

.logoCustomer {
    position: relative;
    width: 250px;
    height: 80px;
    background-color: #ececec;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
}

.box-top-home .username {
    display: none;
}

#flowlerLogo {
    top: 22px;
}

#customerLogo {
    top: 45px;
    height: 100px;
    display: none;
}

textarea, input[type=text] {
    font-size: 16px;
    font-family:'Roboto', sans-serif;
    font-weight: 400;
    color:  #515151;
    resize: none;
    border: none;
    overflow: auto;
}

button:focus, textarea:focus, input:focus {outline:0;}

.details, .detailsFlow, .detailsEntity {
    display: none;
}

.chief, .division, .staff {
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    position: relative;
    min-height: 25px;
    width: 60%;
    max-width: 400px;
    top: 100px;
    margin-bottom: 32px;
    padding-bottom: 30px;
    font-weight: 400;
}

.chief {
    left: 10%;
}

.staff, .division {
    left: 30%;
}

.thirdLevel {
    display: none;
}

/*.chief > .image-more, .staff > .image-more, .division > .image-more {
    right: 25px;
}*/

.chief > .process-name, .staff > .process-name, .division > .process-name {
    //width: calc(100% - 50px);
    font-size: 12pt;
}

/*.division {
    left: 62%;
}*/

.orgChartHoriLine {
    border-top: 2px;
    border-left: 0px;
    border-bottom: 0px;
    border-right: 0px;
    position: absolute;
    border-color: #515151;
    border-style: solid;
    z-index: -1;
}

.orgChartVertLine {
    border-top: 0px;
    border-left: 0px;
    border-bottom: 0px;
    border-right: 2px;
    position: absolute;
    border-color: #515151;
    border-style: solid;
    z-index: -1;
    left: 10%;
}

.kvpContainer {
    position: absolute;
    top: 70px;
    left: 10px;
    height: calc(100% - 150px);
    overflow: auto;
    white-space: nowrap;
}

.kvpGroup {
    position: relative;
    width: 400px;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    overflow-y: auto;
}

.kvpGroup:nth-child(even) {
    background: #eeeeee;
}
.kvpGroup:nth-child(odd) {
    background: #e8e8e8;
}

div.kvpGroup div.kvpEntry:last-child {
    margin-bottom: 20px;
}

.kvpGroupTitle {
    position: relative;
    box-sizing: border-box;
    padding: 8px;
    margin: 0;
    width: 100%;
    color: #fff;
    font-size: 14pt;
    z-index: 1;
}

.kvpEntry {
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    position: relative;
    min-height: 25px;
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    //top: 45px;
    margin-top: 20px;
    padding-bottom: 30px;
    font-size: 12pt;
    font-weight: 400;
}

.discovery {
    position: fixed;
    z-index: 11;
    bottom: -405px;
    right: -450px; 
    width: 1000px;
    height: 1000px;
    background-color: #fff;
    border-top-right-radius: 500px;
    border-top-left-radius: 500px;
    border-bottom-right-radius: 500px;
    border-bottom-left-radius: 500px;
    border: 425px solid #2196F3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0.95;
    display:none;
}

.discoveryTitle {
    position: relative;
    bottom: 200px;
    right: 200px;
    width: 300px;
    color: #fff;
    font-size: 14pt
}

.discoveryText {
    position: relative;
    bottom: 180px;
    right: 200px;
    width: 300px;
    color: #BBDEFB;
}

.tab {
    position: absolute;
    bottom: 0px;
    height: 25px;
    width: 150px;
    color: #EF9A9A;
    font-size: 0.8em;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 4px solid #E42129;
}

.tabSelected {
    color: #fff;
    border-bottom: 4px solid #2196F3;
}

#tabOne {
    left: 30px;
    display: none;
}

#tabTwo {
    left: 210px;
    display: none;
}

#tabThree {
    left: 390px;
    display: none;
}

#tabFour {
    left: 570px;
    display: none;
}

#alertOnboarding {
    width:80%;
    height:150px;
    left:30%;
}

.tipp, .tipp2 {
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    position: relative;
    min-height: 25px;
    width: 85%;
    max-width: 800px;
    top: 90px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    padding-bottom: 30px;
    font-weight: 400;
}

.tipp-comment {
    position: relative;
    margin: 0px;
    margin-top: 36px;
    display: none;
    font-weight: 100;
    padding-left: 40px;
    padding-top: 10px;
    padding-right: 40px;
    border-top: 1px solid #BDBDBD;
    line-height: 1.2em;
}

.searchResult {
    background: #fff;
    position: relative;
    display: block;
    cursor: pointer;
    min-height: 25px;
    width: 100%;
    top: 60px;
    padding: 20px;
    font-weight: 400;
    border-bottom: 1px solid #BDBDBD;
}

.searchResultTitle {
    position: relative;
    margin: 0;
    padding: 0 40px 10px 40px;
    font-size: 14pt;
    color: #2196F3;
}

.searchResultTitle .bpmn-icon {
    display: inline-block;
    color: #777;
    width: 20px;
}

.searchResultTitle .bpmn-icon.fa-lightbulb-on {
    font-size: 15px;
}

.searchResultEntry {
    position: relative;
    margin: 0;
    padding: 5px 40px;
    font-size: 12pt;
}

.searchResultEntry.small {
    font-size: 10pt;
}

.searchResultTitle .status {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 3px;
    color: white;
    font-size: 11pt;
    margin-left: 5px;
}

.searchResultBreadcrumbs {
    padding: 10px 40px 5px 40px;
    font-size: 8pt;
}

.searchResultBreadcrumbs .separator {
    display: inline-block;
    width: 24px;
    text-align: center;
}

.searchWidget {
    position: absolute;
    top: 15px;
    right: 20px;
    height: 25px;
    width: 300px;
    padding-left: 150px;
    padding-bottom: 15px;
    display: none;
    background: #E42129;
    z-index: 100;
}

.searchInput {
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.87);
    border-radius: 0;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    padding: 5px 0;
    width: 100%;
    text-align: left;
    background: 0;
    box-shadow: none;
    color: #fff;
    -webkit-appearance: textfield;
    -webkit-rtl-ordering: logical;
    user-select: text;
    cursor: auto;
}

.searchInput::-webkit-input-placeholder {
    color: #fff;
}
.searchInput:-moz-placeholder {
    color: #fff;
}
.searchInput::-moz-placeholder {
    color: #fff;
}
.searchInput:-ms-input-placeholder {
    color: #fff;
}

.imgSearchHomescreen {
    position: absolute;
    right: 10px;
    top: 20px;
    color: white;
    width: 25px;
    height: 25px;
}

.imgSearchFlowdiagram {
    position: absolute;
    right: 60px;
    top: 20px;
    color: white;
    width: 25px;
    height: 25px;
}

.toggle-annotations {
    position: absolute;
    bottom: 15px;
    right: 100px;
}

input.inputHead {
    position: relative;
    padding: 20px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 18pt;
    color: #515151;
    width:100%;
    box-sizing: border-box;
    text-indent: 20px;
}

input.inputPosition {
    position: relative;
    border: none;
    font-size: 12pt;
    color: #515151;
    width: 100%;
    box-sizing: border-box;
}

.settingsGroupSave {
    position: relative;
    top: 60px;
    left: 40px;
    display: block;
    height: 100px;
}

table.permissions th {
    text-align: left;
    font-weight: 400;
    padding-right: 40px;
    padding-bottom: 10px;
}

table.permissions td {
    padding-right: 40px;
    font-weight: 300;
}

.error, .success{
    position: relative;
    color: red;
    text-indent: 40px;
    text-overflow: ellipsis;
    display: none;
}

.username {
    position: relative;
    top: 160px;
    left: 5px;
}

#nav-background {
    display: none;
    z-index: 13;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

.large-icon {
    width: 24px;
    height: 24px;
}

/* TABS */

.ui-tabs-nav {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 20px 0 40px 0;
}

.ui-tabs-nav .ui-tabs-tab {
    margin-right: 10px;
    background: #EEE;
    border-radius: 5px;
    outline: none;
    transition: background-color linear 0.2s, color linear 0.2s;
}

.ui-tabs-nav .ui-tabs-tab a {
    display: block;
    outline: none;
    padding: 7px 14px;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 400;
}

.ui-tabs-nav .ui-tabs-tab.ui-tabs-active {
    background: #2196F3;
}

.ui-tabs-nav .ui-tabs-tab.ui-tabs-active a {
    color: white;
}
