#activity-parent {
    width: 100%;
}
#activity-stream #stream-error-msg {
    color: #ccc;
    width: 100%;
    display: block;
    text-align: center;
}
#activity-stream {
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    text-align: left;
}
#activity-stream li {
    color: #fff;
    white-space: normal;
    font-size: 12px;
    padding-left: 30px;
    margin-bottom: 0;
    position: relative;
    animation: fadeIn 0.5s ease-in;

}
@keyframes fadeIn {
    0% {
        opacity: 0;

    }
    100% {
        opacity: 1;
    }
}
#activity-stream li:hover {
    background-color: #757575 !important;
}
#activity-stream li:hover:after {
    background-color: transparent;
}
#activity-stream li:after {
    content: ' ';
    width: 92%;
    bottom: 0;
    right: 0;
    height: 1px;
    position: absolute;
    background-color: #939396;
}
#activity-stream li .list-label {
    top: 0;
    left: 0;
    width: 18px;
    height: 100%;
    position: absolute;
}
#activity-stream li.historical {
    opacity: 0.7;
}
#activity-stream li .fas {
    font-size: 16px;
    left: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#activity-stream li .fas.info {
    color: #4dadf7;
}
#activity-stream li .fas.default {
    color: #949494;
}
#activity-stream li .fas.danger {
    color: #f96868;
}
#activity-stream li .fas.warning {
    color: #f0ad4e;
}
#activity-stream li .fas.critical {
    color: #f96868;
    animation: alertFlash 0.5s infinite;
}
@keyframes alertFlash {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
#activity-stream .label-success {
    background-color: #4CAF50 !important;
}