﻿
/* CATALOG LIST 
----------------------------------------------------*/

.contentarea.forceheight {
    min-height: 750px;
}

.contentgrid.catalog {
    position: relative;
    display: grid;
    width: 99%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    justify-content: space-between;
    align-items: start;
    row-gap: 0;
    column-gap: 20px;
    z-index: 2;
    min-height: auto;
}

.contentgrid.catalog .pagetitle h1, .contentgrid.catalog .pagetitle h2, .contentgrid.catalog .pagetitle h3 {
    display: block;
    font-size: 32px;
    letter-spacing: .03em;
    font-weight: 900;
    color: var(--clr-blue);
    text-align: left;
    padding-bottom: 10px;
}

.overview {
    display: block;
    }

.overview .text {
    color: #336089;
    font-size: 16px;
    line-height: 22px;
    padding: 6px 0 12px 0;
    text-align: left;
    }

.valvetype {
    display: flex;
    align-items: center;        /* vertical alignment */
    gap: 10px;                  /* space between columns */
    padding: 10px 0;
    border-top: 1px solid #CCD7E2;
    border-bottom: 1px solid #CCD7E2;
    }

.valvetype .filter {
    flex: 1;
}

.valvetype .instructions {
    text-transform: uppercase;
    color: #336089;
    font-weight: 400;
    margin-right: 5px;
    white-space: nowrap;
    }
 
.valvetype .filter select {
    padding: 10px;
    font-size: 16px;
    letter-spacing: .03em;
    background-color: #ffffff;
    border: 1px solid #DEDDDE;
    border-top-color: #D1D1D1;
    border-bottom-color: #BFBFBF;
    cursor: pointer;
    color: var(--clr-red);
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B5020B' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-position: right 8px center;
    background-size: 24px 24px;
    padding-right: 40px;
    background-repeat: no-repeat;
    }    
 

.manufacturergrid {
    position: relative;
    display: grid;
    width: 99%;
    margin: 0 auto;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    align-items: start;
    row-gap: 0;
    column-gap: 0;
    z-index: 2;
    margin-top: 12px;
    border-left: 1px solid #DEDDDE; 
    border-top: 1px solid #DEDDDE; 
}

.manufacturergrid .product {
    padding: 20px;
    position: relative;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 0 0 1px #DEDDDE;
    box-shadow:inset -1px 0 0 #DEDDDE, inset 0 -1px 0 #DEDDDE;
}

 
.manufacturergrid .product .asset {
    display: block;
    clear: both;
    width: 100px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding-top: 12px;
} 
   
.manufacturergrid .product .details {
    display: block;
    padding-top: 5px;
    text-align: center;
} 

.manufacturergrid .product .details .title h3 { 
    margin:  0;
    padding: 0;
}  
    
.manufacturergrid .product .details .title h3 a {
    font-size: 20px;
    line-height: 19px;
    clear: both;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--clr-blue); 
    margin:  0;
    padding: 0;
    text-decoration: none;
}  

.manufacturergrid .product .details .title a:hover {
    color: var(--clr-red);
}

.manufacturergrid .viewproducts {
    display: block;
    margin-top: 12px;
}
       
.manufacturergrid .viewproducts h4 a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none; 
    padding: 2px 0;
    text-transform: uppercase;
    color: var(--clr-red); 
    border-top: 1px solid var(--clr-red);
} 

.manufacturergrid .viewproducts h4 a:hover {
    color: var(--clr-blue); 
}   
    
/* COMPANY OVERVIEW & CATALOG
----------------------------------------------------*/

.changecompanyfilter {
    display: block;
}

.filtergrid {
        position: relative;
    display: grid;
    width: 99%;
    margin: 0 auto;
    grid-template-columns: 84% 15%;
    justify-content: space-between;
    align-items: start;
    row-gap: 0;
    column-gap: 20px;
    z-index: 2;    
    border-bottom: 1px solid #CCD7E2;
}

.filtergrid .pagetitle h1 {
    display: block;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 900;
    color: var(--clr-blue);
    text-align: left;
    padding-bottom: 10px;
}

