/* Root variables */
/* :root {
  --color-primary: #036;
  --color-second: #969696;
  --color-third: #413f40;
  --color-four: #e7e7e7;
} */


/* Eliminar estilos predeterminados de las etiquetas de encabezado y párrafos */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    /* margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit; */
    vertical-align: baseline;
}
/* Reset CSS completo */

/* Asignar tipo de letra a todas las etiquetas */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  margin: 0px;
}

/* Estilo personalizado para h1 */
h1 {
  font-size: 2rem; /* Tamaño de fuente */
  font-weight: bold; /* Negrita */
  margin-bottom: 20px; /* Espaciado debajo */
}

/* Estilo personalizado para h2 */
h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Estilo personalizado para párrafos */
p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Diseño de tabla general */
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

thead {
  background-color: var(--primary-color);
  color: #333;
  font-weight: bold;
}

tr {
  display: table-row;
  vertical-align: inherit;
  unicode-bidi: isolate;
  border-color: inherit;
}

th, td {
  margin: 0;
  padding: 5px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
}

/* ---------- // --------- */

.contentShortcodeMain {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: 100%;
  /* height: calc(100vh - 70px) !important; */
  /* background-color: rgba(166, 252, 223, 0.651); */
}

.contentShortcodeMainMFooter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
  /* background-color: rgba(166, 252, 223, 0.651); */
}

.btnsGenerico {
  cursor: pointer;
  transition: background-color .3s ease;
  border: none;
  padding: 10px;
  border-radius: 5px;
  user-select: none; 
  outline: none;
  box-shadow: none; 
  touch-action: manipulation;
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent; 
}

.btnsPrimary,
.btnsSecond,
.btnsThird {
  font-size: 1em;
  color: white;
  cursor: pointer;
  transition: background-color .3s ease;
  border: none;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  user-select: none; 
  outline: none;
  box-shadow: none; 
  touch-action: manipulation;
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent; 
}

.btnsPrimary {
  background-color: var(--primary-color);
}

.btnsSecond {
  background-color: var(--color-second);
}

.btnsThird {
  background-color: var(--color-third);
}

.disableBtns {
  filter: blur();
  opacity: 0.5;
}

.btnsPrimary:hover,
.btnsSecond:hover,
.btnsThird:hover {
  filter: brightness(1.1);
}



.pruebaBtnsdisabled {
  opacity: 0.2;
}

.goToLogineFXs,
.goToLoginPasswordChangeeFXs {
  color: var(--primary-color);
  cursor: pointer;
}



/* estilo de los scroller de la aplicacion */
/* Estilos específicos para escritorio */
@media (min-width: 1025px) {
  ::-webkit-scrollbar {
      width: 1px;
      height: 1px;
  }

  ::-webkit-scrollbar-thumb {
      background-color: var(--primary-color);
      border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background-color:  var(--primary-color);;
  }

  /* Personaliza el scroll horizontal */
  ::-webkit-scrollbar-horizontal {
      height: 4px; /* Altura de la barra horizontal */
  }

  ::-webkit-scrollbar-thumb:horizontal {
      background-color: var(--primary-color);;
      border-radius: 4px;
  }

  ::-webkit-scrollbar-track {
      background: #f1f1f1;
  }

  ::-webkit-scrollbar-track:hover {
      background: #e0e0e0;
  }
}

/* Estilos específicos para tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Personaliza el scroll vertical */
  ::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      display: none;
  }

  ::-webkit-scrollbar-thumb {
      background-color: var(--primary-color);;
      border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background-color: var(--primary-color);;
  }

  /* Personaliza el scroll horizontal */
  ::-webkit-scrollbar-horizontal {
      height: 4px;
  }

  ::-webkit-scrollbar-thumb:horizontal {
      background-color: var(--primary-color);;
      border-radius: 4px;
  }

  ::-webkit-scrollbar-track {
      background: #f1f1f1;
  }

  ::-webkit-scrollbar-track:hover {
      background: #e0e0e0;
  }

  :hover::-webkit-scrollbar,
  :hover::-webkit-scrollbar-thumb {
      display: block;
  }
}

  /* Personaliza el scroll vertical */
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    display: none;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);;
}

/* Personaliza el scroll horizontal */
::-webkit-scrollbar-horizontal {
    height: 4px;
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: var(--primary-color);;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-track:hover {
    background: #e0e0e0;
}

:hover::-webkit-scrollbar,
:hover::-webkit-scrollbar-thumb {
    display: block;
}