/* * {
	box-sizing: border-box;
} */

#contenedor_carga{
	background-color: rgba(0,171,190, 1);
	height: 100%;
	width: 100%;
	position: fixed;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#carga {
	border: 15px solid #ccc;
	border-top-color: #F4266A;
	border-top-style: groove;
	height: 100px;
	width: 100px;
	border-radius: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkid-animation : girar 1.5s linear infinite;
	-o-animation: girar 1.5s linear infinite;
	animation: girar 1.5s linear infinite;
}

.fa-size {
	font-size: 2rem !important;
}

.not-active { 
	pointer-events: none; 
	cursor: default; 
}

.fs-sm {
	font-size: 1rem !important;
}

.fs-me {
	font-size: 1.25rem !important;
	font-family: Verdana !important;
}

.fs-lg {
	font-size: 1.5rem !important;
}

.fs-xl {
	font-size: 1.75rem !important;
}

.fs-xxl {
	font-size: 2rem !important;
}

.marco {
	border: 1px solid #dee2e6 !important;
	border-style: double;
}

/* aspecto de botones de tabla */
.btn-modify a{
    color: black;
}

.btn-modify a:hover{
    color: rgba(0,171,190, 0.8)
}

.btn-elimina button{
    color: red;
	border: none;
	background-color: transparent;
}

.btn-elimina button:hover{
    color: rgba(0,171,190, 0.8)
}


.formulario__label {
	display: block;
	font-weight: 700;
	padding: 5px;
}

.formulario__grupo-input {
	position: relative;
}

.formulario__input {
	display: flex;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 3px;
	max-height: 2.5rem;
	height: 100%;
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: left;
	white-space: nowrap;
	padding: 0.3rem 0 0.8rem;
	transition: .3s ease all;
}

.formulario__input:focus {
	border: 3px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

.formulario__input-error {
	font-size: 1rem;
	margin-bottom: 0;
	color: red !important;
	background-color: #ddd;
	display: none;
}

.formulario__input-error-activo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.formulario__validacion-estado {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;
}

.parpadea {
  
	animation-name: parpadeo;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
  
	-webkit-animation-name:parpadeo;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
  }
  
  @-moz-keyframes parpadeo{  
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	100% { opacity: 1.0; }
  }
  
  @-webkit-keyframes parpadeo {  
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	 100% { opacity: 1.0; }
  }
  
  @keyframes parpadeo {  
	0% { opacity: 1.0; }
	 50% { opacity: 0.0; }
	100% { opacity: 1.0; }
  }

.formulario__checkbox {
	margin-right: 10px;
}

.formulario__grupo-terminos, 
.formulario__mensaje,
.formulario__grupo-btn-enviar {
	grid-column: span 2;
}

.formulario__mensaje {
	height: 45px;
	line-height: 45px;
	background: #F66060;
	padding: 0 15px;
	border-radius: 3px;
	display: none;
}

.formulario__mensaje-activo {
	display: block;
    color: red;
}

.formulario__mensaje p {
	margin: 0;
}

.formulario__grupo-btn-enviar {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.formulario__btn {
	height: 45px;
	line-height: 45px;
	width: 30%;
	background: #000;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: .1s ease all;
}

.formulario__btn:hover {
	box-shadow: 3px 0px 30px rgba(163,163,163, 1);
}

.formulario__mensaje-exito {
	font-size: 14px;
	color: text-success;
	display: none;
}

.formulario__mensaje-exito-activo {
	display: block;
}

.formulario__mensaje-exito p {
	margin: 0;
}

/* ----- -----  Estilos para Validacion ----- ----- */
.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	opacity: 1;
}

.formulario__grupo-incorrecto {
	color: #bb2929;
	opacity: 1;
}
.formulario__grupo-incorrecto .formulario__label {
	color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: #fff;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
	border: 3px solid #bb2929;
}


/* ----- -----  Mediaqueries ----- ----- */
@media screen and (max-width: 800px) {
	.formulario {
		grid-template-areas:
			'logo'
			'header'
			'menu'
			'main'
			'acceso'
			'footer';
		grid-template-columns: 1fr;
		grid-template-rows: 75px 75px 10px calc(1fr - (75px+75px+10px+75px+40px)) 75px 40px;
	}

	.formulario__grupo-terminos, 
	.formulario__mensaje,
	.formulario__grupo-btn-enviar {
		grid-column: 1;
	}

	.formulario__btn {
		width: 100%;
	}

	.grid-container {
		grid-template-columns: 1fr;
	}
}

/* agregado por Herbert */
* {
	box-sizing: border-box;
}


/* Codigo agregado */
#alaDerecha {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /*max-height: 60px;
  height: 50px;*/
}

