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

*::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

*::-webkit-scrollbar-track {
	background: #eee;
}

*::-webkit-scrollbar-thumb:hover {
	filter: brightness(1.2);
}

*::-webkit-scrollbar-thumb {
	border-radius: 5px;
	/* background: linear-gradient(to bottom,
			#0265e8 0%,
			#04176b 100%) !important; */
	background-color: #00A59B;
}

*::-webkit-scrollbar-thumb:vertical {
	/* background: linear-gradient(to bottom,
			#0265e8 0%,
			#04176b 100%) !important; */
	background-color: #00A59B;
}

*::-webkit-scrollbar-thumb:horizontal {
	/* background: linear-gradient(to bottom,
			#0265e8 0%,
			#04176b 100%) !important; */
	background-color: #00A59B;
}

html, body, *:not(input):not(textarea) {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

img {
	-webkit-user-drag: none;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
figure,
dl,
dd,
ol,
ul,
menu {
	margin: 0;
	padding: 0;
}

html,
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

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

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

a:active,
a:hover {
	outline: 0;
}

ol,
ul,
menu {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
button,
textarea,
select {
	font: inherit;
	line-height: inherit;
	color: inherit;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	outline: none;
}

button {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	background: none;
	border: 0;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}

::placeholder {
	opacity: 1;
}

:-webkit-autofill {
	-webkit-text-fill-color: inherit !important;
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	box-shadow: 0 0 0px 1000px transparent inset !important;
}

:focus {
	outline: none;
}

:focus-visible {
	outline: none;
	outline-offset: 0;
}

img,
a,
button {
	-webkit-user-drag: none;
	user-select: none;
}

button,
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
}

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

html {
	scroll-behavior: smooth;
}