#overwrapper
{
    min-width:500px;
    min-height:500px;
    text-align: center;
}

#gridwrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.product {
    position: relative;
    display: inline-block;
    border:2px solid #aaa;
    width:100%;
    height:100px;
    min-width:350px;
    min-height:350px;
    background-color: #efefffaa;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product::after {
    content: "";
    border-radius: 5px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product:hover {
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.01, 1.01);
}

.product:hover::after {
    opacity: 1;
}

.image_container
{
    position: relative;
    vertical-align: middle;
    display: inline-block;
    height:250px;
    width:350px;
}

.product_img
{
    padding-top:10px;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.product_infos
{
    padding: 10px;
    white-space: nowrap;
}

.product_title
{
    margin:0 auto;
    font-size: 1.5em;
    color:#444;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_price
{
    margin:0 auto;
    padding-top:10px;
    font-size: 1.5em;
    color:#222;
}

.currency
{
    position: relative;
    top: -.5em;
    font-size: 12px;
}

.product_link
{
    display: inline-block;
    border-radius:4px;
    width:100%;
    height:100%;
}


.product_price
{
    margin:0 auto;
    padding-top:10px;
    text-decoration:none;

}

.price_number{
    font-size: .7em;
    color:#003300;
}

.reduc{
    color:#006600;
}

.currency
{
    position: relative;
    top: -.5em;
    font-size: 12px;
}

.strikethrough
{
    text-decoration:line-through;
    color:#771100
}