#alCentro {
	display: flex;
	justify-content: center;
	align-items: center;
	/*max-height: 60px;
	height: 50px;*/
}

.alCentro {
	display: flex;
	justify-content: center;
	align-items: center;
}


#alaIzquierda {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	/*max-height: 60px;
	height: 50px;*/
}

.areadetexto {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 5rem !important;
	width: 100% !important;
}

.gcspan-3 {
	grid-column: span 3;
}

.gcspan-2 {
	grid-column: span 2;
}

/*paginador*/

.paginador {
  max-width: 800px; 
  width: 100%;
}

.paginador ul{
   list-style: none;
   background: dark;
   margin-top: 05px;
   display: -webkit-box;
   display: -moz-flex;
   display: -ms-box;
   display: -ms-flexbox;
   display: -o-box;
   display: flex;
   justify-content: flex-start;
}
 
.paginador a, pageSelected{
   color: #428bca;
   border: 1px solid #ddd;
   padding: 5px;
   display: inline-block;
   font-size: 14px;
   text-align: center;
   width: 35px;
}

.paginador a.active {
   background-color: #4CAF50;
   color: white;
   border: 1px solid #4CAF50;
}
 
.paginador a:hover{
   background:#ddd;
}
 
.paginador a:hover:not(.active) {background-color: #ddd;}
 
.pageSelected{
   color: #FFF;
   width: 35px;
   background: #428bca;
   border: 1px solid #428bca;
   text-align: center;
}

/*buscador*/
.form_search{
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-box;
    display: -ms-flexbox;
    display: -o-box;
    display: flex; 
    float: right;
    background: initial;
    padding: 10px;
    border-radius: 10px;
	width: 25%;
}

.form_search .buscar {
  background: #1faac8;
  color: #fff;
  padding: 0 20px;
  border: 0;
  cursor: pointer;
  margin-left: 10px;
}


/* Formatos de Grid */
/* Grid para registro de tablas principales */
.formulario_registrotablas {
	display: grid;
	width: 100%;
	grid-gap: 10px;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(5, auto);
	gap: 5px;
	padding: 10px;
	font-size: 20px !important;
  }

.formulario_registrotablas > div {
	width: 100%;
	height: 100%;
	border: 1px solid black;
	background: rgba(0,171,190, 0.8);
  	text-align: left;
}  

.formulario_registrotablas .botones {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: end;
	align-items: center;
}

/* Grid Informacion General de encuesta */
.grid_info_encuesta {
	display: grid;
	width: 100%;
	grid-gap: 10px;
	grid-template-columns: repeat(1, 30% 70%);
	grid-template-rows: repeat(9, auto);
	gap: 5px;
	padding: 10px;
	font-size: 20px !important;
}

.grid_info_encuesta .izquierda {
	background-color: dark;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.grid_info_encuesta .derecha {
	background-color:  rgb(0, 171, 190) !important;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

/* Grid Informacion General de codigo */
.grid_codigo_encuesta {
	display: grid;
	width: 100%;
	grid-gap: 10px;
	grid-template-columns: repeat(1, 30% 70%);
	grid-template-rows: repeat(1, auto);
	gap: 5px;
	padding: 10px;
	font-size: 20px !important;
}

.grid_codigo_encuesta .izquierda {
	background-color: dark;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.grid_codigo_encuesta .derecha {
	background-color: dark !important;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}


.formulario_registrograficas {
	display: grid;
	max-width: 650px !important;
	width: 100%;
	grid-gap: 10px;
	gap: 5px;
	padding: 10px;
	font-size: 20px !important;
}

.formulario_registrograficas >div{
	border: 1px solid black;
	background: #fcf9f9;
	display: flex;
	justify-content: center;
	align-items: center;
}  

.formulario_registroGraPie {
	max-width: 550px !important;
	width: 100%;
	grid-gap: 10px;
	gap: 5px;
	padding: 10px;
	font-size: 20px !important;
}

.pie_container {
	max-width: inherit !important;
	border: 1px solid black;
	background: #fcf9f9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.canvas_container {
	border: 1px solid black;
	background: #fcf9f9;
	display: flex;
	justify-content: center;
	align-items: center;
}



/* Grid Cuestionario */

.califica {
	background: rgb(0, 171, 190) !important;
	white-space: normal;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 2rem;
	height: 100%;
	font-size: 1.5rem !important;
} 

.califica-rep {
	background: rgb(0, 171, 190) !important;
	white-space: normal;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.1rem;
	height: 100%;
	font-size: 1rem !important;
}

/*background-color: rgb(250, 188, 91) !important;*/
.preguntas {
	white-space: normal;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 2rem;
	height: 100%;
	text-align: justify;
	font-size: 1.5rem !important;
}


.grid_registrocuestionario {
	display: grid;
	width: 98%;
	grid-gap: 10px;
	grid-template-columns: 20rem 1fr;
	grid-template-rows: repeat(15, auto);
	gap: 5px;
	padding: 10px;
	font-size: 20px !important;
}

.grid_registrocuestionario .izquierda {
	background-color: dark;
}

.grid_registrocuestionario .derecha {
	background-color:  rgb(0, 171, 190) !important;
}

.gcu1 { grid-area: title; }
.gcu2 { grid-area: body; }
.gcu3 { grid-area: foot; }

.grid-cuestionario {
	display: grid;
	width: 100%;
	height: auto;
	grid-template-areas:
	  'title'
	  'body'
	  'foot';
	grid-template-rows: auto 1fr 3rem;
	grid-template-columns: 1fr;
	gap: 1px;
	/*background-color: #2196F3;*/
}

.grid-cuestionario .gcu1 {
	padding-left: 3rem;
	padding-right: 3rem;
	display: flex;
  	justify-content: space-between;
	align-items: center;
}

.grid-cuestionario .gcu2 {
	font-size: 1.5rem !important;
}

.grid-cuestionario .gcu3 {
	padding-left: 3rem;
	padding-right: 3rem;
	display: flex;
	font-size: 1.5rem !important;
  	justify-content: center;
	align-items: center;
}

.gre1 { grid-area: title; }
.gre2 { grid-area: body; }
.gre3 { grid-area: foot; }

.grid-resumen {
	display: grid;
	width: 100%;
	height: auto;
	grid-template-areas:
	  'title'
	  'body'
	  'foot';
	grid-template-rows: auto 1fr 3rem;
	grid-template-columns: 1fr;
	gap: 1px;
	/*background-color: #2196F3;*/
}

.grid-resumen > .gre1 {
	padding-left: 3rem;
	padding-right: 3rem;
	display: flex;
  	justify-content: space-between;
	align-items: center;
}

.grid-resumen > .gre2 {
	height: 100%;
	font-size: 0.8rem !important;
}

.grid-resumen > .gre3 {
	height: 100%;
}


.alinea-botones {
	margin-top: 0.2rem;
	display: flex;
  	justify-content: space-around;
	font-size: 1.3rem;
}

/* Grid Principal*/
.gdc0 { grid-area: logo; }
.gdc1 { grid-area: header; }
.gdc2 { grid-area: menu; }
.gdc3 { grid-area: main; }
.gdc4 { grid-area: footer; }
.gdc5 { grid-area: acceso; }

.grid-container {
  display: grid;
  max-height: calc(100vh - 1rem);
  width: 100%;
  height: 100%;
  grid-template-areas:
    'logo header acceso'
    'menu main main'
    'menu footer footer';
  grid-template-rows: 75px 1fr 30px;
  grid-template-columns: 11rem 1fr 8.5rem;
  gap: 5px;
  /*background-color: #2196F3;*/
}

.grid-container > div {
  /*background-color: rgba(255, 255, 255, 0.8);*/
  text-align: center;
  font-size: 30px;
}

.grid-container .gdc1 {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 75px;
	font-size: 45px;
}

.grid-container .gdc3 {
	max-height: calc(1fr-125px);
}

.grid-container .gdc4 {
	font-size: 16px;
}

/* Grid todos las vistas que despliguen tablas primarias */
.gdt0 { grid-area: header; }
.gdt1 { grid-area: buscador; }
.gdt2 { grid-area: tabla; }
.gdt3 { grid-area: paginador; }
.gdt4 { grid-area: botonera; }
.gdt5 { grid-area: blanco; }

.grid-tablas {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-areas:
    'header header'
	'botonera buscador'
    'tabla tabla'
    'paginador paginador';
  grid-template-columns: 50% 50%;
  grid-template-rows: 7% 8% 80% 5%;
  gap: 5px;
}

.grid-tablas > div {
	/*background-color: rgba(255, 255, 255, 0.8);*/
	text-align: center;
	font-size: 1.56rem;
}

.gdt4 > botones {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Grid muestra los resultados */
.gres0 { grid-area: tabs; }
.gres1 { grid-area: selectores; }
.gres2 { grid-area: tabla; }

.grid-resultados {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-areas:
    'tabs tabs'
	'selectores tabla';
  grid-template-columns: 1fr 4fr;
  grid-template-rows: auto 1fr;
  gap: 5px;
}

.grid-resultados .gres1 {
	background-color: rgb(0, 171, 190) !important;
	color: white;
	font-size: 1rem !important;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}


#encabezado {
  display: flex;
  align-items: baseline;	
}

#encabezado div {
  align-items: center;
}

#pantalla-base {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.25rem;
  font-size: 1.1rem;
}

.overlay {
	height: inherit;
}

.vertical-center {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 35%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: calc(18px + (70 - 30) * ((100vw - 320px) / (1200 - 320)));
}
/* tabla con scrollbar  */

#stickytab { /* Outer container */
    display: inline-block; /* (1) */
    height: 22em; /* (1) */
    width: 100%; /* (1) */
    overflow: auto; /* (1) */
    /*resize: both; */
    /*font-family: 'Arial', sans-serif;*/
}

#stickytab table thead * { /* Cells of the first row */
    position: sticky; /* (2) */
    top: 0; /* (2) */
    z-index: 4; /* (2) */
}


