/*************** ALINEACIONES *************************/

.derecha{
    text-align: right;
}

.izquierda{
    text-align: left;
}

.centrar{
    text-align: center;
}

.centrado{
    display: block;
    margin: 0 auto;
}

.justificar{
    text-align: justify;
}

.flotar-derecha{
    float: right;
}

.flotar-izquierda{
    float: left;
}

/*************** tamaños *************************/

.texto-xs{
    font-size: 0.8rem;
}

.texto-s{
    font-size: 0.9rem;
}

.texto-m{
    font-size: 1.1rem;
}

.texto-l{
    font-size: 1.2rem;
}

.texto-xl{
    font-size: 1.3rem;
}

/*************** ESTILOS DE TEXTO *************************/

.tachado{
    text-decoration: line-through;
}

.negrilla{
    font-weight: bold;
}


/*************** POSICIONES *************************/

.relativo{
    position: relative;
}

.absoluto{
    position: absolute;
}

/*************** IMAGENES *************************/

.img-res-ancho{
    width: 100%;
    height: auto;
}