/* Compact visual labels for the company contact details. */
.footer-contact-lines > * {
  position: relative;
  display: block;
  padding-left: 29px;
}

.footer-contact-lines > *::before {
  position: absolute;
  left: 0;
  top: .08em;
  width: 20px;
  color: #f47da2;
  font: 700 17px/1 Arial, sans-serif;
  text-align: center;
}

.footer-contact-lines > b::before { content: "▣"; }
.footer-contact-lines > span:nth-of-type(1)::before { content: "⌖"; }
.footer-contact-lines > a[href^="mailto"]::before { content: "✉"; }
.footer-contact-lines > a[href^="tel"]::before { content: "☎"; }
.footer-contact-lines > span:nth-of-type(2)::before { content: "◌"; }
.footer-contact-lines > small::before { content: "©"; }

.footer-contact-lines > small {
  color: #9f989d;
}

@media (max-width: 800px) {
  .footer-contact-lines > * { padding-left: 28px; }
}
