  :root {
      --main--icon-color: white;
      --call-icon-bg: darkblue;
      --email-icon-bg: rgb(17, 193, 70);
      --url-icon-bg: rgb(216, 61, 45);
      --tele-icon-bg: rgb(40, 164, 226);
      --call-ani-color: darkblue;
      --tele-ani-color: rgb(40, 164, 226);
      --url-ani-color: rgb(216, 61, 45);
      --email-ani-color: darkgreen;
      --animation-width: 50px;
      --animation-height: 50px;
      --animation-start-range: 5px;
      --animation-end-range: 30px;

      /* --call-icon-box-shadow: 0 0 10px;
                --tele-icon-box-shadow: 0 0 10px; */
  }


  .bottom-call-tel.btn-animation::before {
      /* content: ""; */
      width: var(--animation-width);
      height: var(--animation-height);
      margin-top: 2px;
      position: absolute;
      border-radius: 50%;
      padding: 25px;
      border-style: solid;
      border-width: 5px;
      opacity: 0.75;
      animation-name: animation-border;
      animation-duration: 2s;
      box-sizing: unset;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
      pointer-events: none;
  }

  .bottom-call-tel.btn-animation1::before {
      border-color: transparent var(--call-ani-color) transparent var(--call-ani-color);
  }

  .btn-animation2::before {
      border-color: transparent var(--tele-ani-color) transparent var(--tele-ani-color);
  }

  .btn-animation3::before {
      border-color: transparent var(--email-ani-color) transparent var(--email-ani-color);
  }

  .btn-animation4::before {
      border-color: transparent var(--url-ani-color) transparent var(--url-ani-color);
  }


  @keyframes animation-border {
      0% {
          padding: var(--animation-start-range);
          padding: var(--animation-start-range);
          opacity: 0.75;
      }

      75% {
          padding: var(--animation-end-range);
          padding: var(--animation-end-range);
          opacity: 0;
      }

      100% {
          opacity: 0;
      }
  }


  #bottom-operator {
      position: fixed;
      left: 30px;
      bottom: 30px;
      z-index: 999999;

  }

  .bottom-call-tel.call-container {
      z-index: 999;
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: var(--main-icon-font-size);
      color: var(--main--icon-color);
      background: var(--call-icon-bg);
      box-shadow: var(--call-icon-box-shadow);
      background-size: 40px;
      background-position: center;
      background-repeat: no-repeat;
      transition: 1s;
      opacity: 0;
      cursor: pointer;
  }

  .bottom-call-tel.telegram-container {
      z-index: 999;
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: var(--main-icon-font-size);
      color: var(--main--icon-color);
      background: var(--tele-icon-bg);
      box-shadow: var(--tele-icon-box-shadow);
      background-size: 40px;
      background-position: center;
      background-repeat: no-repeat;
      transition: 1s;
      opacity: 0;
      cursor: pointer;
  }

  .bottom-call-tel.call-container span {
      position: absolute;
      left: calc(100% + 10px);
      width: max-content;
      padding: 5px 30px;
      color: var(--main--icon-color);
      background: var(--call-icon-bg);
      border-radius: 100px;
      font-size: 14px;
      opacity: 0;
      transition: .4s;
      transform: translateX(-30px);
      pointer-events: none;
  }

  .bottom-call-tel.telegram-container span {
      position: absolute;
      left: calc(100% + 10px);
      width: max-content;
      padding: 5px 30px;
      background: var(--tele-icon-bg);
      box-shadow: var(--tele-icon-box-shadow);
      border-radius: 100px;
      font-size: 14px;
      opacity: 0;
      transition: .4s;
      transform: translateX(-30px);
      pointer-events: none;
  }


  .bottom-call-tel.email-container {
      z-index: 999;
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: var(--main-icon-font-size);
      color: var(--main--icon-color);
      background: var(--email-icon-bg);
      box-shadow: var(--call-icon-box-shadow);
      background-size: 40px;
      background-position: center;
      background-repeat: no-repeat;
      transition: 1s;
      opacity: 0;
      cursor: pointer;
  }

  .bottom-call-tel.email-container span {
      position: absolute;
      left: calc(100% + 10px);
      width: max-content;
      padding: 5px 30px;
      color: var(--main--icon-color);
      background: var(--email-icon-bg);
      border-radius: 100px;
      font-size: 14px;
      opacity: 0;
      transition: .4s;
      transform: translateX(-30px);
      pointer-events: none;
  }

  .bottom-call-tel.url-container {
      z-index: 999;
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: var(--main-icon-font-size);
      color: var(--main--icon-color);
      background: var(--url-icon-bg);
      box-shadow: var(--call-icon-box-shadow);
      background-size: 40px;
      background-position: center;
      background-repeat: no-repeat;
      transition: 1s;
      opacity: 0;
      cursor: pointer;
  }

  .bottom-call-tel.url-container span {
      position: absolute;
      left: calc(100% + 10px);
      width: max-content;
      padding: 5px 30px;
      color: var(--main--icon-color);
      background: var(--url-icon-bg);
      border-radius: 100px;
      font-size: 14px;
      opacity: 0;
      transition: .4s;
      transform: translateX(-30px);
      pointer-events: none;
  }


  .bottom-call-tel.call-container:hover span,
  .bottom-call-tel.telegram-container:hover span,
  .bottom-call-tel.email-container:hover span,
  .bottom-call-tel.url-container:hover span {
      opacity: 1;
      transform: translateX(0px);
  }

  .bottom-call-tel:hover::after,
  .bottom-call-tel:hover::before {
      transform: scale(0);
  }




  #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 .tele-h {
      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;
  }