@charset "UTF-8";

@-webkit-keyframes bounce {
  from, 46%, 69%, 86%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  60%, 62% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  93% {
    -webkit-transform: translate3d(0, -2.5px, 0);
            transform: translate3d(0, -2.5px, 0);
  }
}

@keyframes bounce {
  from, 46%, 69%, 86%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  60%, 62% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -7.5px, 0);
            transform: translate3d(0, -7.5px, 0);
  }
  93% {
    -webkit-transform: translate3d(0, -2.5px, 0);
            transform: translate3d(0, -2.5px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fadeInBottom {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeInBottom;
          animation-name: fadeInBottom;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@-webkit-keyframes fadeOutBottom {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutBottom {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.fadeOutBottom {
  -webkit-animation-name: fadeOutBottom;
          animation-name: fadeOutBottom;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fadeOutBottomFast {
  -webkit-animation-name: fadeOutBottom;
          animation-name: fadeOutBottom;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@-webkit-keyframes fadeIdle {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.7;
  }
}

@keyframes fadeIdle {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.7;
  }
}

.fadeIdle {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeIdle;
          animation-name: fadeIdle;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.floatingHARO .defaultEntryShadow, .floatingHARO .haroEntryGroup .speechBubble, .floatingHARO .haroEntryGroup .haroBtn {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

.floatingHARO .haroEntryGroup {
  display: none;
  cursor: pointer;
  position: absolute;
  bottom: 42px;
  right: 18px;
  overflow: visible;
  width: 60px;
  height: 60px;
  text-align: left;
  z-index: 900000045;
}

.floatingHARO .haroEntryGroup.idle .speechBubble {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.floatingHARO .haroEntryGroup.alwaysBottom {
  position: fixed;
  top: auto;
  bottom: 20%;
  right: calc(50% - 490px);
}

.floatingHARO .haroEntryGroup .speechBubble {
  position: absolute;
  bottom: 65px;
  right: 0;
  border-radius: 5px;
  background-color: #ffffff;
  /* padding: 0px 10px 0px 5px; */
  padding: 8px 12px 8px 8px;
  margin-bottom: 5px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.floatingHARO .haroEntryGroup .speechBubble.normal {
  height: 48px;
  white-space: nowrap;
}
/**
 top icon css start 
**/
  .floatingHARO .haroEntryGroup .speechBubble .home_icon{
      float: left;
      width: 32px;
      background-repeat: no-repeat;
      background-image: url(../../home/images/icn_menu_stroke_cards_services.gif);
      background-size: 32px 32px;
      height: 32px;
    }
  .floatingHARO .haroEntryGroup .speechBubble .haro_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_pp.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .pln_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_loans_and_overdraft.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .pld_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_loans_and_overdraft.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .mtg_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_mortgage.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .ccd_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_cards_services.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .tin_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_travel_insurance.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .min_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_insurance.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .ebk_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_pp.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .gbk_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_solid_location_32x32.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .lin_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_insurance.svg);
    background-size: 32px 32px;
    height: 32px;
  }
   
  .floatingHARO .haroEntryGroup .speechBubble .linm_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_insurance.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .pnb_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_stroke_chat_32x32.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .esv_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_stroke_chat_32x32.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .hro_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_stroke_chat_32x32.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .trs_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_stroke_chat_32x32.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .bps_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_bills_and_payment.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .fcx_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    /*background-image: url(../../home/images/icn_menu_stroke_fx_related.svg);*/
    background-image: url(../../home/images/WhatsApp_32x32.png);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .fcr_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/WhatsApp_32x32.png);
    background-size: 32px 32px;
    height: 32px;
  }
  
  .floatingHARO .haroEntryGroup .speechBubble .fci_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/WhatsApp_32x32.png);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .fau_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/WhatsApp_32x32.png);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .offer_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_menu_stroke_cards_services.gif);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .mol_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/WhatsApp_32x32.png);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .cas_icon{
      float: left;
      width: 32px;
      background-repeat: no-repeat;
      background-image: url(../../home/images/icn_stroke_chart_32x32.svg);
      background-size: 32px 32px;
      height: 32px;
    }
  .floatingHARO .haroEntryGroup .speechBubble .lins_icon{
      float: left;
      width: 32px;
      background-repeat: no-repeat;
      background-image: url(../../home/images/icn_menu_stroke_life_insurance.svg);
      background-size: 32px 32px;
      height: 32px;
    }
  .floatingHARO .haroEntryGroup .speechBubble .fcu_icon{
    float: left;
    width: 32px;
    background-repeat: no-repeat;
    background-image: url(../../home/images/icn_stroke_chat_32x32.svg);
    background-size: 32px 32px;
    height: 32px;
  }
  .floatingHARO .haroEntryGroup .speechBubble .bfaq_icon{
      float: left;
      width: 32px;
      background-repeat: no-repeat;
      background-image: url(../../home/images/icn_stroke_chat_32x32.svg);
      background-size: 32px 32px;
      height: 32px;
    }
    .floatingHARO .haroEntryGroup .speechBubble .slf_icon{
      float: left;
      width: 32px;
      background-repeat: no-repeat;
      background-image: url(../../home/images/simplyfund.svg);
      background-size: 32px 32px;
      height: 32px;
    }
    .floatingHARO .haroEntryGroup .speechBubble .tmd_icon{
      float: left;
      width: 32px;
      background-repeat: no-repeat;
      background-image: url(../../home/images/time-deposit-stroke.svg);
      background-size: 32px 32px;
      height: 32px;
    }

/**
 top icon css end 
**/

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer {
  -webkit-box-align: end;
  -ms-flex-align: end;
  /* align-items: flex-end; */
  align-items: first baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
  height: 100%;
}
#floatingHaroBtn.maxWindows .speechBubble {
  padding-top: 8px;
  padding-bottom: 8px;
}
#floatingHaroBtn.maxWindows .speechBubble .wordingContainer .welcome_words {
  padding: 0 8px;
  height: 27px;
  min-height: 27px;
}
#floatingHaroBtn .close_wlc {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 8px;
  top: -90px;
  z-index: 900000046;
  background-size: 20px 20px;
}
.floatingHARO .haroEntryGroup .speechBubble .wordingContainer div {
  color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* padding: 5px 0 5px 5px; */
  padding-left: 8px;
  text-align: left;
}

