.chat-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.chat-section .title,.chat-section .title a{
	color: #a8cbcb;
	margin-bottom: 0;
    font-size: 1.25rem;
}
.chat-section .title a{
	text-decoration: underline;
}
.section-top {
    display: flex;
    background-color: #eee;
    justify-content: space-between;
    padding: .5rem;
}
.search-container form{
	position: relative;

}
.search-container button{
	position: absolute;
	right: 0;
    top: 0;
    padding: 0;
    color: #000;
}
.chat-section ul {
    padding: 0;
    list-style: none;
    margin: 0;
}
ul.current-end {
    display: flex;
    justify-content: flex-start;
    background-color: #fff;
    padding: 1rem;
}
ul.far-end {
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    padding: 1rem;
}
.chat-section img {
    width: 100%;
}
.chat-section .current-end li:first-child {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}
.chat-section ul li {
    display: flex;
    flex-direction: column;
}
.chat-listing {
    background-color: #eee;
    border: 1px solid #ccc;
    border-bottom: medium none;
}
.search-container form input {
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom-color: #ccc;
}
.search-container form button {
    background-color: transparent;
    border: medium none;
}
.left-section, .right-section {
    padding: 0;
}
.left-section {
    border-right: 3px solid #fff;
}
.chat-listing ul {
    border-bottom: 1px solid #ccc;
    padding: .5rem 1rem .5rem 1.5rem;
    padding-right: 1rem;
    cursor: pointer;
}
.chat-listing ul.active{
    background-color: #FFF;
}
span.message {
    padding: .5rem;
    margin-bottom: .5rem;
    max-width: 550px;
    width: 100%;
    border-radius: .5rem;
}
.chat-section .chat-listing li.title {
    color: #000;
}
.far-end span.message {
	background-color: #097392;
	color: #fff;
}
span.time {
    color: #666;
}
.current-end span.message {
	background-color: #eee;
}
.chat-current, .chat-listing {
    overflow-y: auto;
    max-height: 100vh;
    width:100%;
    height:80%;
}
#users_list label{
    width:49%;
    display: inline-block;
}
.formatted_image {
	display: inline-block;
}
.formatted_name {
	display: inline-block;
}
.formatted_name span {
	margin-left: 10px;
}
.selectBox {
 position: relative;
 background: #a8cbcb;
 /* /pointer-events: none;/ */
}
.selectBox select {
 width: 100%;
 font-weight: bold;
 background: none !important;
}
.overSelect {
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
}
.checkbox_hide ,.checkbox_hide_author{
 display: none;
 border: 1px #dadada solid;
 position: relative;
z-index: 999;
background: #fff;
width: 100%;
border-top: none;
/* /max-width: 84%;/ */
}
.selectBox select {
   margin: 0;
   color: #fff;
}
.checkbox_hide label,.checkbox_hide_author label{
 display: block;
}
.p15 {
   padding: 10px 5px;
}
.checkbox_hide label:hover,.checkbox_hide_author label:hover {
 background-color: #1e90ff;
}
.col-md-12.search_filter {
   border: none !important;
}
.checkbox_hide .wdm-checkbox{
   width: 20px;
   height: 20px;
   font-size: 14px;
   float: left;
}
.checkbox_hide .wdm-input-checkbox{
   left: 0px;
   opacity: 0;
   width: 20px;
   height: 20px;
}
.checkbox_hide label span{
    float: left;
    margin-left: 5px;
}

.message_box {
	width: 100%;
	height: auto;
	/* min-height: 66px; */
	bottom: 0;
	background-color: #EEE;
	padding: 18px 0;
	border: 1px solid #CCC;
}
.send_button_container {
    display: inline;
    vertical-align: top;
    display: inline;
}
.message_box_container {
	display: inline-block;
}
.message_box_container textarea{
    height:45px !important;
    width:100%;
}

/* css loader start */
#chat_loader_container {
	font-size: 14px;
	position: absolute;
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	z-index: 999;
	top: 0;
    bottom: 0;
    display: none;
}
.lds-ring {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
	left: 50%;
	top: 50%;
	transform: translate(-50%);
}
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #a8cbcb;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #a8cbcb transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* css loader end   */