.traffic-light--small {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
    background-color: #242424;
    vertical-align: bottom;
}

.traffic-light--great {
    display: inline-block;
    width: 55px;
    height: 55px;
    position: relative;
    background-color: #242424;
    vertical-align: bottom;
    border-radius: 4px;
}

.traffic-light {
    text-align: center;
}

.traffic-light__color-red--small
.traffic-light__color-red--small:before,
.traffic-light__color-red--small:after {
    content: "";
    color: white;
    position: absolute;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: 5px;
    top: 5px;
    background-color: red;
}

.traffic-light__color-yellow--small
.traffic-light__color-yellow--small:before,
.traffic-light__color-yellow--small:after {
    content: "";
    color: white;
    position: absolute;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: 5px;
    top: 5px;
    background-color: #f0dc28
}

.traffic-light__color-green--small
.traffic-light__color-green--small:before,
.traffic-light__color-green--small:after {
    content: "";
    color: white;
    position: absolute;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: 5px;
    top: 5px;
    background-color: #28a050;
}

.traffic-light__color-red--great
.traffic-light__color-red--great:before,
.traffic-light__color-red--great:after {
    content: "";
    color: white;
    position: absolute;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 7px;
    top: 7px;
    background-color: red;
}

.traffic-light__color-yellow--great
.traffic-light__color-yellow--great:before,
.traffic-light__color-yellow--great:after {
    content: "";
    color: white;
    position: absolute;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 7px;
    top: 7px;
    background-color: #f0dc28
}

.traffic-light__color-green--great
.traffic-light__color-green--great:before,
.traffic-light__color-green--great:after {
    content: "";
    color: white;
    position: absolute;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 7px;
    top: 7px;
    background-color: #28a050;
}

.traffic-light__inactive--great
.traffic-light__inactive--great:before,
.traffic-light__inactive--great:after {
    content: "";
    color: white;
    position: absolute;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 7px;
    top: 7px;
    background-color: #393C3F;
}

.workflow--wrapper {
    border: 1px solid #D0D0D0;
    max-height: 173px;
    max-width: 482px;
}

.workflow--wrapper:nth-of-type(2) {
    margin-top: 10px;
    overflow-y: scroll;
}

.workflow--wrapper:nth-of-type(4) {
    margin-top: 10px;
}

.workflow--table-titel {
    border-collapse: collapse;
    min-height: 30px;
    padding: 0;
    background-color: white;
}

.workflow--table-titel th {
    border-right: 1px solid #D0D0D0;
    min-width: 110px;
    padding: 6px 5px;
}

.workflow--table-titel td {
    width: 100%;
    padding-left: 4px;
}

.workflow--table-titel .workflow-table--row:nth-child(even) {
    background-color: #eeeeee;
}

.workflow--table-product {
    border-collapse: collapse;
    width: 100%;
}

.workflow--table-product .workflow-table--row {
    height: 30px;
}

.workflow--table-product th {
    border-right: 1px solid #D0D0D0;
    padding-left: 5px;
}

.workflow--table-product td {
    border-right: 1px solid #D0D0D0;
    padding-left: 4px;
    line-break: anywhere;
    max-width: 286px;
}

.workflow--table-product th:last-child {
    border-right: none;
}

.workflow--table-product td:last-child {
    border-right: none;
}

.workflow--table-product .workflow-table--row:nth-child(even) {
    background-color: #eeeeee;
}

.workflow--table-product .workflow-table--row:nth-child(odd) {
    background-color: white;
}

.workflow--table-product .workflow-table--row:first-child {
    background-color: #d0d0d0;
    height: 20px;
}

.workflow--wrapper-detail {
    display: flex;
    margin-top: 10px;
    border: 1px solid #D0D0D0;
}

.workflow--wrapper-detail .traffic-light {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.workflow--table-detail {
    border-collapse: collapse;
    width: 100%;
}

.workflow--table-detail th {
    border-right: 1px solid #D0D0D0;
    padding-left: 5px;
    padding-right: 5px;
}

.workflow--table-detail td {
    border-right: 1px solid #D0D0D0;
    padding-left: 5px;
}

.workflow--table-detail td:nth-of-type(2) {
    width: 550px;
}

.workflow--table-detail .workflow-table--row:nth-child(odd) {
    background-color: white;
}

.workflow--table-detail .workflow-table--row:first-child {
    background-color: #d0d0d0;
}

.workflow--table-detail .workflow-table--row td:first-of-type {
    width: 35px;
}

.workflow--table-traffic-light {
    border-collapse: collapse;
}

.workflow--table-traffic-light th {
    background-color: #cccccc;
    padding-left: 5px;
    padding-right: 5px;
}

.workflow--table-traffic-light tbody tr {
    display: table-cell;
}

tbody {
    text-align: left;
}

.workflow-table--row th {
    height: 20px;
}

.workflow--container div {
    border: none;
}

.workflow-table--data__green {
    color: #28a050;
}

.workflow-table--data__red {
    color: red;
}

.workflow-container__message {
    margin-top: 10px;
    font-weight: bold;
    color: red;
}

.workflow-container__message p {
    margin: 0 0 0 5px;
}

.workflow--wrapper-container {
    position: relative;
    min-height: 243px;
}

.workflow-picture {
    height: 100%;
    width: 100%;
    max-height: 241px;
    max-width: 241px;
    display: block;
    margin: auto;
}

.workflow--wrapper-picture {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    border: 1px solid #D0D0D0;
    width: 267px;
    height: 100%;
}
