@charset "utf-8";
/* CSS Document */
/* Styles the popup container */
/*
.fomo-text {
  font-size:1.25rem;
}
*/
.fomo-card {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #333333;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  border: 1px solid #eeeeee;
  margin: 15px auto;
  max-width: 90%;
}
/* Creates the blinking live green dot */
.fomo-pulse {
  width: 20px;
  height: 20px;
  background-color: #FF0000;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
}
.fomo-pulse::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #FF6700;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulse-animation 2s infinite ease-in-out;
}
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}