@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
   src: url('../fonts/poppins-latin-400-normal.woff2') format('woff2'),
     url('../fonts/poppins-latin-400-normal.woff') format('woff');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
  }
.chat__widget {
  right: 15px !important;
  bottom: 15px !important;
    padding-left: 30px !important;
    }

  body {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  #chatWidget {
    position: fixed;
    right: 1rem;
    bottom: 4.5rem;
    -webkit-box-shadow: 5px 0px 22px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 5px 0px 22px -5px rgba(0, 0, 0, 0.75);
    box-shadow: 5px 0px 22px -5px rgba(0, 0, 0, 0.75);
    border-radius: 0.8rem;
    z-index: 200000;
  }
  #openCloseWidget {
    position: fixed;
    z-index: 200000;
    right: 1rem;
    bottom: 1rem;
    border-radius: 34px;
    cursor: pointer;
    transition: all ease-in 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
  }
  
  #openCloseWidget:hover {
    transform: scale(1.1);
  }
  
  .greetMe__banner {
    position: fixed;
    right: 1rem;
    bottom: 4rem;
    z-index: 200000;
    font-family: "Poppins", sans-serif !important;
    width: 250px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 0.5rem;
    transition: all ease-in 300ms;
  }
  .greetMe__bannerRemove {
    opacity: 0;
  }
  .greetMe__banner > img {
    position: absolute;
    right: -7px;
    cursor: pointer;
    top: -7px;
    transition: all ease-in 300ms;
  }
  .greetMe__banner > img:hover {
    transform: scale(1.1);
  }
  .greetMe__bannerMsg {
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
  }
  
  #closeWidgetIcon {
    display: none;
    position: fixed;
    right: 10px;
    cursor: pointer;
    top: 5px;
    z-index: 250000;
    transition: all ease-in 300ms;
  }
  #closeWidgetIcon:hover {
    transform: scale(1.1);
  }
  .chat__WidgetBig {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 70svh;
  }
  .chat__WidgetSmall {
    width: 100%;
    z-index: 200000;
    border-radius: 0;
    height: 100svh;
    left: 0;
    top: 0;
  }