/* Step indicator */
.wizard
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.steps
{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.step
{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ddd;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}
.step.active
{
    background: #c18b4c;
    color: white;
}
.tab
{
    display: none;
    height: 100%;
}
.tab.active
{
    display: block;
}
.tab h3
{
    text-align: center;
    font-weight: bold;
}
.wizard .bottom
{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.wizard .bottom .total_container
{
    text-align: center;
}
.wizard .bottom .title
{
    font-size: 20px;
}
.wizard .bottom #tot
{
    font-size: 22px;
    font-weight: bold;
}
.wizard .bottom .end
{
    text-align: right;
}
#add_to_cart_dialog button
{
    background: #c18b4c;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}
#add_to_cart_dialog #button_back
{
    visibility: hidden;
}




#add_to_cart_form
{
    height: 100%;
}
#tabs
{
    height: 100%;
    overflow-y: scroll;
}
#tabs .row
{
    margin: 0;
}
.tab .box_container
{
    display: flex;
    height: 100%;
}
.tab .box
{
    border: 1px solid #bbbbbb;
    border-radius: 10px;
    box-shadow: 1px 1px 7px 1px #e7e7e7;
    color: #131313;
    margin: 10px 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    width: 100%;
}
.tab label
{
    width: 100%;
}
.tab img
{
    width: 50px;
}
.tab .price
{
    font-weight: bold;
    text-wrap: nowrap;
}
.tab .disponibilita
{
    font-size: 12px;
    color: #777;
}
.tab .disponibilita .pronta_consegna
{
    color: #509a2d;
}
.tab #avviso_su_trafile
{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}
#avviso_tensione
{
    text-align: center;
}
#tab_tensione_confirm, #tab_conferma_trafile, #tab_qt
{
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}
#tab_tensione_confirm .title
{
    margin-top: 20px;
    margin-bottom: 10px;
}
.correlati_spinner .wan-spinner
{
    display: flex;
}
#add_to_cart_button
{
    display: none;
}
