/* Cadre principal */
.zone-options {
    background-color: white;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    margin: 12px 0;
    /* padding: 12px; */
    position: relative;
    border-radius: 4px;
    white-space: nowrap;
    min-height: 160px;    
}

/* Cadre principal, partie grise */
.zone-options:before {
    content: '';
    position: absolute;
    width: 35%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #eee;
    border-radius: 0 4px 4px 0;
}

/* Zone de droite ( partie grise ) */
.zone-devis {
    position: absolute;
    top: 5%;
    left: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;     
}

/* Prix */
.zone-prix .prix {    
    font-size: 18pt;
    line-height: 24pt;
    font-family: 'latoregular';
    font-weight: bold;
    /*
    background-color: #16aa93;
    padding: 12px;
    border-radius: 4px;
    color: white;
    */
}

/* Bouton ajouter au panier */
.zone-bouton button {
    font-size: 10pt;
    line-height: 14pt;
}

/* Stock */
.stock {
    padding-left: 10px;
    padding-bottom: 10px;
    margin: 0;
    width: 70%;
    font-size: 11pt;
}

.stock p {
    color: black;
}

/* Cadre Quantités */
.liste-options.choix-quantites {
    padding-left: 10px;  
    margin: 0;
    width: 70%;
    display: flex;
    flex-wrap: wrap;    
}

/* Libellé */
.libelle {
    font-size: 10pt;
    font-weight: bold;    
    margin: 0 0 0 10px;
    padding-top: 10px;    
    text-align: left;
}

@media screen and (max-width: 1050px) {
    
    .liste-options.choix-quantites {
        width: 100%;      
        justify-content: center;  
    }

    .zone-options:before {
        display: none;
    }

    .zone-devis {
        position: initial;
        width: 100%;  
        flex-direction: column;
        flex-wrap: nowrap;
    }

    /* Stock */
    .stock {
        width: 100%;        
    }       

    /* Prix */
    .zone-prix .prix {    
        text-align: center;
    }
}