/** 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: #93E573;
  gap: 10px;
  padding-bottom: 5px;
}
.custom_urgency-dot {
  width: 8px;
  height: 8px;
  position: relative;
  top: 1px;
  border: none;
  border-radius: 50%;
  background-color: #93E573;
  animation: pulse 1.5s infinite;
}
.custom_urgency-text {
  font-weight: normal;
  font-size: 1.45rem;
  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; }
}
