/** Shopify CDN: Minification failed

Line 44:18 Expected ":"

**/
#contact-widget {
  z-index: 3;
}
.contact-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
}

.chat-fade-enter-active,
.chat-fade-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-fade-enter,
.chat-fade-leave-to {
  opacity: 0;
  transform: scale(0.95);
}
.chat-fade-enter-to,
.chat-fade-leave {
  opacity: 1;
  transform: scale(1);
}

.contact-links__button-root {
  background-color: var(--contact-widget-background, #ff5f8f);

  border-radius: 30px;
  border: none;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  background-color 0.3s, width 0.5s ease;
  font-family: 'Proxima Nova', Montserrat, sans-serif !important;
}
.contact-links__button-root.open {
  background-color: var(--contact-widget-close-background, #ff5f8f);
}

.contact-open {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 20px;
  white-space: nowrap;
}
.contact-close {
  font-size: 30px;
}

.contact-links__items {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-links__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-links__button--small {
  border-radius: 10px;
  border: none;
  height: 50px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-links__button--small img,
.contact-links__button-root .contact-open img {
  max-width: 28px;
  max-height: 28px;
}

.contact-links__button-root > .launcher-content-container > img {
  max-width: 75px;
  max-height: 75px;
}

.contact-links__button-root .contact-close {
  text-align: center;
  justify-content: center;
  transition: width 0.3s ease;
}

.contact-links__caption {
  display: none;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 5px 10px;
  border-radius: 3px;
  position: absolute;
  right: 64px;
  white-space: nowrap;
  margin-bottom: 5px;
}

.contact-links__button--small:hover .contact-links__caption {
  display: block;
}

.contact-links__item {
  opacity: 1;
}

.contact-links.active .contact-links__items .contact-links__item {
  opacity: 0;
  transform: translateY(20px);
  animation: slide-up 0.3s ease-in-out forwards;
}

.contact-links.active .contact-links__items .contact-links__item:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-links.active .contact-links__items .contact-links__item:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-links.active .contact-links__items .contact-links__item:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-links.active .contact-links__items .contact-links__item:nth-child(4) {
  animation-delay: 0.4s;
}
.contact-links.active .contact-links__items .contact-links__item:nth-child(5) {
  animation-delay: 0.5s;
}
.contact-links.active .contact-links__items .contact-links__item:nth-child(6) {
  animation-delay: 0.6s;
}
.contact-links.active .contact-links__items .contact-links__item:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-enter-active, .fade-leave-active {
  transition: all 0.3s ease;
  opacity: 1;
  width: 100%;
}

.fade-leave-active {
  opacity: 0;
  width: 0;
  padding: 0;
}

#chat-button {
  display: none !important;
}
#chat-window {
  right: 80px !important;
}

@media screen and (max-width: 767px) {
  .contact-widget {
    right: 12px;
  }
}

/* CHAT PANEL */
.contact-chat-panel {
  width: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 80px;
  right: 0;
  overflow: hidden;
  font-family: 'Proxima Nova', sans-serif;
  z-index: 100022;
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #eee;
}
.chat-header-text {
  margin-left: 10px;
  flex-grow: 1;
}
.chat-agent-name {
  font-weight: bold;
  font-size: 14px;
}
.chat-agent-status {
  font-size: 12px;
  color: #28c76f;
}
.chat-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.chat-avatar-wrapper {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.chat-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #28c76f;
  border: 2px solid white;
  border-radius: 50%;
}

.chat-contact-icons img {
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.chat-contact-icons button:hover img {
  transform: scale(1.15) rotate(1deg);
  opacity: 0.85;
}

/* Messages */
.chat-timestamp {
  text-align: center;
  font-size: 12px;
  color: #999;
}
.chat-messages {
  padding: 12px 12px 24px;
  max-height: 160px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.chat-message.agent {
  align-self: flex-start;
  background: #f5f5f5;
  padding: 10px 14px;
  border-radius: 20px;
  max-width: 80%;
}
.chat-message.user {
  align-self: flex-end;
  background: #e0f7fa;
  padding: 10px 14px;
  border-radius: 20px;
  max-width: 80%;
}
.typing-bubble {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  width: auto;
}

.chat-message.agent-typing {
  align-self: flex-start;
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background-color: #999;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 20% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

/* Bottom Contact Buttons */
.chat-contact-icons {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  gap: 8px;
}
.contact-links__button--small {
  position: relative;
}

.contact-links__button--small::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
  max-width: 160px;
}

.contact-links__button--small:hover::after {
  opacity: 1;
}

.contact-links__item:last-child .contact-links__button--small::after {
  left: auto;
  right: 0;
  transform: translateX(0%);
}
.contact-links__item:first-child .contact-links__button--small::after {
  left: 0;
  right: auto;
  transform: translateX(0%);
}