@charset "UTF-8";
/* Procesar con sass mediante el comando
sass --watch sondeo/medellin.scss:sondeo/static/sondeo.css
*/
/*
   Plantilla base SCSS.
   Marco Romera Corral. 2016-07-21. 2017-05-18
*/
/*
 * Footer resuelto con flexbox (CSS3)
 * https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
 * https://css-tricks.com/snippets/css/a-guide-to-flexbox/
 * http://www.w3schools.com/css/css3_flexbox.asp
 */
@import url(node_modules/font-awesome/css/font-awesome.min.css);
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column; }

@media print {
  body {
    display: block;
    /* firefox prints only first page if display flex is used */ } }

main.content {
  flex: 1; }

#footer {
  display: block; }

/*
 * Tipografías y colores
 */
body {
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  margin: 0; }

h1 {
  font-size: 2.25em; }

h2 {
  font-size: 2.251 0.5em; }

h3 {
  font-size: 2.251 0.3125em; }

h4 {
  font-size: 2.251 0.125em; }

h5 {
  font-size: 2.251em; }

input, button {
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%; }

* {
  box-sizing: border-box; }

/*
 * Dimensiones y distribución del espacio
 */
main.content {
  margin: auto;
  width: 80%;
  max-width: 90em;
  padding: 1em; }

@media (max-width: 860px) {
  main.content {
    width: 100%; } }

#footer {
  background-color: #2a2730;
  color: #99979c;
  padding: 1em; }

section {
  margin-top: 1.5em;
  margin-bottom: 1.5em; }

/* Grid de columnas */
/**
 * Botones y enlaces tipo boton
 */
button, a.boton:link, a.boton:visited {
  background-color: #008CBA;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  border: none;
  /*display: inline-block;*/ }

a.secondary {
  background-color: #ddd;
  border: none;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none; }

button:hover, button:active, a.boton:hover, a.boton:active {
  background-color: #20ACEA;
  color: white; }

.botones {
  padding: 10px 0 10px 0; }

.botones a {
  margin: 4px 3px; }

/**
 * Formularios
 */
table.form th {
  text-align: right;
  padding-right: 1em; }

.errorlist {
  color: #B00;
  font-weight: bold;
  list-style-type: none;
  margin: 0;
  padding: 0; }

