.floating-contact-stack{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.floating-contact{
  display:inline-flex;
  align-items:center;
  gap:11px;
  min-height:54px;
  padding:12px 16px 12px 14px;
  border-radius:999px;
  background:#137A4B;
  color:#FFFFFF;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 16px 38px rgba(15,61,46,.28);
  text-decoration:none;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  transform:translateZ(0);
  transition:background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.floating-contact:hover{
  background:#0F3D2E;
  transform:translateY(-1px);
  box-shadow:0 20px 44px rgba(15,61,46,.34);
}
.floating-contact--email{
  background:#FFFFFF;
  color:#0F3D2E;
  border:1px solid rgba(15,61,46,.18);
  box-shadow:0 12px 30px rgba(15,61,46,.16);
}
.floating-contact--email:hover{
  background:#F4FAF6;
}
.floating-contact__icon{
  width:31px;
  height:31px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.16);
  color:#FFFFFF;
  font-size:17px;
  font-weight:800;
  line-height:1;
}
.floating-contact--email .floating-contact__icon{
  background:#E8F3ED;
  color:#137A4B;
}
.floating-contact__text{
  display:grid;
  line-height:1.15;
}
.floating-contact__label{
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  color:#FFFFFF;
}
.floating-contact--email .floating-contact__label{
  color:#0F3D2E;
}
.floating-contact__meta{
  margin-top:3px;
  font-size:11.5px;
  font-weight:650;
  color:rgba(255,255,255,.78);
}
.floating-contact--email .floating-contact__meta{
  color:#5F6D68;
}
@media (max-width:700px){
  .floating-contact-stack{
    left:16px;
    right:16px;
    bottom:16px;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  .floating-contact{
    display:flex;
    width:100%;
    justify-content:center;
    min-height:44px;
    gap:8px;
    min-width:0;
    padding:9px 12px;
  }
  .floating-contact__icon{width:27px;height:27px;font-size:15px}
  .floating-contact__meta{display:none}
  .floating-contact__label{font-size:12.5px}
}
