body {
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 1em;
	font-family: 'Poppins';
	font-style: normal;
	line-height: normal;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

*, ::before, ::after {
	box-sizing: border-box;
	transition: all .3s ease;
}

body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background: rgba(0,0,0,0);
}

body::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,.15);
}

body::-webkit-scrollbar-thumb:hover {
	background: rgba(0,0,0,.3);
}

h1, h2, h3, h4, h5, h6, p, div {
	margin: 0;
	cursor: default;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

table, th, td, tr {
	border-collapse: collapse;
	border: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	margin: 0;
}

img, iframe {
	margin: 0;
	padding: 0;
	display: block;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
input[type="submit"],
input[type="search"],
input[type="number"],
textarea,
select {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	font-family: 'Poppins';
	outline: none;
	resize: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
}

button {
    border: none;
    cursor: pointer;
  }