Frame 124 (1).png

<style>
  .blink {
    animation: blink-animation 1.5s steps(5, start) infinite;
    color: red;
    display: inline-block; /* Display as inline-block */
    vertical-align: middle; /* Align vertically to middle */
    font-size: 10px; /* Set font size */
  }

  @keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }

  .red-div {
    background-color: #ffcccc;
    padding: 2px 10px; /* 6px vertical, 10px horizontal */
    border-radius: 8px; /* Rounded corners */
    display: inline-block; /* Display as inline-block */
    text-align: center; /* Center align the content */
    margin: 0 auto; /* Horizontally center the red-div */
  }

  .text {
    display: inline-block; /* Display as inline-block */
    vertical-align: middle; /* Align vertically to middle */
    margin-left: 10px; /* Add some space between the dot and the text */
    color: #AD0000; /* Text color */
    font-weight: 500; /* Medium font weight */
    font-size: 12px; /* Set font size */
    text-align: justify; /* Justify the text to the center */
  }
</style>

<div class="red-div">
  <div class="blink">&#9679;</div>
  <div class="text">Only 4 bags left at this price.</div>
</div>