.contactUsFloating_ {
  position: fixed;
  inset: 0;
  z-index: 350;
  pointer-events: none;
  font-family: inherit;
}

.contactUsFloating_ button {
  font: inherit;
  cursor: pointer;
}

.contactUsFloating_ .trigger_ {
  position: absolute;
  z-index: 2;
  right: max(min(24px, 1vw), env(safe-area-inset-right));
  bottom: max(min(24px, 5vw), env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px!important;
  height: 90px!important;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  pointer-events: auto;
}

.contactUsFloating_ .triggerArt_ {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  animation: contactBubbleFloat 4.5s ease-in-out infinite;
}

.contactUsFloating_ .bubbleImage_ {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 12px rgba(28, 61, 139, .25));
}

.contactUsFloating_ .letterheartSvg_ {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 40px;
  height: 40px;
  overflow: visible;
}

.contactUsFloating_ .closedArt_ {
  animation: letterheartClosedIn .35s ease-out both;
}

.contactUsFloating_ .closedArt_ #eUfTnC2OreW14 {
  transform-box: fill-box;
  transform-origin: center;
  animation: letterheartPulse 2.4s ease-in-out infinite;
}

.contactUsFloating_ .openArt_ {
  animation: letterheartOpenIn .4s ease-out both;
}

.contactUsFloating_ .openArt_ #elOmj7b9qRy14 {
  transform-box: fill-box;
  transform-origin: center;
  animation: letterheartPulse 2.4s ease-in-out .6s infinite;
}

.enquiry-icon_ {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;

  img {width:100%; height:100%; object-fit:contain;}
}

@keyframes contactBubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes letterheartClosedIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.75); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes letterheartOpenIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.75) rotate(-15deg); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
}

@keyframes letterheartPulse {
  0%, 42%, 58%, 100% { transform: scale(1); }
  8%, 67% { transform: scale(.85); }
  17%, 75% { transform: scale(1.31); }
  25%, 83% { transform: scale(1); }
  33%, 92% { transform: scale(1.26); }
}

@media (prefers-reduced-motion: reduce) {
  .contactUsFloating_ .triggerArt_ { animation: none; }
  .contactUsFloating_ .letterheartSvg_,
  .contactUsFloating_ .closedArt_ #eUfTnC2OreW14,
  .contactUsFloating_ .openArt_ #elOmj7b9qRy14 { animation: none; }
  .contactUsFloating_ .letterheartSvg_ { transform: translate(-50%, -50%); }
}

.contactUsFloating_ .panel_ {
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  right: max(min(24px, 1vw), env(safe-area-inset-right));
  bottom: calc(max(min(24px, 5vw), env(safe-area-inset-bottom)) + 102px);
  width: min(320px, calc(100% - max(min(24px, 1vw), env(safe-area-inset-right)) - max(12px, env(safe-area-inset-left))));
  max-height: calc(100% - max(min(24px, 5vw), env(safe-area-inset-bottom)) - 102px - max(12px, env(safe-area-inset-top)));
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #243247;
  box-shadow: 0 16px 36px rgba(16, 34, 74, .24);
  pointer-events: auto;
}

.contactUsFloating_ .panel_.hasForm_ {
  width: min(450px, calc(100% - max(min(24px, 1vw), env(safe-area-inset-right)) - max(12px, env(safe-area-inset-left))));
}

.contactUsFloating_ .header_ {
  display: flex;
  flex: none;
  align-items: center;
  min-height: 52px;
  padding: 0 10px 0 20px;
  background: #73cfee;
  color: #fff;
}

