.check_icon svg {
  width: 20px;
  height: 20px;
}

.check_icon path {
  fill: none;
  stroke: green;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 40;
  stroke-dashoffset: 40;

  animation: drawCheck 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards infinite;
}

@keyframes drawCheck {
  0% {
    stroke-dashoffset: 40;
    stroke-width: 2;
  }
  50% {
    stroke-width: 3.5;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-width: 3;
  }
}

.list_bullets {
  list-style: none !important;
  padding-left: 0;
  margin: 0;
}

.list_bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  line-height: 1.5;
  z-index: 2;
}

.list_bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background-color: var(--secundario-azul); 
  border-radius: 50%;
}
