.message-box-holder {
    width: 100%;
    margin: -150px 0 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  
  .message-box {
    padding: 18px 18px; 
    margin: 0 0 15px;; 
    border-radius: 6px 0 6px 0;
    position: relative;
    background: #ECEEF1;
    border: 4px solid #E35205;
    color: #6c6c6c;
    opacity:0.85;
    font-size: 25px;
    float: right;
    margin-top: 20px;
    /* background:rgba(240, 234, 234, 0.7); */
  }
  
.message-box:after {
    content: " ";
    position: absolute;
    left: -1.5px;
    bottom: -30px;
    border-top: 30px solid #ECEEF1 ;
    border-right: 6px solid #E35205;
    border-left: 6px solid #E35205;
    border-bottom: 2px solid #E35205;
    
    opacity: 0.85;
  }
  .other-message-box-holder {
    width: 100%;
    margin: 0 0 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .other-message-box {
    padding: 18px 18px; 
    margin: 0 0 15px;; 
    border-radius: 6px 0 6px 0;
    position: relative;
    background: #ECEEF1;
    /* border: 4px solid #E35205; */
    color: #6c6c6c;
    opacity:0.85;
    font-size: 25px;
  }

  .other-message-box:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: -15px;
    border-top: none;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 30px solid #ECEEF1;
    opacity: 0.85;
  }
  
  
  

   