/** global.css - Global style */

:root {
	--bg: #fff;
	--tramit: #4540a5;
	--tramit-light: #d1cfff;
	--tramit-dot: #33d3d3;
	--dark-blue: #0a3039;
	--alpha-hover: #dddddd36;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	/* user-select: none; */
}

html,
body {
	width: 100%;
	height: 100%;
}

body {
	background-color: var(--bg);
	color: var(--dark-blue);
	margin: 0;
	font-family: 'Rubik', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	overflow: hidden;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	outline: none;
}

::selection {
	background-color: var(--tramit-light);
}

.material-icons.md-16 {
	font-size: 16px;
}

.material-icons.md-18 {
	font-size: 18px;
}

.material-icons.md-24 {
	font-size: 24px;
}

.material-icons.md-36 {
	font-size: 36px;
}

.material-icons.md-48 {
	font-size: 48px;
}