
/**
* CSS File of module
* 
* @author Empty
* @copyright 2007-2016 PrestaShop SA
* @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

/*Product page*/
.shopping-list {
    display: inline-block;
    margin: 20px 0 10px;
    position: relative;
}

    .shopping-list ul {
        box-shadow: 2px 2px 11px 0 rgba(0, 0, 0, 0.1);
        background: #fff;
        display: none;
        position: absolute;
        padding: 10px;
        z-index: 1000;
        width: 100%;
    }

    .shopping-list ul li a {
        cursor: pointer;
        display: block;
        padding: 3px 0;
    }

/*Account : list table*/
@media screen and (max-width:640px) {

    #shopping-list .hide-mobile {
        display: none;
    }

        #shopping-list table,
        #shopping-list thead,
        #shopping-list tbody,
        #shopping-list tr,
        #shopping-list th,
        #shopping-list td {
            display: block;
        }

        #shopping-list thead {
            display: none;
        }

        #shopping-list td {
            padding-left: 150px;
            position: relative;
            margin-top: -1px;
            background: #FFF;
        }

        #shopping-list td:nth-child(odd) {
            background-color: #eee;
        }

        #shopping-list td::before {
            padding: 10px;
            content: attr(data-label);
            position: absolute;
            top: 0;
            left: 0;
            width: 130px;
            bottom: 0;
            background-color: #005ea8;
            color: #FFF;
            display: flex;
            align-items: center;
            font-weight: bold;
        }

        #shopping-list tr {
            margin-bottom: 1rem;
        }

        #shopping-list th + td {
            padding-left: 10px;
        }
}

