.post_content b {
    font-weight: bold;
    background: #5433412e;
    padding: 3px;
}

.postbit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff08;
    padding: 6px;
    margin-bottom: 15px;
    width: 99%;
}

/* LINKER BEREICH */

.postbit-header-left {
    display: flex;
    flex-direction: column;
    /* margin-left: -144px; */
    flex: 1;
}

.postbit-username {
    font-size: 41px;
    /* font-weight: 600; */
    color: #000;
    font-family: neon_led_lightregular;
    margin-bottom: -15px;
}

.postbit-usertitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* RECHTER BEREICH */

.postbit-header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* FACTS */

.postbit-facts{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.fact {
    position: relative;
    background: #18585e1a;
    color: #666666;
    padding: 6px 18px 6px 25px;
    text-transform: uppercase;
    width: 200px;
    height: 33px;
	    font-size: 15px;
    text-transform: uppercase;
    font-family: 'rajdhanisemibold';
    letter-spacing: 2px;
	    display: flex;
    align-items: center;      /* vertikal */
    justify-content: center;  /* horizontal */
}

/* Spitze links */

.fact:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-right: 20px solid #18585e1a;
}

/* ICON */

.postbit-icon {
    width: 300px;
    height: 150px;
    background: #00000017;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postbit-icon img{
    max-width:100%;
    max-height:100%;
}

.postbit_status_on {
    width: 5px;
    height: 143px;
    background: #61a1752e;
    float: left;
    margin-right: 25px;
}

.postbit_status_off {
    width: 5px;
    height: 143px;
    background: #98989817;
    float: left;
    margin-right: 25px;
}

.postbit_status_away {
    width: 5px;
    height: 143px;
    background: #b2b70017;
    float: left;
    margin-right: 25px;
}

.postbit-boxes{
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap:8px;
    margin-top:10px;
}

/* obere große Box */

.box1{
    grid-column:1 / 3;
}

/* untere Boxen */

.box2{
    grid-column:1;
}

.box3{
    grid-column:2;
}

/* Box Style */

.postbox {
    background: #202728;
    color: #838383;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'rajdhanisemibold';
    letter-spacing: 2px;
}