#stickytab table tr *:first-child { /* Cells of the first column */
    position: sticky; /* (2) */
    left: 0; /* (2) */
    z-index: 2; /* (2) */
    /*border-left: black solid 1px; /* (3) */
    /*background-color: white; /* (3) */
}


#stickytab table tr:first-child *:first-child { /* Top left cell */
    z-index: 3; /* (2) */
    /*background-color: gainsboro; /* (3) */
}

/* clase encabezado inmobil*/
.stickytab { /* Outer container */
    display: inline-block; /* (1) */
    height: 10em; /* (1) */
    width: 100%; /* (1) */
    overflow: auto; /* (1) */
    /*resize: both; */
    /*font-family: 'Arial', sans-serif;*/
}

.stickytab table thead * { /* Cells of the first row */
    position: sticky; /* (2) */
    top: 0; /* (2) */
    z-index: 4; /* (2) */
}


.stickytab table tr *:first-child { /* Cells of the first column */
    position: sticky; /* (2) */
    left: 0; /* (2) */
    z-index: 2; /* (2) */
    /*border-left: black solid 1px; /* (3) */
    /*background-color: white; /* (3) */
}


.stickytab table tr:first-child *:first-child { /* Top left cell */
    z-index: 3; /* (2) */
    /*background-color: gainsboro; /* (3) */
}

