.offerCountArea {
  display: flex;
  max-width: 86%;
  max-width: 300px;
  width: 100%;
  margin: 10px auto 15px;
  padding: 2px;
  color: #545454;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
  border: solid 1px rgb(0 0 0 / 30%);
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.offerCount {
  color: #df5375;
  color: #6f9ce3;
  font-size: 120%;
}

.offerCount .blur {
  -ms-filter: blur(6px);
  filter: blur(4px);
  font-size: 18px;
  margin: 0 0px 0px 4px;
}

/* .offerCountBox {
  line-height: 1.5;
} */

.countAnimation {
  animation: ani-shrink 2s ease-out infinite;
  opacity: 1;
}

@keyframes ani-shrink {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }

  50%,
  70% {
    transform: scale(0.95);
  }
}
