/*
Theme Name: Ovisoft Divi Child
Author: Ovisoft
Author URI: https://www.ovisoft.es
Template: Divi
Version: 1.3.1
Description: Tema hijo de Divi creado por Ovisoft para personalizar proyectos.
*/

/* La personalización del tema empieza aquí
------------------------------------------------------- */

/* Quita cualquier estilo propio de Divi y fuerza el color del marcador */
ul, ol {
  list-style-position: outside !important; /* o inside si prefieres */
  padding-left: 1.2em !important;          /* ajusta indentado */
}

/* Solo el bullet/punto en verde */
ul li::marker,
ol li::marker {
  color: #67b636 !important;
}

/* Animación para los divisores inferiores */
.bg-animate-bottom .et_pb_bottom_inside_divider {
  -webkit-animation: scroll 500s linear infinite;
  -moz-animation: scroll 500s linear infinite;
  -ms-animation: scroll 500s linear infinite;
  -o-animation: scroll 500s linear infinite;
  animation: scroll 500s linear infinite;
}

/* Animación para los divisores superiores */
.bg-animate-top .et_pb_top_inside_divider {
  -webkit-animation: scroll 500s linear infinite;
  -moz-animation: scroll 500s linear infinite;
  -ms-animation: scroll 500s linear infinite;
  -o-animation: scroll 500s linear infinite;
  animation: scroll 500s linear infinite;
}

/* Definición de keyframes para diferentes navegadores */
@-webkit-keyframes scroll {
  100% {
    background-position: 10000px center;
  }
}

@-moz-keyframes scroll {
  100% {
    background-position: 10000px center;
  }
}

@-o-keyframes scroll {
  100% {
    background-position: 10000px center;
  }
}

@keyframes scroll {
  100% {
    background-position: 10000px center;
  }
}
