*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-weight: normal;
}

:root {
  --contrastante: #fff;
  --camposFondo: #cfcfcf;
  --texto: #bfbfbf;
  --texto_devil: #5e5e5e;
  --barras: #1a1e22;
  --hover_oscuro: #333944;
  --fondoNav: #22272bfa;
  --fondoNavHover: #20304369;
  --fondo: #101315;
  --contenedores: #161b1e;
  --cont_btns: #242a2f;
  --cont_btns_hov: #2b353c;
  --sombraSimple: 0 10px 10px #0000002e;
  --SombraTransparente: rgba(0, 0, 0, 0.1);
  --sombraOscura: 0 10px 63px -6px #0d1012;
  --bordeadoComlejo: -1px 1px 0 #282e32 inset,
    1px -1px 0 #222528 inset,
    0 10px 63px -6px #0d1012;
  --refilado_btns: -1px 1px 0 #373a3e inset,
    1px -1px 0 #282828 inset;
  --azul_btn: #294e8f;
  --naranja_btn: #f9c955;
  --activo_btn: #99cbff;
  --verde_claro: #78c878;
}

html,
body {
  overflow: auto;
  scrollbar-width: none;
}

html {
  height: 100%;
  width: 100%;
  color: var(--texto);
  background-color: var(--fondo);
  /* hacer delgada la barra de desplazamiento vertical */
  scrollbar-width: thin;
}

body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: 'Helvetica', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  height: 100%;
  width: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
}

.linkBack {
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  width: 50px;
  height: 50px;
  background-color: none;
  border-radius: 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: .8;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.linkBack:hover {
  opacity: 1;
  background-color: var(--azul_btn);
  -webkit-tap-highlight-color: transparent;
}

.texto-encabezado {
  font-size: 2rem;
  font-weight: 400;
  color: var(--activo_btn);
  margin: 10px 0;
  cursor: default;
}

.linkNormal,
a {
  text-decoration: none;
  color: var(--texto);
  transition: all 0.3s ease;
}

.linkNormal:hover {
  color: var(--contrastante);
}

.cursorNormal {
  cursor: default;
}

.destacado {
  color: var(--activo_btn);
}

.maincontainer {
  position: relative;
  display: flex;
  margin: 2px auto 20px auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 300px;
  max-width: 1080px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--SombraTransparente);
  background-color: var(--barras);
  flex: 1;
}

.maincontainer hr {
  width: 100%;
  height: 1px;
  margin: 40px 0;
  box-shadow: var(--refilado_btns);
}

#usuario {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  color: var(--texto);
  text-decoration: none;
}

.secttl {
  position: relative;
  left: 0;
  width: 100%;
  padding-left: 20px;
  top: 14px;
  text-align: center;
}

.blockTtl {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
  position: absolute;
  right: 20px;
  width: max-content;
  padding-left: 20px;
  top: 7px;
  font-size: 2rem;
  color: #1f252c;
  z-index: 0;
}

.resaltado {
  color: var(--activo_btn);
}

.resalta2 {
  color: var(--naranja_btn);
}

.pointerCursor {
  cursor: default;
}

.noSelect {
  user-select: none;
}

.successBox {
  padding: 20px;
  display: block;
  background-color: darkgreen;
  color: white;
  border-radius: 4px;
}

footer {
  position: relative;
  margin: 0 auto;
  background-color: var(--barras);
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 80%;
  color: var(--texto_devil);
  user-select: none;
}

#login {
  display: flex;
  position: relative;
  margin: 0 auto;
  padding: 20px;
  width: 300px;
  height: auto;
  background-color: var(--barras);
  box-shadow: var(--bordeadoComlejo);
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

#login input[type="text"],
#login input[type="password"] {
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  background-color: var(--camposFondo);
}

#login input[type="submit"] {
  border-radius: 4px;
  text-align: center;
  background-color: var(--azul_btn);
  color: var(--contrastante);
  cursor: pointer;
  width: 165px;
  padding: 10px 0;
  box-shadow: var(--sombraSimple);
}

/* Inicia Menu principal */
.toggleIcon {
  display: none;
  font-size: 2.2rem;
  color: var(--texto);
  margin-left: 10px;
  cursor: pointer;
}

input,
select {
  background-color: var(--camposFondo);
}

.menu-toggle {
  display: none;
}

#menuPrincipal {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: var(--barras);
  z-index: 1;
  user-select: none;
  flex: none;
}

nav {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  height: 40px;
  flex-direction: row;
  z-index: 1;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--contrastante);
  padding: 10px;
  margin: 0 5px;
  transition: background-color 0.3s;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

