@charset "utf-8";
/* Webkit, Blink, Edge, Android */
::-webkit-textarea-placeholder::-webkit-input-placeholder {
  color: gray;
  font-size: 14px;
}
/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
  color: gray;
  font-size: 14px;
  opacity: 1;
}
/* Mozilla Firefox 19+ */
::-moz-placeholder {
  color: gray;
  font-size: 14px;
  opacity: 1;
}
/* Internet Explorer 10-11 */
:-ms-input-placeholder {
  color: gray;
  font-size: 14px;
}
/* scroll bar start */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
  opacity: 0.8;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
  background-color: #F7F7FA;
  opacity: 0.8;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #BDC5D3;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #BDC5D3;
}
::-webkit-scrollbar-button {
  height: 0px;
}
.claw-chat-box {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.claw-chat-box .header-box {
  flex-shrink: 0;
  background-color: #F6F8FD;
  border-bottom: 1px solid #e4e8ea;
}
.claw-chat-box .footer-box {
  flex-shrink: 0;
  background-color: #FEFEFF;
  border-top: 1px solid #F3FBFF;
  color: #000;
}
.claw-chat-box #chatContainer {
  flex: 1 0;
  overflow-y: auto;
  background: #F8FAFF;
}
#pricing {
  padding-bottom: 0 !important;
}
#claw-chat-container {
  grid-column: 1 / 6;
  grid-row: 2 / 3;
}
#package-tips {
  grid-column: 1 / 6;
  grid-row: 3 / 4;
}
#package-tips .package-tips-section {
  padding: 20px 0 60px;
  margin-top: -50px;
  background: linear-gradient(90deg, #E9F1FF, #F5F8FF);
}
.chat-section {
  background-position: center center;
  background-size: 1920px 100%;
  background-repeat: no-repeat;
  background: linear-gradient(90deg, #E9F1FF, #F5F8FF);
}
.chat-grid-tab {
  overflow-y: hidden;
}
.chat-grid-cont {
  height: 50px;
  overflow-x: auto;
  overflow-y: hidden;
}
.chat-grid-cont .list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
  white-space: nowrap;
}
.chat-grid-cont .list .chat-tab-col {
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  font-weight: 400;
  color: #000;
  position: relative;
  opacity: 0.4;
  cursor: pointer;
}
.chat-grid-cont .list .chat-tab-col.selected {
  opacity: 1;
  color: #ff4444;
}
.chat-grid-cont .list .chat-tab-col.selected::after {
  background-color: #ff4444;
}
.chat-grid-cont .list .chat-tab-col::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}
.scroll-smooth {
  height: 100vh;
  word-break: break-all;
}
.scroll-smooth .header-box {
  padding: 12px 24px;
  display: flex;
  align-items: center;
}
.scroll-smooth .header-box .claw-chat-logo {
  flex-shrink: 0;
  width: 92px;
  overflow: hidden;
}
.scroll-smooth .header-box .claw-chat-logo img {
  display: block;
  height: 24px;
  width: 146px;
  max-width: inherit;
}
.scroll-smooth .header-box .claw-chat-title {
  flex: 1 0;
  padding-right: 146px;
  text-align: center;
}
.scroll-smooth .avatar-logo {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  background-image: url(../images/chat-logo.png);
}
.scroll-smooth .avatar-user {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  background-image: url(../images/chat-user.png);
}
.scroll-smooth .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.scroll-smooth .chat-bubble-me,
.scroll-smooth .chat-bubble-ai {
  border-radius: 6px;
  position: relative;
}
.scroll-smooth .chat-bubble-ai::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 12px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  display: none;
}
.scroll-smooth .chat-bubble-ai:first-child::before {
  display: block;
}
.scroll-smooth .chat-bubble-me::before {
  content: '';
  position: absolute;
  right: -4px;
  top: 12px;
  width: 12px;
  height: 12px;
  background: #9EEA6A;
  transform: rotate(45deg);
  display: none;
}
.scroll-smooth .chat-bubble-me:first-child::before {
  display: block;
}
.scroll-smooth .bg-white {
  background-color: #ffffff;
}
.scroll-smooth .border-gray-200 {
  border-color: #e5e7eb;
}
.scroll-smooth .outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.scroll-smooth .bg-gray-100 {
  background-color: #f3f4f6;
}
.scroll-smooth .text-gray-500 {
  color: #6b7280;
}
@media (min-width: 1441px) {
  #package-tips,
  #claw-chat-container {
    margin: 0 calc((1440px - 100vw) / 2);
  }
}
@media (max-width: 768px) {
  .scroll-smooth .text-textMain {
    font-size: 12px !important;
  }
  .scroll-smooth .header-box .claw-chat-logo {
    width: 80px;
    overflow: hidden;
  }
  .scroll-smooth .header-box .claw-chat-logo img {
    display: block;
    height: 24px;
    width: auto;
    max-width: inherit;
  }
  .scroll-smooth .header-box .claw-chat-title {
    font-size: 14px;
    padding-right: 0;
    text-align: left;
  }
  .chat-grid-tab {
    padding-top: 10px !important;
    padding-bottom: 0 !important;
    height: 50px;
    overflow-y: hidden;
  }
  .chat-grid-cont .list .chat-tab-col {
    font-size: 12px;
  }
  #package-tips {
    order: 9;
    padding-bottom: 20px !important;
  }
  #package-tips .package-tips-section {
    margin-top: 0;
    background: transparent;
  }
  #pricing {
    padding-bottom: 0 !important;
  }
  .chat-section {
    background-size: 100% 100%;
  }
  #claw-chat-container {
    order: 2;
    margin: 0 -20px !important;
    width: auto;
  }
}
