.clearfloat {
    clear: both;
}

body {
    background-image: url("../images/fondo-pantalla.jpg") ;
    /* background-color:lightgray; */
    background-size:cover;
    background-position: center;
}

a {
    text-decoration: none;
}

/* HEADER */
header{
    width: auto;
}

main {
    min-height: 800px;
}

/* MENU */
/*
nav{
    height: 35px;
    border-bottom: 1px solid black;
    line-height: 35px;
}

nav ul{
    margin-left: 10px;
}

nav ul li{
    display: inline;
    margin: 10px;
}
*/

#pathview {
    color: white;
    font-style: italic;
    font-size: 18px;
}

/* PANTALLA PRINCIPAL */    

/*
#div-lista-clientes {
    width: 20%;
}
*/

.main-tarjetas {
    width: 150px;
    height: 75px;
    float: left;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 75px;
    overflow: hidden;
}

#div-clientes-atributos {
    background-color: rgba(9, 11, 14, 0.6);
    overflow: hidden;
    padding: 0;
    border-radius: 5px;
    width: 50%;
    float: left;
    padding: 10px;
    border: 1px solid red;
}

#tabla-atributos{
    width: 95%;
}

#div-clientes-modelos {
    /*background-color: #eeeeee;*/
    background-color: rgba(119, 136, 153, 0.6);
    width: 50%;
    float: left;
    margin: auto;
}

#div-detalle-modelos {
    background-color: rgba(119, 136, 153, 0.6);
    /*width: 100%;*/
    margin: 10px;
    padding: 5px;
}

.lista-menu{
    min-width: 165px;
}

footer{
    background-color: black;
    color:yellowgreen;
    text-align: center;
    line-height: 30px;
}

/*
.imagen-fondo-ppal {
    min-height: 900px;
    background-image: url("../images/fondo-pantalla.jpg") ;
    background-color: #cccccc;
    background-repeat: no-repeat;
}
*/

#menu-clientes li:hover{
    background-color:lightgreen;
}


#div-centrar {
		/*position: absolute;*/
		/*nos posicionamos en el centro del navegador*/
		top:50%;
		/*left:20%;*/
		/*determinamos una anchura*/
		width:70%;
		/*indicamos que el margen izquierdo, es la mitad de la anchura*/
		/*margin-left:-100px;*/
		/*determinamos una altura*/
		height:200px;/*indicamos que el margen superior, es la mitad de la altura*/
		/*margin-top:-150px;*/
		/*border:1px solid #808080;*/
        padding:5px;
        background-color: rgba(119, 136, 153, 0.6);
        margin:auto;
}

.titulo-seccion {
    text-align: center;
    font-size: 30px;
    color: whitesmoke;
}

/*  Tarjetas de Modelo */
.tarjetasmodelo {
    width: 150px;
    height: 100px;
    /*--background-color: lightblue;--*/
    float: left;
    border-radius: 0 15px 0 15px;
    margin: 10px 15px;
    box-shadow: 5px 5px #f2f2f2;
    padding: 5px;
    text-align:  center;
    margin-top: 10px;
}

.tarjetasmodelo h3 {
    font-size: 18px;
}

.tarjeta-clases {
    background-color: rgba(119, 136, 153, 0.5);
    width: 185px;
    height: 110px;
    /*background-color: white;*/
    float: left;
    margin: 5px 5px;
    padding: 5px;
    text-align:  center;
    /*margin-top: 10px;*/
    /*overflow : auto;*/
}

.tarjeta-clases:hover{
    border: 2px solid grey;
}

.tarjeta-clases h3 {
    font-size: 18px;
}

.tarjeta-clases h4 {
    font-size: 10px;
    text-align: right;
}

.tarjeta-clases-icono{
    height: 45px;
    /*width: 50px;*/
}

.tarjeta-clases-div-inferior{
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 8px;
}

.tarjeta-clases2 {
    width: 200px;
    height: 100px;
    background-color: white;
    float: left;
    margin: 10px 10px;
    padding: 5px;
    text-align:  center;
    font-style: italic ;
    /*overflow : auto;*/
}

.tarjeta-clases2 h3 {
    font-size: 16px;
}

.tarjeta-clases2 h4 {
    font-size: 12px;
    text-align: right;
    display: block;
}

.tarjeta-clases2-icono{
    height: 45px;
    /*width: 50px;*/
}

.tarjeta-clases2:hover{
    border: 2px solid grey;
}

.form-datos{
    background-color: rgba(119, 136, 153, 0.5);
    color: white;
    margin: 10px;
    padding: 10px;
}

/* ------------------------------------------------------------------------------
   Media Querys
   ------------------------------------------------------------------------------
*/
@media ( max-width:600px ){
    #div-clientes-atributos {
        margin: 15px;
        max-width: 95%;
    }
    
    #div-clientes-atributos table {
        width: 100%;
    }
    
    #div-clientes-modelos {
        max-width: 100%;
    }
}

