/**
 * Stefan DS Plugin - Bullets Styles v1.1.0
 */

.stefan-ds-bullets-list {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}

.stefan-ds-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.stefan-ds-bullet-icon {
  flex-shrink: 0;
  width: 1.4em;
  height: 1.4em;
  color: var(--divi-color-5); /* Default color for SVG and Font Awesome */
  margin-top: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* For default SVG and Font Awesome icons */
.stefan-ds-bullet-icon svg,
.stefan-ds-bullet-icon i {
  width: 100%;
  height: 100%;
  fill: var(--divi-color-5);
}

/* For custom images (PNG, JPG, SVG via img tag) */
.stefan-ds-bullet-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stefan-ds-bullet-text {
  color: var(--divi-color-1);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 600;
}
/* Mobile */
@media all and (max-width: 767px) {
  .stefan-ds-bullet-icon {
    width: 16px;
  }
  .stefan-ds-bullets-list li {
    gap: 8px;
    margin-bottom: 8px;
  }
}
