﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
}

.sumersby_module01_container {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.sumersby_module01_banner {
    flex: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.sumersby_module01_banner_title {
    font-family: SomersBy-heading, Helvetica, Arial, sans-serif;
    font-size: 5rem;
    font-weight: bold;
    width: 65%;
    margin-bottom: -1rem;
}

.sumersby_module01_product_details {
    background-color: #f3f2e0;
    display: flex;
    flex-direction: row;
    padding: 4rem;
    color: #006e41;
    font-size: 1.2rem;
    overflow: auto;
    font-family: Avenir-Medium, Arial, sans-serif;
    height: auto;
}

.sumersby_module01_product_basic_details {
    width: 25%;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    justify-content: flex-start;
}

    .sumersby_module01_product_basic_details a {
        width: max-content;
        cursor: pointer;
    }

.sumersby_module01_multi_links {
    width: max-content;
    cursor: pointer;
    display: flex;
}

.sumersby_module01_heading {   
    padding-top: 1.5rem;
    font-family: Avenir-Black, Arial, sans-serif;
}

.sumersby_module01_product_basic_details a {
    color: #006e41;
}

.sumersby_module01_product_table {
    width: 75%;
}

.sumersby_module01_product_details_table {
    display: flex;
    flex-direction: row;
    height: 100%;
}

    .sumersby_module01_product_details_table th {
        font-weight: normal;
    }

.sumersby_module01_table_title {
    padding-bottom: 1rem;
    font-family: Avenir-Black, Arial, sans-serif;
}

table,
th,
td {
    border: 2px solid white;
    border-collapse: collapse;
}

.product-details-table th,
td {
    padding: 4px;
}



@media only screen and (min-width:1920px) {
    .sumersby_module01_product_details {
        font-size: 2rem !important;
    }

    .sumersby_module01_banner_title {
        font-size: 6rem;
    }
}
@media only screen and (max-width: 1024px) {
    .sumersby_module01_product_details {
        font-size: 1.5rem;
    }
}
@media only screen and (max-width: 767px) {
    .sumersby_module01_product_details {
        flex-direction: column;
        height: auto;
        font-size: 2rem;
    }

    .sumersby_module01_product_basic_details {
        height: 100%;
        width: 100%;
        overflow: visible;
    }

    .sumersby_module01_product_table {
        width: 100%;
        height: 100%;
        padding-top: 50px;
    }

    .sumersby_module01_product_details_table {
        overflow: none;
    }

    .sumersby_module01_banner {
        justify-content: center;
        padding: 0 5px;
        background-size: cover;
    }

    .sumersby_module01_banner_title {
        width: 100%;
        text-align: center;
    }

    .sumersby_module01_heading {
        padding-bottom: 0.5rem;
    }

    .module01head {
        padding: 5px 0;
    }
}


