/*CHAT STYLES*/
#support_chat{
	height: 100%;
}

.chat_wrapper{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;	
	width: 100%;
	height: 95vh;
}

.chat_block{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	width: 100%;
	transition: all 0.5s;
}

.chat_wrapper.open_message .chat_block{
	width: 25%;
}

.chat_block .chat_block_header{
	display: flex;
	flex-direction: column;
}
.chat_block .tab-content{
	width: 100%;
}

.chat_block .tab-content{
	width:100%;
	overflow-y: auto;
}

.chat_wrapper.open_message .table-striped tr.active{
	background-color:#1266f3;
	border-radius: 3px;
}

.chat_wrapper.open_message .tab-content tr> td:nth-child(n+4), .chat_wrapper.open_message .tab-content thead tr{
	display: none;
}

.messaging_block,.chat_account_info{
	display: none;
	border-left:1px solid #dcdcdc;
}

.chat_wrapper.open_message .messaging_block{
	display: flex;
   flex-direction: column;
   width: 50%;
   box-shadow: -10px 0px 10px -6px #aaaaaa;
   border: 1px solid #dcdcdc;
   position: relative;
   justify-content: space-between;
}

.chat_wrapper.open_message .chat_account_info{
	display: flex;
	width: 25%;
	border: 1px solid #dcdcdc;
}


.messaging_header{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.messaging_header .top_line{
	display: flex;
	flex-direction: row;
	position: relative;
	justify-content: space-between;
   padding-left: 60px;
   align-items: center;
}

.messaging_header  .btn_back{
	position: absolute;
	left:-10px;
}

.messaging_header .messageing_title{
	font-size: 22px;
	font-weight: bold;
}

.messaging_header .messaging_block_button{
	font-size: 18px;
	padding: 0px 15px;
}


.messaging_block .messaging_footer{
	position: absolute;
   bottom: 0px;
   height: 100px;
   width: 100%;
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
}

.messaging_footer textarea{
	width: 94%;
	resize: none;
	border-radius: 0px;
}

.messaging_footer .send_btn{
	width:6%;
	border-radius: 0px;
}



.account_owner{
	display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   justify-content: space-between;
   padding: 15px;
   align-items: center;
   height: 60px;
   width: 100%;
}


.account_name{
	font-size: 18px;
	font-weight: bold;
}
.account_img{
	height: 50px;
	width: 50px;
	border-radius: 50%;
}


.account_image>img{
	height: 50px;
	width:50px;
	border-radius: 50%;
	border:1px solid #DDD;
	overflow: hidden;
}

.rating_emoji{
	height: 30px;
	width: 30px;
}



.chat_list_block{
	width: 100%;
}
