﻿.contenitoreBarraNavigazione {
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
}

.bottoneNavigazione {
    width: 100%;
    margin: 0px 5px;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -.022em;
    background-color: #0070c9;
    background: -webkit-gradient(linear,left top,left bottom,from(#42a1ec),to(#0070c9));
    background: linear-gradient(#42a1ec,#0070c9);
    border: 1px solid #07c;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    min-width: 30px;
    padding: 7px 15px;
    text-align: center;
    white-space: nowrap;
    text-decoration:none;
}

    .bottoneNavigazione:hover {
        background-color: #69d888;
        background: -webkit-gradient(linear,left top,left bottom,from(#69d888),to(#1f9340));
        background: linear-gradient(#69d888,#1f9340);
        border: 1px solid #69d888;
    }

    .bottoneNavigazione.Selezionato {
        background-color: #69d888;
        background: -webkit-gradient(linear,left top,left bottom,from(#69d888),to(#1f9340));
        background: linear-gradient(#69d888,#1f9340);
        border: 1px solid #69d888;
    }

.BloccoCheckout {
    box-sizing: border-box;
    border: 1px solid silver;
    border-radius: 5px;
    width: 50%;
    /* margin: 20px 0px; */
    padding: 20px;
    background: #f7f7f7;
}
    .BloccoCheckout.marginDx {
        margin-right: 10px;
    }
    .BloccoCheckout.marginSx {
        margin-left: 10px;
    }

.BloccoCheckout.width100 {
    width: 100%;
}

    .BloccoCheckout.width100.VerdeChiaro {
        background-color: #1f9340;
    }
    .BloccoCheckout.width100.Verde {
        background-color: green;
    }
    .BloccoCheckout.width100.Rosso {
        background-color: #b32929;
    }


.checkoutContenitoreEterno {
    display: flex;
    /* border: 1px solid silver; */
    border-radius: 5px;
    /* padding: 20px; */
    box-sizing: border-box;
    margin-top: 50px;
}

.utenteloggato {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

@media screen and (max-width:767px) {
    .BloccoCheckout {
        width: 100%;
        margin-bottom: 20px;
    }
    .checkoutContenitoreEterno {
        display: block;
    }
  

}