/**
 * Tableau
 */

.container--legal table {
    line-height: 1.4em;
    max-width: max-content;
}

.container--legal table td {
    padding-left: 10px !important;
    padding-right: 10px !important;
    vertical-align: top;
}

.container--legal table td:first-child {
    font-weight: bold;
}

.container--legal table tr:nth-child(odd) td,
.container--legal table tr:nth-child(even) td {
    background-color: #eee;
}

@media screen and (max-width: 599px) {

    .container--legal table,
    .container--legal table * {
        display: block;
    }

    .container--legal table tr {
        margin-bottom: 2px;
    }

    .container--legal table td:first-child {
        padding-top: 5px;
    }

    .container--legal table td:last-child {
        padding-bottom: 5px;
    }
}

@media screen and (min-width: 600px) {
    
    .container--legal table {
        border-collapse: collapse;
        border-radius: var(--border-radius);
        overflow: hidden;
    }

    .container--legal table tr:nth-child(even) td {
        background-color: #ddd;
    }

    .container--legal td {
        padding: 12px 10px !important;
    }

    .container--legal table td:first-child {
        border-right: white solid 1px;
    }
}

.container--legal address {
    padding: 10px;
    font-style: normal;
    width: fit-content;
    background-color: #eee;
}

.container--legal footer {
    margin-top: 60px;
    border-top: #ccc solid 1px;
}

.container--legal footer p {
    margin: 10px auto;
    font-size: 0.9em;
    color: #666;
}