.bot-container {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: none;
    z-index: 10000;
    width: 375px;
  }
  .bot-iframe {
    margin-bottom: -5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  }
  .bot-toggle {
    display:none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    position: fixed;
    bottom: 0px;
    width: 375px;
    right: 20px;
    height: 40px;
    background-color: #b70002;
    z-index: 10000;
    align-items: center;
    padding: 4px 8px;
    cursor: pointer;
  }
  .icon {
    width: 25px;
    height: 25px;
    display: inline-block;
  }
  .icon img {
    width: 100%;
  }
  .toggle-text {
    display: inline-block;
    line-height: 1;
    color: #fff;
    font-size: 16px;
    margin-left: 4px;
  }
  @media only screen and (max-width: 600px){
    .bot-toggle {
      display: none;
      position: fixed;
      bottom: 10px;
      width: 60px;
      right: 10px;
      height: 60px;
      border-radius: 30px;
      background-color: #b70002;
      z-index: 10000;
      justify-content: center;
    }
    .bot-container {
      position: fixed;
      bottom: 80px;
      width: 100%;
      padding: 0 10px;
      right: 0;
      left: 0;
      display: none;
      z-index: 10000;
    }
    .toggle-text {
      display: none;
    }
  }