.elp-product-construction-specifications h3,
.elp-product-variants h3 {
    background: var(--elspec_bg-lightgreen);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.elp-product-construction-specifications h3 {
    text-align: center;
}

.elp-product-variants h3 {
    padding-left: 30px;
}

.elp-cta {
    background: var(--elspec-table-alternative);
    margin-top: 100px;
}

.elp-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.elp-cta p:last-child {
    margin-bottom: 0;
}

.elp-cta .contact-btn {
    min-width: 240px;
}

@media (max-width: 991.98px) {

    .elp-cta {
        text-align: center;
    }

    .elp-cta .contact-btn {
        margin-top: 1.5rem;
    }
}

.elp-product-detail ul {
    margin-left: 30px;
    position: relative;
}

.elp-product-detail li {
    margin-bottom: 14px;
    line-height: 32px;
    padding-left: 40px;
    position: relative;
}

.elp-product-detail li::before {
    position: absolute;
    left: 0;
    color: var(--elspec_bg-lightgreen);
    font-family: "IcoFont", serif !important;
    content: "\eed9";
}

.elp-product-construction-specifications__item {
  border: 1px solid  var(--elspec_bg-lightgreen);
}

.product-spec-matrix {
    width: 100%;
    margin: 2rem 0;
}

.product-spec-matrix__scroll {
    width: 100%;
}

.product-spec-matrix__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.product-spec-matrix__table th,
.product-spec-matrix__table td {
    padding: 0.875rem 1rem;
    vertical-align: middle;
}

.product-spec-matrix__table th {
    position: relative;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid #d9d9d9;
}

.product-spec-matrix__table td {
    border-bottom: 1px solid #e5e5e5;
}

.product-spec-matrix__table tbody tr {
    transition: background-color 0.15s ease;
}

.product-spec-matrix__table tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.025);
}

.product-spec-matrix__table tbody tr:hover {
    background: rgba(0, 0, 0, 0.05);
}

.product-spec-matrix__table td:first-child {
    font-weight: 600;
}

.product-spec-matrix__empty {
    opacity: 0.4;
}


/*
 * Tablet / Mobile
 *
 * Die gleiche Tabelle wird optisch zu Produkt-Cards.
 */
@media (max-width: 991px) {

    .product-spec-matrix__table {
        display: block;
    }

    .product-spec-matrix__table thead {
        display: none;
    }

    .product-spec-matrix__table tbody {
        display: block;
    }

    .product-spec-matrix__table tr {
        display: block;
    }

    .product-spec-matrix__product {
        margin-bottom: 1.5rem;
        overflow: hidden;
        border: 1px solid #e1e1e1;
        border-radius: 0.5rem;
        background: #fff;
    }

    .product-spec-matrix__table td {
        display: grid;
        grid-template-columns:
            minmax(9rem, 42%)
            minmax(0, 58%);

        gap: 1rem;

        width: 100%;
        padding: 0.75rem 1rem;

        border-bottom: 1px solid #ededed;
    }

    .product-spec-matrix__table td:last-child {
        border-bottom: 0;
    }

    .product-spec-matrix__table td::before {
        content: attr(data-label);

        font-weight: 600;
        line-height: 1.35;
    }

    .product-spec-matrix__table tbody tr:nth-child(odd),
    .product-spec-matrix__table tbody tr:hover {
        background: #fff;
    }

    /*
     * Erste Zeile der Card etwas hervorheben.
     * Bei uns ist das aktuell "Description".
     */
    .product-spec-matrix__table td:first-child {
        display: block;

        padding: 1rem;

        font-size: 1.0625rem;
        font-weight: 700;

        background: rgba(0, 0, 0, 0.035);
    }

    .product-spec-matrix__table td:first-child::before {
        display: none;
    }
}


/*
 * Kleine Smartphones
 */
@media (max-width: 575px) {

    .product-spec-matrix__table td {
        display: block;
    }

    .product-spec-matrix__table td::before {
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.8125rem;
        opacity: 0.65;
    }
}

