
/* Style the tab */
.process_item {
    overflow: hidden;
    /*border: 1px solid #ccc; */
    background-color: #f1f1f1;
    margin-bottom: 2px;
}
.process_item_exception {
    overflow: hidden;
    /*border: 1px solid #ccc; */
    background-color: #ffe2e2;
    margin-bottom: 2px;
}

/* Style the buttons that are used to open the tab content */
.process_item button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 7px 10px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.process_item button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.process_item button.active {
    background-color: #ccc;
}


/* Icons */
.icon-info:before {
    background-image: url('icons/log_icon.png');
    background-size: 17px 17px;
    display: inline-block;
    width: 17px;
    height: 17px;
    content:"";
}
.icon-warning:before {
    background-image: url('icons/warning_icon.png');
    background-size: 17px 17px;
    display: inline-block;
    width: 17px;
    height: 17px;
    content:"";
}
.icon-error:before {
    background-image: url('icons/error_icon.png');
    background-size: 17px 17px;
    display: inline-block;
    width: 17px;
    height: 17px;
    content:"";
}
.icon-exception:before {
    background-image: url('icons/error_icon.png');
    background-size: 17px 17px;
    display: inline-block;
    width: 17px;
    height: 17px;
    content:"";
}
