/* BT WhatsApp Contact - lightweight front office CSS */
.btwc-float,
.btwc-float * ,
.btwc-inline,
.btwc-inline * {
  box-sizing: border-box;
}

.btwc-float {
  position: fixed;
  bottom: 18px;
  z-index: 9999;
  max-width: calc(100vw - 28px);
  font-family: inherit;
}

.btwc-bottom-right {
  right: 18px;
}

.btwc-bottom-left {
  left: 18px;
}

.btwc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 9px 14px 9px 10px;
  color: #ffffff;
  text-decoration: none;
  background: #128c7e;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.btwc-link:hover,
.btwc-link:focus {
  color: #ffffff;
  text-decoration: none;
  background: #075e54;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
}

.btwc-icon,
.btwc-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #ffffff;
}

.btwc-icon svg,
.btwc-inline-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.btwc-text,
.btwc-inline-text {
  display: inline-flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.btwc-label {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.btwc-phone {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  opacity: .92;
  white-space: nowrap;
}

.btwc-no-desktop-label .btwc-text {
  display: none;
}

.btwc-no-desktop-label .btwc-link {
  padding: 10px;
  min-width: 54px;
  justify-content: center;
}

.btwc-inline {
  margin: 12px 0;
}

.btwc-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #128c7e;
  text-decoration: none;
  border: 1px solid rgba(18, 140, 126, .28);
  border-radius: 999px;
  background: #ffffff;
}

.btwc-inline-link:hover,
.btwc-inline-link:focus {
  color: #075e54;
  text-decoration: none;
  border-color: rgba(7, 94, 84, .45);
}

.btwc-inline-icon {
  width: 24px;
  height: 24px;
  color: #128c7e;
}

.btwc-inline .btwc-label {
  font-size: 13px;
}

.btwc-inline .btwc-phone {
  font-size: 12px;
  color: #666666;
}

.btwc-inline-header,
.btwc-inline-footer {
  display: inline-block;
  margin: 4px 8px;
  vertical-align: middle;
}

.btwc-inline-header .btwc-inline-link {
  padding: 5px 9px;
}

.btwc-inline-header .btwc-phone {
  display: none;
}

@media (max-width: 767px) {
  .btwc-float {
    bottom: 14px;
    max-width: calc(100vw - 20px);
  }

  .btwc-bottom-right {
    right: 10px;
  }

  .btwc-bottom-left {
    left: 10px;
  }

  .btwc-link {
    min-height: 50px;
    padding: 8px 12px 8px 9px;
  }

  .btwc-no-mobile-label .btwc-text {
    display: none;
  }

  .btwc-no-mobile-label .btwc-link {
    min-width: 52px;
    padding: 9px;
    justify-content: center;
  }

  .btwc-label {
    font-size: 13px;
  }

  .btwc-phone {
    font-size: 11px;
  }
}
