

.mediodos{
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    list-style:none;
    max-width: 100%;
    padding: 0;
	margin-top:10px;
	}

.mediodos li{
    box-sizing:border-box;
    overflow: hidden;

    text-align:left;
    font:normal 12px;

    background-color:#ffffff;
    border-radius: 3px;
	box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);

    max-width:570px;
    margin-bottom: 25px;
    padding: 25px;
}

/* Product image */

.mediodos .product-photo{
    float:left;
    display: block;

    text-align: center;
    box-shadow : 0 0 20px 8px #f3f3f3 inset;

    width: 215px;
    height: 200px;
    margin-right: 25px;
    box-sizing: border-box;
}

.mediodos .product-details{
    max-width: 275px;
    float: right;
}

/* Product title */

.mediodos .product-details h2{
    display: block;
    margin:0;
    font: bold 16px ;
    text-overflow:ellipsis;
}

.mediodos .product-details h2 a{
    color: #CD1818;
    text-decoration: none;
}

.mediodos .product-details .product-compare{
    float:right;
    color: #808080;
    text-decoration: none;
    margin-top: 5px;
}

/* Product rating */

.mediodos .product-details .product-rating div{
    display: inline-block;
    width: 80px;
    margin-top: 10px;
}

.mediodos .product-details .product-rating .product-stars{
    display: inline-block;

    color: #f09911;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;

    margin: 0 5px -3px 0;
}

.mediodos .product-details .product-rating .product-stars i{
    margin-right: 2px;
}

.mediodos .product-details .product-rating span a{
    color: #808080;
    text-decoration: none;
}

/* Product description */

.mediodos .product-details .product-description{
    color: #5d5d5d;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;

    margin: 20px 0;
}

/* Product button and price */

.mediodos .product-details button{
    border-radius: 2px;
    background-color:  #87bae1;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    border: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;

    width: 95px;
    height: 32px;
}

.mediodos .product-details .product-price{
    float: right;

    color:  #4e4e4e;
    font-weight: bold;
    font-size: 20px;

    padding-top: 6px;
    margin: 0;
}


@media (max-width: 1279px){
	.mediodos{
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
    list-style:none;
    max-width: 100%;
    padding: 0;

	}
	
	.mediodos li{
    box-sizing:border-box;
    overflow: hidden;

    text-align:left;
    font:normal 12px;

    background-color:#ffffff;
    border:1px solid #dbe3e7;
    border-radius: 3px;
    box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.08);

    max-width:870px;
    margin-bottom: 25px;
    padding: 25px;
}
	
	.mediodos .product-details{
    max-width: 500px;
    float: right;
   } 



	
}


@media (max-width: 900px){
	
	.mediodos .product-details{
    max-width: 280px;
    float: right;
    }
	

	
	}


@media (max-width: 600px){
	.mediodos{
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    list-style:none;
    max-width: 100%;
    padding: 0;
	}
	
	
   .mediodos li{
        max-width:265px;
        margin-left: auto;
        margin-right: auto;
    }

    .mediodos .product-photo{
        float:none;
        margin: 0 0 25px 0;
    }

    .mediodos .product-details{
        float: none;
    }

    .mediodos .product-details .product-description{
        margin-top: 10px;
    }

}