nav ul li a:hover {
  background-color: var(--fondoNavHover);
  -webkit-tap-highlight-color: transparent;
}

nav ul li .active {
  color: #99cbff;
}

.homeIcon {
  display: none;
}

/* Pantallas pequeñas */
@media (max-width: 700px) {
  #menuPrincipal {
    height: 60px;
  }

  .toggleIcon {
    display: block;
    -webkit-tap-highlight-color: transparent;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--barras);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    height: 93vh;
    background-color: var(--fondoNav);
  }

  .menu-toggle:checked+nav {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  nav ul li {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  nav ul li a {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .homeIcon {
    display: block;
    position: absolute;
    width: 50px;
    top: 4px;
    right: 44%;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  .homeIcon:hover,
  .homeIcon:focus {
    outline: none;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(132, 171, 233, 0.7);
  }
}

/* Finalzia Menu principal */

/* Inicia contenedor de subsecciones */
.contendor_subsecciones {
  position: relative;
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  margin: 20px auto;
  padding: 10px;
  min-width: 320px;
  max-width: 640px;
  width: 100%;
  height: auto;
  gap: 10px;
  background-color: var(--contenedores);
  border-radius: 4px;
  box-shadow: var(--bordeadoComlejo);
  user-select: none;
}

.contendor_subsecciones a {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  border-radius: 4px;
  background: var(--cont_btns);
  color: var(--texto);
  min-width: 190px;
  height: 100px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 256ms ease;
  box-shadow: var(--refilado_btns);
  -webkit-tap-highlight-color: transparent;
}

.contendor_subsecciones a:hover {
  background-color: var(--cont_btns_hov);
  -webkit-tap-highlight-color: transparent;
}

/* Finaliza contenedor de subsecciones */

/* Inicia Formulario Universal */

.formaUniversal {
  position: relative;
  margin: 0 auto;
  min-width: 300px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formaUniversal fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 10px auto;
  padding: 15px 10px 24px 10px;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: var(--bordeadoComlejo);
}

.formaUniversal fieldset summary {
  font-weight: 100;
  font-size: 1em;
  margin: 10px 0;
}

.formaUniversal fieldset div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;
}

.gap0 {
  gap: 0 !important;
}

.gap20 {
  gap: 20px;
}

.campoTXT {
  width: 174px;
  margin: 0;
  padding: 10px;
  flex: 0 1 auto;
  border-radius: 4px;
}

.sexoSel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}


.sexoSel label {
  filter: grayscale(80%);
  cursor: pointer;
}

.sexoSel input[type="radio"] {
  display: none;
}

.sexoSel input[type="radio"]:checked+label {
  box-shadow: var(--bordeadoComlejo);
  background-color: var(--cont_btns_hov);
  border-radius: 4px;
  filter: grayscale(0);
}

.sexoSel img {
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
}

.calendario {
  width: 150px;
  margin-left: 30px;
  padding: 10px;
  flex: 0 1 auto;
  border-radius: 4px;
}

.boton_universal {
  position: relative;
  margin: 10px auto;
  border-radius: 4px;
  text-align: center;
  background-color: var(--azul_btn);
  color: var(--contrastante);
  cursor: pointer;
  padding: 24px 81px;
  box-shadow: var(--sombraSimple);
  font-size: 14px;
  text-decoration: none;
}

.botonRemoto {
  padding: 10px 20px;
  border-radius: 4px;
  color: var(--texto);
  background-color: var(--fondoNav);
  box-shadow: var(--refilado_btns);
  cursor: pointer;
  transition: background-color 0.3s;
}

.botonRemoto:hover {
  background-color: var(--hover_oscuro);
}

.w100 {
  width: 100px !important;
}

.w25_perc {
  min-width: 64px !important;
  max-width: 180px !important;
}

.centrado {
  text-align: center;
}

.alertaRoja {
  display: flex !important;
  padding: 20px;
  background-color: #553e3c;
  color: white;
  flex-direction: column !important;
  border-radius: 8px;
  margin-top: 26px;
}

.alertaRoja span {
  display: block;
  text-align: center;
}

.alertaRoja .microTexto {
  font-weight: 100;
  font-size: .95rem;
}

/* Finaliza Formulario Universal */

/* Inicia formulario de busqueda */

fieldset {
  margin: 10px;
  padding: 10px;
  box-shadow: var(--refilado_btns);
  position: relative;
  margin: 0 auto;
  width: 90%;
  padding: 20px 10px 40px 10px;
}

.formaSimple {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}

.margenBase20 {
  margin-bottom: 20px !important;
}

.formaSimple input {
  max-width: 80%;
  min-width: 300px;
  padding: 10px;
  border: 1px solid var(--color_borde);
  border-radius: 5px;
  text-align: center;
}

.respuesta_consulta {
  position: relative;
  top: 25px;
  margin: 0 auto 10px auto;
}

.respuesta_consulta a {
  text-decoration: none;
  color: var(--contrastante);
}

/* Finaliza formulario de busqueda */

/* Inicia tabla de resultados */

.cajon_botonbes_1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
  align-content: center;
}

