body {
    font-family: "Arimo";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
}

.encabezado {
    background-color: rgb(219, 216, 216);
    width: 100%;
    padding: 40px 15px;
    padding-top: 15px;
    margin: 0;
    margin-bottom: 30px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

h1 {
    text-align: start;
    padding-right: 10px;
    font-size: 45px;
}

.vinculo {
    text-align: end;
}

.info {
    background-color: rgb(219, 216, 216);
    max-width: 390px;
    padding: 20px;
    margin-left: 20px;
    border-width: 1px;
    border-color: black;
    border-style: solid;
    flex: 1 1 250px;
    min-width: 0;
    
}

.info2 {
    max-width: 800px;
    text-align: center;
    font-size: 18px;
    background-color: rgb(236, 234, 234);
    padding: 30px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

span {
    font-size: 40px;
    font-weight: bold;
}

.contenedor {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

h2 {
    
    background: linear-gradient(rgb(197, 195, 86), transparent );
    width: 100%;
    padding: 25px 5px;
    margin: 0;
    text-align: center;
    border-style: solid;
    border-color: rgb(197, 195, 86);
}

.formulario {
    background-color: rgb(241, 241, 241);
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: flex;
    flex-direction:column;
    padding: 20px;
    font-weight: 400;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-color: gray;
    border-width: 1px;
}

.horizontal {
    display: flex;

}

.subtitle {
    margin: 20px 0;
    font-weight: 300;
}

input {
    width: 130px;
    height: 40px;
    text-align: center;
    font-size: 20px;
}

.valorCredito {
    width: 210px;
}

#calcular {
    margin: 30px 0 20px 10px;
    width: 220px;
    height: 70px;
    font-size: 20px;
    padding: 10px;
    
}

.tabla {
    border-style: solid;
    width: 100%;
    justify-content: center;
    table-layout: fixed;
    border-collapse: collapse;
}

.little {
    width: 65px;
}

th {
    border-style: solid;
    border-color: black;
    border-width: 4px;
    background-color: rgb(221, 219, 112);
}

td {
    border-style: solid;
    border-color: black;
    border-width: 2px;
    text-align: center;
    height: 25px;
}

.linea-par {
    background-color: rgb(230, 229, 200);
}

tr:hover {
    background-color: aquamarine;
    color:black;
}

.seleccionado {
    background-color: rgb(68, 155, 68);
    font-weight: 700;
    color: white
}