:root {
  --active-brightness: 0;
  --border-radius: 0px;
  --box-shadow: 2px 2px 10px;
  --color-accent: #c9b87e;
  --color-bg: #ffffff;
  --color-bg-secondary: #e1e1e1;
  --color-bg-especial: #2d2d2d;
  --color-link: #c8b77d;
  --color-link: #c1ad6c;
  --color-secondary: #cabd94;
  --color-secondary-accent: #920de90b;
  --color-shadow: #f4f4f4;
  --color-shadow: #ffffff00;
  --color-table: #fff;
  --color-text: #303030;
  --color-text-secondary: #999;
  --color-scrollbar: #999;
  --font-family: Helvetica, sans-serif;
  --hover-brightness: 1.1;
  --justify-important: center;
  --justify-normal: left;
  --line-height: 1.5;
  --width-card: 285px;
  --width-card-medium: 460px;
  --width-card-wide: 800px;
  --width-content: 920px;
  --color-verde: #0e9149;
  --color-rojo: red;
  --color-disabled: #bcbcbc;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  min-height: 100vh;
    -webkit-text-size-adjust: 100%; /* Safari, Chrome, Edge */
    text-size-adjust: 100%;         /* Firefox y futuros navegadores */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  line-height: var(--line-height);
  margin: 0 auto;
  overflow-x: hidden;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 3rem 1rem 0rem 1rem;
  width: 100%;
}

main {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 0rem 1rem 3rem 1rem;
  width: 100%;
}

footer {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 3rem 1rem;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

footer p {
  margin: 0rem;
}

hr {
  background-color: var(--color-bg-secondary);
  border: none;
  height: 1px;
  margin: 4rem 0;
  width: 100%;
}

section {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--justify-important);
}

section img,
article img {
  max-width: 100%;
}

section pre {
  overflow: auto;
}

section aside {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  margin: 1rem;
  padding: 1.25rem;
  width: var(--width-card);
}

section aside:hover {
  box-shadow: var(--box-shadow) var(--color-bg-secondary);
}

[hidden] {
  display: none;
}

/* Headers */
article header,
div header,
main header {
  padding-top: 0;
}

header {
  text-align: var(--justify-important);
}

header a b,
header a em,
header a i,
header a strong {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/*header nav img {
  margin: 1rem 0;
}*/

section header {
  padding-top: 0;
  width: 100%;
}

/* Nav */
/*nav {
  align-items: center;
  display: flex;
  font-weight: 200;
  justify-content: space-between;
  margin-bottom:  3rem;
  padding-right: 10px;
  height: 30px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 0.5rem;
  position: relative;
  text-align: left;
}*/

/* Nav Dropdown */
/*nav ul li:hover ul {
  display: block;
}

nav ul li ul {
  background: var(--color-bg);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: none;
  height: auto;
  left: -2px;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 1.7rem;
  white-space: nowrap;
  width: auto;
  z-index: 1;
}

nav ul li ul::before {

  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

nav ul li ul li,
nav ul li ul li a {
  display: block;
}*/

/* Typography */
code,
samp {
  background-color: var(--color-accent);
  border-radius: var(--border-radius);
  color: var(--color-text);
  display: inline-block;
  margin: 0 0.1rem;
  padding: 0 0.5rem;
}

details {
  margin: 1.3rem 0;
}

details summary {
  font-weight: /*bold*/ 200;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height);
  text-wrap: balance;
  /**/
  font-weight: 400;
  /**/
}

h1 {
  font-size: 1.4rem;
}

.app-h1-fake {
  font-size: 1.4rem;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 1rem;
  /*line-height: 1.1rem;*/
}

mark {
  padding: 0.1rem;
}

ol li,
ul li {
  padding: 0.2rem 0;
}

p {
  margin: 0.75rem 0;
  padding: 0;
  width: 100%;
  /**/
  font-weight: 400;
  font-size: 0.9rem;
  /*line-height: 1rem; /**/
}

