.chatbase-bubble-window {
  border: none;
  position: fixed;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px;
  bottom: 10rem;
  right: 1rem;
  width: 448px;
  height: 70vh;
  max-height: 824px;
  border-radius: 0.75rem;
  z-index: 999999999;
  overflow: hidden;
  left: unset;
}

.chatbase-bubble-button {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 25px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s ease-in-out 0s;
  left: unset;
  transform: scale(1);
}


@media (max-width: 640px) {
  .chatbase-bubble-window {
    border: none;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px;
    bottom: 8.5rem;
    right: 0;
    width: 100%;
    height: 75vh;
    max-height: 100%;
    border-radius: 0;
    z-index: 999999999;
    overflow: hidden;
    left: unset;
  }
}

@media (max-width: 480px) {
  .chatbase-bubble-button {
    height: 54px;
    width: 54px;
    border-radius: 54px;
    right: 14px;
    bottom: 75px;
  }
}