/* forum */
.forum_wrap {
	margin: 25px 0;
}
.forum_category {
    margin: 0;
    padding: 0;
	margin-bottom: 15px;
}
.forum_category>li {
	background-color: rgb(255,255,255,.7);
	box-shadow: 0px 0px 30px 1px rgb(0 0 0 / 6%);
    padding: 5px;
    border-radius: 5px;
	list-style: none;
}
.forum_category>li>h4 {
    background: #eeeeee none repeat scroll 0 0;
    box-shadow: 0px 0px 21px 1px rgb(0 0 0 / 5%);
    color: #333;
    border-radius: 5px;
    padding: 12px 10px;
    font-size: 20px;
}
.board_list {
    display: table;
    width: 100%;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.board_list>li {
	display: table-row;
	width: 100%;
	margin-bottom: 15px;
}
.board_icon, .board_info, .board_stats, .board_last_topic { 
	display: table-cell;
    padding: 10px;
    border-bottom: 1px dotted rgb(105,144, 193, .5);
}
.board_icon {
    text-align: center;
    font-size: 28px;
    vertical-align: middle;
    width: 55px;
	color: #90c65f;
}
.board_info a {
	color: #5f90c6;
	font-weight: bold;
}
.board_info p {
	font-size: 12px;
	margin: 0;
}
.board_stats {
	width: 150px;
	text-align: center;
}

.board_last_topic span,
.board_stats span {
	display: block;
	width: 100%;
	font-size: 12px;
}
.board_last_topic span { color: #03263c; white-space: nowrap }
.board_last_topic span a {
	width: 150px;
	color: #5f90c6!important;
	display: inline-block;
}
.board_last_topic span strong { float: right }
.board_last_topic {
	width: 250px;
	overflow: hidden;
}

.category_tools {
	float: right;
}
.category_tools>a {
	background-color: rgb(95, 144,198, .8);
	border-radius: 10px;
	padding: 2px 10px;
	color: #fff;
	font-size: 14px;
	margin-right: 15px;
}
.category_tools>a:hover { background-color: rgb(95, 144,198, 1); }
.forum_tools {
	text-align: right;
	margin-bottom: 25px; 
}
.forum_tools a {
    background-color: rgb(105,144, 193,.18);
    box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.05);
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    margin: 7px 5px;
    color: #03263c;
    font-size: 14px;
    display: inline-block;
	border-radius: 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.forum_tools a:hover {
	background-color: #5f90c6;
	color: #fff;
}
.topic_author {
	width: 50px;
	height: 50px;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgb(86, 124,198,.2);
}
.board_list>li:last-child .board_icon, 
.board_list>li:last-child .board_info, 
.board_list>li:last-child .board_stats,
.board_list>li:last-child .board_last_topic { border-bottom: none }
.forum_user_info {
	text-align: center;
	vertical-align: top;
	width: 135px;
}
.forum_user_info .topic_author {
	display: inline-block;
	margin-top: 10px;
}
.forum_user_info h6 { color: #333 }
.forum_user_info p {
	font-size: 12px;
	color: #333;
	margin: 10px 0 0;
}
.forum_user_info p span {
	float: right;
	color: #777;
}
.forum_message { 
	padding: 10px 0 0 25px;
	vertical-align: top;
}
.forum_message .form_block { margin-top: 25px }
.forum_message .forum_title {
	color: #5f90c6;
	font-weight: bold;
	border-bottom: 1px solid rgb(95,144,198,.2);
	margin-bottom: 10px;
}
.forum_message p { font-size: 18px!important }
.forum_message .topic_info {
    margin: 15px 0;
    font-size: 14px!important;
    color: #999;
}
.send_message {
    background: #98c7e2;
    color: #fff!important;
    font-weight: normal!important;
    padding: 2px 20px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.send_message:hover { background-color: #5f90c6 }
/* forum */

.form_field {
	width: 100%;
	padding: 5px 7px;
	border: 1px solid #eee;
	border-radius: 3px;
	font-size: 16px;
	margin: 10px 0;
	outline: 0;
}