/* Prevent eD system's rich supplier descriptions from overflowing product pages. */
.tpl-product-detail-desc {
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box;
}
.tpl-product-detail-desc .box-in {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
}
.tpl-product-detail-desc .row {
    display: flex !important;
    align-items: flex-start;
    gap: 24px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 28px !important;
    box-sizing: border-box;
}
.tpl-product-detail-desc .box-img {
    flex: 0 1 42%;
    width: auto !important;
    max-width: 420px !important;
    margin: 0 !important;
    box-sizing: border-box;
}
.tpl-product-detail-desc .box-img img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}
.tpl-product-detail-desc .desc {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}
.tpl-product-detail-desc .desc h2 { margin-top: 0; }
@media only screen and (max-width: 770px) {
    .tpl-product-detail-desc .row {
        display: block !important;
        margin-bottom: 22px !important;
    }
    .tpl-product-detail-desc .box-img {
        max-width: 100% !important;
        margin: 0 0 14px !important;
    }
}
