.chat_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.chat_list .chat_item {
  position: relative;
  width: 48%;
  margin-left: 4%;
  margin-top: 6%;
}

@media only screen and (min-width: 768px) {
  .chat_list .chat_item:nth-child(2n+1) {
    margin-left: 0;
  }
  .chat_list .chat_item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .chat_list .chat_item {
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
  .chat_list .chat_item:first-child {
    margin-top: 0;
  }
}

.chat_list .chat_no {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.chat_list .chat_img {
  border: 2px solid #000;
  height: 500px;
  overflow: hidden;
  overflow-y: scroll !important;
}
/*# sourceMappingURL=styles.wb_special-chat.css.map */