.product_view_page{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*width: 100%;*/
    /*justify-content: space-between;*/
    /*margin-top: 5vh;*/
    justify-items: center;
    align-content: flex-start;
    margin:5vh auto;
    /*background-color: yellow;*/
    gap: 5px;
    /*width: 1000px;*/
}
/*.product-filter{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    !*width: 20%;*!*/
/*    max-width: 300px;*/
/*}*/
.product-list{
    display: flex;
    flex-direction: row;
    gap: 5px;
    flex-wrap: wrap;
    /*width: 78%;*/
    margin-top: 10px;
}
.show-div-block{
    display: flex;
}
.header-control{
    background: linear-gradient(127deg, #0066b2, #E6F2F9, #FFFFFF, #0066b2);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 5px;
    padding:5px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .product_view_page{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        margin-top: 5vh;
    }
    .product-filter{
        display: none;
        flex-direction: column;
        width: 100%;
        min-width: 300px;
    }
    .product-list{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
    }
}