/** Shopify CDN: Minification failed

Line 51:20 The "-" operator only works if there is whitespace on both sides

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

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

@media (max-width: 600px) {
  .custom_urgency-text {
    font-weight: bold;
    font-size: 1.5rem;
    width: calc(100%-20px);
  }
}