/* menu */
.btn-menu {
	display: none;
	color: white;
	font-size: 50px !important;
	line-height: 55px !important;
	text-align: left;
	justify-self: start;
	align-self: center;
}

.btn-menu .icono {
	float: left;
}

.menu-principal {
	display: block;
}

.contenedor-menu {
	width: 8.5rem;
	min-width: 8.5rem;
	margin: 0px;
	font-size: 3rem !important;
	display: inline-block;
}

.contenedor-menu .menu{
	width: 100%;
}

.contenedor-menu .ul {
	list-style: none;
}

.contenedor-menu .menu li a {
	/*color: #494949; */
	display: block;
	padding: 10px 10px;
	background: dark;
}

.contenedor-menu .menu li a:hover{
	background: dark;
	color: white;
}

.contenedor-menu .menu .icono {
	font-size: 1.2rem;
	line-height: 1.6rem;
}

.contenedor-menu .menu .icono.izquierda{
	float: left;
	margin-right: 10px;
}

.contenedor-menu .menu .icono.derecha{
	float: right;
	margin-left: 10px;
}
  
.contenedor-menu .menu ul li a {
	background: dark;
	color: white;
}

.icono-derecha {
	display: flex;
    justify-content: flex-end;
	margin-left: 10px;
	font-size: 1.4rem;
} 

 
/* Style tab links */
.tablink {
	background-color: #555;
	color: white;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	font-size: 0.6rem;
	width: 14.28%;
}
  
