.guttercontent{
max-width: 90%;
margin: 0 auto;
}

.cwjdsjcs_not_editable{
max-width: 100%;
}

/* Merging Gutter Pages */

body,html{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-size:18px;
}
img{
    width:100%;
}
p{
    padding:0;
    margin: 0;
}
.highlight{
    font-weight:700;
}
.images{
    text-align: center;
}
.content{
    max-width:80%;
    margin:0 auto;
}
.content h2{
    position: relative;
    display: inline-block;
    margin-left:35px;
}
.content h2::after{
    content:"";
    position: absolute;
    top:50%;
    left:-35px;
    height:2px;
    width:30px;
    background-color: #000;
}
.maincontent{
    max-width:100%;
    padding: 0 !important;
    margin:0;
}
.maincontent_wrapper{
    padding-top:0;
}
.hero{
    max-height:30vw;
    overflow: hidden;
    display: grid;
    /* align-items: center; */
    text-align: center;
    /* justify-content: center; */
}
#hero-image{
    grid-row:1/2;
    grid-column:1/2;
}
#hero-title{
    grid-row:1/2;
    grid-column:1/2;
    margin-top: 15%;
    color:#fff;
}
.grid-9010{
    display:grid;
    grid-template-columns: .9fr .1fr;
    margin:30px 0;
}
.grid-flex{
    display:flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;

}
.grid-1090{
    display:grid;
    grid-template-columns: .1fr .9fr;
}
div[class*="container"]{
    max-width:1600px;
    margin:0 auto;
    padding:3%;
}
.product-image img{
    width:15vw;
    max-width:300px;
    min-width:200px;
    margin-right:30px;
}
.section6{
    padding:5% 0 0;
    margin:0 auto;
}
.sec6-header{
    max-width:1200px;
    margin:0 auto;
    text-align: center;
}
.sec6-grid{
    display:grid;
    grid-template-columns: 1fr 1.25fr;
    max-width:1650px;
    margin:0 auto;
}
#commercial{
    max-width:1100px;
    margin:50px auto;
    text-align: center;
}
.color{
    background: url('/imageserver/Reusable/custom-bilt22/half-round-desat.png');
    background-position:center;
    background-size:50%;
    min-height:20vw;
    background-repeat:no-repeat;
    text-align: center;
}
#selected-color-title{
    font-size:1.5rem;
}
#selected-color{
    color:#A37A14;
    min-width:200px;
    display:inline-block;
    text-align:left;
}
.color-overlay{
    height:100%;
    mix-blend-mode:overlay
}
.colors-list{
    padding:0 0 30px 10px;
    align-self:center;
    display:flex;
    flex-wrap:wrap;
    justify-content: flex-start;
}
span.color-item{
    display:inline-block;
    height:50px;
    width:90px;
    border:1px solid #000;
}
.color-item-group{
    display:flex;
    flex-direction: column;
    width:100px;
    margin:5px 0;
    /* text-align: center; */
    justify-items: center;
    align-items:center;
}
.color-title{
    font-size:.8rem;
}
.color-type{
    font-weight:600;
}

@media screen and (max-width:992px) {
    .sec6-grid{
        display:block;
    }
    .color{
        background-position:center;
        background-size:40%;
        min-height:30vw;
    }
    .color-overlay{
        min-height:30vw;
    }
    .grid-9010{
        display:block;
    }
    .grid-1090{
        display:block;
    }
}
@media screen and (max-width:600px) {
    #hero-title{
        font-size:1.2rem;
    }
}

.product{
display: flex;
flex-direction: column;
align-items: center;
margin: 30px 0;
}

.product-image{
text-align: center;
}


/*** New Gutter Color Picker Styles ***/
.light{
    color:#fff;
}

.color-picker-section {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    padding:2%;
}
.my-header{
    text-align: center;
    margin-block:2%;
}

#color-picker-grid {
    display: grid;
    max-width: 600px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

#roof-desat {
    grid-column: 1/2;
    grid-row: 1/2;
}

#roof-overlaySvg {
    grid-column: 1/2;
    grid-row: 1/2;
    background-color: #f2f3ec;
    height: 100%;
    width: 100%;
    mix-blend-mode: overlay;
    z-index: 2;
    /* filter: brightness(.7); */
}

#house {
    grid-column: 1/2;
    grid-row: 1/2;
    z-index: 3;
    filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
}

.color-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.color-box {
    margin: .2em auto;
    height: 95px;
    width: 95px;
    border: 1px solid #000;
}

.color-item {
    position: relative;
    /* text-align: center; */
    max-width:95px;
    margin-block:10px;
cursor: pointer;
}

.color-title {
    position: absolute;
    bottom:8px;
    left:5px;
    font-size:14px;
    /* text-align: center; */
    margin:0 auto;
    opacity:0;
    /* display: none; */
    transition:.3s;
}

#selected-color {
    font-weight: 400;
}

.color-item:hover .color-title {
    opacity: 1;
    transition:.3s;
}
@media screen and (max-width:1200px) {
    .color-picker-section{
        display:block;
    }
}