/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/



/* Rimuove i pallini predefiniti dalla lista */
.elenco-custom ul {
  list-style: none;
  padding-left: 0;
}

/* Formatta l'elemento della lista per allineare l'icona e il testo */
.elenco-custom ul li {
  position: relative;
  padding-left: 30px; /* Spazio per l'icona */
  margin-bottom: 10px;
  display: flex;
  align-items: center; /* Centra l'icona verticalmente rispetto alla riga di testo */
  font-family: sans-serif; /* Opzionale */
}

/* Crea l'icona personalizzata */
.elenco-custom ul li::before {
  content: "";
  display: inline-block;
  
  /* DIMENSIONI RICHIESTE */
  width: 16px;
  height: 16px;
  
  /* COLORE RICHIESTO */
  background-color: red; 
  
  /* PERCORSO DELL'SVG */
  -webkit-mask-image: url("https://fgz.dev.netkom.it/wp-content/uploads/2026/01/check.svg");
  mask-image: url("https://fgz.dev.netkom.it/wp-content/uploads/2026/01/check.svg");
  
  /* PROPRIETÀ DELLA MASCHERA */
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  
  /* Posizionamento fine dell'icona */
  position: absolute;
  left: 0;
}