/*
 * Archivo: 48897.css
 * Guardado: 02 Aug 2025 | 01:56:07
 */

/*
 * Filtro - Listas <ul> + <ol> (1) - Símbolos aleatorios para Bullets - 28184
 * 		https://www.viajaraperu.com/wp-admin/post.php?post=28184&action=edit
 * General - Listas <ul> + <ol> (2)- Símbolos aleatorios para Bullets - 48897
 * 		https://www.viajaraperu.com/wp-admin/post.php?post=48897&action=edit
 */

/*
 * Listas <ul> + <ol> - Símbolos Aleatorios para Bullets
 * 48897.css
 *
 */

/* --- --- --- Caso UL --- --- --- */
ul.lista-circulo li::before		{ content: "⦿"; color: #cb7f00; 
	font-size: .95em!important; 
}
ul.lista-circulo-hueco li::before	{ content: "◎"; color: #009688;
	font-size: 1em !important; 
}
ul.lista-estrella li::before	{ content: "✦"; color: #d38d00; 
}
ul.lista-estrella-puntas li::before	{ content: "✲"; color: #a11414; 
	font-size: .99em !important; font-weight: bold;
}
ul.lista-estrella-vacia li::before		{ content: "✧";	font-weight: bold; 
}
ul.lista-cristal li::before {		content: "◈"; color: #8e44ad; 
}
ul.lista-circulo-barras li::before {	content: "◍"; color: #009933; 
	font-size: .95em!important; 
}
ul.lista-flecha li::before {		content: "➜"; color: #e67e22; 
	font-size: .97em !important; 
}
ul.lista-flecha-onda li::before {	content: "➾"; color: #087d8f; 
}

/* --- --- --- Default - UL OL --- --- --- */
ul[class^="lista-"], ol[class^="lista-"] {
    list-style: none;
    padding-left: 0;
    margin: 10px;
}
	/* Default - li */
	ul[class^="lista-"] li, ol[class^="lista-"] li {
		position: relative;
		padding-left: 32px;
		margin-bottom: 0.5em;
	}

	/* Segunda lista - ul dentro de ul */
	ul[class^="lista-"] > li > ul, ol[class^="lista-"] > li > ul {
		margin: 10px 0px 15px;
	}

/* LI::Before */
ul[class^="lista-"] li::before, ol[class^="lista-"] li::before {
	position: absolute;
	left: 0;
	font-size: 1.15em;
	width: 1.2em;
	display: inline-block;
	text-align: center;
}

/* --- --- --- Caso OL --- --- --- */

ol[class^="lista-num-"] {
    counter-reset: item;
}
/*
ol[class^="lista-num-"] li {
	counter-increment: item;
    padding-left: 40px;
}
ol[class^="lista-num-"] li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.2em;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95em;
}*/
ol[class^="lista-num-"] > li {
    counter-increment: item;
}
ol[class^="lista-num-"] > li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.2em;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95em;
}
ol.lista-num-morado > li::before {
    background: #f3eaff;
    color: #7c4dff;
    border: 1px solid #a382ff;
}
ol.lista-num-azul > li::before {
    background: #e7f3ff;
    color: #4d77ff;
    border: 1px solid #829fff;
}
ol.lista-num-verde > li::before {
	background: #f5ffea;
    color: #53b235;
    border: 1px solid #86c971;
}
ol.lista-num-naranja > li::before {
	background: #fff5e6;
    color: #ff7c4d;
    border: 1px solid #ffa382;
}
ol.lista-num-rosa > li::before {
    background: #ffecf6;
    color: #d95eff;
    border: 1px solid #e594ff;
}
