:root {
  --primary-color: #ef2c41;
  --primary-color-rgb: 255, 0, 0;
}

.dot-container {
  position: relative;
  display: inline-block;
  z-index: 101;
}

.dot-container::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -5px; /* Adjust to position the dot */
  width: 20px; /* Size of the dot */
  height: 20px; /* Size of the dot */
  background-color: #e50019; /* Dot color */
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
