﻿body {
    justify-content: center; /* Allinea orizzontalmente */
    padding-top: 50px;
}

.hiddenItem {
    display: none;
}

.contentDiv {
    max-width: 1000px;
    margin: 0 auto;
}

.contentDiv h3 {
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Grigio scuro trasparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Per stare sopra ad altri contenuti */
}

.loadingPanel {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    transform: translate(-50%,-50%);
    padding: 10px;
    border-radius: 20px !important;
    border-color: white !important;
    text-align: center !important;
    background-color: white !important;
}

#progress {
    position: relative;
    margin-bottom: 30px;
}

#progress-bar {
    position: absolute;
    background: var(--dx-primary-color);
    height: 5px;
    width: 0%;
    top: 50%;
    left: 0;
}

#progress-num {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

#progress-num::before {
    content: "";
    background-color: lightgray;
    position: absolute;
    top: 50%;
    left: 0;
    height: 5px;
    width: 100%;
    z-index: -1;
}

#progress-num .step {
    border: 5px solid transparent;
    border-radius: 0%;
    /*width: 25px;
    height: 25px; */
    line-height: 25px;
    text-align: center;
    background-color: transparent;
    font-family: sans-serif;
    font-size: 14px;
    position: relative;
    z-index: 1;
}


.btn{
    width: 100% !important;
    max-width: 400px !important;
}

.editStepBtn{
    cursor: pointer;
}


/*PER BTN ACTIVATION*/
.custom-button {
    width: 100% !important; /* larghezza al 100% */
    padding: 20px 0 !important; /* altezza del pulsante */
    font-size: 18px !important; /* dimensione del testo */
    font-weight: bold !important; /* grassetto */
    background-color: white !important; /* colore sfondo verde */
    color: black !important; /* colore testo */
    border: none !important; /* tolgo il bordo */
    border-radius: 8px !important; /* arrotondo angoli */
    text-align: left !important;
    cursor: pointer !important; /* cambio cursore con mano se passo sopra */
    box-sizing: border-box !important; /* includo padding e bordo nel calcolo della larghezza */
    transition: background-color 0.3s ease !important; /*transizione per cambio di colore */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important; /* ombra */
    transform: translateY(0) !important; /* effetto di sollevamento */
}

.custom-button:hover {
    background-color: floralwhite !important; /* colore di sfondo quando si passa sopra */
}

.custom-button:active {
    background-color: lightgray !important; /* colore di sfondo ancora più scuro quando cliccato */
}

/* Stile per il testo all'interno del pulsante */
.custom-button .button-text {
    font-size: 20px !important;
    font-weight: bold !important;
}

.boxDatiPortCliNew{
    padding-bottom: 10px;
    max-width: 500px !important;
}

.datiPortCliNew {
    font-family: 'Barlow Semi Condensed' !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: dimgray !important;
    /*vertical-align: text-bottom !important;*/
    text-wrap: none;
    /*white-space: nowrap;*/
    padding: 0px 4px 0px 4px;
}

.feedback-button {
    font-size: 40px !important; /* x dimensione smile */
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    text-align: center;
    align-items: center; 
    justify-content: center; 
    line-height: 100px; 
    cursor: pointer;
    padding: 0; 
    border: none;
    background-color: transparent;
}