.contactUsFloating_ .header_ h2 {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.contactUsFloating_ .iconButton_ {
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #fff;
}

.contactUsFloating_ .header_ .iconButton_ svg {
  color: #fff !important;
  fill: #fff !important;
}

.contactUsFloating_ .iconButton_:hover,
.contactUsFloating_ .iconButton_:focus-visible {
  background: rgba(255, 255, 255, .18);
}

.contactUsFloating_ .back_ {
  margin-left: -8px;
  margin-right: 6px;
}

.contactUsFloating_ .choices_ {
  box-sizing: border-box;
  flex-shrink: 1;
  min-height: 0;
  padding: 1.5em;
  background: #fff;
  max-height: calc(100vh - max(min(24px, 5vw), env(safe-area-inset-bottom)) - 154px - max(12px, env(safe-area-inset-top)));
  max-height: calc(100dvh - max(min(24px, 5vw), env(safe-area-inset-bottom)) - 154px - max(12px, env(safe-area-inset-top)));
  overflow-y: auto;
}

.contactUsFloating_ .choices_ h3 {
  margin: 0;
  color: #263447;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.contactUsFloating_ .choices_ p {
  margin: 4px 0 16px;
  color: #6a7584;
  font-size: 12px;
  line-height: 1.35;
}

.contactUsFloating_ .options_ {
  display: flex;
  flex-direction:column;
  justify-content: center;
  /* grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 58px; */
  gap: 10px;
}

.contactUsFloating_ .options_ button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 6px 15px;
  border: 1px solid #73cfee;
  border-radius: 3px;
  background: #fff;
  color: #222;
  box-shadow: 0 1px 2px rgba(23, 35, 54, .1);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
  position:relative;
}

.contactUsFloating_ .options_ button::after {
  content:"";
  position:absolute;
  top:50%;
  right:10px;
  width:15px;
  height:15px;
  background: var(--contact-next-icon) center / contain no-repeat;
  background-size:contain;
  transform:translateY(-50%);
}

.contactUsFloating_ .options_ button:hover,
.contactUsFloating_ .options_ button:focus-visible {
  border-color: #73cfee;
  background: #eff9fd;
  /* color: #fff; */
}

.contactUsFloating_ .formWrap_ {
  position: relative;
  flex-shrink: 1;
  min-height: 0;
  height: min(620px, calc(100vh - max(min(24px, 5vw), env(safe-area-inset-bottom)) - 154px - max(12px, env(safe-area-inset-top))));
  height: min(620px, calc(100dvh - max(min(24px, 5vw), env(safe-area-inset-bottom)) - 154px - max(12px, env(safe-area-inset-top))));
  background: #fff;
}

.contactUsFloating_ .formWrap_.isSubmitted_ {
  height: min(500px, calc(100vh - max(min(24px, 5vw), env(safe-area-inset-bottom)) - 154px - max(12px, env(safe-area-inset-top))));
  height: min(500px, calc(100dvh - max(min(24px, 5vw), env(safe-area-inset-bottom)) - 154px - max(12px, env(safe-area-inset-top))));
}

.contactUsFloating_ .formWrap_ iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity .2s ease;
}

.contactUsFloating_ .formWrap_ iframe.loaded_ {
  opacity: 1;
}

.contactUsFloating_ .returnCountdown_ {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 10px 16px;
  background: #e8f7fb;
  border-top: 1px solid #c5e8f2;
  color: #24465b;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.contactUsFloating_ .loading_ {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: #fff;
  color: #344052;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.contactUsFloating_ .loadingSpinner_ {
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border: 3px solid #d9eef5;
  border-top-color: #45b5d5;
  border-radius: 50%;
  animation: contactFormSpin .8s linear infinite;
}

.contactUsFloating_ .loading_ a {
  color: #177c9b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contactUsFloating_ .loading_ a:hover,
.contactUsFloating_ .loading_ a:focus-visible {
  color: #105d76;
}

@keyframes contactFormSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .contactUsFloating_ .loadingSpinner_ { animation: none; }
}

.main_area .backtotop_button {
  right: calc(max(min(24px, 5vw), env(safe-area-inset-right)) + 96px);
  bottom: calc(max(min(24px, 5vw), env(safe-area-inset-bottom)) + 16px);
}

.contactUsOpen_ .main_area .backtotop_button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
