Summer Pigmentation Defense Kit

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shipping Information</title>
<style>
.custom-shipping-container { 
  display: flex;
  padding: 6px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background-color: #f6f6f6;
  border-radius: 20px;
}

.custom-shipping-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-block-shipping {
  font-size: 12px;
  color: #000;
}

.shipping-date {
  font-weight: bold;
}

.free-shipping {
  font-weight: bold;
}

.green-circle {
  animation: fade 1s ease-in-out infinite;
}

@keyframes fade {
  0%, 100% { opacity: 1; } 
  50% { opacity: 0.5; }
}
</style>
</head>
<body>
<div class="custom-shipping-container">
  <div class="custom-shipping-item">
    <svg class="green-circle" xmlns="http://www.w3.org/2000/svg" width="12" height="14" viewBox="0 0 12 13" fill="none">
      <circle cx="6" cy="6.5" r="6" fill="#137333"/>
    </svg>
    <div class="text-block-shipping">Deliver by <span id="shipping-date" class="shipping-date"> 18
Feb</span></div>
  </div>
  <div class="custom-shipping-item">
    <img src="https://cdn-icons-png.flaticon.com/512/3973/3973547.png" loading="lazy" height="20px" class="custom-icon">
    <div class="text-block-shipping"><span class="free-shipping">FREE</span> PAK Shipping</div>
  </div>
</div>
</body>
</html>