:root {
  --theme-menu:			"Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --theme: 				-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --primary-color:		#78C2AD;
  --primary-colorH:		#5eb69d;

  --secondary-color:	#F3969A;
  --secondary-colorH:	#EF7479;

  --success-color:	#56CC9D;
  --success-colorH:	#3AC18C;

  --info-color:		#6CC3D5;
  --info-colorH:	#4EB7CD;

  --warning-color:	#FFCE67;
  --warning-colorH:	#FFC241;
  
  --danger-color:	#FF7851;
  --danger-colorH:	#FF5A2B;
}
/*	FUENTES INCRUSTADAS
	-------------------*/
@font-face{
	font-family:"Montserrat";
	src: url("Montserrat-Regular.ttf");
	font-style:normal;
	font-weight:400;
}
@font-face{
	font-family:"Roboto";
	src: url("Roboto-Thin-100.ttf");
	font-style:normal;
	font-weight:100;
}
@font-face{
	font-family:"Roboto";
	src: url("Roboto-Light-300.ttf");
	font-style:normal;
	font-weight:300;
}
@font-face{
	font-family:"Roboto";
	src: url("Roboto-Regular-400.ttf");
	font-style:normal;
	font-weight:400;
}
@font-face{
	font-family:"Roboto";
	src: url("Roboto-Medium-500.ttf");
	font-style:normal;
	font-weight:500;
}
@font-face{
	font-family:"Roboto";
	src: url("Roboto-Bold-700.ttf");
	font-style:normal;
	font-weight:700;
}
@font-face{
	font-family:"Roboto";
	src: url("Roboto-Black-900.ttf");
	font-style:normal;
	font-weight:900;
}
/*	CLASSES PARA TODOS LOS DOCUMENTOS
	---------------------------------*/
*{
	margin: 0px;
	padding: 0px;
	outline: 0;
}
html, body{
	width: 100%;
	height: 100%;
}
body{
	margin: 0;
	font-family: var(--theme);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #888;
	text-align: left;
	background-color: #fff;
}











