.hello-component {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  text-align: center;
}

.hello-component h1 {
  color: #333;
  margin-bottom: 10px;
}

.hello-component p {
  color: #666;
  margin: 0;
}.chat-tab__item {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  padding: 16px 24px;
  position: relative;
  cursor: pointer;
  justify-content: center;
}
.chat-tab__item-icon {
  width: 16px;
  height: 16px;
  background-size: cover;
}
.chat-tab__item-icon--hover {
  opacity: 0;
  position: absolute;
  left: 24px;
  top: 20px;
  width: 16px;
  height: 16px;
  background-size: cover;
  transition: opacity 0.3s ease-in-out;
}
.chat-tab__item-text {
  margin-left: 4px;
  color: #181818;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.chat-tab__item::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #0052D9;
  transition: height 0.15s ease-in-out, width 0.15s ease-in-out 0.15s;
}
.chat-tab__item.is-active::after {
  width: 100%;
  height: 2px;
  transition: width 0.3s ease-in-out;
}
.chat-tab__item:hover .chat-tab__item-text, .chat-tab__item.is-active .chat-tab__item-text {
  font-weight: 500;
  color: #0052D9;
}
.chat-tab__item:hover .chat-tab__item-icon--hover, .chat-tab__item.is-active .chat-tab__item-icon--hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .chat-tab__item + .chat-tab__item {
    margin-left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .chat-tab__item {
    width: auto;
    display: inline-block;
    padding: 17px 13px;
  }
  .chat-tab__item-icon, .chat-tab__item-icon--hover {
    display: none;
  }
  .chat-tab__item-text {
    margin-left: 0px;
    font-size: 14px;
    line-height: 22px;
  }
}
.chat-tab__panel {
  transition: opacity 0.15s ease-in;
  height: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
}
.chat-tab__panel.is-active {
  width: 100%;
  height: auto;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease-out 0.15s;
}
@media screen and (min-width: 769px) {
  .chat-tab__bar-wrap {
    padding: 0 10px;
    position: relative;
  }
}
.chat-tab__bar {
  overflow-x: auto;
}
.chat-tab__bar-inner {
  display: inline-flex;
  justify-content: center;
  min-width: 100%;
  transition: transform 0.5s ease-out 0s;
}
.chat-tab__content {
  background: #F3F5F8;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  .chat-tab__bar-wrap {
    position: relative;
  }
  .chat-tab__bar--scroll {
    padding: 0 20px;
    overflow: hidden;
    overflow-x: scroll;
    height: 48px;
    text-align: center;
  }
  .chat-tab__bar--scroll::-webkit-scrollbar {
    display: none;
  }
  .chat-tab__bar--scroll .chat-tab__bar-inner {
    border: 0px;
    display: inline-block;
    width: auto;
    white-space: nowrap;
    height: 100%;
  }
  .chat-tab__content {
    padding: 0px;
  }
}.chat-tag {
  white-space: nowrap;
  padding: 7px 31px;
  border-radius: 29px;
  border: 1px solid #e9ecf1;
  background: #fff;
  font-size: 16px;
  line-height: 42px;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .chat-tag[href] {
    cursor: pointer;
    transition: all 0.3s linear;
  }
  .chat-tag[href]:hover {
    position: relative;
    z-index: 1;
    border-color: #59f;
    box-shadow: 0px 6px 16px -8px rgba(0, 82, 217, 0.05), 0px 12px 24px -4px rgba(82, 82, 255, 0.05);
  }
}
.chat-tag__wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.chat-tag__wrap.align-right {
  justify-content: flex-end;
}
@media screen and (min-width: 769px) {
  .chat-tag__wrap:first-child {
    padding-top: 52px;
  }
  .chat-tag__wrap:last-child {
    padding-bottom: 52px;
  }
}
.chat-tag__wrap + .chat-tag__wrap {
  margin-top: 24px;
}
.chat-tag__list {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .chat-tag {
    display: inline-block;
    background: none;
    border: 0px;
    padding: 0px;
    font-size: 12px;
    line-height: 20px;
  }
  .chat-tag + .chat-tag {
    margin-top: 12px;
  }
  .chat-tag__wrap {
    flex-direction: column;
    padding: 20px 16px;
  }
}