@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

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

body {
	color: #333;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

a {
	color: #00afb9; /* #2a9d8f, #00bbf9, #0466c8, #9b5de5 */
	text-decoration: none;
}

p {
	font-weight: 300;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: #00afb9;
}

label {
	display: block;
	margin-bottom: 4px;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.6em 0.8em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
}

input:focus, button:focus, select:focus, textarea:focus {
	outline: none;
	border: 1px solid #00afb9;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
	padding: 0.6em 1.1em;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

/* button:focus {
	border-color: #666;
} */

.fw-thin {
	font-weight: 300;
}
.fw-extra-light {
	font-weight: 200;
}
.fw-light {
	font-weight: 300;
}
.fw-normal {
	font-weight: 400;
}
.fw-medium {
	font-weight: 500;
}
.fw-semi-bold {
	font-weight: 600;
}
.fw-bold {
	font-weight: 700;
}
.fw-extra-bold {
	font-weight: 800;
}
.fw-black {
	font-weight: 900;
}
