/* estilos del widget de productos destacados del catalogo */
#productos_destacados{ border: 2px solid #EE8164; border-radius: 0; overflow: hidden; padding: 15px; margin: 15px 0;}

#productos_destacados .top_bloque div.titulo{ font-size: 24px; font-weight: bold; color: #EE8164; text-decoration: underline; text-transform: uppercase;}

#productos_destacados .cuerpo_bloque {
    align-items: inherit;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
#productos_destacados div.elemento {
    float: left;
    margin: 10px 1%;
    position: relative;
    width: 23%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
}
#productos_destacados a{}
#productos_destacados div.imagen{ width: 100%; }
#productos_destacados div.imagen img{ width: 100%;}
#productos_destacados div.enlace {
    color: #707070;
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0;
    padding: 5px;
}
#productos_destacados div.descripcion{ display:none}
#productos_destacados div.caja_compra { float: left; width: 100%; display: flex; align-items: center; justify-content: space-around; flex-flow: wrap;}
#productos_destacados div.caja_compra div.precio{ float: left; width: 150px; font-size: 22px; font-weight: bold; color: #EE8164; text-align: center;}
#productos_destacados div.caja_compra div.precio .glyphicon-eur { font-size: 90%;}
#productos_destacados div.caja_compra div.precio div.precio_anterior{float: left; width: 100%; color: #707070; font-size: 14px;  font-weight: normal; display: flex; justify-content: center;}
#productos_destacados div.caja_compra div.precio div.descuento {
    background: #707070 none repeat scroll 0 0;
    border-radius: 10px;
    color: #ffffff;
    float: right;
    padding: 0 7px;
    margin-left: 2px;
    text-align: center;
}
#productos_destacados div.caja_compra .boton_compra { float: right; display: inline-flex; }
#productos_destacados div.caja_compra .boton_compra > a{ 
    text-align:center; 
    float: left; 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    border: 2px solid #EE8164;
    color: #EE8164; 
    font-weight: bold;
    border-radius: 0;
}
#productos_destacados div.caja_compra .boton_compra > a:hover { opacity: 0.7; }

@media(max-width: 1200px) {  
    #productos_destacados div.elemento { width: 29.3%; margin: 10px 2%}
}

@media(max-width: 992px) {      
}

@media(max-width: 768px) {    
    #productos_destacados div.elemento { width: 46%; margin: 10px 2%}    
}

@media(max-width: 480px) {       
    #productos_destacados div.elemento { width: 96%; margin: 10px 2%} 
}