.tablink:hover {
	background-color: #1b1b1b;
}

.tablink:active {
	background-color: #1b1b1b;
}

/* Style tab links */
.tablink-sm {
	background-color: #555;
	color: white;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	font-size: 0.6rem;
	width: 12.50%;
}
  
.tablink-sm:hover {
	background-color: #1b1b1b;
}

.tablink-sm:active {
	background-color: #1b1b1b;
}
  
/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
	color: white;
	display: none;
	/*padding: 100px 20px;*/
	height: 100%;
}
  
#Home {background-color: dark;}
#News {background-color: dark;}
#Contact {background-color: dark;}
#About {background-color: dark;}

/* Submenus */
.dropdown-menu li {
	position: relative;
	}

.dropdown-menu .dropdown-submenu {
	display: block;
	position: absolute;
	left: 100%;
	top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
	right: 100%;
	left: auto;
	}

.dropdown-menu > li:hover > .dropdown-submenu {
	display: block;
}

@media screen and (max-width: 1024px) {
	
	h2, .h2 {
		font-size: 1.5rem !important;
	}
	
	h6, .h6 {
		font-size: 0.9rem !important;
	}

	.formulario_registrotablas {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(8, auto);
	}

	.gcspan-3 {
		grid-column: span 2;
	}

	.grid-cuestionario .gcu2 {
		font-size: 1.25rem !important;
	}

	.grid-cuestionario .gcu3 {
		font-size: 1.25rem !important;
	}
	

	.califica {
		line-height: 1.75rem;
		font-size: 1.25rem !important;
	} 

	.preguntas {
		line-height: 1.75rem;
		font-size: 1.25rem !important;
	}

	
	/*.formulario_registrograficas {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4, 25rem);
	} */
	
}

@media screen and (max-width: 900px) {
	
	h2, .h2 {
		font-size: 1.2rem !important;
	}
	
	h6, .h6 {
		font-size: 0.7rem !important;
	}

	.contenedor-menu{
		margin: 0;
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 1000;
	}

	.menu-principal {
		display: none;
	}

	.btn-menu {
		display: block;
	}

	.contenedor-menu .menu {
		display: none;
	}

	.grid-container {
		grid-template-areas:
		  'menu menu acceso'
		  'logo header header'
		  'main main main'
		  'footer footer footer';
		grid-template-rows: 75px 75px 1fr 40px;
		/*background-color: #2196F3;*/
	}

	.formulario_registrotablas {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(18, auto);
	}

	/*.formulario_registrograficas {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(7, 25rem);
	} */

	.gcspan-3 {
		grid-column: span 1;
	}
	
	.gcspan-2 {
		grid-column: span 1;
	}

	/* Grid Informacion General de encuesta */
	.grid_info_encuesta {
		display: grid;
		width: 100%;
		grid-gap: 10px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(16, auto);
		gap: 5px;
		padding: 10px;
		font-size: 14px !important;
	}

	.grid_info_encuesta .izquierda {
		background-color: dark;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.grid_info_encuesta .derecha {
		background-color:  rgb(0, 171, 190) !important;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	/* Grid Informacion General de codigo */
	.grid_codigo_encuesta {
		display: grid;
		width: 100%;
		grid-gap: 10px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(2, auto);
		gap: 5px;
		padding: 10px;
		font-size: 14px !important;
	}

	.grid_codigo_encuesta .izquierda {
		background-color: dark;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.grid_codigo_encuesta .derecha {
		background-color: dark !important;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.grid-cuestionario .gcu2 {
		font-size: 0.875rem !important;
	}

	.grid-cuestionario .gcu3 {
		font-size: 0.875rem !important;
	}

	.califica {
		line-height: 1.5rem;
		font-size: 0.875rem !important;
	} 
	.preguntas {
		line-height: 1.5rem;
		font-size: 0.875rem !important;
	}
	
}
