.fas {
  align-items: center;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-style: normal;
  justify-content: center;
}
.fa-truck-moving::before { content: "🚚"; }
.fa-headset::before { content: "🎧"; }
.fa-exchange-alt::before { content: "↔"; font-size: 2rem; }
.fa-envelope::before { content: "✉"; }
.fa-star::before { color: #f5a623; content: "★"; }

#site-toast {
  background: #242424;
  border-radius: 4px;
  bottom: 1.25rem;
  color: #fff;
  left: 50%;
  opacity: 0;
  padding: .85rem 1.2rem;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 1rem);
  transition: opacity .2s, transform .2s;
  z-index: 100;
}
#site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1023px) {
  .navbar-menu.is-active { display: block; }
}
