.fs-10 {
    font-size: 10px;
  }
  
  .fs-12 {
    font-size: 12px;
  }
  
  .fs-14 {
    font-size: 14px;
  }
  
  .Chatboat {
    width: 340px;
    position: fixed;
    bottom: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
  }
  
  .chatboat-header {
    background: linear-gradient(180deg, #E2AD5E 0%, #d8b713 100%);
  }
  
  /* .chatboat-bottom {
    background-color: #ededed;
  } */
  
  .chatboat-textarea {
    background: #ffffff;
    border-radius: 0;
    border: none;
    font-size: 16px;
    line-height: 1.4;
    scrollbar-width: none;
    resize: none;
    transition: border-color 150ms ease;
    width: 100%;
  }
  
  .chatboat-textarea:hover {
    border-color: #c6c6c6;
  }
  
  .chatboat-textarea:focus {
    outline: none;
    border-color: #c6c6c6;
  }
  
  .chatboat-textarea::placeholder {
    color: #c6c6c6;
  }
  
  .send-button {
    right: -18%;
    top: 50%;
    border-radius: 40px;
    transform: translate(-50%, -50%);
    height: 3rem;
    width: 3rem;
    background: linear-gradient(180deg, #E2AD5E 0%, #d8b713 100%);
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: white;
  }
  
  .send-button:hover {
    background: white !important;
    color: rgb(0, 125, 252) !important;
  }
  
  .open-chatbox {
    position: absolute;
    right: -10%;
    bottom: 0px;
  }
  
  .open-chatbox button {
    right: 100px;
    bottom: 34px;
    height: 40px;
    white-space: nowrap;
    position: absolute;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 18, 46, 0.18) 0px 2px 20px 0px;
  
  }
  
  .openchatbox-button {
    border-radius: 40px;
    transform: translate(-50%, -50%);
    height: 3.5rem;
    width: 3.5rem;
    background: linear-gradient(180deg, #E2AD5E 0%, #d8b713 100%);
    text-align: center;
    transition: all 0.2s ease-in-out 0.2s;
    align-items: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: white;
  }
  
  .openchatbox-button:hover {
    background: rgb(230, 219, 219) !important;
    color: rgb(0, 125, 252) !important;
  }
  
  .sendpaper {
    font-size: 20px;
    rotate: 55deg;
  }
  
  .message-box {
    height: 18rem;
    overflow-y: scroll;
  }
  
  .left-box {
    margin-bottom: 10px;
    background-color: #cdaa22;
    color: #fff;
    border-radius: 10px 10px 10px 0px;
    padding: 10px;
    display: inline-block;
    overflow-wrap: break-word;
    clear: both;
    font-size: 13px;
    max-width: 85%;
    min-width: auto;
  }
  
  ::-webkit-scrollbar {
    width: 0px;
  }
  
  .right-box {
    margin-bottom: 10px;
    background: #e7e4e4;
    overflow-wrap: break-word;
    clear: both;
    font-size: 13px;
    border-radius: 10px 10px 0px 10px;
    padding: 10px;
    max-width: 85%;
    min-width: auto;
    float: right;
  }
  
  .email-btn {
    box-shadow: inset 2px 4px 5px #0e0e0e1f;
    background-color: #d7b631;
    border: none;
    padding: 7px;
    border-radius: 6px;
    transition: all 400ms ease;
  }
  
  .email-btn:hover{
    background-color: #c7a419;
  }