/* .floatingHARO .haroEntryGroup .speechBubble .wordingContainer div.welcome_words {
  padding-top: 5px;
}

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer div.haro_hover {
  padding-top: 5px;
} */

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer div span.haroName {
  letter-spacing: 0.15em;
}

.floatingHARO .haroEntryGroup .speechBubble.bounceAnimation {
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
}

.floatingHARO .haroEntryGroup .speechBubble.arrow::after {
  content: '';
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #ffffff transparent transparent transparent;
}

.floatingHARO .haroEntryGroup .speechBubble.arrow.arrow-bottom-right::after {
  bottom: -6px;
  right: 26px;
}
/** window width < 757 start **/
.floatingHARO .haroEntryGroup .speechBubble.min_speechBubble {
  position: absolute;
  bottom: 5px;
  right: 55px;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 0px 8px 0px 0px;
  margin-bottom: 5px;
  white-space: nowrap;
  height: 32px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.floatingHARO .haroEntryGroup .min_speechBubble.min_arrow::after {
    content: '';
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4px 0 4px;
    border-color: #ffffff transparent transparent transparent;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.floatingHARO .haroEntryGroup .min_speechBubble.min_arrow.min_arrow-bottom-right::after {
  bottom: 10px;
  right: -5px;
}
/** window width < 757 end **/

.floatingHARO .haroEntryGroup .haroBtn {
  border-radius: 50%;
  border-width: 0;
  background-color: #34a344;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50px;
}

.floatingHARO .haroEntryGroup:hover {
  opacity: 1;
}

.floatingHARO .haroEntryGroup .overlayLayer:hover .haroBtn {
  background-color: #ffffff;
  /* background-position: center center;
  background-repeat: no-repeat;
  background-size: 50px; */
}

.floatingHARO .haroEntryGroup .overlayLayer {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  z-index: 9;
}

.floatingHARO .haroEntryGroup .overlayLayer img {
  width: 100%;
  height: 100%;
}

@media (max-width: 757px) {
  .floatingHARO .haroEntryGroup {
    top: auto !important;
    /* bottom: 140px; */
    bottom: 42px; 
    width: 45px;
    height: 45px;
    background-size: 45px 45px;
  }
  .floatingHARO .haroEntryGroup:hover {
    background-size: 45px 45px;
  }
  /* .floatingHARO .haroEntryGroup .speechBubble {
    display: none !important;
  } */
  .floatingHARO .haroEntryGroup.alwaysBottom {
    position: fixed;
    top: auto;
    bottom: 20%;
    right: calc(50% - 490px);
  }
  .floatingHARO .haroEntryGroup .haroBtn,
  .floatingHARO .haroEntryGroup:hover .haroBtn {
    background-size: 45px;
  }
  .floatingHARO .haroEntryGroup .overlayLayer {
    width: 65px;
    height: 65px;
    top: -10px;
    left: -10px;
  }
}

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer div {
  font-weight: 400;
  font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
}

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer div:lang(zh-HK), .floatingHARO .haroEntryGroup .speechBubble .wordingContainer div:lang(zh-TW), .floatingHARO .haroEntryGroup .speechBubble .wordingContainer div:lang(zh-Hant) {
  font-weight: 500;
  font-family: "Microsoft JhengHei","微軟正黑體","Helvetica Neue","Helvetica"!important;
}

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer div:lang(zh-CN), .floatingHARO .haroEntryGroup .speechBubble .wordingContainer div:lang(zh-Hans) {
  font-weight: 500;
  font-family: "Microsoft JhengHei","微軟正黑體","Helvetica Neue","Helvetica"!important;
}


/*# sourceMappingURL=floatingHARO-B.css.map */



/* by fintech */
.floatingHARO .haroEntryGroup .speechBubble {
  -webkit-box-sizing: border-box!important;
          box-sizing: border-box!important;
}

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer {
  -webkit-box-sizing: border-box!important;
          box-sizing: border-box!important;
}

.floatingHARO .haroEntryGroup .speechBubble .wordingContainer div {
  -webkit-box-sizing: border-box!important;
          box-sizing: border-box!important;
  font-size: 12px!important;
}

.hsbBtnFloat {
  display: none;
}

.floatingHARO .haroEntryGroup {
  position: fixed;
  z-index: 900000045;
}

/* .floatingHARO .haroEntryGroup .haroBtn {
  background-image: url(../../home/images/haro_background_web.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

.floatingHARO .haroEntryGroup:hover .haroBtn {
  background-image: url(../../home/images/haro_background_web_hover.svg);
} */

#floatingHaroBtn .speechBubble .wordingContainer div.haro-en {
  font-family: "Open Sans-Regular", "Helvetica Neue", "Helvetica", "Arial", sans-serif!important;
}
#floatingHaroBtn .speechBubble .wordingContainer div.haro-zh {
  /*
  font-family: sans-serif, "Microsoft JhengHei","微軟正黑體","Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif!important;
  */
  font-family: "Microsoft JhengHei","微軟正黑體","Helvetica Neue","Helvetica"!important;
}
#floatingHaroBtn .speechBubble .wordingContainer div.haro-en span{
  font-family: "Open Sans-Regular", "Helvetica Neue", "Helvetica", "Arial", sans-serif!important;
}

#floatingHaroBtn .speechBubble .wordingContainer div.haro-en span.haroWeight{
    font-family: "Open Sans-SemiBold", "Helvetica Neue", "Helvetica", "Arial", sans-serif!important;
}

#floatingHaroBtn .speechBubble .wordingContainer div.haro-zh span {
  font-family: "Microsoft JhengHei","微軟正黑體","Helvetica Neue","Helvetica"!important;
}
#floatingHaroBtn .speechBubble .wordingContainer div span.haroName {
  font-family: "Open Sans-Regular", "Helvetica Neue", "Helvetica", "Arial", sans-serif!important;
  letter-spacing: 0.15em;
}

#floatingHaroBtn span.haroWeight {
  font-weight: 600;
}
/* #floatingHaroBtn .haro-en span.haroWeight {
  font-weight: 700!important;
} */