/* Overview*/
#forumbox {
	margin-bottom: var(--space-xs);
}

/* Accordion 2*/
#forumbox .accordion2 {
    width: 100%;
    border: 0px;
    border-radius: 0px;
    font-size: var(--main-xxs);
    font-family: var(--maintitle-font);
    font-weight: 200;
    color: var(--colorbase2);
    text-shadow: var(--shadow1) var(--accent4);
    background: var(--accent3);
    padding: 0px var(--space-m);
    border-left: var(--space-xs) solid var(--accent4);
    border-right: var(--space-xs) solid var(--accent4);
    text-transform: none;
    line-height: var(--main-s);
}

#forumbox .panelle2.open {
  max-height: 1000px; /* oder auto, aber "auto" kann transition nicht animieren */
}

#forumbox .accordion2:hover{
	background: var(--colorbase2);
	color:var(--accent3);
    -webkit-transition:var(--fast);
    transition:var(--fast);
    -ms-transition:var(--fast);
    -o-transition:var(--fast);
    -moz-transition:var(--fast);
}

#forumbox .accordion2:after {
    float: right;
    margin-left: var(--space-s);
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f358";
    font-size: var(--text-l);
    color: var(--colorbase2);
	text-shadow: var(--shadow1) var(--accent4);
    text-shadow: none;
    margin-top: -35px;
}

#forumbox .active2:after{
  font-family: "Font Awesome 5 Pro";
  content: "\f35b";
  color:var(--accent4);
  margin-top:-30px;
}

#forumbox .panelle2{
  padding: 0px;
  background: var(--colorbase29);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

#forumbox #overview{
    height: 200px;
    overflow-x: hidden;
}

#overview .tcat{
}

#overview .tborder {
    background: var(--colorbase25);
    border: 0px;
    border-radius: 0px;
}

#overview table {
    width: 100%;
    margin: 0;
    padding: var(--space-xxs);
	border-radius: 0px;
}

#overview .tcat {
    border-radius: 0px;
    text-transform: none;
    font-family: var(--subtext-font);
    background: var(--accent4);
    margin: var(--space-xxs) 2% var(--space-xxs) 1%;
    box-sizing: border-box;
    padding: var(--space-xs) var(--space-m);
    font-size: var(--text-l);
    color: var(--colorbase2);
    letter-spacing: var(--space-xxxs);
    text-align: left;
    position: relative;
    border-left: var(--space-xs) solid var(--accent3);
    border-right: var(--space-xs) solid var(--accent3);
    z-index: 1;
    line-height: var(--space-bigger);
}

#overview .trow1 {
    border-right: var(--space-xxxs) ridge var(--color3);
    font-size: var(--text-m);
    font-family: var(--subtext-font);
    line-height: var(--space-xxl);
}

#overview .trow2 {
    border-right: var(--space-xxxs) ridge var(--color3);
    font-size: var(--text-m);
    font-family: var(--subtext-font);
    line-height: var(--space-xxl);
}

#overview .smalltext{
	padding: 0px var(--space-xxs);
}

#overview .trow1 a, #overview .trow2 a{
	color: var(--accent1);
	text-decoration:none;
}

#overview .trow1 a:hover, #overview .trow2 a:hover{
	color: var(--accent3);
	text-decoration:underline;
}

