.chat-cta-wrap {
  position: fixed;
  right: 10px;
  bottom: 35px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: Arial, sans-serif;
}
.chat-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  background: rgba(0,128,96,1);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  max-width: 300px;
}
.chat-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
}
.chat-cta-btn:active {
  transform: translateY(0);
}
.chat-cta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 44px;
  background: rgba(255,255,255,.18);
}

.chat-cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chat-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.chat-cta-text strong {
  font-size: 15px;
  font-weight: 700;
}
.chat-cta-text small {
  font-size: 12px;
  opacity: .9;
  margin-top: 2px;
}
.chat-teaser {
  position: absolute;
  max-width: 300px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #1b1b1b;
  padding: 14px 36px 14px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  height: 0;
  width: 100%;
  bottom: calc(100% + 18px);
}
.chat-teaser.show {
  opacity: 1;
  height: auto;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-teaser-copy {
  display: block;
  font-size: 14px;
}

.chat-teaser-close {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 18px;
  line-height: 1;
  color: #777;
  cursor: pointer;
}

.chat-cta-pulse {
  animation: chatPulse 2.2s infinite;
}

@keyframes chatPulse {
  0% { box-shadow: 0 0 0 0 rgba(15,111,255,.35), 0 10px 30px rgba(0,0,0,.18); }
  70% { box-shadow: 0 0 0 14px rgba(15,111,255,0), 0 10px 30px rgba(0,0,0,.18); }
  100% { box-shadow: 0 0 0 0 rgba(15,111,255,0), 0 10px 30px rgba(0,0,0,.18); }
}

#chatBox{
  width:580px;
  max-width: 100%;
  padding:0;
  position: fixed;
  right: 0;
  height: 0;
  top: 100%;
  z-index: 110;
  display: none;
  opacity: 0;
}
#chatBox:before{
  content: "";
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
}
#chatBox.is-open{
  display: flex;
  animation: showChatBox 1s 1 forwards; ease-in-out;
}
.chatBoxWrapper{
  border-left:1px solid #ddd;
  padding:0;
  border-radius:12px 0 0 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgba(255,255,255,1);
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@keyframes showChatBox {
  0%{
    opacity: 0.1;
    top: 99%;
    height: 1%;
  }
  100% {
    opacity: 1;
    top: 0;
    height: 100%;

  }
}
.chatHeader{
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom:1px solid #ddd;
  line-height: 1;
}
.chatHeader-image{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.chatHeader-image img{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 9px;
  background-color: rgba(0,128,96,1);
}
.chatHeader-image span{
  font-family: 'title',helvetica,verdana,sans-serif;
  font-size: 0.95rem;
}
.chatHeader-close{
    border-radius: 50%;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: solid 1px transparent;
    transition: all 0.4s ease-in-out 0s;
    background-color: transparent; 
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 1.7rem;
}
.chatHeader-close:hover, .chatHeader-close:active{
    background-color: rgba(243, 245, 244, 1);
    border: 1px solid rgba(0, 0, 0, 1);
}
#chatLog{
  overflow:auto;
  padding:15px 23px;
  flex-grow: 1;
}
.you{
  margin:27px 0;
  font-weight:normal;
  margin-left: 70px;
  width: calc(100% - 70px);
  padding: 10px 15px;
  border-radius: 20px;
  background-color: rgba(0,128,96,0.13);
  border: solid 1px rgba(0,128,96,0.07);
}
.you:first-child{
  margin-top: 10px;
}
.bot{margin:10px 0}
.bot > div > ul{
  padding-left: 20px;
}
.bot > div > ul > li{
  margin: 20px 0;
}
.hint{color:#666;font-size:12px}

.bot.typing {
  opacity: 0.9;
}
.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}
.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  animation: htTypingBlink 1.4s infinite ease-in-out;
}
.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.tour-image,
.tour-gallery {
  margin: 10px 0 14px 0;
}
.tour-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}
.tour-gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
@keyframes htTypingBlink {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
.chatFormWrapper{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 15px 17px 20px 17px;
}
.chatFormWrapper form{
  width: 100%;
  border:1px solid #ddd;
  border-radius: 27px;
  background: #fff;
  color: #1b1b1b;
  padding: 7px 13px;
  box-shadow: 0 3px 10px 2px rgba(0,0,0,.1);
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#chatInput{
  flex-grow: 1;
  border: none;
  min-height: 33px;
  margin-right: 7px;
  max-height: 120px;
  resize: none;
  overflow-y: hidden;
  line-height: 1.4;
  font-family: inherit;
  transition: height 0.1s ease;
  scroll-behavior: smooth;
  padding-top: 6px;
  font-size: 0.9rem;
}
#chatInput.has-scroll {
  overflow-y: auto;
}
#chatInput:active, #chatInput:focus{
  border: none;
  outline: none;
}
#chatInput:disabled{
  border-radius: 23px;
}
#chatSubmit{
  border-radius: 50%;
  background-color: rgba(250,192,10,1);
  color: rgba(33,33,33,1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  line-height: 1;
  border: none;
  cursor: pointer;
  margin-right: 5px;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}
#chatSubmit:hover{
  opacity: 0.8;  
}
#chatSubmit:before{
  font-family: 'icons';
  content: "\f062";
  line-height: 1;
  font-size: 1.3em;
}
#chatSubmit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#chatSubmit:disabled:before{
  content: "\f141";
  color: rgba(83,83,83,1);
}
.chatFormWrapper .bhd-show-cart{
  background-color: transparent;
  height: 35px;
  padding: 0;
}
.chatFormWrapper .bhd-show-cart:before{
  font-size: 2.5em;
}

.bot .human-handoff-contacts {
  margin-top: 10px;
}
.bot .human-handoff-contacts ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.bot .human-handoff-contacts li {
  margin: 6px 0;
}
.bot .human-handoff-contacts a,
.checkout-link {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
}
.bot .human-handoff-contacts a:hover,
.checkout-link:hover {
  text-decoration: underline;
}
.checkout-link-wrap {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .chat-cta-wrap {
    right: 10px;
    bottom: 20px;
  }
  .chat-cta-btn {
    padding: 7px 14px 7px 7px;
  }

  .chat-cta-text strong {
    font-size: 14px;
  }

  .chat-cta-text small {
    font-size: 11px;
  }
  .chat-teaser {
    font-size: 13px;
  }

.chatBoxWrapper{
  border:1px solid #ddd;
  border-radius:0;
}
#chatLog{
  padding:15px 17px;
}
.chatFormWrapper{
  padding: 15px 13px;
}
.you{
  margin:17px 0;
  margin-left: 50px;
  width: calc(100% - 50px);
  padding: 8px 13px;
}
}