.statusItemCircleContainer {
    overflow: hidden;
    width: 100%;
    position: relative;
}
    .statusItemCircleContainer .statusItemCircleIconContainer {
        float: left;
        opacity: 0.1;
        cursor: pointer;
    }
    .statusItemCircleContainer .statusItemCircleIconContainer.active {
        opacity: 1;
    }
        .statusItemCircleContainer .statusItemCircleIconContainer:hover {
            opacity: 0.9;
        }

    .statusItemCircleContainer .statusItemCircle {
        float: left;
        position: relative;
    }
    .statusItemCircleContainer .statusItemCaption {
        text-align: center;
        font-size: 13px;
    }
        .statusItemCircleContainer .statusItemCircle .circleicon {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 120px;
            height: 120px;
        }
        .statusItemCircleContainer .statusItemCircle .circleborder {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
.statusItemTableContainer {
    overflow: hidden;
}
    .statusItemTableContainer .statusItemTable {
        display: table;
        border-spacing: 0px 2px;
        width: 100%;
    }
        .statusItemTableContainer .statusItemTable .statusItemTableRow {
            display: table-row;
        }
            .statusItemTableContainer .statusItemTable .statusItemTableRow:nth-of-type(2n) {
                background-color: #ececec;
            }
        .statusItemTableContainer .statusItemTable .statusItemTableHeadCell {
            display: table-cell;
            border-bottom: 1px solid #DDD;
            padding: 3px 8px;
            font-weight: bold;
        }
        .statusItemTableContainer .statusItemTable .statusItemTableCell {
            display: table-cell;
            text-overflow: ellipsis;
            white-space: nowrap;
            padding: 3px 8px;
            overflow: hidden;
        }
    .statusItemTableContainer .statusItemSuccessmessage {
        padding: 5px 10px;
        background-color: #ececec;
    }
.statusItemCircleSelectionPointer path {
    stroke-width: 1px;
    fill: none;
    stroke: #e1e3e8;
}
.statusItemTableContainer .statusItemTable .statusItemTableCell .btn-default {
    padding: 0px 7px;
}
.statusItemCircleContainer .statusItemSingleInfoContainer {
    float: left;
    margin-left: 15px;
}

    .statusItemCircleContainer .statusItemSingleInfoContainer .cpt {
        border-bottom: 1px solid #e1e3e8;
        margin-bottom: 5px;
        overflow: hidden;
    }
        .statusItemCircleContainer .statusItemSingleInfoContainer .cpt span {
            float: left;
        }
        .statusItemCircleContainer .statusItemSingleInfoContainer .cpt .expandicon {
            float: left;
            height: 13px;
            width: 13px;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            margin-top: 7px;
            margin-left: 5px;
        }
            .statusItemCircleContainer .statusItemSingleInfoContainer .cpt .expandicon.openicon {
                background-image: url(../img/arrowDown.png);
            }
            .statusItemCircleContainer .statusItemSingleInfoContainer .cpt .expandicon.closeicon {
                background-image: url(../img/arrowRight.png);
            }

    .statusItemCircleContainer .statusItemSingleInfoContainer .notificationmsg {
        font-size: 13px;
    }
    .statusItemCircleContainer .statusItemSingleInfoContainer .nomsg {
        opacity: 0.5;
    }

.layoutview .panel-title .customheader {
    float: left;
}
    .layoutview .panel-title .customheader .cusHeaderStatusItemWarnings, .layoutview .panel-title .customheader .cusHeaderStatusItemInformations {
        float: left;
        font-size: 12px;
        margin-top: 13px;
        height: 16px;
        padding: 0px 6px;
        text-align: center;
        border-radius: 7px;
        color: #FFFFFF;
        line-height: 16px;
        margin-right: 3px;
        margin-left: 3px;
    }
    .layoutview .panel-title .customheader .cusHeaderStatusItemWarnings {
        background-color: #ec6317;
    }
    .layoutview .panel-title .customheader .cusHeaderStatusItemInformations {
        background-color: #e8b71a;
        color: #063048;
    }