.has-error input {
  border-color: #a94442;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; }

input {
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
  font-size: 14px;
  height: 2.4em;
  padding: 6px 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s; }

input[type="checkbox"] {
  height: 1rem;
  width: auto;
  vertical-align: middle;
  display: inline-block; }

input[type="file"] {
  border: 0;
  box-shadow: none;
  height: auto; }

textarea {
  display: block;
  width: 100%; }

.form-group {
  /*display: inline-block;*/
  vertical-align: bottom;
  padding: 0 0.7em 0 0.7em;
  margin: 5px 0 5px 0;
  margin-right: -4px; }

.form-group label {
  display: inline-block; }

select {
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 90%;
  height: 2.1rem;
  display: block;
  width: 13rem;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  color: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s; }

select[multiple] {
  height: auto; }

/**
 * Barra de navegación
 */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #eee; }

nav li {
  float: left;
  border-right: 1px solid #bbb; }

nav li a {
  display: block;
  color: #555;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none; }

/* Change the link color to #111 (black) on hover */
nav li a:hover {
  filter: brightness(1.2);
  color: #333; }

/* paneles */
/* tablas de listado de campos */
table.campos {
  width: 100%;
  padding: 20px; }
  table.campos th {
    text-align: right;
    padding-right: 1em;
    text-align: top; }
  table.campos th, table.campos td {
    border-bottom: 1px solid #bbb; }
  table.campos tr {
    line-height: 2.2em; }

/* avisos */
.alert {
  color: #8a6d3b;
  background-color: #fcf8e3;
  padding: 20px;
  border-color: #faebcc;
  border-radius: 4px;
  border: 1px solid transparent;
  margin-top: 1em;
  margin-bottom: 1em; }

/* Tabla con listado de datos */
table.listado {
  margin: 20px 0 20px 0;
  width: 100%; }

table.listado > thead > tr > th {
  border-bottom: 2px solid #333;
  margin: 0; }

table.listado, td {
  text-align: center;
  vertical-align: top; }

table.listado tr {
  height: 2.5rem; }

.listado.numbers td {
  text-align: center;
  vertical-align: middle; }

table.listado.numbers tr {
  height: 1.7rem; }

/*@media screen and (max-width: 640px) {
	table.listado {
		overflow-x: auto;
		display: block;
	}
}*/
/* Labels */
.label {
  display: inline-block;
  padding: .25em .40em;
  font-size: 75%;
  font-weight: 700;
  color: #fff;
  border-radius: .25rem;
  text-align: right; }

.label-success {
  background-color: #5CB85C; }

.label-warning {
  background-color: #F0AD4E; }

.label-error {
  background-color: #D9534F; }

.banner {
  padding: 8px;
  border: 2px solid red; }

/*
   Plantilla paginador SCSS.
   Jose Froylan Malaga Cardoza. 2018-03-21
*/
nav.paginador {
  height: 34px; }

nav.paginador ul {
  height: 100%;
  list-style-type: none;
  border: 2px solid #ddd;
  border-right: 0;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  background-color: white;
  display: inline-block; }

nav.paginador li {
  height: 100%;
  width: 40px;
  border-right: 2px solid #ddd;
  display: inline-block; }

nav.paginador a {
  height: 100%;
  width: 100%;
  padding: 12%; }

nav.paginador a.pagina_actual {
  background-color: #008CBA;
  color: white;
  height: 100%;
  width: 100%;
  padding: 12%; }

/*
.form-group {
    display: inline-block;
    vertical-align: bottom;
    padding: 0 0.7em 0 0.7em;
    margin: 5px 0 5px 0;

}

nav li a:hover {
 */
/*
  border: 2px #ddd;
  border-style: solid;
 */
/*
section#dpsh {
display: flex;
flex-wrap: wrap;
}

section#dpsh dl {
// flex-basis: 20em;
flex: 1 1 20em;
min-width: 10em;
max-width: 30em;
}
section#dpsh div#mapa {
width: 1%;
}
*/
#id_zone, #id_hemisphere {
  width: 6em; }

button#locate {
  margin: 0.5em;
  vertical-align: bottom; }

section#dpsh dl {
  display: inline-block;
  max-width: 20em;
  vertical-align: top;
  margin: 0 0.5em 0 0.5em; }

.table-chart {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 1em; }

.table-chart > * {
  flex: 1 1 auto; }

table.numbers.listado {
  max-width: 200px;
  margin: 0; }

.chart {
  max-width: 500px;
  min-width: 300px; }

form td {
  vertical-align: bottom; }

textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 92%; }

#user-navbar {
  float: right; }

.data {
  border: 2px solid #bce8f1;
  border-radius: 0.4em;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  margin: 1.4em 0 1.4em 0; }
  .data h3 {
    background: #D9EDF7;
    color: #31708f;
    padding: 0.7em;
    margin: -0.5rem -0.5rem 0.5rem -0.5rem;
    border-radius: 0.25em 0.25em 0 0; }

a {
  color: #1d0ebd;
  text-decoration: none; }

a:visited {
  color: #105b9b; }

a:hover {
  text-decoration: underline; }

a.secondary2, button.secondary2 {
  background-color: white;
  border: 2px solid #008CBA;
  color: #008CBA;
  padding: 8px 20px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none; }

a.secondary2:hover, button.secondary2:hover {
  filter: brightness(1.2);
  text-decoration: none;
  cursor: pointer; }

a.secondary:hover {
  color: #333;
  background-color: #eee;
  text-decoration: none; }

nav.navbar a:hover {
  color: #008CBA !important; }

.dropdown-content {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  background-color: #eee;
  opacity: 0.8;
  right: 0rem; }

.dropdown:hover .dropdown-content {
  display: block;
  text-align: right; }

#user-dropdown {
  border-right: 0px;
  border-left: 1px solid #bbb; }

#user-link:hover {
  text-decoration: none; }

.news {
  border-right: 0px; }

.prev_hide:hover, .h-u-button:hover, .new_form:hover {
  cursor: pointer;
  text-decoration: underline; }

.prev_hide2:hover {
  cursor: pointer;
  text-decoration: underline; }

h3.h-u-button {
  margin-top: -1.1rem; }

section.data p {
  display: inline-block;
  vertical-align: top;
  margin: 0.5em; }

/* colapsable (sin javascript, usando elemento input */
.collapsible-content {
  display: none; }

.wrap-collapsible input[type='checkbox'] {
  display: none; }

.lbl-toggle {
  cursor: pointer;
  display: block;
  font-size: 1.17em;
  font-weight: 700;
  background: #D9EDF7;
  color: #31708f;
  padding: 0.7em;
  margin: -0.5rem -0.5rem 0.5rem -0.5rem;
  margin-top: -0.5rem;
  border-radius: 0.25em 0.25em 0 0; }

.lbl-toggle:hover {
  color: #178bd0; }

.lbl-toggle::before {
  content: ' ';
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);
  transition: transform .2s ease-out; }

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px); }

.toggle:checked + .lbl-toggle + .collapsible-content {
  /* para usar animaciones se puede usar esto, pero siempre que el contenido
     no supere la altura de la ventana del navegador */
  /* max-height: 100vh; */
  display: block; }

dt {
  font-weight: bold; }

table.listado > tbody > tr:hover > td, table.listado > tbody > tr:hover > th {
  background-color: #eee; }

table.listado > tbody > tr > td {
  vertical-align: top;
  border-top: 2px solid #eee; }

table.listado .thumbnail {
  vertical-align: middle;
  height: 185px; }

table.table-left th, table.table-left td {
  text-align: left; }

tr.deshabilitado {
  text-decoration: line-through; }

/* login forms */
@media (min-width: 767px) {
  #loginform {
    width: 50%; } }

h3.data_search div {
  margin-top: 1rem; }

h3.searchpanel a {
  margin-bottom: -0.3rem;
  color: #008CBA; }

h3.searchpanel {
  margin: -0.3rem -0.3rem -0.3rem -0.3rem;
  background: #F4F4F4;
  margin: -8px;
  border-radius: 5px; }

h3.searchpanel a:hover {
  text-decoration: none;
  filter: brightness(1.2); }

section.filtro {
  padding: 0.5rem; }

form.filter div {
  display: inline-block;
  margin: 4px;
  vertical-align: top; }

.data3 {
  border-bottom: 2px solid #ddd;
  margin: 0.5em 0 0.5em 0; }

a.open, a.close {
  float: left;
  padding-right: .7em; }

a.close {
  display: none; }

ul.tree {
  list-style-type: none;
  line-height: 1.8em; }

td.action {
  text-align: center; }

td.realnumber {
  text-align: right; }

#change {
  font-size: 0.90em; }

#scroll-list {
  height: 200px;
  overflow: auto;
  background-color: #FFFFFF; }

.navbar {
  position: relative;
  width: 100%;
  z-index: 2; }

.navbar_sondeo_form {
  display: none; }

@media (max-width: 630px) {
  span.text {
    display: none; }
  h2.name {
    display: none; } }

div.navbar_sondeo_form {
  overflow: auto;
  background-color: #eee; }

div.navbar_sondeo_form a {
  display: inline-block;
  text-align: center;
  padding: 14px;
  text-decoration: none; }

div.parameters div {
  display: inline-block; }

img.link {
  border-radius: 4px;
  padding: 5px;
  height: 150px;
  width: 150px; }

img.minimgnl {
  padding: 5px;
  width: 200px; }

img.thumbnail {
  padding: 5px;
  width: 80px; }

img.link:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5); }

.nuevaimg {
  display: none; }

.data ul {
  list-style-position: inside; }

div.parameters {
  display: flex; }

div.rmr div {
  display: inline-block;
  white-space: nowrap; }

div.delete-row, div.first, div.disconti, div.discontipar {
  display: block !important;
  margin: 0.5em 0em 0.5em 1em; }

div.delete-row2 {
  padding-top: 1em;
  display: block !important; }

div.rqd {
  display: block;
  margin-left: 8px;
  white-space: nowrap; }

div.rqd div {
  display: inline-block; }

label.fecha {
  width: 9em; }

.prof {
  width: 12em; }

.expandrmr {
  margin-right: 1rem; }

.data4 {
  display: inline-flex; }

.hide2 div {
  display: inline-block; }

.hide2 div.sondeo_form input {
  width: 8.3rem;
  font-size: 89%; }

.hide3 div.sondeo_form input {
  width: 8.3rem;
  font-size: 89%;
  background-color: #30d5c8; }

div.colored input {
  background-color: #D9EDF7; }

b.colored4 {
  color: #333; }

@media (max-width: 624px) {
  div.navbar_sondeo_form {
    white-space: nowrap; } }

.enter textarea {
  display: initial; }

dl.data4 {
  border-bottom: 2px solid #eee;
  margin-top: -1em; }

.ensayos div {
  display: inline-block; }

.ensayos div div input {
  width: 6rem; }

div.tipoens select {
  width: 14rem;
  max-width: 14rem; }

div.hidemed select {
  width: 6rem; }

/* Tabla con listado de datos */
table.listado2 {
  margin: 20px 0 20px 0;
  width: 100%; }

table.listado2 > tbody > tr > td {
  border-top: 1px solid #ddd; }

table.listado2 td {
  text-align: center; }

.listado2 td {
  border-collapse: collapse;
  border: 1px solid #eee; }

.listado2 th {
  border-collapse: collapse;
  border: 1px solid #eee; }

.listado2 {
  border-collapse: collapse;
  border: 2px solid #eee; }

.bigline {
  border-bottom-style: groove;
  border-bottom-color: darkgray;
  border-bottom-width: 2px; }

#datos h3 {
  display: flex; }

div.blueviolet div label {
  color: #008CBA; }

.sondeo_form a {
  color: #008CBA; }

.low-header {
  margin-top: 1rem;
  margin-left: 1rem; }

.lado {
  float: right; }

main.content {
  margin-top: -1rem; }

.top-margin {
  margin-top: 4rem; }

table.sondetalle {
  border-collapse: collapse; }

table.sondetalle th {
  border: 1px solid #eee;
  padding: 5px; }

table.sondetalle td {
  border: 1px solid #eee; }

table.sondetalle tbody tr:nth-child(odd) {
  background-color: #eee; }

table.note {
  margin: 1em auto 1em auto;
  text-align: center; }

table.note th {
  border-bottom: 1px solid grey; }

table.note td {
  padding: 0.2em 1em; }

.space {
  margin: 2rem 0 2rem 0; }

.align-left {
  text-align: left; }

.justify {
  text-align: justify; }

#warning-message {
  display: hidden;
  background-color: #ad673466; }

.right {
  text-align: right !important; }

.left {
  text-align: left !important; }

table.table-user td:nth-child(7), table.table-user th:nth-child(7) {
  text-align: center; }

a.boton-table, div.boton-table {
  background-color: #008CBA;
  color: white;
  padding: 2px 4px;
  text-align: center;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  border: none;
  max-width: 8rem;
  margin: 0.5em 0em 0.5em 1em; }

a.boton-table:hover, div.boton-table:hover {
  text-decoration: none;
  filter: brightness(1.2); }

i.fa-plus-circle {
  vertical-align: middle; }

label.required:after {
  content: "*"; }

label.required {
  font-weight: bolder; }

div.datossondeo {
  display: inline-block;
  vertical-align: top;
  margin-left: 1rem; }

div.datossondeo div {
  display: inline-block;
  vertical-align: top;
  padding: 3px; }

/*table.sondeotable input[type="number"] {
  max-width: 5.5rem; }

div.datossondeo input[type="number"], div.data input[type="number"] {
  width: 9rem; }

table.sondeotable {
  width: 10%; }*/
table.sondeotable td {
  vertical-align: top; }

table.sondeotable tr:nth-child(even) > td > input, table.sondeotable tr:nth-child(even) > td > select {
  background-color: #eee; }

.calicata {
  border: 2px solid #bce8f1;
  border-radius: 0.4em;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  margin: 1.4em 0 1.4em 0; }
  .calicata h3 {
    background: #D9EDF7;
    color: #31708f;
    padding: 0.7em;
    margin: -0.5rem -0.5rem 0.5rem -0.5rem;
    border-radius: 0.25em 0.25em 0 0; }

table.calicatatable {
  width: 10%; }

table.calicatatable td {
  vertical-align: top; }

table.calicatatable tr:nth-child(even) > td > input, table.calicatatable tr:nth-child(even) > td > select {
  background-color: #eee; }

div.datoscalicata {
  display: inline-block;
  vertical-align: top;
  margin-left: 1rem; }

div.datoscalicata div {
  display: inline-block;
  vertical-align: top;
  padding: 3px; }

/* Fotos Calicata */
div.fotos > div {
  display: inline-block;
  padding: 0px 20px 30px 0px;
  vertical-align: top;
  text-align: center; }

div.fotos a {
  display: block; }

/* */
div#error-message p {
  background-color: #D9534F;
  color: white; }

p.error {
  color: #ff6262;
  font-weight: bold; }

.error h3 {
  color: #B00;
  font-weight: bold;
  list-style-type: none;
  /*@include errorlist;*/ }

dl.different {
  padding: 7px;
  margin: 0px -8px 0px -8px; }

div.fake-table {
  display: grid; }

div.fake-table dl:nth-child(even) {
  background-color: #eee; }

dl.different div {
  display: inline-table; }

section#ensayos div.data2 > dl {
  margin: 0.25em -0.5em 0em -0.5em;
  padding: 0.5em; }

section#ensayos div.data2 dl:nth-child(even) {
  background-color: #eee; }

a.iconrmr {
  background-color: #008CBA;
  color: white;
  padding: 2px 4px;
  margin: 6px 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px; }

div.ensayos div > div > input {
  width: 6.5rem; }

div#rqd {
  min-width: 48rem; }

section.datos {
  overflow: auto; }

section#rmr {
  margin: 0 !important;
  padding: 0 !important; }

section#rmr div.data2 > dl:nth-child(even) {
  background-color: #eee; }

div.sondeo_form {
  vertical-align: top; }

section#rmr div.data2 {
  overflow: auto; }

div#docform div.mediainp {
  margin: 0px -8px;
  padding: 0px 10px;
  vertical-align: top; }

div#docform input[type="file"] {
  display: block;
  width: 15rem; }

div#fotoformset div.row {
  margin: 0px 10px 10px 0px;
  padding: 5px;
  min-width: 15rem;
  max-width: 24rem;
  display: inline-block;
  vertical-align: top; }

div#docform div.mediainp:nth-child(even), div#fotoformset div.row:nth-child(even) {
  background-color: #eee; }

@media (max-width: 534px) {
  div#fotoformset input[type="file"] {
    width: 18rem; } }

@media (max-width: 750px) {
  .text750 {
    display: none; } }

@media (max-width: 420px) {
  .text420 {
    display: none; } }

@media (max-width: 590px) {
  .text590 {
    display: none; } }

div#mapa {
  height: 250px;
  width: 90%;
  display: inline-block; }

div#yourmap {
  position: sticky !important; }

#get_coords {
  display: none; }

form.formasbutton {
  margin: 4px 3px; }

form.formasbutton button,
form.formasbutton div,
form.formasbutton p {
  display: inline-block; }

form.formasbutton div, form.formasbutton p {
  padding: 0 5px 0 5px;
  margin: 0;
  vertical-align: middle; }

#imgformset {
  display: block; }

#imgformset > div.imgform {
  padding: 1rem;
  border: 1px solid black;
  margin-bottom: 1rem;
  vertical-align: top; }

#imgformset > div.imgform > div.divdata {
  display: inline-block;
  max-width: 100%;
  vertical-align: top; }

