/** Flexbox Parent **/
.flex {display:flex;
width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background:  #273d4d;
margin-top: -8px;
}

/**Flexbox Child**/
.flex .forum {
display: flex;
width: 470px;
height: auto;
flex-wrap: wrap;
justify-content: space-evenly;
overflow: hidden;
padding: 7px;
gap: 5px;
background: #142737;
	margin-top: 5px;
margin-bottom: 5px;
}

/** LINKS: Forentitel, Letzter Beitrag, Beschreibung **/
.forum .left {width: 375px;}

.forum .title {
width: 100%;
background: #ac580e;
height: 25px;
margin-bottom: 5px;
padding-top: 6px;
margin-top: 5px;
padding-bottom: 5px;
}

.forum .title a {
  width: 100%;
  background:#0c4851;
  height: 25px;
  margin-bottom: 5px;
    color: #fff;
    font-size: 17px;
}

.forum .last {
width: 100%;
background: #273d4d;
height: 30px;
padding-bottom: 8px;
}

.forum .descin {
width: 98%;
height: 60px;
background: #142737;
overflow: auto;
padding: 3px;
font-size: 12px;
    margin-top: 10px;
}

/** RECHTS: Neue Beiträge, Pst & Threads **/
.forum .right {}

.forum .onoff{
width: 70px;
height: 120px;

background: #273d4d;
padding: 5px;
	margin-top: 5px;
}

.forum .post {width:48%; float:left; background: #fff;}
.forum .thread {width:48%; float:right; background: #fff;}

/** Unterforen **/
.forum .sub {width:390px; padding:5px; background:#fff;float:left;}
		
		