

.product-main {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

    .nome-prodotto {
        color: #0d4062;
        border-bottom: 1px solid #0d4062;
        margin:3vh;
        padding-bottom: 3vh;
        text-align: center;
    }
    

    .product-table {
        border-collapse: separate;
        border-spacing: 0px 1rem;
        max-width: 80vw;
        margin-bottom: 5vh;

        > tbody> tr > .first-col {
            padding-left :10px;
            padding-bottom: 2px;
            padding-top:2px;
            background-color: #0d4062;
            text-transform: uppercase;
            color: white;
            width:10vw;
        }

        > tbody> tr > .second-col {
            padding-left :10px;
            padding-bottom: 2px;
            padding-top:2px;
            background-color:#cfd9e0;
            color: #0d4062;
            width:85%;
        }

    }


}