@charset "UTF-8";

:root {
  /* Tipografía */
  --font-primary: Roboto;
}

/**
 Reseteo de css para multiples navegadores
 tomado de  https://www.youtube.com/watch?v=Foieq2jTajE
*/

/* Reseteo de todos los elementos en general */
*,
*::before,
*::after {
  box-sizing: border-box !important;
  padding: 0;
  margin: 0;
  outline: 0;
  inset:0;
  border: none;
  vertical-align: baseline;
  font-family: var(--font-primary);
}

body,
html {
  font-size: 9pt;
}

/* Evitamos problemas con las imagenes */
img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Reseteamos los enlaces para funcionar como cajas... */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}


/* Quitamos los puntos de los <li> */
li {
  list-style-type: none;
}

/* Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}


/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
svg,
form,
i,
b,
u,
em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* bloquear el click del raton */

/* legend,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
blockquote,
i,
b,
u,
em {
  pointer-events: none;
} */

span{
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  /* -webkit-hyphens: auto; */
  /* -ms-hyphens: auto; */
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  /* opcional */
  /* -webkit-appearance: none; */
  /* -moz-appearance: none; */
  appearance: none;
}

/* Reseteamos las tablas */
table,
tr,
td,
th {
  /* border-collapse: collapse; */
  border-spacing: 0;
}

/* Evitamos problemas con los SVG */
svg {
  width: auto;
  display: block;
  fill: currentColor;
}

body {
  min-height: 100vh;

  /* line-height: min(1.4, 1.6); */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;

  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: var(--ic-padding);
}

table{

  & thead {
    position: -webkit-sticky;
    position: sticky;
    top: 0%;
    margin: 0px;
    z-index: 10;
  }
}

fieldset{
  border: 1px ridge var(--ic-gris);
  border-radius: var(--bs-border-radius);
  padding: 6px 13px;
}

legend {
  all:revert;
  font-size: 7pt;
  font-weight: bold;
  padding: 1px 6px;
  margin-left: 6px;;
  color: var(--ic-azul);
}