.offer-chat {
  width: calc(100% - 50px);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/assets/img/index/colorful-background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.offer-chat__offer-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10px;
  height: 400px;
  width: 400px;
  background: #181818;
  border-radius: 62px 62px 0px 62px;
  flex-wrap: wrap;
}

.offer-chat__offer-box-items {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 24px;
  top: 24px;
  gap: 16px;
  padding: 0px;
}

.offer-chat__offer-box-item {
  display: flex;
  padding: 8px 15px 10px;
  border: 1px solid #FFFFFF;
  border-radius: 55px;
  list-style-type: none;
  font-size: 18px;
  gap: 10px;
}

.offer-chat__navbar {
  height: 106px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(100.89deg, rgba(255, 255, 255, 0.52) 27.27%, rgba(255, 255, 255, 0) 77.57%);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
}

.offer-chat__dots {
  display: flex;
  margin-left: 31px;
  gap: 10px;
}

.offer-chat__dot {
  height: 26px;
  width: 26px;
  display: inline-block;
  border-radius: 50%;
}

.offer-chat__orange-dot {
  background: #FF6436;
}

.offer-chat__white-dot {
  background: #ffffff;
}

.offer-chat__blue-dot {
  background: #7877F7;
}

.offer-chat__navbar-header {
  font-family: Monument, sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 100%;
  font-weight: normal;
}

.offer-chat__chat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 100px;
  padding-left: 100px;
}

.offer-chat__bot-msg-wrapper {
  display: flex;
  width: 650px;
  height: 136px;
  margin-top: 150px;
}

.offer-chat__bot-msg {
  display: inline-block;
  position: relative;
  font-family: Inter, sans-serif;
  bottom: 70px;
  left: 20px;
}

.offer-chat__bot-msg-box {
  width: 490px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 62px 62px 62px 0px;
  font-size: 28px;
}

.offer-chat__bot-msg-time {
  position: relative;
  top: 8px;
  color: #ffffff;
}

.offer-chat__offer-box-header {
  font-family: Monument, sans-serif;
  font-size: 24px;
  line-height: 130%;
  font-weight: 100;
}

.offer-chat__user-msg {
  display: inline-block;
  text-align: right;
  position: relative;
  bottom: 14px;
  right: 14px;
}

.offer-chat__user-msg-time {
  position: relative;
  top: 8px;
  color: #ffffff;
}

.offer-chat__user-msg-wrapper {
  margin-top: -50px;
  margin-bottom: -50px;
  display: flex;
  justify-content: flex-end;
}

.offer-chat__chat-message-content {
  text-align: center;
}

.offer-chat__offer-box-row {
  display: flex;
  gap: 10px;
}

.offer-chat__user-avatar {
  align-self: flex-end;
}

.offer-chat__bot-msg-fit {
  padding: 15px 0px;
  width: fit-content !important;
}

.offer-chat__offer-link {
  font-weight: bold;
  text-decoration: underline;
  color: #181818;
}

.offer-chat__bot-msg-dots {
  margin: 10px;
  padding: 0px 40px;
  gap: 15px;
  display: none;
}

.offer-item-active {
  background: #ffffff;
  color: #181818;
  cursor: pointer;
}

.offer-chat__offer-box-item {
  cursor: pointer;
}

.offer-chat__bot-msg-dots > .offer-chat__dot {
  width: 12px;
  height: 12px;
  animation: blinkDot 0.5s ease-in-out infinite;
}

.offer-chat__bot-msg-dots > .offer-chat__dot:nth-child(1) {
  animation-delay: 0.1s;
}

.offer-chat__bot-msg-dots > .offer-chat__dot:nth-child(2) {
  animation-delay: 0.2s;
}

.offer-chat__bot-msg-dots > .offer-chat__dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes blinkDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .offer-chat__bot-msg-wrapper {
    margin-top: 150px;
  }
  .offer-chat__user-msg-wrapper {
    margin-top: -50px;
    margin-bottom: -25px;
  }
}
@media (max-width: 768px) {
  .offer-chat__bot-msg-wrapper > img {
    height: 50px;
    width: 50px;
  }
  .offer-chat__bot-msg-wrapper {
    width: 100%;
  }
  .offer-chat__bot-msg-box {
    width: 100%;
    font-size: 24px;
    box-sizing: border-box;
  }
  .offer-chat__bot-msg-time {
    font-size: 14px;
  }
  .offer-chat__navbar-header {
    font-size: 16px;
  }
  .offer-chat__chat {
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
  }
  .offer-chat__user-avatar {
    height: 50px;
    width: 50px;
  }
  .offer-chat__bot-msg-wrapper > img {
    height: 50px;
    width: 50px;
  }
  .padding-custom {
    padding-left: 20px;
    padding-right: 20px;
  }
  .offer-chat__offer-box-item {
    font-size: 20px;
  }
  .offer-chat__offer-box {
    width: 100%;
  }
  .offer-chat__offer-box-header {
    font-size: 18px;
  }
  .offer-chat__user-msg {
    bottom: unset;
    right: 15px;
    width: 80%;
  }
  .offer-chat__user-msg-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
  .offer-chat {
    height: unset;
    min-height: fit-content;
  }
  .offer-chat__bot-msg {
    width: 80%;
  }
}
@media (max-width: 520px) {
  .offer-chat__bot-msg-wrapper {
    margin-top: 125px;
  }
  .offer-chat__bot-msg {
    left: 5px;
  }
  .offer-chat__offer-box-item {
    max-width: 80%;
    text-align: left;
    font-size: 14px;
  }
  .offer-chat__user-msg {
    right: 5px;
  }
  .offer-chat__user-msg-wrapper {
    gap: 0;
  }
  .offer-chat__bot-msg-box {
    width: 90%;
    font-size: 18px;
    text-align: center;
  }
  .offer-chat__offer-box {
    height: 360px;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .offer-chat__offer-box-row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
  }
  .offer-chat__offer-box-items {
    left: 5px;
  }
}
@media (max-width: 360px) {
  .offer-chat__offer-box-items {
    left: 0px;
  }
}

/*# sourceMappingURL=chat.css.map */
