<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.floating-container .floating-button {
  background-color: #46c655;
  border: 1px #3ab348 solid;
  padding: 10px;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.floating-container {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 80;
  display: block;
}

.floating-container-mobile {
  display: none;
}

.default-image {
  height: 30px;
  width: auto;
  transition: opacity 0.3s ease-in-out;
}

.hover-image {
  width: auto;
  display: none;
  transition: opacity 0.3s ease-in-out;
  padding: 3px 5px;
}

.whatsapp-buttons {
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
  gap:5px;
}

@media (max-width: 1024px) {
  .floating-container-mobile .floating-button-mobile {
    background-color: #46c655;
    border: 1px #3ab348 solid;
    padding: 10px;
    border-radius: 50%;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .floating-container-mobile {
    position: fixed;
    z-index: 80;
    bottom: 50% !important;
    width: 70px;
    background: #46c656;
    border-radius: 24px 0px 0px 24px;
    right: 0px;
    display: block;
  }

  .floating-container {
    display: none;
  }

  .default-image-mobile {
    height: 30px;
    width: auto;
    transition: opacity 0.3s ease-in-out;
  }

  .hover-image-mobile {
    width: auto;
    display: none;
    transition: opacity 0.3s ease-in-out;
    padding: 3px 5px;
  }

  .whatsapp-buttons-mobile {
    display: flex;
    flex-direction: row-reverse;
    padding-bottom: 5px;
    gap: 5px;
    z-index: 79;
    position: absolute;
    left: 0%;
  }
}

.floating-adjacent-buttons {
  position: fixed;
  bottom: 40px;
  right: 100px;
  z-index: 83;
}

/* Ask Button */
.ask-fitbot-btn {
  background-color: rgb(255, 120, 0);
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Wrapper to allow hover */
.hover-wrapper {
  position: relative;
  display: inline-block;
}

/* Popup */
.bot-popup {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  text-align: center;
  display: none;
  width: 140px;
  z-index: 10000;
}

/* Show on hover */
.hover-wrapper:hover .bot-popup {
  display: block;
}

.bot-img {
  width: 40px;
  height: 40px;
}
.bot-text-bubble {
  background: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 18px;
  border: 3px solid navy;
  font-size: 16px;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  max-width: 160px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  font-style: italic;
  font-weight: bolder;
  left: -10px;
}

.bot-text-bubble::before {
  content: "";
  position: absolute;
  bottom: -13px; 
  left: 70%;
  transform: translateX(-50%);
  border-width: 13px 13px 0 13px;
  border-style: solid;
  border-color: navy transparent transparent transparent;
  z-index: 0;
}

.bot-text-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 70%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
}

.bot-img {
  width: 100px;
  height: 100px;
}

@media(max-width:1032px){
.ask-fitboat-btn {
  margin-bottom: 50px;
  margin-left:82%;
}
}
</pre></body></html>