
/* @import url('https://fonts.googleapis.com/css2?family=Aldrich&display=swap'); */

body {
    background: whitesmoke;
}

.flex-container {
    display: flex;
    border: 5px solid whitesmoke; /* Cambiar color del border para ver el flex-container */
    padding: 10px;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
} 

.bloque_general {
    display: flex;
    align-items: flex-start;
    margin:0 auto;
}

@media (max-width:900px){
    
.bloque_general { /*En celu los bloques se caen. */  
    flex-wrap: wrap
} 

}

.imglayout_suc {
    padding: 20px;
    background: whitesmoke;
    box-sizing: border-box;
}

.imglayout_suc img {
    border-radius: 10px;
    width: 100%;
}

.datos {
    flex-direction: column;
    flex:1;
    background: whitesmoke;
    color: black;
    padding: 30px;
}

.datos svg {
    width: 20px;
    height: 20px;
    margin-right: 11px;
    float: left;
    margin-top: -2px;
}

.whatsapp_suc {
    fill: #090;
}

.nombre_suc {
    margin-left: 18px;
    margin-bottom: 25px;
    font-size: 30px;
    width: 100%;
    height: 100%;
    font-weight: 600;
}

.direccion_suc, .horario_suc, .whatsapp_suc {
    margin-left: 0px; /* tenía 12 */
    padding: 20px 5px 20px 20px;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}