/* ==========================================================
   WEBART FRAMEWORK
   Proyecto : Electric Vial SpA
   Archivo  : base.css
   Autor    : WebArt SpA
========================================================== */

/* ==========================================================
   RESET BASE
========================================================== */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-width: 320px;
	overflow-x: hidden;
	background: var(--wa-color-background);
	color: var(--wa-color-text);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
	height: auto;
}

picture {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

ul,
ol {
	margin-top: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
	margin-bottom: 0;
}

::selection {
	background: var(--wa-color-primary);
	color: var(--wa-color-black);
}

/* ==========================================================
   ACCESIBILIDAD
========================================================== */

:focus-visible {
	outline: 3px solid var(--wa-color-primary);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}