﻿:root {
    --processcolor: #6b87aa;
    --inlogcolor: #198754;
    --instatuscolor: #0d6efd;
}
.ProcessType {
}

.ProcessTypeName {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    user-select: none;
    color: var(--processcolor);
}

.ProcessTypeOdd {
    fill: #f6f6f6;
}

.ProcessTypeEven {
    fill: #fbfbfb;
}

.ProcessLine {
    stroke: var(--processcolor);
    stroke-width: 2;
}

.ProcessLineInLog {
    stroke: var(--inlogcolor);
}

.ProcessLineCircle {
    stroke-width: 0;
    fill: var(--processcolor);
}

.MarkerArrow {
    stroke-width: 1px;
    fill: var(--processcolor);
}

.MarkerCircle {
    stroke: none;
    fill: var(--processcolor);
}

.ProcessElement {
}

.ProcesElementStatus, .ProcesElementStatusEnd {
    fill: var(--processcolor);
    stroke-width: 1;
    stroke: var(--processcolor);
}

.ProcesElementStatusInLog {
    fill: var(--inlogcolor);
    stroke: var(--inlogcolor);
}

.ProcesElementStatusCurrent {
    fill: var(--instatuscolor);
    stroke: var(--instatuscolor);
}

    .StatusText {
        color: white;
        font-size: 12px;
        white-space: pre-wrap;
        user-select: none;
        text-align: center;
    }

.ProcesElementLogic {
    fill: #ffffff;
    stroke: var(--processcolor);
    stroke-width: 3;
}

.ProcesElementLogicInLog {
    stroke: var(--inlogcolor);
}

.ProcesElementEmail {
    fill: var(--processcolor);
    stroke: var(--processcolor);
    stroke-width: 1;
}

.ProcesElementEmailInLog {
    fill: var(--inlogcolor);
    stroke: var(--inlogcolor);
}

.ElementLogicName {
    font-size: 12px;
    font-weight: bold;
    user-select: none;
    fill: var(--processcolor);
    
}

.ElementEmailName {
    font-size: 12px;
    font-weight: bold;
    fill: var(--processcolor);
    user-select: none;
}

.ProcessLinePoint {
    fill: red;
    cursor: move;
}
.startLink {
    cursor: alias;
}

.draggableElement {
    cursor: move;
}

.ControlCode {
    display: inline-block;
    padding: 2px;
    border: solid 1px var(--processcolor);
    margin: 5px;
}

    .ControlCode:hover {
        background-color: #3a7cad;
        color: white;
    }