.deva-open-btn {
  position: absolute;
  right: 40px;
  top: 68px;
  z-index: 19;
}

#ai-robot {
  position: relative;
  /* bottom: 15%;
     right: 50px;*/
  width: 71px;
  height: auto;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.1s ease;
  display: grid;
  gap: 10px;
  transition: 0.3s;
}

#ai-robot {
  transition: 0.3s;
  filter: drop-shadow(0 4px 20px #454545);
}

.deva-text {
  overflow: hidden;
  color: #1E1E1E;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 11.84px;
  /* 98.665% */
  text-align: center;
}

.ai-glass {
  position: absolute;
  right: 10px;
  top: 1px;
}

@media (max-width: 991px) {
  #ai-robot {
    right: 15px;
  }
}
#ai-robot:hover {
  filter: drop-shadow(0 4px 20px #8CD0DF);
}

#ai-robot:hover .eye-item {
  display: none;
}

#ai-robot:hover .eyebrow-item {
  translate: 0 3px;
}

#ai-agent-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 10000;
  transition: background 0.3s ease;
  overflow: hidden;
}

#ai-agent-popup.active {
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

#ai-agent-popup-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 550px;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

#ai-agent-popup.active #ai-agent-popup-content {
  transform: translateX(0);
}

@media (max-width: 768px) {
  #ai-agent-popup-content {
    width: 100%;
  }
}
#agent-chat-container {
  font-family: Arial, sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  color: #1a1a1a;
  padding: 32px 40px;
}
@media (max-width: 991px) {
  #agent-chat-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#agent-chat-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#agent-chat-container #chat-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  #agent-chat-container #chat-title {
    padding-left: 0px;
    padding-right: 0;
  }
}
#agent-chat-container #chat-title h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: normal;
  margin: 0;
  background: linear-gradient(90deg, #A6192E 0%, #3638DC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#agent-chat-container .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: opacity 0.2s;
}
#agent-chat-container .close-btn:hover {
  opacity: 0.6;
}
#agent-chat-container #product-header {
  background: white;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 35px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  #agent-chat-container #product-header {
    padding-left: 0px;
    padding-right: 0;
  }
}
#agent-chat-container #product-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
#agent-chat-container #product-info {
  flex: 1;
  min-width: 0;
}
#agent-chat-container #product-info h3 {
  overflow: hidden;
  color: #3D3D3D;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
#agent-chat-container #product-info .article {
  font-size: 12px;
  color: #1a1a1a;
  font-weight: normal;
  margin-bottom: 6px;
}
#agent-chat-container #product-info .price {
  overflow: hidden;
  color: #1E1E1E;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}
#agent-chat-container #product-info .price .old-price {
  overflow: hidden;
  color: #979797;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
#agent-chat-container #product-info .price .old-price .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#agent-chat-container #product-info .price .old-price .line svg {
  display: block;
  width: 100%;
  height: auto;
}
#agent-chat-container #product-info .price .cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: 0px;
  overflow: visible;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  gap: 13px;
  color: #A6192E;
  transition: all 0.2s;
}
#agent-chat-container #product-info .price .cart-icon span {
  transition: all 0.2s;
}
#agent-chat-container #product-info .price .cart-icon svg {
  width: 117px;
  height: auto;
  transition: all 0.2s;
}
#agent-chat-container #product-info .price .cart-icon svg path {
  transition: stroke 0.2s;
}
#agent-chat-container #product-info .price .cart-icon:hover span {
  background: linear-gradient(90deg, #A6192E 0%, #3638DC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#agent-chat-container #product-info .price .cart-icon:hover svg path[fill] {
  fill: url(#cart-gradient);
}
#agent-chat-container #product-info .price .cart-icon:hover svg path[stroke] {
  stroke: url(#cart-gradient);
}
#agent-chat-container .messages-wrapper {
  padding: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 991px) {
  #agent-chat-container .messages-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#agent-chat-container #messages {
  background: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overscroll-behavior: none;
  padding-right: 20px;
  /* &::-webkit-scrollbar {
      width: 2px;
  }

  &::-webkit-scrollbar-track {
      background: #D9D9D9;
  }

  &::-webkit-scrollbar-thumb {
      background: #1E1E1E;
      border-radius: 1px;
  }*/
  /* @supports (scrollbar-color: auto) { 
      scrollbar-width: thin;
      scrollbar-color: #1E1E1E #D9D9D9;
  }*/
}
#agent-chat-container .message-wrapper {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  flex-direction: column;
  animation: fadeIn 0.2s ease-in;
}
#agent-chat-container .message-wrapper.user {
  flex-direction: row-reverse;
}
#agent-chat-container .message-wrapper.user .message {
  background: #0D1937;
  color: white;
  border-radius: 20px 20px 0px 20px;
}
#agent-chat-container .message-wrapper.user .message strong {
  color: #fff;
}
#agent-chat-container .message-wrapper.ai .message {
  background: #F3F3F3;
  color: #1a1a1a;
  border-radius: 0px 20px 20px 20px;
}
#agent-chat-container .message-content.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#agent-chat-container .toggle-message-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 8px;
  overflow: hidden;
  color: #A6192E;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: block;
  width: 100%;
  text-align: right;
  width: fit-content;
  margin-left: auto;
}
#agent-chat-container .toggle-message-btn:hover {
  background: linear-gradient(90deg, #A6192E 0%, #3638DC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#agent-chat-container .agent-header {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
#agent-chat-container .message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #1a2332;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#agent-chat-container .message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#agent-chat-container .agent-name {
  overflow: hidden;
  color: #1E1E1E;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
#agent-chat-container .message {
  padding: 16px 24px;
  max-width: 90%;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.5;
}
#agent-chat-container .message pre {
  overflow: auto;
  width: 100%;
  font-size: 12px;
  background: #f5f5f5;
  padding: 8px;
  border-radius: 4px;
  margin: 8px 0;
}
#agent-chat-container .message p {
  margin: 8px 0;
}
#agent-chat-container .message p:first-child {
  margin-top: 0;
}
#agent-chat-container .message p:last-child {
  margin-bottom: 0;
}
#agent-chat-container .message ul,
#agent-chat-container .message ol {
  margin: 8px 0;
  padding-left: 20px;
}
#agent-chat-container .message li {
  margin: 4px 0;
}
#agent-chat-container .message strong {
  color: #a6192e;
  font-weight: bold;
}
@media (max-width: 768px) {
  #agent-chat-container .message {
    max-width: 85%;
  }
}
#agent-chat-container .typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}
#agent-chat-container .typing-indicator span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
#agent-chat-container .typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
#agent-chat-container .typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}
#agent-chat-container #questions {
  padding: 16px 20px;
  padding-left: 0px;
  padding-right: 0px;
  background: white;
  display: none;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  #agent-chat-container #questions {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#agent-chat-container .question-groups-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
