/* -------------------------------- */
/* ---- VARIABLES ----------------- */
/* -------------------------------- */

/* Variables estáticas (no cambian dependiendo el tema) */
:root{
	--font: 'Inter', sans-serif;
	/*--color-text: #0b1f3f;*/
	/*--color-text-grey: #788195;*/
	--color-text: 240 10% 3.92%;
	--color-text-grey: 240 3.83% 46.08%;
	--color-error: 0 100% 61.76%;
}


/* Variables dinámicas (cambian dependiendo el tema) */
:root{
	--color-primary: 240 5.9% 10%;
	--color-menu-from: 0 0% 15.12%;
	--color-menu-to: 0 0% 0%;


	/*--color-gradient-1: #1f56ad;
	--color-gradient-2: #06204a;
	--color-search-input: #17458f;*/
}

/* -------------------------------- */
/* ---- FUENTES ------------------- */
/* -------------------------------- */

/* Fuente Inter Variable (normal y italic) */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


/*@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-ThinItalic.ttf') format('truetype');
	font-weight: 100;
	font-style: italic;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-LightItalic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-MediumItalic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-BoldItalic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-BlackItalic.ttf') format('truetype');
	font-weight: 900;
	font-style: italic;
}*/

/* -------------------------------- */
/* ---- ESTILOS ------------------- */
/* -------------------------------- */

*, *::after, *::before{
	box-sizing: border-box;
}

html{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: 100%;
}

html, body{
	margin: 0;
	padding: 0;
	font-family: var(--font);
	font-weight: 400;
	line-height: 1.15;
	background-color: #fff;
	min-height: 100vh;
	color: hsl(var(--color-text));
}

.wrapper{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.d-none{
	display: none;
}

.w-100{
	width:100% !important;
}

.Form, .K2BForm, .K2BFormLogin, .Form_MasterPage{
	font-family: var(--font) !important;
	font-size: inherit !important;
	height: inherit !important;
	border-style: inherit !important;
	border-width: inherit !important;
}

a.Hyperlink:focus{
	outline: none;
}

a, .Hyperlink, .K2BHyperLink{
	font-family: var(--font);
}

.content-header > .gxwebcomponent, .content-header > .gxwebcomponent > .gxwebcomponent-body{
	height: 100%;
}