/* src/styles.less */
body {
  background-color: #ccecf9;
}
.thread-input {
  background-color: white;
  font-family: Roboto;
  font-size: calc(1.2625rem + 0.15vw);
  padding: 20px 5px;
  margin: 15px 0;
  transition: font-size 0.5s;
  position: relative;
}
@media (min-width: 1200px) {
  .thread-input {
    font-size: 1.375rem;
  }
}
.thread-input .thread-image {
  width: 40px;
  height: 40px;
  position: absolute;
  left: -14px;
  top: -14px;
  background: #adbfd4;
  border-radius: 50px;
  overflow: hidden;
  padding: 1px;
  border: 3px solid white;
}
.thread-input strong {
  font-weight: 600;
}
.thread-input.old {
  font-size: 1.125rem;
}
.thread-input.me {
  border-radius: 15px 15px 2px 15px;
  background-color: #f1f9ff;
}
.thread-input.ai {
  border-radius: 2px 15px 15px 15px;
}
.thread-input.ai .thread-content {
  min-height: 40px;
}
.frontnote {
  background: linear-gradient(#17ce92, #16c189);
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
  min-height: 120px;
  font-family: "Poppins", sans-serif;
}
.custom-search {
  position: relative;
}
.custom-search-input {
  width: 100%;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 15px 100px 15px 20px;
  line-height: 1;
  box-sizing: border-box;
  outline: none;
}
.custom-search-button {
  position: absolute;
  right: 3px;
  top: 3px;
  bottom: 3px;
  border: 0;
  background: #d1095e;
  color: #fff;
  outline: none;
  margin: 5px;
  padding: 0 10px;
  border-radius: 100px;
  z-index: 2;
}
.custom-search-button:disabled {
  background: #eaa8c4;
}
.product-card {
  border-radius: 0;
  text-decoration: none;
}
.product-card .card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .card-text {
  font-size: medium;
}
.product-card .price-tag {
  position: absolute;
  top: 0;
  right: 5px;
}
.product-card .price-tag .badge {
  background-color: #75b798;
}
.chatarea {
  transition: height 1s;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding: 0 2px 0 2px;
}
.chatarea.bigmode {
  overflow-y: scroll;
  overflow-x: hidden;
}
.card-img-top {
  width: fit-content;
  max-height: 200px;
  align-self: center;
}
@media (min-width: 768px) {
  .chatarea {
    padding: 0 10px 0 65px;
  }
  .thread-input {
    padding: 20px;
  }
  .thread-input .thread-image {
    width: 70px;
    height: 70px;
    left: -59px;
    top: -10px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
