/* Speech bubble popup */
.email-popup {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);

  background: #000;;
  color: #dfa667;
  padding: 12px 18px;
  border-radius: 12px; /* softer bubble */
  font-size: 14px;
  white-space: nowrap;
  z-index: 99999;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);

  border: 2px solid #000;

  /* hidden */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

/* Down arrow */
.email-popup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px; /* moves the triangle below */
  transform: translateX(-50%);
  width: 0;
  height: 0;

  /* triangle */
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;

  /* match border */
  /* filter: drop-shadow(0 -1px 0 #000); */
}

/* When visible */
.email-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
