/*MANSONRY*/

.masonry { /* Masonry container */
    column-count: 4;
    column-gap: 1em;
}

.item {  /*Masonry bricks or child elements */
    /*background-color: #eee;*/
    display: inline-block;
    margin: 0 0 1em;
    width: 100%;
}


.wrapperImg {
    width: 95%;
    margin: 0 auto;
}

.masonry {
    /*margin: 1.5em 0;*/
    padding: 0;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: .85em;
}

.item {
    display: inline-block;
    /*background: #fff;*/
    /*padding: 1em;*/
    margin: 0 0 1.5em;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*box-shadow: 2px 2px 4px 0 #ccc;*/
    border-radius: 10px 10px 10px 10px;
    /*background-color: rgba(255, 255, 255, 1);*/
    position: relative;
    text-align: center;
}

.item img{
    width: auto;
    height: auto;
    border-radius: 10px 10px 10px 10px;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.8);
}

.item .detailsProd{
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
    vertical-align: middle;
    border-radius: 10px 10px 10px 10px;
    /*background: rgba(0,0,0,0.8);*/
    position: absolute;
    width: 100%;
    background: rgba(44, 25, 14, 0.5);
}

.item .infoIcon{
    height: 20px;
    position: relative;
    top: 30px;
    left: 10px;
}

.item .infoCont{
    text-align: left;
}

.item .infoProdContainer{
    position: relative;
    top: 20px;
    width: 100%;
    margin: 0 auto;
}

.item .buttonProdContainer{
    text-align: center;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    margin: 0 auto;
    border-radius: 0px 0px 10px 10px;
}

.qtyplus, .qtyminus{
    position: relative;
    top: 5px;
    cursor: pointer;
}

.qtyplus{
    /*padding-right: 5px;*/
}

@media only screen and (min-width: 300px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 400px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (min-width: 700px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (min-width: 900px) {
    .masonry {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

@media only screen and (min-width: 1100px) {
    .masonry {
        -moz-column-count: 5;
        -webkit-column-count: 5;
        column-count: 5;
    }
}