.c-chat-window {
    height: 300px;
    width: 250px;
    position: relative;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 12px;
  }
  .c-chat-window__messages {
    background: white;
    border: 1px solid lightgrey;
    border-top: 0;
    border-bottom: 0;
    height: calc(100% - 68px);
    overflow-y: scroll;
    padding: 0 10px;
    position: absolute;
    top: 34px;
    line-height: 1.4;
    width: 100%;
  }
  .c-chat-window__compose {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    border: none;
  }
  .c-chat-window__text-box {
    flex: initial;
    height: 40px;
    width: 100%;
    border: 0;
    border-top: 1px solid lightgrey;
    border-left: 1px solid lightgrey;
    border-bottom: 1px solid lightgray;
    padding: 0 10px;
  }
  .c-chat-window__button {
    border: none;
    background: goldenrod;
    padding: 0 15px;
    color: white;
  }
  .c-chat-window__container {
    /*position: absolute;*/
    bottom: 0;
    right: 50px;
  }
  .c-chat-window__header {
    text-align: right;
    background: goldenrod;
    /*border-bottom: 1px solid white;*/
    color: white;
    cursor: pointer;
    padding: 10px;
    top: 0;
    /*left: 0;*/
    right: 0;
    position: absolute;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 10;
  }
  .head-lf{
    text-align: center;
    background: goldenrod;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 10;
  }
  .c-chat-window__target {
    /*height: 40px;*/
    /*background: orangered;*/
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0 10px;
  }
  .c-chat-window__message {
    padding: 10px;
    border-radius: 10px;
    width: 80%;
  }
  .c-chat-window__message--sent {
    background: #5d5d5d7c;
    color: white;
    margin-left: auto;
  }
  .c-chat-window__message--received {
    background: #5D5D5D;
    margin-right: auto;
  }
  .c-chat-window__notification {
    background: dodgerblue;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    z-index: 15;
    right: 0;
    top: -15px;
    display: none;
  }
  .c-chat-window__notification::after {
    content: '';
    display: inline-block;
    margin: auto;
    height: 5px;
    width: 5px;
    background-color: white;
    position: absolute;
    left: calc(50% - 2.5px);
    top: calc(50% - 2.5px);
  }
  .c-chat-window--hide {
    display: none;
  }
  
  .chat-float{
    position: fixed;
    bottom: 2%;
    right: 20px;
    /*border-bottom: .01rem solid lightgrey;*/
  }

  .fl-r{
    float: right;
  }