/**
 * Post Author Online Status
**/

.green-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #50C878;
}

.red-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red;
}

.status_text{
    color: #000;
    font-size: 12px;
    padding-left: 5px;
}
.author-online-status {
    display: inline-flex;
    align-items: center;
}