#imgformset > div.imgform > div.divimg {
  display: inline-block;
  padding: 0 15px 0 0;
  vertical-align: top; }

#imgformset > div.imgform > div.divdata input[type="text"] {
  /*  width: 500px;*/
  max-width: 100%; }

input[readonly] {
  background-color: #ddd !important; }

svg.chart text {
  fill: #333;
  font-size: 15px; }

g.tick text {
  font-size: 10px; }

rect.svg_graph_control {
  fill: #008CBA;
  width: 3rem;
  height: 3rem; }

rect.rmrb {
  fill: #962150; }

rect.rmrs {
  fill: #9C7FBA; }

.values_info {
  background: #eee;
  box-shadow: 0 0 5px #999999;
  color: #333;
  display: none;
  font-size: 18px;
  left: 130px;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 95px;
  z-index: 10; }

tr.rmr_basic_box_end {
  border-bottom: 2px solid #ccc; }

/*# sourceMappingURL=sondeo.css.map */
.element-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap; }

.element-container .element-link {
  margin: 0 0 15px 0;
  outline: 0;
  width: 380px;
  text-decoration: none;
  color: #105b9b; }

.element-container .title {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #bce8f1;
  padding: 0 6px; }

.element-container .details {
  font-size: 15px;
  padding: 11px 5px;
  border-left: 1px solid #bce8f1;
  border-right: 1px solid #bce8f1; }

.element-container .element-link:hover .details {
  border-left: 3px solid #bce8f1;
  border-right: 3px solid #bce8f1;
  padding: 11px 3px; }

.element-container p {
  margin: 0;
  padding: 5px 0; }

.element-container .graphics {
  font-size: 15px;
  padding: 11px 5px;
  border-left: 1px solid #bce8f1;
  border-right: 1px solid #bce8f1;
  border-bottom: 1px solid #bce8f1;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px; }

.element-container .element-link:hover .graphics {
  border-left: 3px solid #bce8f1;
  border-right: 3px solid #bce8f1;
  border-bottom: 3px solid #bce8f1;
  padding: 11px 3px;
  padding-bottom: 9px; }

.work-intensity {
  display: flex;
  justify-content: space-evenly;
  font: 10px sans-serif;
  text-align: center;
  color: white;
  margin-bottom: 10px; }

/* Definition lists for key/value pairs in detail views */
dl.keyvalue {
  /* con flexbox */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* con CSS grid:
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    */
  /*
    border: 2px solid #008cba;
    padding: 10px;
    border-radius: 5px;
    */ }

dl.keyvalue div {
  display: inline-block;
  flex: 1 1 auto; }

.keyvalue dd {
  margin-left: 0; }

/* Definition lists with CSS griid for key/value pairs in detail views */
dl.keyvalue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

dl.keyvalue-grid div {
  background-color: deepPink; }

/* tabla reorganizada como inline-blocks */
table.keyvalue-tb {
  border: 2px solid #008cba;
  padding: 0.5em;
  border-radius: 5px; }

.keyvalue-tb tr {
  background-color: deepPink;
  display: inline-block;
  flex: 1 1 auto; }

.keyvalue-tb td, .keyvalue-tb th {
  display: block;
  text-align: left; }

.keyvalue-tb td {
  margin-left: 1em; }
