.floating-contact-toggle {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #d5dee7;
  border-radius: 50%;
  background: #f5f8fb;
  color: #17324f;
  box-shadow: 0 2px 8px #122a451c;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.floating-contact-toggle:hover,
.floating-contact-toggle:focus-visible {
  background: #e8f3f1;
  color: #158574;
}

.floating-contact.is-collapsed {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-top-width: 3px;
  border-radius: 50%;
}

.floating-contact.is-collapsed > :not(.floating-contact-toggle) {
  display: none;
}

.floating-contact.is-collapsed .floating-contact-toggle {
  position: static;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #17324f;
  font-size: 13px;
}

@media (max-width: 760px) {
  .floating-contact.is-collapsed {
    right: 10px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    padding: 0;
  }

  .floating-contact.is-collapsed .floating-contact-toggle {
    font-size: 12px;
  }
}
