/*=================================================================================
PAGINATION
=================================================================================*/
/*FORUM CONTROLS*/
.forum-controls{
	margin-bottom: 10px;
}
.forum-controls.bottom{
	margin: 1.42857143rem 0 0;
}
/*PAGINATION*/
.forum-controls .pagination{
	float: left;
}
.forum-controls .pagination .btn{
	padding: 4px 10px;
	color: #8a959e;
	border-radius: 0;
	border-color: #e8eaec;
	background-color: #e8eaec;
}
.forum-controls .pagination .btn:focus,
.forum-controls .pagination .btn:hover,
.forum-controls .pagination .btn:active{
	background-color: #8a959e;
	color: #fff;
}
.forum-controls .pagination .disabled{
	display: none;
}
/*=========================================================================
TABLE
=========================================================================*/
.forum-table-container{
	padding: 10px;
	margin-bottom: 10px;
	background-color: #e8eaec;
}
.forum-table-container:last-child{
	margin-bottom: 0;
}
/*FORUM TABLE*/
.forum-table{
	margin-bottom: 0;
	background-color: #fff;
}
.forum-table td{
	padding: 5px;
	border-top-color: #e8eaec;
}
.forum-table tr.selected > td{
    background-color: #fcf8e3;
}
.forum-table td > :last-child{
	margin-bottom: 0;
}
/*FORUM CATEGORY*/
.forum-category{
	padding: 5px 10px;
   	background-color: #8a959e;
}
.forum-category h2{
	margin: 0;
	font-size: 1.3rem;
	font-weight: 500;
	color: #fff;
	text-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
/*FORUM CATEGORY DESCRIPTION*/
.forum-category-description{
	color: #8a959e;
	font-style: italic;
}
/*FORUM SHORTCUT*/
.forum-shortcut{
	padding-right: 0 !important;
}
.forum-shortcut a{
	display: block;
	padding: 5px;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 22px;
	text-decoration: none;
	color: #8a959e;
	background-color: #e8eaec;
	border-radius: 32px;
	transition: all .2s linear;
}
.forum-shortcut a:hover{
	background-color: #8a959e;
	color: #fff;
	transition: all .2s linear;
}
.forum-shortcut.resolved a,
.forum-shortcut.resolved a:hover{
	color: #fff;
	background-color: #51a351;
}
/*FORUM SCATEGORY*/
.forum-scategory h3{
	margin: 5px 0;
	font-weight: 500;
	font-size: 1.2rem;
}
/*FORUM SCATEGORY*/
.forum-scategory p{
	margin-bottom: calc(1.42857143rem / 2);
}
/*=========================================================================
TOPIC
=========================================================================*/
.forum-table-topic tr:last-child > td{
	border-bottom: 1px solid #ddd;
}
/*FORUM AUTHOR*/
.forum-tools{
   	background-color: #8a959e;
}
.topic-author,
.topic-author:hover{
	color: #fff;
	font-weight: 700;
}
.forum-tools ul{
	margin-bottom: 0;
}
/*AVATAR*/
.forum-member{
	width: 75px;
	background-color: rgba(0,0,0,.05);
   	border-right: 1px solid #ddd;
   	border-left: 1px solid #ddd;
}
.forum-member-avatar.moderateur > *{
	position: relative;
	display: inline-block;
    overflow: hidden;
}
.forum-member-avatar.moderateur > *:before{
    position: absolute;
    display: block;
    color: #fff;
    left: -1rem;
    top: .25rem;
    width: 4rem;
    font-family: FontAwesome;
    content: "\f006";
    background: rgba(255, 152, 0, 1);
    transform: rotate(-45deg);
}
.forum-member-avatar img{
	max-width: 100%;
}
/*MSG*/
.forum-content{
   	height: auto;
   	max-width: 100%;
   	border-right: 1px solid #ddd;
}
.forum-content-sign{
   	padding-top: 5px;
	overflow: hidden;
   	border-top: 1px solid #ddd;
}
/*CITE*/
.forum-content-msg blockquote{
   padding: 10px;
   border-radius: 0 5px 5px 0;
   border-left-color: #ddd;
   background-color: rgba(0,0,0,.05);
   color: #555;
}
.forum-content-msg blockquote a{
   color: #555;
}
.forum-content-msg blockquote > :last-child{
   margin-bottom: 0;
}
/*POST*/
#reponse_forum textarea{
	background-color: rgba(0,0,0,.05);
}
/*=========================================================================
MEDIA QUERIES
=========================================================================*/
@media (min-width: 768px){
	/*=========================================================================
	TABLE
	=========================================================================*/
	/*FORUM TABLE*/
	.forum-table td{
		padding: 15px;
	}
}
@media (min-width: 992px){
	/*=========================================================================
	TOPIC
	=========================================================================*/
	/*AVATAR*/
	.forum-member{
		width: 150px;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	/*=========================================================================
	TOPIC
	=========================================================================*/
	/*MSG*/
	.forum-content{
	   	max-width: 820px;
	}
}
@media (min-width: 1200px) and (max-width: 1599px){
	/*=========================================================================
	TOPIC
	=========================================================================*/
	/*MSG*/
	.forum-content{
	   	max-width: 1020px;
	}
}
@media (min-width: 1600px){
	/*=========================================================================
	TOPIC
	=========================================================================*/
	/*MSG*/
	.forum-content{
	   	max-width: 1050px;
	}
}