pre {
  margin: 1rem 0;
  max-width: var(--width-card-wide);
  padding: 1rem 0;
}

pre code,
pre samp {
  display: block;
  max-width: var(--width-card-wide);
  padding: 0.5rem 2rem;
  white-space: pre-wrap;
}

small {
  color: var(--color-text /*-secondary*/);
  /**/
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 0.7rem;
  /**/
}

sup {
  background-color: var(--color-secondary);
  border-radius: var(--border-radius);
  color: var(--color-bg);
  font-size: xx-small;
  font-weight: /*bold*/ 200;
  margin: 0.2rem;
  padding: 0.2rem 0.3rem;
  position: relative;
  top: -2px;
}

/* Links */
a {
  color: var(--color-link);
  display: inline-block;
  font-weight: /*bold*/ 400;
  text-decoration: /*underline*/ none;
}

a:hover {
  filter: brightness(var(--hover-brightness));
  color: grey !important;
}

a:active {
  filter: /*brightness(var(--active-brightness))*/ none;
  -webkit-filter: /*brightness(var(--active-brightness))*/ none;
}

a b,
a em,
a i,
a strong,
button,
input[type="submit"] {
  border-radius: var(--border-radius);
  display: inline-block;
  font-size: medium;
  font-weight: /*bold*/ 200;
  line-height: var(--line-height);
  margin: 0.5rem 0;
  padding: 0.5rem 2rem;
  /**/
  min-width: 212px;
  /**/
}

button,
input[type="submit"] {
  font-family: var(--font-family);
}

button:hover,
input[type="submit"]:hover {
  cursor: pointer;
  filter: brightness(var(--hover-brightness));
}

button:active,
input[type="submit"]:active {
  filter: brightness(var(--active-brightness));
}

a b,
a strong,
button,
input[type="submit"] {
  background-color: var(--color-link);
  border: 2px solid var(--color-link);
  color: var(--color-bg);
}

