.box_zone_notifications .see_all_notifs{
	width: 100%;
	height: 30px;
	position: absolute;
	left: 0;
	background: #fff;
}
.box_zone_notifications{
    width: 350px;
    min-height: 300px;
    max-height: 400px;
    max-width: 350px;
    border: solid 1px #dddfe2;
    border-radius: 0 0 0;
    overflow-y: auto;
}
.box_zone_notifications::-webkit-scrollbar {
  width: 5px;
}
.box_zone_notifications::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.box_zone_notifications::-webkit-scrollbar-thumb {
  background: #888; 
}
.box_zone_notifications::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.box_zone_notifications .uiHeader_notifs{
	font-weight: 600;
    font-size: 11px;
    padding: 5px 10px;
    border-bottom: solid 1px #dddfe2;
}
.box_zone_notifications a.def{
	height: inherit;
    line-height: inherit;
    color: inherit;
    display: inherit;
}
.box_zone_notifications .uiHeader_notifs a{
	text-decoration: underline;
	color: #385898;
	font-size: 10px;
}
.box_zone_notifications .uiList_Notif{
	width: 100%;
	min-height: 1px;
}
.box_zone_notifications .uiList_Notif .head_List{
    background: #f5f6f7;
    border-bottom: solid 1px #dddfe2;
    padding: 3px 10px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    color: #7d7d7d;
}
.box_zone_notifications .List_Notif .notif_list_item{
	background: #edf2fa;
	border-bottom: 1px solid #dddfe2;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	position: relative;
}
.box_zone_notifications .List_Notif .notif_list_item:hover{
	background: #dfebff;
}
.box_zone_notifications .List_Notif .notif_list_item a{
	padding: 6px 10px 6px 10px;
	display: block !important;
	width: 100%;
}
.box_zone_notifications .List_Notif .ctn_notif{
	width: 100%;
	min-height: 42px;
}
.box_zone_notifications .List_Notif .ctn_notif .avatar{
	width: 42px;
    height: 42px;
    float: left;
    margin-right: 10px;
    position: relative;
}
.notif_list_item.connected .avatar:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #43b581;
    position: absolute;
    border-radius: 50%;
    right: 0;
    bottom: 0;
    z-index: 9;
}
.box_zone_notifications .List_Notif .ctn_notif .avatar span{
	display: inline-block;
	width: 42px;
	height: 42px;
	background: #000;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}
.box_zone_notifications .List_Notif .ctn_notif .avatar span img{
	width: 100%;
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.box_zone_notifications .List_Notif .detail_notif{
	width: 100%;
	height: 42px;
}
.box_zone_notifications .List_Notif .detail_notif > .contenu{
	position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.box_zone_notifications .List_Notif .detail_notif span{
	display: block;
	font-size: 11px;
}
.box_zone_notifications .List_Notif .detail_notif span.head_detail{
    font-weight: 400;
}
.box_zone_notifications .List_Notif .detail_notif span abbr{
    font-weight: 900;
}
.box_zone_notifications .List_Notif .detail_notif span.ctn_detail{
	color: #90949c;
}
.box_zone_notifications .List_Notif .detail_notif span.ctn_detail i{
	margin-right: 3px;
}
.box_zone_notifications.messagerie .List_Notif .notif_list_item{
	background: #fff;
}
.box_zone_notifications.messagerie .List_Notif .notif_list_item:hover{
	background: #f1f1f1;
}
/*----------------------------------------------------------------------------*/
/*-----------------------------------Chat box---------------------------------*/
/*----------------------------------------------------------------------------*/

.chat_box{
    width: 100%;
    max-width: 260px;
    height: 350px;
    background: white;
    position: fixed;
    bottom: 0;
    right: 20px;
    border-radius: 6px 6px 0 0;
    -webkit-box-shadow: 8px -4px 16px -12px rgba(0,0,0,0.75);
	-moz-box-shadow: 8px -4px 16px -12px rgba(0,0,0,0.75);
	box-shadow: 8px -4px 16px -12px rgba(0,0,0,0.75);
	overflow: hidden;
}
.chat_box.closed{
	height: 40px;
}
.chat_box .head_chat_box{
	width: 100%;
	height: 40px;
	background: #fff;
	border-bottom: 1px solid #f0f1f3;
	line-height: 40px;
	font-weight: 800;
    padding-left: 10px;
    cursor: pointer;
}
.chat_box .head_chat_box .close_chat_box{
	display: inline-block;
    width: 35px;
    height: 40px;
    float: right;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
}
.chat_box .head_chat_box .avatar{
	width: 25px;
    height: 25px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    top: 7px;
    margin-right: 5px;
}
.chat_box .head_chat_box .avatar img{
	width: 100%;
	height: 100%;
	position: absolute;
}
.chat_box .middle_chat_box{
    width: 100%;
    height: 270px;
    background: #f1f5ff;
    overflow-y: auto;
    position: relative;
}

.chat_box .middle_chat_box::-webkit-scrollbar {
  width: 5px;
}
.chat_box .middle_chat_box::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.chat_box .middle_chat_box::-webkit-scrollbar-thumb {
  background: #888; 
}
.chat_box .middle_chat_box::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.chat_box .footer_chat_box{
	width: 100%;
    height: 40px;
    background: white;
    padding-right: 70px;
    border-top: 1px solid #f0f1f3;
    position: relative;
}
.chat_box .footer_chat_box input{
	width: 100%;
    height: 40px;
    border: 0;
    outline: none;
    padding-left: 10px;
    font-size: 12px;
}
.chat_box .footer_chat_box .btn_sent{
	position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    background: transparent;
    border: 0;
    outline: none;
}
.chat_box .footer_chat_box .btn_sent i{
	font-size: 17px;
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
}
.chat_box .footer_chat_box .chatfile{
    position: absolute;
    top: 0;
    width: 30px;
    height: 40px;
    right: 40px;
    cursor: pointer;
}
.chat_box .footer_chat_box .chatfile label{
	display: inline-block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
}
.chat_box .footer_chat_box .chatfile label input{
	display: none;
}
.chat_box .footer_chat_box .chatfile label i{
	font-size: 16px;
}
.chat_box .content_chat_box{
	padding: 0 10px;
	width: 100%;
	bottom: 0;
}
.chat_box .content_chat_box .ctn{
	padding: 5px 0;
}
.chat_box .content_chat_box .ctn.right{
	text-align: right;
}
.chat_box .content_chat_box .ctn.left span{
	background: #abc3ff;
}
.chat_box .content_chat_box .ctn span{
    display: inline-block;
    background: #dadada;
    padding: 2px 10px;
    border-radius: 5px;
    max-width: 200px;
}
.list_boxes_chat > div:nth-child(1){right: 20px !important;}
.list_boxes_chat > div:nth-child(2){right: 290px !important;}
.list_boxes_chat > div:nth-child(3){right: 560px !important;}
.list_boxes_chat > div:nth-child(4){right: 840px !important;}
/*----------------------------------------------------------------------------*/
/*-------------------------------End Chat box---------------------------------*/
/*----------------------------------------------------------------------------*/