
#products_container{
    display:grid;
    max-width:1400px;
    margin:20px auto 0 auto;
    position:relative;
    overflow-y: unset;
    overflow-x: unset;
    /* grid-template-columns: 25% 25% 25% 25%; */
}
#products_container .notfound{
    position:absolute;
    width: 100%;
    box-sizing: border-box;
}   
#vendre_container .header_img img{
    width:100%;
    height:auto;
}
#vendre_container .main-content{
    text-align: center;
    padding-top:0 !important;
    position: relative;
}
#vendre_container .main-content .close_container{
    text-align: right;
    padding:0 10px !important;
    position: absolute;
    width:100%;
    top:10px;
    box-sizing: border-box;
}
#vendre_container .main-content .close_container img{
    width:17px;
    height:17px;
    padding:10px;
}
#vendre_container .main-content .h2{
    font-weight:bold;
    margin-bottom:5px;
}
#vendre_container .text_container{
    padding:10px 10px 25px 10px;
    max-width:600px;
    margin:auto;
}
#vendre_container .btn_container{
    text-align:center;
}
#vendre_container .btn_container a{
    padding:7px 15px;
    background-color:#000;
    color:#fff;
    display: inline-block;
    text-decoration: none;
    margin-top:25px;
    margin-bottom:5px;
}
@media screen and (min-width:1220px){
    #products_container{
        grid-template-columns: calc(100%/5) calc(100%/5) calc(100%/5) calc(100%/5) calc(100%/5);
    }
}

@media screen and (min-width:1000px) and (max-width:1219px){
    #products_container{
        grid-template-columns: 25% 25% 25% 25%;
    }
}

@media screen and (min-width:700px) and (max-width:999px){
    #products_container{
        grid-template-columns: calc(100%/3) calc(100%/3) calc(100%/3);
    }
}

@media screen and (min-width:400px) and (max-width:699px){
    #products_container{
        grid-template-columns: 50% 50%;
    }
}

@media screen and (max-width:399px){
    #products_container{
        grid-template-columns: 100%;
    }
}


@media screen and (max-width:700px){
    #products_container{
        padding:0 0 40px 0;
        margin-top:40px;
    }
    #products_container .notfound{
        padding:0 10px;
    }
    #vendre_container .main-content .h2{
        font-size:20px;
    }
    #vendre_container .main-content .txt{
        font-size:14px;
    }
    #vendre_container .btn_container a{
        font-size:14px;
    }
    #vendre_container .btn_container a + div u{
        font-size:14px;
    }
}