a em,
a i {
  border: 2px solid var(--color-link);
  border-radius: var(--border-radius);
  color: var(--color-link);
  display: inline-block;
  padding: 1rem 2rem;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

article aside a {
  color: var(--color-secondary);
}

/* Images */
figure {
  margin: 0;
  padding: 0;
}

figure img {
  max-width: 100%;
}

figure figcaption {
  color: var(--color-text-secondary);
}

.img {
  border: /*1px*/ 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: block;
  /*max-width: var(--width-card-wide);
	min-width: var(--width-card);*/
  max-width: none;
  min-width: none;
  margin: auto;
  text-align: center;
  background-color: #fff;
}

/* Forms */
button:disabled,
input:disabled {
  background: var(--color-bg-secondary);
  border-color: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  cursor: not-allowed;
}

button[disabled]:hover,
input[type="submit"][disabled]:hover {
  filter: none;
}

form {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: block;
  /*max-width: var(--width-card-wide);
  min-width: var(--width-card);*/
  max-width: none;
  min-width: none;
  padding: 3rem 2rem 3rem 2rem;
  text-align: var(--justify-normal);
  margin: auto;
  text-align: center;
  background-color: #fff;
}

form header {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}
/*
.app-form-contacto {
  padding: 3rem 3rem 0rem 3rem;
  width: 100%;
  text-align: center;
}*/

.app-form-buscar {
  padding: 3rem 3rem 2rem 3rem;
  width: 100%;
  text-align: center;
  /*border: 1px solid transparent;*/
}

/*
.app-form-contacto-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0px !important;
  margin: 0px;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}*/
/*
.app-form-contacto-campo {
  border: none;
  outline: none;
  padding: 5px 0px !important;
  margin: 0px 0px 10px 0px !important;
  display: inline-block;
  background-color: transparent;
  vertical-align: baseline;
  border-bottom: 3px solid var(--color-link);
  text-align: center;
  font-size: 0.9rem;
  flex: 1;
  min-width: 180px;
  height: 39px;
  position: relative;
}*/
/*
.app-form-contacto-campo:focus {
  background-color: transparent;
  border-bottom: 3px solid var(--color-link);
}

.app-form-contacto-campo:valid {
    border-bottom: 3px solid #0e9149;
}*/
/*
.app-form-transparente {
	border: 0px solid var(--color-bg-secondary);
	border-radius: none;
	box-shadow: none;
	display: block;
    max-width: none;
	min-width: none;
	padding: 0px;
	text-align: var(--justify-normal);
	margin: auto;
	text-align: center;
	background-color: transparent;
	-webkit-border-radius: none;
	-moz-border-radius: none;
	-ms-border-radius: none;
	-o-border-radius: none;
}*/

label {
  font-size: 0.8rem;
  max-width: none;
}

input,
select,
textarea {
  display: block;
  font-size: inherit;
  max-width: /*var(--width-card-wide)*/ none;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  font-weight: /*bold*/ 200;
  position: relative;
  top: 1px;
}

input[type="range"] {
  padding: 0.4rem 0;
}

input,
select,
textarea {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  margin-bottom: /*1rem*/ 0px;
  padding: 0.4rem 0.8rem;
  /**/
  font-weight: 400;
  /**/
}

/**/
select {
  margin-bottom: 1rem;
  height: 35.6px;
  appearance: none; /* Para navegadores modernos */
  -webkit-appearance: none; /* Para Safari */
  -moz-appearance: none; /* Para Firefox */
  background: transparent; /* Para eliminar el fondo */
  border: 1px solid #ccc; /* Borde opcional */
  padding: 8px 12px; /* Espacio interno */
}

select:disabled {
  background-color: #f0f0f0 !important; /* Color de fondo para el select deshabilitado */
  color: #999; /* Color del texto */
  border: 1px solid #ccc; /* Borde del select */
  cursor: not-allowed; /* Cambia el cursor para indicar que está deshabilitado */
  opacity: 0.6; /* Opacidad para dar un efecto de deshabilitado */
}

/**/

/**/
input,
textarea {
  background-color: #fffbe6;
}
/**/

input[type="text"],
/**/
input[type="number"],
input[type="file"],
input[type="select"],
input[type="date"],
/**/
textarea {
  /*width: calc(100% - 1.6rem);*/
  /**/
  width: 100%;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  /**/
}

input[readonly],
textarea[readonly] {
  background-color: var(--color-bg-secondary);
}

label {
  font-weight: /*bold*/ 200;
  margin-bottom: 0.2rem;
}

/* Popups */
dialog {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 999;
}

/* Tables */
table {
  /*border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  border-spacing: 0;
  display: inline-block;
  max-width: 100%;
  overflow-x: auto;
  padding: 0;
  white-space: nowrap;*/
  border: 0px solid #000;
  border-radius: 0px;
  width: 100%;
  overflow: hidden;
  white-space: unset;
}

table td,
table th,
table tr {
  padding: /*0.4rem 0.8rem*/ 0.2rem 0.4rem;
  text-align: /*var(--justify-important)*/ var(--justify-normal);
  /**/
  vertical-align: top;
  /**/
}

table thead {
  background-color: var(--color-table);
  /*border-collapse: collapse;
  border-radius: var(--border-radius);*/
  color: /*var(--color-bg)*/ var(--color);
  /*margin: 0;
  padding: 0;*/
}

table thead tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius);
}

table thead tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius);
}

table thead th:first-child,
table tr td:first-child {
  text-align: var(--justify-normal);
}

table tr:nth-child(even) {
  background-color: /*var(--color-accent)*/ var(--color-table);
  /**/
  border-top: 1px solid #000;
  /**/
}

/* Quotes */
blockquote {
  display: block;
  font-size: x-large;
  line-height: var(--line-height);
  margin: 1rem auto;
  max-width: var(--width-card-medium);
  padding: 1.5rem 1rem;
  text-align: var(--justify-important);
}

