.product_info__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.product_info__content h3 {
    margin-bottom: 10px;
    padding-top: 8px;
    padding-left: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #303030;
}

.product_info__content-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0 1.5rem 1rem;
}

.product_info__content-button {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: .4em 1em;
    background: #fff;
    border: 2px solid #d2232a;
    border-radius: 5px;
    color: #292929;
    font-size: .9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.product_info__content-button:hover {
    background: #4a5568;
    color: #fff;
    transition: all 0.3s;
}

.product_info__content-button svg {
    width: 1em;
    height: 1em;
}

.product_listings_image {
    max-width: 100px;
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.product_futures {
    margin-bottom: 2rem;
}

.product_futures h4 {
    padding-bottom: .5rem;
    padding-left: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #303030;
}

.product_futures__content {
    padding-left: 2em;
}

.product_certifications h3 {
    padding-top: 0;
    padding-bottom: 1rem;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #303030;
}

.product_certifications_content {
    padding-left: 2em;
}

.product_info__application {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 8px 32px;
}

.product_info__application-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #303030;
}

.product_info__application-content ul {
    padding-left: 32px;
}

.product_info__application-image {
    margin-right: 16px;
}

.product_table {
    margin-top: 48px;
    margin-bottom: 16px;
    /*overflow-x: scroll;*/
}

.product_table table {
    max-width: 100%;
    width: 100%;
}

.product_table table th {
    padding: 8px;
    background-color: #000 !important;
    color: #fff !important;
    text-align: left !important;
    vertical-align: top !important;
    font-family: 'Neue', sans-serif !important;
    font-size: 15px !important;
    border: 1px solid #e0e0e0 !important;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-word;
}

.product_table table td {
    border: 1px solid #e0e0e0 !important;
    padding: 10px !important;
    background-color: #fff !important;
    font-size: 13px !important;
}

.product_table table td:nth-child(1),
.product_table table td:nth-child(2) {
    background-color: #e5e5e5 !important;
    width: 8.33% !important;
    word-break: break-word;
}

@media (max-width: 768px) {
    .product_info__inner {
        display: flex;
        flex-direction: column;
    }
    .product_info__application {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .product_table {
        display: none;
    }
}