  #tele-chatbox {
      position: fixed;
      left: 50%;
      bottom: 30px;
      width: 90%;
      max-width: 400px;
      height: max-content;
      background-color: whitesmoke;
      transform: translate(-150vw, 0%);
      outline: 1px solid rgb(255, 132, 24);
      display: flex;
      flex-direction: column;
      z-index: 999999;
      isolation: isolate;
      border-radius: 15px;
      box-shadow: 0 0 100vw 200vw hsla(0, 0%, 0%, 0);
      transition: .75s;
      overflow: hidden;

  }

  #tele-chatbox * {
      margin: 0;
      box-sizing: border-box;
  }

  .telepopipicon {
      position: fixed;
      left: 30px;
      bottom: 30px;
      z-index: 999;
      cursor: pointer;
  }

  #tele-chatbox.active {
      box-shadow: 0 0 100vw 100vw hsla(0, 0%, 0%, 0.3);
      transform: translate(-50%, 0%);
  }

  #tele-chatbox .tele-chatbox-header {
      width: 100%;
      height: 70px;
      background-color: hsl(0, 0%, 100%);
      display: flex;
      justify-content: flex-start;
      align-items: center;

  }

  #tele-chatbox .tele-chatbox-header img {
      height: 95%;
  }

  #tele-chatbox .tele-chatbox-header #tele-close {
      margin-left: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      color: hsl(207, 100%, 44%);
      font-size: 2.5rem;
  }

  #tele-chatbox .tele-chatbox-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* align-items: center; */
      padding: 1rem;
      gap: .5rem;
  }

  #tele-chatbox .tele-chatbox-body h6 {
      font-size: 1.2rem;
      text-align: center;
      margin-bottom: 1rem;
  }

  #tele-chatbox .tele-chatbox-body p {
      text-align: center;
      font-size: 1rem;

  }

  #tele-chatbox .tele-chatbox-body textarea,
  #tele-chatbox .tele-chatbox-body input {
      box-shadow: 0 0 2px rgb(255, 132, 24);
      padding: 0.5rem;
      width: 100%;
      border: none;
      outline: none;
      border-radius: 5px;
  }

  #tele-chatbox .tele-chatbox-body .input-group {
      display: flex;
      align-items: center;
      width: 100%;
      gap: 1rem !important;
      flex-wrap: nowrap !important;

  }

  #tele-chatbox .tele-chatbox-body .captcha-reload {
      display: flex;
      align-items: center;
      justify-content: center;

  }

  #sendBtn {
      background-color: rgb(255, 132, 24);
      border: none;
      outline: none;
      padding: 0.75rem 0.5rem;
      color: white;
      font-size: 1rem;
      border-radius: 100vw;
      cursor: pointer;
      justify-content: center;
      align-items: center;
  }

  #sendBtn.active {
      pointer-events: none;
      background-color: hsl(20, 1%, 41%);
  }

  #sendBtn.active span {
      display: none;
  }

  #sendBtn.active::after {
      content: "\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0";
      background-color: white;
      height: 100%;
      mask-image: url(https://api.iconify.design/svg-spinners:3-dots-fade.svg);
      mask-size: 100%;
      mask-repeat: no-repeat;
      mask-position: center;
  }

  .d-column {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
  }

  [onclick="createCaptcha()"] {
      cursor: pointer;
  }