

/*
==========================
Summary
*/

div.product_page_products_summary_container
{

}


/*
==========================
Categories
*/

div.product_page_products_categories_container
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.product_page_products_categories
{
    font-family: verdana,arial,sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #3b4246;
    background: #FFFFFF;
    border-color: #E0E0E0;
    border-style: solid;
    margin-left: 10px;
    margin-right:10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 1px;
    padding-bottom: 2px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    display: inline-block;
}

/*
==========================
Domaines
*/

div.domaines
{

    display: flex;
    flex-direction: column;
    align-items: center;

    /* * /
    display: flex;
    justify-content: center;
    /* */
}

/*
==========================
Domaines = produit
*/

div.domaine
{
    /* */
    display: block;
    /* */


    /* * /
    display: flex;
    justify-content: center;
    /* */

    margin: 6px;
    font-family: verdana,arial,sans-serif;
    font-size: 10px;
    font-weight: bold;
    text-align: left;
    /* border-color: #9C027A; */
    border-color: #818181;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    max-width: 800px;
}
div.domaine:hover
{
    border-color: #000000;
    background: #E0E0E0;
}
div.domaine_titre
{
    font-family: verdana,arial,sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #FF0000;
    vertical-align: top;
}
div.domaine_text
{
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding-left: 5px;
}
div.domaine_image
{
    text-align: center;
    padding: 10px;
    display: inline-block;
    width: 100%;
}
img.domaine_image
{
    max-width: 150px;
}


/* ******************************************** [ All except mobiles - mid and high res ] ***************************** */
@media handheld, only screen and (min-width: 800px), only screen and (min-device-width: 800px)
{
    div.product_page_products_summary_container
    {
        margin-left: 30%;
    }
}


/* ******************************************** [ Mobile - low res ] **************************** */
@media handheld, only screen and (max-width: 799px), only screen and (max-device-width: 799px)
{
    div.product_page_products_summary_container
    {
        margin-left: 0%;
    }

}