.tip-chatbot-wrapper {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 550px;
  height: 600px;
  max-height: calc(100vh - 100px);
  z-index: 9999999;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0.362176px 0.941657px -1px,
    rgba(0, 0, 0, 0.18) 0px 3px 7.8px -2px;
}
.tip-chatbot-wrapper:not(.show-tip-chatbot-wrapper) {
  display: none;
}
.tip-chatbot-wrapper .close-tip-chatbot-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: white;
  width: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.tip-chatbot-wrapper .close-tip-chatbot-btn:hover {
  background-color: #454545 !important;
}
@media (prefers-color-scheme: light) {
  .tip-chatbot-wrapper .close-tip-chatbot-btn {
    color: #000;
  }
  .tip-chatbot-wrapper .close-tip-chatbot-btn:hover {
    background-color: #d3d3d3 !important;
  }
}

.tip-chatbot-wrapper iframe {
  border: none;
  border-radius: 10px;
  display: block;
  height: 100%;
  width: 100%;
}

.show-tip-chatbot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background-color: #001363 !important;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0.362176px 0.941657px -1px,
    rgba(0, 0, 0, 0.18) 0px 3px 7.8px -2px;
  cursor: pointer;
  font-size: 30px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 9999999;
}
.show-tip-chatbot:hover {
  background-color: #001a75 !important;
}
.show-tip-chatbot.hide-tip-chatbot-btn {
  display: none;
}

.gsb-buttons {
  display: none !important;
}

@media (max-width: 565px) {
  .tip-chatbot-wrapper {
    right: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 600px;
    max-height: calc(100vh - 100px);
    max-height: calc(100dvh - 100px);
  }
}
