.floating-container .floating-button-card {
  background-color: #46c655;
  border: 1px #3ab348 solid;
  padding: 0px;
  border-radius: 10px;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

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

.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;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.whatsapp-buttons.show {
  max-height: 500px;
  opacity: 1;
}

/* contact us container */
#btn-box {
  padding: 6px 6px;
  background-color: rgb(21 170 0);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 23px;
}

#button-body {
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  gap: 20px;
  border-radius: 0 0 10px 10px;
  background-color: #f6f6f8;

}

#heading-body {
  padding: 1px 20px;
  background: linear-gradient(135deg, #3cbaff, #6f5df8);
  border-radius: 10px 10px 0px 0px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-heading {
  margin-top: 13px;
  margin-bottom: 0px;
  font-size: 21px;
}

.sub-heading {
  margin-top: 0;
  font-size: 14px;
}

#buttonBox-container {
  display: none;
  background-color: white;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 1)
}

#close-button-popup {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 17px;
  cursor: pointer;
}

.card-input-box {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  background-color: white;
  color: black;
  border-radius: 5px;
  text-align: center;
  font-size: 1em;
  border: 2px solid #c8c8ce;
}

.card-input-box {
  width: 80%;
}

/* request form controller  */
.form-control {
  width: 90%;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 0.375rem;
  color: #212529;
  background-clip: padding-box;
  background-color: #fff;
  box-sizing: border-box;
}

.request-call-back-modal {
  padding: 20px;
}

.send-now-button {
  display: inline-block;
  padding: 8px;
  font-weight: 700;
  background-color: black;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
}

.heading-container {
  text-align: left;
  color: white;
}

.close-button-box {
  padding: 12px;
  color: white;
}

.contact-us-mobile {
  font-size: 17px
}

.floating-adjacent-buttons {
  position: fixed;
  bottom: 37px;
  right: 140px;
  z-index: 80;
}

@media (max-width: 1024px) {

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

  .floating-container {
    bottom: 70px;
  }

  #btn-box {
    padding: 7px 8px;
  }

  .floating-adjacent-buttons {
    bottom: 70px;
    right: 52px;
  }

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

  #contact-recaptchaID {
    transform: scale(0.85);
    height: 65px;
  }

  .request-call-back-modal {
    padding: 10px;
  }
}

@media (max-height: 667px) {
  .request-call-back-modal {
    height: 50vh;
  }

  .card-box-label {
    display: none;
  }

  .form-group {
    gap: 12px;
  }
}

@media (max-width : 400px) {
  .floating-container {
    right: 8px;
    bottom: 70px;
  }

  .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;
    transition: left 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  .whatsapp-buttons-mobile.show {
    left: -160%;
    opacity: 1;
    visibility: visible;
  }

  .hover-wrapper:hover .bot-popup {
    display: none;
  }
}

/* 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;
}

@media (min-width: 1024px) {

  /* 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;
}

/* card buttons */
.cta {
  display: flex;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 14px;
  color: #fcfcfc;
  background: #2768b3;
  transition: 1s;
  box-shadow: 6px 6px 0 rgb(69, 70, 71);
  transform: skewX(-15deg);
  border: none;
  align-items: center;
  border-radius: 10px;
}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #869da6;
}

.cta .second {
  transition: 0.5s;
  margin-right: 0px;
}

.span {
  transform: skewX(15deg);
}

.second {
  width: 36px;
  margin-left: auto;
  position: relative;
  top: 12%;
}

.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover .three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #2768b3;
  }

  100% {
    fill: white;
  }
}

@media(max-width:1032px) {
  .ask-fitboat-btn {
    margin-bottom: 50px;
    margin-left: 82%;
  }
}