* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* colores letra tabla */
.madera-color {
  color: rgb(139, 107, 30);
}
.vino-color {
  color: rgb(151, 52, 168);
}
.marmol-color {
  color: rgb(129, 129, 129);
}
.cristal-color {
  color: rgb(63, 189, 211);

}
.azufre-color {
  color: rgb(182, 194, 45);

}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  background-image: url(../img/vintage-concrete.png);
  color: rgb(91, 46, 2);
  transition: .3s;
}
header {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 125px;
}
header a {
  text-decoration: none;
  color: rgb(91, 46, 2);
  padding: 3px 8px;
  display: inline-block;
  font-size: 1.5em;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: .3s;
}
header a:hover {
  transition: .3s;
  color: rgba(0, 26, 255, 0.9);
}
nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  color: rgb(91, 46, 2);
}


main nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 30px 0;
  /* margin-top: 10px; */
}
main nav a {
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--colorDeLetra);
  /* font-weight: bold; */
} 
main nav a:hover {
  transition: .3s;
  color: rgba(0, 26, 255, 0.9);
} 
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px 0;
}
footer p {
  text-align: center;
}
footer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
footer nav a {
  text-decoration: none;
  color: rgb(91, 46, 2);
}
footer nav a:hover {
  transition: .5s;
  color: rgba(0, 26, 255, 0.9);
}
.contenedor-superior {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px;
}




