body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

#container {
  height: 100%;
  width: 100%;

}
.building {
    width: 601px;
    height: 620px;
    background: url("building-full.jpg") no-repeat;
    background-color: #333333;
    background-size: 100% auto;

}

    .building svg {
        mix-blend-mode: multiply;
    }



#product-wall {
  fill: none;
}

#product-roof {
    fill: none;
}
#product-trim {
    fill: none;
}

.colors-wall {
    display: flex;
    position: relative;
    left: 0em;
    z-index: 3;
    padding:2px;
}

.colors-roof {
    display: flex;
    position: relative;
    left: 0em;
    z-index: 3;
    padding: 2px;
}

.colors-trim {
    display: flex;
    position: relative;
    left: 0em;
    z-index: 3;
    padding: 2px;
}

.color-wall {
    height: 28px;
    width: 55px;
    border-radius: 10px;
    border: 2px solid #cccccc;
    cursor: pointer;
}
.color-roof {
    height: 28px;
    width: 55px;
    border-radius: 10px;
    border: 2px solid #cccccc;
    cursor: pointer;
}

.color-trim {
    height: 28px;
    width: 55px;
    border-radius: 10px;
    border: 2px solid #cccccc;
    cursor: pointer;
}
#product-svg {
    position: relative;
    z-index: 2;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    mix-blend-mode: multiply;
}

#background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}


h4 {
    color: #010338;
    margin-bottom: 1px;
    font-size: 12px;
}
/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #010338;
}

.tab1 {
    overflow: hidden;
    background-color: none;
}

.color {
    float: left;
    border: none;
    outline: none;
    text-align: center;
    padding: 4px 0;
    transition: 0.3s;
    font-size: 13px;
    font-weight: bold;
    width: 33.33%;
}



/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 0;
    transition: 0.3s;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    width: 33.33%;
}

    /* Change background color of buttons on hover */
    .tab button:hover {
        background-color: #1c1f6a;
    }

    /* Create an active/current tablink class */
    .tab button.active {
        background-color: #1c1f6a;
    }

/* Style the tab content */
.tabcontent {
    display: none;
    margin: 0 50px;
}