h1 {
	padding: 20px 0 0
}

.forum-section .forum-category {
    float: left;
    width: 100%;
    border-bottom: 1px solid #00000012;
    padding: 7px 10px 14px;
    box-sizing: border-box;
}

.forum-section .forum-category .forum-category-title {
	float: left;
    width: calc(100% - 75px);
    padding: 0 5px 5px 0;
    box-sizing: border-box;
}

.forum-section .forum-category .forum-category-title > a {
    float: left;
    width: 100%;
    font-size: 18px;
    color: #b4453b;
    font-weight: bold;
}

.forum-section .forum-category .forum-category-statistics {
    float: right;
    width: 75px;
    text-align: center;
    color: #5a5a5a;
    font-size: 12px;
    background: #fafafa;
    border-radius: 5px;
    padding: 7px 0;
    line-height: 1.3;
}

.forum-section .forum-category .forum-category-statistics span {
    font-weight: bold;
    font-size: 15px;
    width: 100%;
    display: block;
}

.forum-section .forum-category .forum-category-lastPost {
    float: left;
    width: 100%;
    padding: 3px 0 0;
    text-align: right;
    display: flex;
    justify-content: right;
}

.forum-section .forum-category .forum-category-lastPost > a {
    width: 100%;
    font-size: 13px;
    color: #b4453b;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.forum-section .forum-category .forum-category-lastPost p {
    font-size: 13px;
    text-align: right;
    white-space: nowrap;
    margin-left: 5px;
}

.forum-section .forum-category .forum-category-lastPost p span {
    color: #9b9b9b;
    font-size: 11px;
    padding-left:5px;
}

#forum-statistics{
	float: left;
	width: 100%;
	padding: 25px 5% 15px;
	box-sizing: border-box;
	background: #4e4e4e;
}

.forum-statistic-tab{
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.forum-statistic-tab-title{
    float: left;
    width: 100%;
    background: linear-gradient(to top,#464646,#202020);
    color: #ffffff;
    font-size: 15px;
    padding: 8px 15px;
    box-sizing: border-box;
    border-radius: 5px;
}

.forum-statistic-tab-content{
    float: left;
    width: 100%;
    background: #fff;
    padding-bottom: 6px;
}

.forum-statistic-tab-row{
    float: left;
    width: 100%;
    padding: 12px 20px 9px;
    box-sizing: border-box;
    border-bottom: 1px solid #ededed;
}

.forum-statistic-tab-row .time {
	float: right;
	margin: 0 -20px -15px 0;
	font-size: 11px;
	background: #fff;
	color: #b3b3b3;
	padding: 0 5px 0 5px;
}
	
/*.forum-statistic-tab-row:last-child{
  border: none;
}*/

.forum-statistic-tab-row a{
    float: left;
    width: 100%;
    font-size: 14px;
    color: #b4453b;
}

.forum-statistic-tab-row > span {
    padding-right: 10px;
    font-size: 13px;
    color: #666666;
}

.forum-statistic-tab-row > span > span {
    font-weight:bold;
    color:#000;
}

.forum-statistic-tab-text{
    float: left;
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #060608;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media screen and (min-width: 600px)
{
	.forum-section .forum-category {
		float: left;
		width: 100%;
		border-bottom: 1px solid #00000012;
		padding: 11px 15px 14px;
		box-sizing: border-box;
		display:grid;
		grid-template-columns: auto 90px 35%;
		align-items: center;
	}

	.forum-section .forum-category .forum-category-title {
		width: unset;
		padding:0;
		margin:0;
	}
	
	.forum-section .forum-category .forum-category-statistics {
		width: unset;
		padding:0;
		margin:0;
		background: none;
		font-size: 13px;
	}

	.forum-section .forum-category .forum-category-lastPost {
	    display: block;
	}
	.forum-section .forum-category .forum-category-lastPost > a,
	.forum-section .forum-category .forum-category-lastPost p {
		width: 100%;
        text-align:right;
	}

    .forum-statistic-tab{
        width: 49%;
    }
    .forum-statistic-tab:nth-child(even) {
        float:right;
    }
}

@media screen and (min-width: 900px)
{
    #forum-statistics{
        width: 30%;
        padding: 20px 30px 15px 0;
        background: none;
    }
    .forum-statistic-tab{
        width: 100%;
    }
}

@media screen and (min-width: 1200px)
{

}

@media screen and (min-width: 1600px)
{

}