/** Shopify CDN: Minification failed

Line 27:18 The "-" operator only works if there is whitespace on both sides

**/
.custom_urgency-area {
  display: flex;
  align-items: center;
  text-align: left;
  color: green;
  gap: 10px;
  padding: 5px 10px;
}
.custom_urgency-dot {
  width: 10px;
  height: 10px;
  position: relative;
  top: 1px;
  border: none;
  border-radius: 50%;
  background-color: green;
  animation: pulse 1.5s infinite;
}
.custom_urgency-text {
  font-weight: bold;
  font-size: 1.5rem;
  width: calc(100%-20px);
}


@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