.menu-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 90vw;
  margin: 10px 0;
}
.menu-botones button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.menu-botones button img {
  width: 100px;
  height: auto;
}
.contenedor-configuraciones-y-datos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.contenedor-datos {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 3px;
}
.contenedor-datos label input {
  vertical-align: middle;
}
.contenedor-datos label {
  vertical-align: middle;
}
.contenedor-inputs-rango input{
  background-color: rgb(255, 248, 222);
  border-radius: 3px;
  border: none;
}
.contenedor-inputs-rango {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  vertical-align: middle;
}
.tabla-guardado tr td button {
  background-color: transparent;
  border: none;
  padding-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contenedor-datos input {
  background-color: rgba(255, 248, 222, 0.3);
  color: rgb(91, 46, 2);
  border-radius: 3px;
  border: none;
  outline: none;
  padding-top: 1px;
  text-align: center;
  width: 42px;
}
.intendencia {
  display: flex;
  flex-direction: column;
}
.tabla-guardado input {
  width: 150px;
}
.tabla-guardado input::placeholder {
  background-color: rgba(255, 248, 222,0.3);
  text-align: left;
}
.contenedor-datos label input::placeholder {
  padding: 2px 0 0 3px;
}
.contenedor-tabla-principal {
  height: 80vh;
  min-height: 300px;
  max-width: max-content;
  margin: 0 auto;
  overflow-y: scroll;
  resize: vertical;
}
.tabla-principal {
  max-width: max-content;
  border-collapse: collapse;
}
.tabla-principal tr td {
  text-align: center;
  padding: 5px 5px;
}
.tabla-principal tr .celda-nivel {
  text-align: center;
  padding-left: 30px;
  font-weight: bold;
}
/* Estilos para filas pares */
.tabla-principal tr:nth-child(even) {
  transition: 1s;
  background-color: rgba(251, 244, 214, 0.5);
}
/* Estilos para filas impares */
.tabla-principal tr:nth-child(odd) {
  transition: 1s;
  background-color: rgba(252, 239, 195, 0.5);
}
.tabla-principal tr .ciudadanos-center {
  text-align: center;
}
.tiempo-padding span {
  margin: 0 5px;
}
.titulo {
  font-size: 1.5rem;
  padding: 10px;
}
.texto {
  font-weight: normal;
  max-width: 700px;
  text-align: left;
  font-size: 1rem;
  margin-top: 10px;
}
.contenido {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 15px;
 }
.contenido-descripcion-edificio {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.subtitulos-tabla {
  height: 50px;
}
.padding-nivel {
  padding-left: 20px;
}
.tu-precio {
  font-weight: bold;
  /* color: black; */
}
.nombre-configuracion {
  padding-left: 4px;
}
.fa-solid {
  font-size: 1.2em;
  padding: 2px 3px;
}
.svg-borrar {
  width: 16px;
  height: 16px;
  fill: red;
}
.svg-guardar {
  width: 16px;
  height: 16px;
  fill: green;
}
.svg-cargar {
  width: 16px;
  height: 16px;
  fill: blue;
}

.contenedor-apuntes  {
  padding-top: 3px;
  display: flex;
  flex-direction: column;
}
.contenedor-apuntes button {
  width: fit-content;
  color: rgb(91, 46, 2);
  border-color: rgb(91, 46, 2);
}
.contenedor-apuntes textarea {
  background-color: rgba(251, 244, 214);
  color: rgb(91, 46, 2);
  padding: 4px;
  outline: none;
  border: 1px solid rgb(91, 46, 2);
  border-radius: 3px;
}
.contenedor-apuntes textarea::placeholder {
  color: rgb(91, 46, 2);
}
/* .contenedor-datos.producciones {
  display: flex;
}
.contenedor-datos.producciones .contenedor-salida-producciones {
  width: fit-content;
} */
.contenedor-datos.producciones input {
  width: 70px;
  /* padding: 0; */
  text-align: left;
  padding: 1px 3px;
}


.flota-nivel-1 {
  margin: 0 auto;
  background-position: -36px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  /* border: 3px solid rgb(152, 128, 104);
  border-radius: 5px; */
}
.flota-nivel-3 {
  margin: 0 auto;
  display: flex;
  justify-self: center;
  gap: 3px;
  width: 75px;
}
.ballesta {
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  background-position: -72px -36px;
  width: 36px;
  height: 36px;
}
.catapulta {
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  background-position: -144px -36px;
  width: 36px;
  height: 36px;
}
.flota-nivel-4 {
  margin: 0 auto;
  background-position: -108px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.flota-nivel-5 {display: none;}
.flota-nivel-6 {display: none;}
.flota-nivel-7 {
  margin: 0 auto;
  background-position: -324px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  }
.flota-nivel-8 {display: none;}
.flota-nivel-9 {
  margin: 0 auto;
  background-position: -288px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.flota-nivel-10 {display: none;}
.flota-nivel-11 {
  margin: 0 auto;
  background-position: -396px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}

.flota-nivel-12 {display: none;}
.flota-nivel-13 {
  margin: 0 auto;
  background-position: -360px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.flota-nivel-14 { display: none;}
.flota-nivel-15 {
  margin: 0 auto;
  background-position: -180px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.flota-nivel-16 { display: none;}
.flota-nivel-17 {
  margin: 0 auto;
  background-position: -216px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.flota-nivel-18 { display: none;}

.flota-nivel-19 {
  margin: 0 auto;
  background-position: -252px -36px;
  background-image: url(img/flota.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.flota-nivel-20 { display: none;}
.flota-nivel-21 { display: none;}
.flota-nivel-22 { display: none;}
.flota-nivel-23 { display: none;}
.flota-nivel-24 { display: none;}
.flota-nivel-25 { display: none;}
.flota-nivel-26 { display: none;}
.flota-nivel-27 { display: none;}
.flota-nivel-28 { display: none;}
.flota-nivel-29 { display: none;}
.flota-nivel-30 { display: none;}
.flota-nivel-31 { display: none;}
.flota-nivel-32 { display: none;}
.flota-nivel-33 { display: none;}
.flota-nivel-64 { display: none;}
.flota-nivel-55 { display: none;}
.flota-nivel-46 { display: none;}
.flota-nivel-37 { display: none;}
.flota-nivel-38 { display: none;}

.ejercito-nivel-1 {
  margin: 0 auto;
  background-position: -540px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-2 {
  margin: 0 auto;
  background-position: 0 -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-3 {
  margin: 0 auto;
  background-position: -432px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-4 {
  margin: 0 auto;
  background-position: -72px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-5 {
  margin: 0 auto;
  background-position: -216px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-6 {
  margin: 0 auto;
  background-position: -36px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-7 {
  margin: 0 auto;
  background-position: -108px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-8 {
  margin: 0 auto;
  background-position: -360px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-9 {
  margin: 0 auto;
  background-position: -180px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-10 {
  margin: 0 auto;
  background-position: -288px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-11 {
  margin: 0 auto;
  background-position: -324px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;

}
.ejercito-nivel-12 {
  margin: 0 auto;
  background-position: -252px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-13 {
  margin: 0 auto;
  background-position: -144px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-14 {
  margin: 0 auto;
  background-position: -395px -36px;
  background-image: url(img/ejercito.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}
.ejercito-nivel-15- { display: none;}
.ejercito-nivel-16- { display: none;}
.ejercito-nivel-17- { display: none;}
.ejercito-nivel-18- { display: none;}
.ejercito-nivel-19- { display: none;}
.ejercito-nivel-20- { display: none;}
.ejercito-nivel-21- { display: none;}
.ejercito-nivel-22- { display: none;}
.ejercito-nivel-23- { display: none;}
.ejercito-nivel-24- { display: none;}
.ejercito-nivel-25- { display: none;}
.ejercito-nivel-26- { display: none;}
.ejercito-nivel-27- { display: none;}
.ejercito-nivel-27- { display: none;}
.ejercito-nivel-28- { display: none;}
.ejercito-nivel-29- { display: none;}
.ejercito-nivel-30- { display: none;}
.ejercito-nivel-31- { display: none;}
.ejercito-nivel-32- { display: none;}
.ejercito-nivel-33- { display: none;}
.ejercito-nivel-34- { display: none;}
.ejercito-nivel-35- { display: none;}
.ejercito-nivel-36- { display: none;}
.ejercito-nivel-37- { display: none;}
.ejercito-nivel-38- { display: none;}
.ejercito-nivel-39- { display: none;}
.ejercito-nivel-40- { display: none;}
.ejercito-nivel-41- { display: none;}
.ejercito-nivel-42- { display: none;}
.ejercito-nivel-43- { display: none;}
.ejercito-nivel-44- { display: none;}
.ejercito-nivel-45- { display: none;}
.ejercito-nivel-46- { display: none;}
.ejercito-nivel-47- { display: none;}
.ejercito-nivel-48- { display: none;}


.dioses {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.pan {
  background-image: url("img/Pan.png");
}
.dioniso {
  background-image: url("img/Dioniso.png");
}
.tique {
  background-image: url("img/Tique.png");
}
.pluto {
  background-image: url("img/Pluto.png");
}
.tea {
  background-image: url("img/Tea.png");
}
.hefesto {
  background-image: url("img/Hefesto.png");
}
.ninguno {
  display: none;
}


hgroup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.imagen-izq-h1 {
  background-image: url(../img/iconosikariam.png);
  background-size: 16650px;
  background-position: 70% 0;
  width: 150px;
  height: 150px;        
}
h1 {
  text-align: center;
}
.utopia-price-descripcion {
  max-width: 700px;
  padding: 10px;
  margin: 0 auto;
}

.contenedor-apuntes.text-btn button {
  background-color: transparent;
  border: none;
}
.contenedor-apuntes button {
  background-color: rgba(251, 244, 214, 0.5);
  border: 1px solid rgb(91, 46, 2);
  padding: 2px;
  border-radius: 3px;
}

/* RDW */
@media screen and (min-width: 400px) {  
  .contenedor-tabla-principal {
    height: 60vh; 
  }
}
@media only screen and (min-width: 550px) {
  footer nav {
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 777px){
  .contenedor-tabla-principal {
    justify-content: left;
  }
  
}
/*Extra Grandes devices (large laptops and desktops, 1200px and up)*/
@media only screen and (min-width: 900px) {
  nav {
    flex-direction: row;
  }   
  header {
    flex-direction: row;
  }
}
/*Extra Grandes devices (large laptops and desktops, 1200px and up)*/
@media only screen and (max-width: 1050px) {
  .contenedor-tabla-principal {
    overflow-x: scroll;
  }
}


/* Clase boton modo oscuro */
/* switch settings 👇 */
.ui-switch {
  margin-top: 20px;
  /* switch */
  --switch-bg: rgb(135, 150, 165);
  --switch-width: 48px;
  --switch-height: 20px;
  /* circle */
  --circle-diameter: 32px;
  --circle-bg: rgb(0, 56, 146);
  --circle-inset: calc((var(--circle-diameter) - var(--switch-height)) / 2);
}
.ui-switch input {
  display: none;
}
.slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--switch-width);
  height: var(--switch-height);
  background: var(--switch-bg);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.slider .circle {
  top: calc(var(--circle-inset) * -1);
  left: 0;
  width: var(--circle-diameter);
  height: var(--circle-diameter);
  position: absolute;
  background: var(--circle-bg);
  border-radius: inherit;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTkuMzA1IDEuNjY3VjMuNzVoMS4zODlWMS42NjdoLTEuMzl6bS00LjcwNyAxLjk1bC0uOTgyLjk4Mkw1LjA5IDYuMDcybC45ODItLjk4Mi0xLjQ3My0xLjQ3M3ptMTAuODAyIDBMMTMuOTI3IDUuMDlsLjk4Mi45ODIgMS40NzMtMS40NzMtLjk4Mi0uOTgyek0xMCA1LjEzOWE0Ljg3MiA0Ljg3MiAwIDAwLTQuODYyIDQuODZBNC44NzIgNC44NzIgMCAwMDEwIDE0Ljg2MiA0Ljg3MiA0Ljg3MiAwIDAwMTQuODYgMTAgNC44NzIgNC44NzIgMCAwMDEwIDUuMTM5em0wIDEuMzg5QTMuNDYyIDMuNDYyIDAgMDExMy40NzEgMTBhMy40NjIgMy40NjIgMCAwMS0zLjQ3MyAzLjQ3MkEzLjQ2MiAzLjQ2MiAwIDAxNi41MjcgMTAgMy40NjIgMy40NjIgMCAwMTEwIDYuNTI4ek0xLjY2NSA5LjMwNXYxLjM5aDIuMDgzdi0xLjM5SDEuNjY2em0xNC41ODMgMHYxLjM5aDIuMDg0di0xLjM5aC0yLjA4NHpNNS4wOSAxMy45MjhMMy42MTYgMTUuNGwuOTgyLjk4MiAxLjQ3My0xLjQ3My0uOTgyLS45ODJ6bTkuODIgMGwtLjk4Mi45ODIgMS40NzMgMS40NzMuOTgyLS45ODItMS40NzMtMS40NzN6TTkuMzA1IDE2LjI1djIuMDgzaDEuMzg5VjE2LjI1aC0xLjM5eiIgLz4KPC9zdmc+");
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -o-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
  ;
}
.slider .circle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: inherit;
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  opacity: 0;
}
/* actions */
.ui-switch input:checked+.slider .circle {
  left: calc(100% - var(--circle-diameter));
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTQuMiAyLjVsLS43IDEuOC0xLjguNyAxLjguNy43IDEuOC42LTEuOEw2LjcgNWwtMS45LS43LS42LTEuOHptMTUgOC4zYTYuNyA2LjcgMCAxMS02LjYtNi42IDUuOCA1LjggMCAwMDYuNiA2LjZ6IiAvPgo8L3N2Zz4=");
}
.ui-switch input:active+.slider .circle::before {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  opacity: 1;
  width: 0;
  height: 0;
}


/* Clase boton checkbox */
.container {
  cursor: pointer;
}
.container input {
  display: none;
}
.container svg {
  overflow: visible;
}
.path {
  fill: none;
  stroke: rgba(255, 0, 0, 0.8);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray .7s ease, stroke-dashoffset .7s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}
.container input:checked ~ svg .path {
  transition: .7s;
  stroke: rgba(0, 255, 38, 0.815);
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}


/* Modo oscuro */
.dark-body {
  transition: .3s;
  color: rgba(207, 207, 207,0.8);
  background-image: url(../img/low_contrast_linen.png);
}
.dark a{
  transition: .3s;
  color: rgba(207, 207, 207,0.8);
  /* color: rgba(85, 255, 0,0.9); */
}
.dark a:hover {
  transition: .3s;
  /* color: rgba(207, 207, 207,0.8); */
  color: rgba(85, 255, 0, 0.742);
}
.dark{
  transition: .3s;
  color: rgba(207, 207, 207,0.8);
}
.dark:hover{
  transition: .3s;
  color: rgba(85, 255, 0, 0.742);
}
.darkBorder {
  transition: .3s;
  color: rgba(207, 207, 207,0.8);
}
.contenedor-apuntes textarea.textarea-color-dark {
  color: rgba(207, 207, 207,0.8);
  background-color: rgba(39, 39, 39, 0.5);
  border-color: rgba(73, 174, 22, 0.523);
}
.contenedor-apuntes textarea.textarea-color-dark:focus {
  border-color: rgba(117, 237, 57, 0.637);
  background-color: rgb(39, 39, 39);
}
.contenedor-apuntes textarea.textarea-color-dark::placeholder {
  color: rgba(207, 207, 207,0.8);
  /* background-color: rgba(39, 39, 39, 0.5); */
}
input.input-color-dark {
  color: rgba(207, 207, 207,0.8);
  background-color: rgba(39, 39, 39, 0.5);
}

input.input-color-dark::placeholder {
  color: rgba(207, 207, 207,0.8);
  background-color: rgba(39, 39, 39, 0.5);
}
.contenedor-apuntes button.input-color-dark {
  color: rgba(207, 207, 207,0.8);
  background-color: rgba(39, 39, 39, 0.5);
  border-color: rgba(117, 237, 57, 0.637);
}
/* Estilos para filas pares */
.utopia-color-tabla tr:nth-child(even) {
    background-color: rgba(65, 65, 65, 0.5);
    transition: 1s;
}
/* Estilos para filas impares */
.utopia-color-tabla tr:nth-child(odd) {
    background-color: rgba(39, 39, 39, 0.5);
  transition: 1s;
}


/* Clase para ocultar */
.oculto {
  display: none;
}

/* para la flota nivel 3 */
.contenedor-dinamico {
  flex-direction: column;
}
.contenedor-dinamico div{
  width: 100%;
}



input.alert {
  border: 1px solid red;
  color: red;
  background-color: yellow;
}

/* width */
::-webkit-scrollbar {
  background: rgb(251, 244, 214); 
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(251, 244, 214); 
  /* border-radius: 10px; */
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(255, 231, 154);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 219, 100);
}

::-webkit-resizer {
  /* width: 20px; */
  background: rgb(255, 231, 154);
}