:root {
  --blanco: #FFF;
  --negro: #1F1F1F;
  --primario: #1B6BB1;
  --secundario: #C5262A;
  --divider: #E6E6E6;
  --grisclaro: #F9F9F9;
  --verde:#0F8824;
  --rosa: #FF4D4D;
  --fuente: 'Roboto', sans-serif;
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-snap-type: y mandatory;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body, table, td, textarea, input, select {
	font-size: 1.5rem; /* 1rem = 10px */
	font-family: var(--fuente);
	color: var(--negro);
}
img{
	border-radius: 0.4rem;
}
.banner_movil, .banner_pc{
	border-radius: 0rem;
}
.texto_subrayado {
	text-decoration: underline;
}
.texto_resaltado {
	font-weight: 700;
}
.align_right {
	text-align: right;
}
.align_center {
	text-align: center;
}
.align_left {
	text-align: left;
}
.align_justify {
	text-align: justify;
}
.float_left {
	float: left;
}
.float_right {
	float: right;
}
span.align_justify, span.align_right, span.align_center {
	display: block;
}
.clear_both {
	clear: both;
}
form {
	padding: 0rem;
	margin: 0rem;
}
p {
	padding: 0rem;
	margin: 0rem;
}
.display_block {
	display: block;
}
.margen_none {
	margin: 0rem;
}