#agent-chat-container .questions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#agent-chat-container .question-group-btn {
  padding: 8px 16px;
  background: #D8D8D8;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  overflow: hidden;
  color: #1E1E1E;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  transition: all 0.2s ease;
  text-align: left;
  width: fit-content;
  line-height: 1.4;
}
#agent-chat-container .question-group-btn:hover {
  background: #d5d5d5;
}
#agent-chat-container .question-group-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
#agent-chat-container .question-group-btn.jivo-chat-btn {
  background: white;
  border: 1px solid #A5A5A5;
  color: #1E1E1E;
}
#agent-chat-container .question-group-btn.jivo-chat-btn:hover {
  background: #f5f5f5;
}
#agent-chat-container .question-btn {
  padding: 12px 16px;
  background: #e8e8e8;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #1a1a1a;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
  line-height: 1.4;
}
#agent-chat-container .question-btn:hover {
  background: #d5d5d5;
}
#agent-chat-container .question-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
#agent-chat-container .question-btn.back-btn {
  background: white;
  overflow: hidden;
  color: #1E1E1E;
  text-overflow: ellipsis;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-radius: 20px;
  border: 1px solid #A5A5A5;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  width: fit-content;
}
#agent-chat-container .question-btn.back-btn:hover {
  background: #f5f5f5;
}
#agent-chat-container .question-btn.back-btn svg {
  flex-shrink: 0;
}
#agent-chat-container .questions-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  gap: 16px;
}
#agent-chat-container .questions-nav button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
#agent-chat-container .questions-nav button:hover:not(:disabled) {
  opacity: 0.6;
}
#agent-chat-container .questions-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
#agent-chat-container .questions-nav button svg {
  display: block;
}
#agent-chat-container .questions-counter {
  font-size: 13px;
  color: #666;
}
#agent-chat-container .questions-buttons {
  display: flex;
  gap: 8px;
}
#agent-chat-container #form {
  display: flex;
  padding: 16px 20px;
  background: white;
  border-top: 1px solid #e5e5e5;
  gap: 12px;
  flex-shrink: 0;
  display: none !important;
}
#agent-chat-container #input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  background: white;
  color: #1a1a1a;
}
#agent-chat-container #input::placeholder {
  color: #999;
}
#agent-chat-container #input:focus {
  outline: none;
  border-color: #1a2332;
}
#agent-chat-container #input:disabled {
  opacity: 0.5;
  pointer-events: none;
}
#agent-chat-container #send {
  padding: 12px 24px;
  background: #1a2332;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
}
#agent-chat-container #send:hover {
  background: #0f1820;
}
#agent-chat-container #send:active {
  transform: translateY(1px);
}
#agent-chat-container #send:disabled {
  opacity: 0.5;
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typing {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}
.custom-scroll-container {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.custom-scroll-container .content {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.custom-scroll-container .content::-webkit-scrollbar {
  display: none;
}
.custom-scroll-container .custom-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #D9D9D9;
  pointer-events: none;
}
.custom-scroll-container .custom-scrollbar .thumb {
  width: 100%;
  background: #1E1E1E;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s;
  pointer-events: all;
}
.custom-scroll-container .custom-scrollbar .thumb:hover {
  background: #000;
}

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