.cajon_botonbes_1 li {
  list-style: none;
}

.cajon_botonbes_1 li a {
  display: inline-block;
  padding: 16px 25px;
  margin: 8px;
  border: 1px solid var(--cont_btns_hov);
  border-radius: 3px;
  color: var(--contrastante);
  background: var(--cont_btns);
  text-decoration: none;
  transition: all 0.3s ease;
}


.cajon_botonbes_1 li a:hover {
  background: var(--cont_btns_hov);
}

.dataCelda {
  display: flex;
  min-width: 140px;
  max-width: 400px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  height: 40px;
  border-bottom: 1px solid var(--cont_btns_hov);
}

.themeicon {
  position: relative;
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
}

/* Finaliza tabla de resultados */

/* Formulario se selección de horarios */
.formaSelectores {
  position: relative;
  margin: 0 auto;
  min-width: 300px;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btns_grp {
  position: relative;
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  margin: 20px auto;
  padding: 10px;
  min-width: 320px;
  max-width: 640px;
  width: 100%;
  height: auto;
  gap: 10px;
  background-color: var(--contenedores);
  border-radius: 4px;
  box-shadow: var(--bordeadoComlejo);
  user-select: none;
}

.btns_grp label {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  border-radius: 4px;
  background: var(--cont_btns);
  color: var(--texto);
  min-width: 190px;
  height: 100px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 256ms ease;
  box-shadow: var(--refilado_btns);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btns_grp input[type="radio"]:checked+label {
  background-color: var(--azul_btn);
}

.btns_grp input[type="radio"] {
  display: none;
}

.btns_grp label span {
  display: flex;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 32px;
  height: 32px;
  color: var(--barras);
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background: #ffcd4f;
  font-size: .8rem;
  font-weight: bold;
  text-align: center;
}

#cargadorLabel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Finaliza Formulario se selección de horarios */

.alto-icon {
  display: block;
  max-width: 200px;
}

.ok {
  color: var(--verde_claro);
  font-weight: 700;
}

.fieldsetArbitrario {
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  border: none;
  box-shadow: none;
}

/* Dialogos de ayuda */
.DialogosAyuda {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  color: #fff;
  backdrop-filter: blur(5px);
  background-color: #000000e3;
  text-align: center;
}

.DialogosAyuda .help_container {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
  min-width: 100%;
  min-height: 25%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.btn_AyudaCont {
  position: relative;
  margin: 40px auto;
  width: 100%;
}

.abrirAyuda {
  position: absolute;
  right: 57px;
  top: 0;
  display: flex;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 3px #fff;
  border-radius: 26px;
  background-color: #ef994c;
  color: #000000;
  border: 1px solid #ffd900;
  box-shadow: 0px 0px 5px 1px #ffae64 inset;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#cerrarAyuda {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  font-size: 30px;
  border-radius: 26px;
  background-color: #060606;
  color: #fff;
  border: 1px solid #7c7c7c;
  box-shadow: 0px 0px 5px 1px #393939 inset;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ayuda_icon {
  position: absolute;
  width: 48px;
  height: 48px;
  right: 0;
  box-shadow: var(--sombraSimple);
  cursor: pointer;
  filter: grayscale(80%);
  scale: 1;
  transition: all 0.3s ease;
}

.ayuda_icon:hover {
  filter: grayscale(0);
  scale: 1.1;
}

.helpContBox {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 200px;
  max-width: 360px;
  width: 100%;
  text-align: justify;
}

.helpContBox p {
  margin: 10px 0;
  text-shadow: -1px 1px 4px #000000;
  text-align: left;
}

.helpContBox p b {
  font-weight: 600;
  color: #75c7ff;
}

.helpContBox :is(ol, ul) {
  margin-left: 25px;
}

blockquote {
  font-style: italic;
  color: #b9daf8;
  border-left: 5px solid #425971;
  padding: 10px;
  background-color: #53676c0f;
  border-radius: 4px;
}

blockquote b {
  color: #1b79ac;
  font-weight: 600;
}

.gen_div_L {
  position: relative;
  display: flex;
  min-width: 300px;
  max-width: 640px;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 15px auto;
  gap: 20px;
}

#cicloData {
  display: block;
  width: 100%;
  text-align: center;
}

.tabla_3_cols {
  width: 100%;
  min-width: 300px;
  max-width: 640px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 4px;
  box-shadow: var(--bordeadoComlejo);
  background-color: var(--contenedores);
  user-select: none;
  border-collapse: collapse;
}

th {
  background-color: var(--cont_btns);
  color: var(--contrastante);
  padding: 12px 0;
}

.tabla_3_cols td {
  padding: 10px;
  border-bottom: 1px solid var(--cont_btns_hov);
}

.microicon {
  text-decoration: none;
  color: var(--texto);
}

.microicon svg {
  width: 24px;
  height: 24px;
  transform: translateY(4px);
}

.widgetCont {
  display: flex;
  position: relative;
  margin: 33px auto;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 420px;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  user-select: none;
}

/* //+  Lista de tareas Modulo de la pagina principal */

.btn_new_task,
.btn_task_history {
  position: absolute;
  top: 13px;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  background-color: #1a1e22 !important;
  box-shadow: 0 0 9px inset #242a30, -2px -1px 2px -1px #525d67, 2px 2px 2px 0px #060709;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  line-height: 31px;
}

.btn_new_task:hover,
.btn_task_history:hover {
  background-color: #24292f !important;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.btn_new_task {
  right: 13px;
}

.btn_task_history {
  left: 13px;
}

.task_icon {
  display: block;
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 6px;
  top: 1px;
  color: darkgrey;
}

.tareasWidget {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 14px;
  border-radius: 10px;
  box-shadow: var(--bordeadoComlejo);
  min-width: 300px;
  max-width: 420px;
  width: 100%;
}

.tareasWidget h2 {
  font-size: 1.2em;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #576471;
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
}

/* Estilos para la lista de tareas */
.lista-tareas {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.lista-tareas li {
  font-size: 14px;
  margin: 10px 0;
  padding: 3px 5px 4px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  width: 100%;
  background-color: #282d31;
  color: #ffffff;
  user-select: none;
  flex-direction: row;
}

/* Tarea completada */
.tarea {
  background-color: #27ae60;
}

.lista-tareas li span {
  font-size: 14px;
}

.tar_acciones {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  gap: 4px;
}

.mailer_icons_status {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 26.5px;
  height: 26.5px;
}

.taraxnx_btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  flex: 1 24px;
  opacity: 0.7;
  transition: all 0.3s ease;
  /*   background-color: #1a1e22 !important;
  box-shadow: 0 0 9px inset #242a30, -2px -1px 2px -1px #525d67, 2px 2px 2px 0px #060709; */
}

/* //* Inicio de: CSS de tareas     */

.tar_VistaOk {
  background-image: url(../icons/tar_visto_icon.png);
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
}

.tar_hidde {
  background-image: url(../icons/tar_ocultar_icon.png);
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
}

.taraxnx_btns:hover {
  opacity: 1;
}

.microtexto2 {
  font-size: 10px;
  font-weight: 300;
  color: #95afcc;
}

.atencion2 {

  font-size: 10px;
  font-weight: 300;
  color: #c3ad58;

}

.ancho100pc {
  min-width: 300px;
  max-width: 400px;
  width: 100%;
}

.areaTXT {
  padding: 10px 10px 37px 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #576471;
  font-family: Helvetica, Arial, sans-serif;
  background-color: var(--camposFondo);
  height: 200px;
  min-width: 300px;
  max-width: 400px;
  width: 100%;
  resize: none;
}

.espaciador_5px {
  display: block;
  height: 5px;
}

.tareasWidget p {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  padding: 10px;
}

.tareasWidget .smallText {
  margin-top: 40px;
  font-size: 10px;
}

.accionesPost {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.accionesPost :is(input[type="checkbox"], input[type="radio"]) {
  display: none;
}

.accionesPost :is(input[type="checkbox"]:checked+label, input[type="radio"]:checked+label) {
  background-color: #1b686f;
}


.accionesPost :is(a, label) {
  display: block;
  width: 48%;
  padding: 10px;
  text-align: center;
  box-shadow: var(--bordeadoComlejo);
  background-color: var(--cont_btns);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: var(--texto);
  flex: 1 0;
  transition: background-color 0.3s;
  cursor: pointer;
}

.microcirculo {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.b-verde {
  background-color: #5fa47c;
}

.b-amarillo {
  background-color: #e9d37d;
}

.b-anaranjado {
  background-color: #ffb674;
}

.b-rojo {
  background-color: #ff7e70;
}

.multy_data_micro_cont {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 11px;
}

.tdancho {
  padding: 5px;
}

.cajon_micro_botones a {
  padding: 15px !important;
}

/* .finaNumX1 {
  color: #000000;
  text-shadow: -1px 2px 0 #404b54;
} */

.finaNumX1 {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  color: #35414c;
}

/* //+ Estilo para listado de deudores  */

#listaLarga {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  min-width: 320px;
  max-width: 520px;
  width: 100%;
}

#listaLarga summary {
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.list_item {
  padding: 0;
  margin: 0;
}

/* Ocultar el checkbox */
.list_item input[type="checkbox"] {
  display: none;
}

/* Estilo del label (cuando el checkbox no está seleccionado) */
.list_item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 10px;
  border: 0;
  border-radius: 2px;
  margin: 5px;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Cambia el estilo del label cuando el checkbox está seleccionado */
.list_item input[type="checkbox"]:checked+label {
  background-color: #ced4da;
  color: #243746;
  text-decoration: none;
  padding: 5px 10px;
  height: 30px;
  font-size: 15px;
}

/* Cambia el estilo del label cuando el checkbox está desmarcado */
.list_item input[type="checkbox"]+label {
  background-color: #31373d;
  color: #a0a0a0;
  text-decoration: line-through;
  padding: 0 10px;
  height: 16px;
  font-size: 11px;
}

/* Efecto de hover sobre el label (opcional) */
.list_item label:hover {
  background-color: #ddd;
}

/* //* Finaliza declaración de estilo para Tareas */

/* PD Tabla de contenidos generales hermosa */

.tabla_general {
  display: flex;
  margin: 0 auto;
  min-width: 300px;
  max-width: 640px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-collapse: collapse;
  box-shadow: var(--bordeadoComlejo);
}


.tabla_general tbody tr td:nth-child(1),
.tabla_general thead tr th:nth-child(1) {
  flex: 1 1 153px;
}


.tabla_general thead {
  background-color: var(--fondo);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 4px 4px 0px 0px;
}

.tabla_general thead tr {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--fondo);
}

.tabla_general thead tr th {
  flex: 1;
  width: 50%;
  padding: 20px;
  background-color: var(--fondo);
}

.tabla_general tbody {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tabla_general tbody tr {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tabla_general tbody tr td {
  flex: 1;
  width: 50%;
  padding: 14px;
  text-align: center;
}

.tabla_general tbody tr:nth-child(odd) {
  background-color: #252b32;
}


.tabla_general tbody tr td:nth-child(1) {
  text-align: left;
  padding-left: 20px;

}

.tabla_general tfoot {
  background-color: var(--fondo);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0px 0px 4px 4px;
}

.tabla_general tfoot tr {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tabla_general tfoot tr td {
  flex: 1;
  width: 50%;
  padding: 20px;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}

.back_btn {
  width: 48px;
  height: 48px;
}

/* FD tabla de contenidos. */

.banco_icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.calc-wrapper {
  display: flex;
  position: fixed;
  left: 0px;
  top: 338px;
  z-index: 10;
  background: none;
  padding: 1rem;
  background-color: #1e273045;
  border: 1px solid #21262c;
  margin-top: 2rem;
  border-radius: 8px;
  width: 200px;
  flex-direction: column;
  align-items: stretch;
}

.calc-wrapper h3 {
  margin: 10px auto;
  font-size: 11px;
  font-weight: 300;
  color: #4c555e;
  text-align: center;
}

#campos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calc {
  margin: 5px 0;
  padding: 5px;
  width: calc(100% - 12px);
  box-sizing: border-box;
  font-size: 1em;
  -moz-appearance: textfield;
  appearance: textfield;
  background: #ffffff0a;
  border: 0;
  outline: 0;
  color: white;
  border-radius: 8px;
}

.calc::placeholder {
  color: white;
  cursor: pointer;
}

/* Para eliminar flechas de los input type=number en Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-wrapper button {
  padding: 5px 10px;
  margin-top: 5px;
  cursor: pointer;
}

.calc-wrapper p {
  color: #d9d9d9;
  font-weight: 300;
}

.calc-total {
  margin-top: 20px;
  text-align: center;

}

#calc_btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  background-color: transparent;
  cursor: pointer;
}

/* FD  Tabla de contenidos. */