#chat-badge {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 999;
  cursor: pointer;
  border: 1px solid #eee;
  padding: 7px;
  border-radius: 50%;
  background: #fff;
}
#chat-badge svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}
#chat-guide-container .chat-popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: #000;
  opacity: 0.2;
}
#chat-guide-container .chat-popup {
  background-color: #fff;
  width: 85%;
  max-width: 640px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  padding: 20px;
  border-radius: 30px;
}
#chat-popup-close {
  position: absolute;
  right: 25px;
  top: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: #edecec;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
}
#chat-guide-container .title {
  padding: 20px 0;
  margin: 0;
  font-size: 16px;
  text-align: center;
  position: relative;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}
#chat-guide-container .sub-title {
  font-size: 12px;
  color: #999;
  text-align: left;
  padding: 8px 8px 0;
}
#chat-guide-container .guide-list {
  display: flex;
  flex-direction: column;
}
#chat-guide-container .guide-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  padding: 12px 14px;
  background-color: #f7f7f7;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
#chat-guide-container .guide-item img {
  width: 27px;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
}
@media (min-width:750px) {
  #chat-guide-container .chat-badge {
    width: 55px;
    height: 55px;
  }
}