*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main_wrapper{
    width: 1400px;
    /* height: 100vh; */
    margin: 30px auto;
    display: flex;
    justify-content: center;
    margin-top: 70px;
    gap: 30px;
}
.per_row.left{
    width: 30%;
}
.per_row.left h2{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.8px;
    line-height: 40px;
    text-transform: none;
}
.per_row.left .item{
    width: 200px;
    display: flex;
    margin: 20px 0;
}
.per_row.left .item .key{
    font-size: 16px;
    font-weight: 700;
    width: 40%;
}
.per_row.left .item .value{
    font-size: 16px;
    width: 60%;
}

.per_row.left .buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.per_row.left .buttons svg{
    width: 25px;
}
.per_row.left .buttons button{
    width: 48%;
    padding: 10px 0;
    display: flex;
    font-size: 10px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    background: none;
    border: 2px solid #000;
}

#download_button a{
    text-decoration: none;
    color: #000;
}
/* .per_row.middle{
    width: 46%;
} */
.per_row.middle .zoom_image_src{
    width: 100%;
    max-width: 100%;
    padding: 10px;
}
.per_row.right{
    width: 23%;
}
.per_row.right img{
    width: 85px;
    height: 85px;
    cursor: pointer;
}
.per_row.right img.active{
    border: 3px solid #000;
}
.per_row.right .furniture, .per_row.right .pattern, .per_row.right .color{
    margin-bottom: 10px;
}
.furniture_image{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.furniture_image img{
    width: 100px;
    height: 100px;
    cursor: pointer;
}
.furniture_image img.active{
    border: 3px solid #000;
}
.per_row.right .pattern_image, .per_row.right .color_image{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-content: flex-start;
}
.per_row.right .pattern h2, .per_row.right .color h2{
    text-align: center;
    margin-bottom: 10px;
    background: #bdbdbd;
    padding: 5px 0px;
}

.pattern_image, .color_image {
    height: 285px;
    overflow-y: scroll;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}


.filter_button{
    display: none;
}
.filter_icon{
    display: flex;
    gap: 5px;
    border: 1px solid #000;
    margin-bottom: 10px;
    width: 78px;
    padding: 5px 10px;
    cursor: pointer;
}


.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    padding-left: 2px;
  }
  
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}

.sidenav a:hover {
color: #f1f1f1;
}

.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}

#mySidenav img{
width: 70px;
height: 70px;
cursor: pointer;
}
#mySidenav h2{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.8px;
    line-height: 40px;
    text-transform: none;
    text-align: center;
    margin-bottom: 10px;
    background: #bdbdbd;
    padding: 5px 0px;
}

.sidenav img.active{
    border: 3px solid #000;
}
.left_side_info{
    display: none;
    padding: 0 5px;
}


.left_side_info h2{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.8px;
    line-height: 40px;
    text-transform: none;
}
.left_side_info .item{
    width: 50%;
    display: flex;
    margin: 7px 0;
}
.info_item{
    display: flex;

}
.left_side_info .item .key{
    font-size: 16px;
    font-weight: 700;
    width: 40%;
}
.left_side_info .item .value{
    font-size: 16px;
    width: 60%;
}

.left_side_info .buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.left_side_info .buttons svg{
    width: 25px;
}
.left_side_info .buttons button{
    width: 48%;
    padding: 10px 0;
    display: flex;
    font-size: 10px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    background: none;
    border: 2px solid #000;
}

#download_button a{
    text-decoration: none;
    color: #000;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .main_wrapper{
        width: 100%;
        margin-top: 10px;
    }
   
    .per_row.left{
        display: none;
    }
    .per_row.right{
        display: none;
    }
    .filter_button{
        display: flex;
        justify-content: center;
    }

    .left_side_info{
        display: block;
    }

}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .main_wrapper{
        width: 100%;
        
    }
   
    .per_row.left{
        display: none;
    }
    .per_row.right{
        display: none;
    }
    .filter_button{
        display: block;
    }
    .left_side_info{
        display: block;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .main_wrapper{
        width: 100%;
    }
   
    .per_row.left{
        display: none;
    }
    .per_row.right{
        display: none;
    }
    .filter_button{
        display: block;
    }
    .zoom_image_src{
        max-width: 100%;
        padding: 10px;
    }

    .filter_button{
        display: block;
    }
    .left_side_info{
        display: block;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .per_row.left .buttons button {
        width: 100%;
        margin-top: 30px;
    }
    .per_row.left{
        display: block;
    }
    .per_row.right{
        display: block;
    }
    .filter_button{
        display: none;
    }


    .left_side_info{
        display: block;
    }

}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .main_wrapper{
        margin: 0px 20px;
    }


    .left_side_info{
        display: none;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .main_wrapper{
        width: 100%;
        margin: 30px auto;
    }
    .per_row.left{
        width: 15%;
    }
    .per_row.left .buttons button {
        width: 100%;
    }
    .per_row.middle {
        width: 29%;
    }
    .per_row.right {
        width: 17%;
    }
    .per_row.middle .zoom_image_src{
        width: 100%;
        /* height: 625px; */
    }

    .left_side_info{
        display: none;
    }
}
@media only screen and (min-width: 1400px) {
    .main_wrapper{
        width: 1400px;
    }
    .per_row.left{
        width: 20%;
    }
    .per_row.left .buttons button {
        width: 48%;
    }
    .per_row.middle{
        width: 46%;
    }
    .per_row.right{
        width: 22%;
    }
}
@media only screen and (min-width: 1500px) {
    .per_row.left{
        width: 30%;
    }
}