blockquote footer {
  color: var(--color-text-secondary);
  display: block;
  font-size: small;
  line-height: var(--line-height);
  padding: 1.5rem 0;
}

/* Scrollbars */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-scrollbar) transparent;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-scrollbar);
  border-radius: 10px;
}

/* ----------------- */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* ----------------- */

.app-body {
  background-image: url("../img/inmonoia-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  /*min-height: 2300px;*/
}

.app-body-blur {
  background-image: url("../img/inmonoia-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  /*min-height: 2300px;*/
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.app-landing-h1 {
  margin: 1rem auto 2rem auto;
  padding-top: 6rem;
  font-size: 2.5rem;
  line-height: 2.8rem;
  font-weight: bold;
  text-align: center;
  /*text-transform: uppercase;*/
}

.app-landing-h2 {
  margin: 1rem auto 2rem auto;
  padding-top: 6rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: bold;
  text-align: center;
}

.app-landing-p {
  margin: 0 auto 2rem auto;
  text-align: center;
  /*border-left: 1px solid var(--color-bg-secondary);
  border-right: 1px solid var(--color-bg-secondary);*/
  padding: 0 0.75rem;
  font-size: 1rem;
  max-width: 635px;
}

.app-landing-p + .app-landing-p {
  margin-top: -0.8rem;
}

.app-landing-boton {
  background-color: black;
  color: #ffffff !important;
  border-color: black;
  margin: 0.5rem /*0*/;
  padding: 1rem 3rem;
  font-size: 1rem;
  /*letter-spacing: 0.05rem;*/
  min-width: 300px;
  font-weight: 300;
}

.app-landing-boton-blanco {
  background-color: #fff !important;
  color: black;
  border-color: black;
  margin: 0.5rem /*0*/;
  padding: 1rem 3rem;
  font-size: 1rem;
  /*letter-spacing: 0.05rem;*/
  min-width: 300px;
  font-weight: 300;
  border-width: 3px;
}

.app-landing-boton-negro {
  background-color: black !important;
  color: #fff;
  border-color: black;
  margin: 0.5rem /*0*/;
  padding: 1rem 3rem;
  font-size: 1rem;
  /*letter-spacing: 0.05rem;*/
  min-width: 300px;
  font-weight: 300;
  border-width: 3px;
}

.app-landing-boton-especial {
  background-color: var(--color-link);
  color: #000;
  border-color: var(--color-link);
  margin: 0.5rem /*0*/;
  padding: 1rem 3rem;
  font-size: 1rem;
  /*letter-spacing: 0.05rem;*/
  min-width: 300px;
  font-weight: 300;
  border-width: 3px;
}

.app-landing-boton-especial:hover {
}

.app-user-boton-panel {
  background-color: #fff;
  color: var(--color-link) !important;
  /*border: 1px solid var(--color-bg-secondary);*/
  border-radius: var(--border-radius);
  margin: 0.5rem /*0*/;
  padding: 0rem 1rem 1rem 1rem;
  min-width: 124px;
}

.app-form-ficha {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
  text-align: left;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: none;
  max-width: none;
  min-width: none;
  padding: 4rem 3rem 3rem 3rem;
  margin: auto;
  text-align: left;
}

.app-form-ficha > *:not(hr) {
  flex: 1;
}

.app-form-ficha-documento {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  /*background-color: #fff;*/
  text-align: left;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: none;
  max-width: none;
  min-width: none;
  /*padding: 4rem 3rem 3rem 3rem;*/
  padding: 3rem 3rem 1.5rem 3rem;
  margin: auto;
  text-align: left;
}

.app-form-ficha-documento:hover {
  background-color: rgb(249, 249, 249);
}

.app-form-ficha-blog {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  /*background-color: #fff;*/
  text-align: left;
  /*border: 1px solid var(--color-bg-secondary);*/
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  box-shadow: none;
  max-width: none;
  min-width: none;
  /*padding: 4rem 3rem 3rem 3rem;*/
  padding: 0rem 3rem 3rem 3rem;
  margin: auto;
  text-align: left;
}

.app-form-ficha-blog-portada {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.app-form-ficha-blog-h2 {
  text-align: left;
  margin: 1rem auto 2.5rem auto;
  padding-top: 1rem;
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: bold;
}

.app-form-ficha-documento-fila-superior {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  column-gap: 3rem;
}

.app-form-ficha-documento-div-superior {
  flex: 1;
  text-align: center;
  min-width: 300px;
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-form-ficha-documento-div-inferior {
  width: 100%;
  text-align: center;
}

.app-form-seccion {
  border: 1px solid lightgray;
  padding: 2rem;
  width: 100%;
}

.app-mapa-menu {
  border: 1px solid var(--color-bg-secondary);
  border-top: 0px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  padding: 0.1rem;
  width: 100%;
}

.app-width-card-wide {
  max-width: var(--width-card-wide);
}

.app-ficha-lista-activa {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  background-color: #ff000015;
}

.app-ficha-lista-cerrada {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  background-color: #00ff0015;
}

/* COLORES */

.app-color-negro {
  color: black;
}

.app-color-blanco {
  color: white;
}

.app-color-gris {
  color: #434343;
}

.app-color-rojo {
  color: red;
}

.app-color-verde {
  color: green;
}

.app-color-link {
  color: var(--color-link);
}

.app-color-desactivado {
  pointer-events: none;
  color: var(--color-text-secondary);
  cursor: not-allowed;
}

.app-color-disabled {
  color: var(--color-disabled);
}

/* ******* */

.app-separador {
  border: none;
  padding: 2rem 0;
  width: 100%;
}

.app-separador-mini {
  border: none;
  padding: 1rem 0;
  width: 100%;
}

.app-form-login {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 2rem 2rem 1rem 2rem;
  text-align: left;
  margin: auto;
}

.app-form-login h1 {
  font-size: 1.5rem;
}

.app-form-login label {
  margin: 0px;
  padding: 0px;
}

.app-form-login input[type="email"],
.app-form-login input[type="password"] {
  min-height: 40px;
  margin: 0px;
  margin-bottom: 0.6rem;
}

.app-form-login input[type="submit"] {
  width: 100%;
}

/* BOTONES */

.app-boton {
  border: 2px solid var(--color-link);
  border-radius: var(--border-radius);
  display: inline-block;
  font-size: medium;
  font-weight: 400;
  line-height: var(--line-height);
  margin: 0.5rem 0;
  padding: 0.5rem 2rem;
  min-width: 212px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.app-fondo-blanco {
  background-color: #fff !important;
}

.app-fondo-rojo {
  background-color: #e74c3c !important;
}

.app-fondo-verde {
  background-color: #0e9149 !important;
}

.app-fondo-azul {
  background-color: #28aee7 !important;
}

.app-fondo-gris {
  background-color: #fff !important; /* Puedes cambiarlo si deseas otro color */
}

.app-fondo-especial {
  background-color: #2d2d2d !important;
}

.app-fondo-dorado {
  background-color: var(--color-link) !important;
}

.app-borde-blanco {
  border-color: #fff !important;
}

.app-borde-rojo {
  border-color: #e74c3c !important;
}

.app-borde-verde {
  border-color: #0e9149 !important;
}

.app-borde-azul {
  border-color: #28aee7 !important;
}

.app-borde-gris {
  border-color: #434343 !important;
}

.app-borde-negro {
  border-color: #000 !important;
}

.app-borde-especial {
  border-color: #2d2d2d !important;
}

.app-boton-desactivado {
  pointer-events: none;
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-bg-secondary) !important;
  color: var(--color-text-secondary);
  cursor: not-allowed;
}

.app-boton-rojo {
  background-color: #e74c3c !important;
  color: #fff !important;
  border-color: #e74c3c !important;
}

.app-boton-verde {
  background-color: #0e9149 !important;
  color: #fff !important;
  border-color: #0e9149 !important;
}

.app-boton-azul {
  background-color: #fff !important;
  color: #28aee7 !important;
  border-color: #28aee7 !important;
}

.app-boton-gris {
  background-color: #fff !important;
  color: #434343 !important;
  border-color: #434343 !important;
}

.app-boton-blanco {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #434343 !important;
}

.app-boton-especial {
  background-color: var(--color-link);
  color: #000;
  border-color: var(--color-link);
  flex: 1;
}

/* ----------------- */

.app-w100 {
  width: 100%;
  display: revert;
}

.app-w100c {
  width: calc(100% - 1.6rem);
}

.app-w75 {
  width: 74% !important;
}

.app-w50 {
  min-width: 48%;
  max-width: 48%;
}

.app-w30 {
  min-width: 32%;
  max-width: 32%;
}

.app-w30-px {
  min-width: 150px;
  width: 32%;
}

.app-w25 {
  width: 23% !important;
}

.app-w20 {
  width: 18% !important;
}

.app-h50 {
  height: 50vh;
}

.app-h75 {
  height: 75vh;
}

.app-h100 {
  height: 100vh;
}

.app-mw {
  max-width: 600px;
}

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

.app-center {
  text-align: center !important;
}

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

.app-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  /*min-width: 100%;*/
  width: 100%;
  /*background-color: #fff;*/
  text-align: left;
}

.app-flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.app-flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-formulario {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  box-shadow: none;
  padding: 0 0.8rem;
  /*width: calc(100% - 1.6rem);*/
  /*height: 30px;*/
  min-height: 100px;
  overflow-y: scroll;
  resize: vertical;
  background-color: #fffbe6;
}

.app-ficha-documento {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  box-shadow: none;
  padding: 0 0.8rem;
  /*width: calc(100% - 1.6rem);*/
  /*height: 30px;*/
  min-height: 100px;
  overflow-y: scroll;
  resize: vertical;
  background-color: #fffbe6;
}

.app-input-uo {
  font-weight: 100;
  margin-bottom: 0.3rem;
  padding: 0.3rem;
  /*max-width: calc(100% - 1.6rem);*/
  height: 15px !important;
}

.app-textarea-uo {
  font-weight: 400;
  border: 1px solid var(--color-bg-secondary);
  margin-bottom: 0rem;
  padding: 0.4rem 0.8rem;
}

.app-no-decoration {
  text-decoration: none;
}

.app-form-hr {
  background-color: var(--color-bg-secondary);
  border: none;
  height: 1px;
  margin: 2.5rem 0;
  width: 100%;
}

.app-h40 {
  height: 40px;
}

.app-table-inline {
  display: inline-table;
}

.app-mensajes {
  max-width: var(--width-card-wide);
  margin: auto;
  /*padding: 0 2rem;*/
  text-align: left;
  border-left: 1px solid var(--color-bg-secondary);
  border-right: 1px solid var(--color-bg-secondary);
  line-height: 1rem;
  background-color: #fff;
  color: var(--color-link) !important;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);

  padding: 1rem;
}

.app-portada-notas-resumen {
  width: 100%;
  /*min-height: 24.7cm;*/
  /*overflow: hidden;*/
  /*background-color: rgb(240, 240, 240);*/
  font-weight: 100;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  margin-bottom: 5mm;
  text-align: justify;
  /*border: 1px solid #eee;*/
}

.app-portada-notas-resumen > small {
  margin-bottom: 1rem;
}

.app-portada-texto-grande {
  max-width: 15cm;
  font-size: 20pt;
  font-weight: 400;
  margin-top: 30pt;
  margin-bottom: 30pt;
  line-height: 25pt;
}

.app-portada-texto-mediano {
  font-size: 12pt;
  font-weight: 400;
  margin-bottom: 10pt;
  line-height: 12pt;
}

.app-portada-texto-pequeño {
  font-size: 10pt;
  font-weight: 100;
  margin-bottom: 5pt;
}

.app-oculto {
  display: none;
}

.app-visible {
  display: inline;
}

iframe {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: block;
  width: 100%;
  height: 380px;
  padding: 0px;
  text-align: var(--justify-normal);
}

.app-foto {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
}

.app-popup {
  min-width: 300px;
}

.app-popup-title {
  padding-right: 0.5rem;
}

.app-popup-items {
  text-align: left;
  vertical-align: text-top;
}

.app-popup-hr {
  margin-top: 10px;
}

.app-map-w100-h100 {
  width: 100%;
  height: 100%;
}

.app-404 {
  font-size: 8rem;
  font-weight: bold;
}

.app-precio-numero {
  font-size: 8rem;
  font-weight: bold;
}

.app-precio-letra {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 0px;
}

.folium {
  color: lightred;
  color: red;
  color: darkred;
  color: lightblue;
  color: blue;
  color: darkblue;
  color: cadetblue;
  color: lightgray;
  color: gray;
  color: black;
  color: beige;
  color: orange;
  color: lightgreen;
  color: green;
  color: darkgreen;
  color: pink;
  color: purple;
  color: darkpurple;
}

.app-mayusculas {
  text-transform: uppercase;
}

.app-lead-alquiler {
  background-color: lightgrey;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-lead-venta {
  background-color: gray;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-lead-alquilerventa {
  background-color: black;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-colab-Proyectos {
  background-color: #d051b7;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-colab-MT,
.app-colab-MO,
.app-colab-PC {
  background-color: #593869;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-inmueble-alquiler {
  background-color: #bbf970;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-inmueble-venta {
  background-color: #72af26;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-inmueble-alquilerventa {
  background-color: #718224;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-testigo-venta {
  background-color: #f3952f;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-testigo-alquiler {
  background-color: #ffca91;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-incidencia-leve {
  background-color: #ff8e7f;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-incidencia-grave {
  background-color: #d63e2a;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-incidencia-muygrave {
  background-color: #a03336;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-entrada-informacion {
  background-color: #87d9ff;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-entrada-opinion {
  background-color: #36a7d9;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-entrada-aviso {
  background-color: #0064a0;
  color: white;
  padding: 2px 4px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.app-footer-principal p small {
  color: white;
}

@media (max-width: 768px) {
  .app-body,
  .app-body-blur {
    background-image: none;
  }

  #privacy-policy {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 2rem 3rem 1rem 3rem;
    z-index: 1000;

    border: 1px solid #fff !important;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow) var(--color-shadow);
    isolation: isolate;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  header {
    padding: 2rem 1rem 0rem 1rem;
  }

  /* nav a {
    
    font-size: 1.5rem;

  }*/

  /*nav {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin-bottom: 2rem;
  }

  nav a.logo {
    align-self: flex-start;
    margin-bottom: 1rem;
  }*/

  .app-visible {
    display: none;
  }

  .app-landing-h1 {
    margin: 1rem auto 2rem auto;
    padding-top: 3rem;
    font-size: 2.5rem;
    line-height: 2.8rem;
    font-weight: bold;
    text-align: center;
  }

  .app-landing-p {
    padding: 0;
  }

  .app-footer-principal p small {
    color: black;
  }

  form {
    border: 0px;
  }
  /*
  .app-form-contacto {
    padding: 2rem 2rem 2rem 2rem;
    width: 100%;
    text-align: center;
  }*/
  /*
  .app-form-contacto-row a,
  .app-form-contacto-row a input {
    width: 100%;
  }*/
}

.app-bold {
  font-weight: bold;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

#privacy-policy {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 527px;
  background-color: #f1f1f1;
  text-align: center;
  padding: 2rem 3rem 1rem 3rem;
  z-index: 1000;

  border: 1px solid #000;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
.contacto-info {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}*/