.filtergrid .pagetitle h1:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    width: 125px;
    margin-left: 25px;
    background-color: var(--clr-red);
}


.allmanufacturers {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0 10px 10px 0;

    }

.allmanufacturers .filter {
    flex: 0 0 auto;
}

.allmanufacturers .filter select {
    padding: 10px;
    font-size: 16px;
    letter-spacing: .03em;
    background-color: #ffffff;
    border: 1px solid #DEDDDE;
    border-top-color: #D1D1D1;
    border-bottom-color: #BFBFBF;
    cursor: pointer;
    color: var(--clr-red);
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B5020B' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-position: right 8px center;
    background-size: 24px 24px;
    padding-right: 40px;
    background-repeat: no-repeat;
    }    
 
.companycontentgrid {   
    position: relative;
    display: grid;
    width: 99%;
    margin: 0 auto;
    grid-template-columns: 84% 15%;
    justify-content: space-between;
    align-items: start;
    row-gap: 0;
    column-gap: 20px;
    z-index: 2;
}

.companycontentgriditem .overview h2 {
    clear: both;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--clr-blue);
    margin: 10px 0 0 0;
    padding: 0;
    width: 95%;
    } 

.companycontentgriditem .overview p {
    clear: both;
    font-size: 18px;
    line-height: 1.5;
    color: #010101;
    font-weight: 400;
    letter-spacing: .02em;
    margin: 0 0 4px 0;
    padding: 0;
    width: 95%;
    }

.companycontentgriditem .divider {
    clear: both;
    display: block;
    height: 1px;
    margin: 20px 0;
    background-color: #CCD7E2;
}

.companycontentgriditem .descritpion h3 {
    clear: both;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--clr-blue);
    margin: 10px 0 0 0;
    padding: 0;
    width: 95%;
    } 
    
.companycontentgriditem .descritpion p {
    clear: both;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #010101;
    margin: 0 0 0 0;
    padding: 0;
    width: 95%;
    } 

.companycontentgriditem.asset {
    display: flex;
    justify-content: center;
}

.assetcontainer {
    margin-top: 10px;
    padding: 20px 50px;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #DEDDDE;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 9px rgba(var(--clr-black-hue), 0.2);
}


.companycataloggrid {}

.companycatalog {
    clear: both;
    width: 85%;
    padding: 25px 0 0 0;
    }    
    
.companyname h3 {
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 700;
    color: var(--clr-blue);
    text-align: left;
    padding-bottom: 10px;
}

.companyname h3:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    width: 105px;
    margin-left: 15px;
    background-color: var(--clr-red);
}

.productlines {
    width: 100%;
    padding: 12px 12px;
    background-color: #FAFAFA;
    border-top: 1px solid #CCD7E2;
    border-bottom: 1px solid #CCD7E2;
    }

.productlinecatfull {
     display: block;
     margin-top: 12px;
}

.productlinecatfullgrid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
    

.productlinecatfull .title h4, .productlinecatsmall .title h4  {
    display: block;
    clear: both;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: var(--clr-blue);
    border-bottom: 1px solid #CCD7E2;
    margin:  8px 0 8px 0;
    padding: 10px 0 8px 0;
    }

.productlinecatsmall {
    display: block;
     margin-top: 12px;
    }

.productlinecatsmallgrid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
    
.productline {
    width: 200px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #DEDDDE;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-sizing:border-box;
    -moz-box-sizing:border-box; /* Firefox */
    margin: 10px;
    padding: 0;
    } 

.catalogcover {
    display: block;
    text-align: center;
    width: 100px;
    height: auto;
    padding: 0;
    margin: 20px auto 10px auto; 
    border: 1px solid #BFBFBF;
    box-shadow: 2px 2px 5px rgba(var(--clr-black-hue), 0.4);
    }

.catalogcover img {
    display: block;
    text-align: center;
    width: 100%;
    }
        
 .catalogtitle a {
     display: block;
     padding: 8px 20px 20px 20px;
     margin: 0;
     color: #D71834;
     font-size: 16px;
     line-height: 16px;
     text-decoration: none;
     }             