body{
    word-break: break-word;
}
img{
    max-width: 100%;
}
.mt-50-- {
   
    margin-top: 50px;
}

.switch-style1 label.form-check-label {
    color: var(--headings-color);
    font-size: 19px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0em;
    line-height: 30px;
    margin-left: 10px;
    margin-top: 3px;
}

/* Stile per il contenitore principale (la riga) */
        .row-container-1 {
            display: flex; /* Attiva Flexbox */
            justify-content: space-between; /* Spinge le colonne agli estremi */
            align-items: center; /* Allinea verticalmente gli elementi al centro (opzionale) */
            
            /* Stili puramente visivi per farti vedere l'ingombro */
            width: 100%;
        }

        /* Stile per le singole colonne */
        .column-1 {
            padding: 0;
        }

        .custom_checkbox {
    display: block;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0em;
    position: relative;
    padding-left: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--title-font-family);
    color: var(--headings-color);
    font-weight: 600;
    line-height: 1.5;
}

.text-arancio {
    color: #EB6753;
}

.list-style1 li
 {
    align-items: center;
    display: block; 
    list-style-type: none;
    margin-bottom: 5px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.list-style1 i {
    border-radius: 50%;
    font-size: 8px;
    height: 18px;
    left: 0;
    line-height: 18px;
    position: absolute;
    text-align: center;
    width: 18px;
    margin-top: 4px;
}

.home-banner-style1 {
    background-image: url(/master/assets/img/slide1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.navtab-style1 small {
    display: block; 
    line-height: 1.2 !important; 
}

.home-banner-style1 .home-style1 {
    align-items: center;
    display: flex;
    height: 860px;
    background: rgba(0, 0, 0, 0.4);
}




/* Stile di base del pulsante (Senza sfondo, con bordo) */
.btn-progress {
    position: relative;
    background-color: transparent;
    color: #222;
    border: 1px solid #ffc107;
    background-color: #ffc107;
    padding: 14px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    
    /* Blocchi anti-selezione per mobile */
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: none;
}

/* Il testo deve stare in primo piano (z-index maggiore) */
.testo-btn {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease; /* Transizione morbida se cambia colore */
}

/* LA BARRA DI CARICAMENTO (Inizialmente invisibile / width: 0) */
.btn-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #198754; /* Colore di riempimento: Verde */
    z-index: 1; /* Sta dietro al testo ma sopra lo sfondo */
    
    /* Transizione rapida: se rilasci il dito, la barra torna a 0 velocemente */
    transition: width 0.3s ease;
}

/* QUANDO STAI TENENDO PREMUTO */
.btn-progress.holding::before {
    width: 100%;
    /* Transizione lenta: ci mette 8 secondi a riempirsi! */
    transition: width 2s linear;
}

/* Per una grafica migliore: fa diventare il testo bianco man mano che si riempie */
.btn-progress.holding .testo-btn,
.btn-progress.completed .testo-btn {
    color: white;
}

/* QUANDO HA FINITO */
.btn-progress.completed {
    border-color: #198754; /* Il bordo diventa verde */
    cursor: not-allowed;
}
.btn-progress.completed::before {
    width: 100%;
    transition: none; /* Blocca l'animazione */
}

@media screen and (max-width: 576px){
    .p30{
        padding: 20px !important;
    }
    
    .mt-50-- {
        margin-top: 25px;
    }

    .home-banner-style1 .home-style1 {
        align-items: center;
        display: flex;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
    }
}