* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
}

body, table {
    font-size: small;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.no-data {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: auto;
    font-size: xx-large;
    color: gray;
    display: inline-block;
    text-align: center;
    width: 300px;
    height: 100px;
}

.node {
    display: inline-block;
    /* border: 1px solid blue; box-sizing: content-box; */
    width: 32px;
    height: 32px;

}

/* .node-positioner {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    margin-left: -50%;
    top: 50%;
    margin-top: -50%;
} */

.node-label {
    display: block;
    text-align: center;
    position: absolute;
    bottom: 36px;
    left: -40px;
    width: 112px;
}

.node-added .node-label {
    background-color: rgba(0, 128, 0, 0.3);
    font-weight: bolder;
}
.node-removed .node-label {
    background-color: rgba(255, 0, 0, 0.3);
    font-weight: bolder;
    color: red;
}
.node-modified .node-label {
    background: rgba(255,128,0,0.3);
    font-weight: bolder;
}
.node-disabled {
    filter: grayscale();
    opacity: 0.5;
}
.node-faded {
    opacity: 0.25;
}

@keyframes drunk {
    from {
        transform: rotate(-30deg);
    }
    to {
        transform: rotate(30deg);
    }
}

.node-state--highlighted {
    animation-name: drunk;
    animation-duration: 0.6s;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-delay: 0;
    animation-iteration-count: infinite;
}


.node-icon {
    display: block;
    text-align: center;
}

.link-canvas {
    margin: 0;
}

.link-arrow {
    stroke: gray;
    stroke-width: 1px;
    fill: none;
}

.link-arrow.link-arrow-removed {
    stroke: red;
    stroke-width: 2px;
}
.link-arrow.link-arrow-added {
    stroke: green;
    stroke-width: 2px;
}
.link-arrow.link-arrow-disabled {
    opacity: 0.5;
}

.link-arrow-head {
    fill: gray;
}
.link-arrow-head.link-arrow-head-removed {
    fill: red;
    stroke: red;

}
.link-arrow-head.link-arrow-head-green {
    fill: green;
    stroke: green;
}
.link-arrow-head.link-arrow-head-disabled {
    stroke: gray;
    opacity: 0.5;
}



.drop-zone {
    position: fixed;
    bottom: 0;
    right: 0;
    display: inline-block;
    width: 300px;
    height: 100px;
    border: 4px dashed silver;
    text-align: center;
    line-height: 90px;
}

.multiflow {
    display: block;
}

.multiflow-flow {
    display: inline-block;
    position: relative;
    border: 1px solid grey;
}

.multiflow-flow-title {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    margin: 5px auto;
    background-color: rgba(200,200,200,0.5);
}

.flowCanvas {
    position: relative;
    user-select: none;
}

.varCanvas {
    position: absolute;
    top: 0;
}

.varCanvas-item {
    display: block;
    width: 200px;
    padding: 5px;
    background-color: #ffc;
    height: 32px;
}

.varCanvas-item--selected {
    background-color: #ffa;
    font-weight: bolder;
}

.popup {
    display: inline-block;
    border: 1px solid rgb(163, 163, 163);
    box-shadow: 2px 2px 4px grey;
    background-color: white;
}

.varInfoBox {
    display: flex;
    flex-direction: column;
}

.varInfoBox-label {
    background-color: #eee;
    font-style: italic;
    padding: 0 5px;
}

.varInfoBox-section {
    display: none;
}

.varInfoBox-item {
    display: block;
    min-width: 200px;
    padding: 0 5px;
}

/* .smultiflow-list {
    
} */

.smultiflow-list-item {
    border: 1px solid black;
}

.smultiflow-list-item-title {
    padding: 5px;
    margin: 5px;
    white-space: pre-line;
    cursor: pointer;
    background-color: #eee;
    position: relative;
    
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.smultiflow-list-item-title .description {
    flex-grow: 1;
}

.smultiflow-list-item-title .ss-link {
    flex-grow: 0;
}

.property-group {
    max-width: 350px;
}

.property-group--label {
    background-color: #eee;
    padding: 0 3px;
}

.property-item {
    border-top: solid 1px #eee;
    padding: 0 3px;
}

.property-item .eq {
    font-weight: bolder;
    font-size: larger;
    line-height: 80%;
}