@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Rubik';
	src: url('fonts/Rubik.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Rubik';
	src: url('fonts/Rubik-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Circular';
	src: url('fonts/Circular-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Circular';
	src: url('fonts/Circular-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

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

body {
	background-color: #101014;
	color: #fff;
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 0.8em;
	text-shadow: 1px 1px #00000059;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

table.click-rows tbody tr {
	cursor: pointer;
}

table td.min {
	width: 1px;
	white-space: nowrap;
}

table td.left,
table th.left {
	text-align: left;
}

table td.right,
table th.right {
	text-align: right;
}

table td.center,
table th.center {
	text-align: center;
}

table.sticky {
	position: relative;
}

table.sticky th {
	position: sticky;
	top: 0;
}

.tippy-box {
	background-color: #0f0f0fde !important;
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
	font-size: 0.9em !important;
	box-shadow: 0 0 3px 1px #00000085;
}

.tippy-box[data-placement^='top'] > .tippy-arrow::before {
	border-top-color: #0f0f0fde !important;
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow::before {
	border-bottom-color: #0f0f0fde !important;
}

.tippy-box[data-placement^='left'] > .tippy-arrow::before {
	border-left-color: #0f0f0fde !important;
}

.tippy-box[data-placement^='right'] > .tippy-arrow::before {
	border-right-color: #0f0f0fde !important;
}

.tippy-content {
	white-space: pre-line;
	padding: 7px 9px;
}

::-webkit-scrollbar {
	background-color: rgb(40, 40, 40);
	border: 1px solid rgb(53, 53, 53);
	border-top: none;
	border-bottom: none;
	width: 1rem;
}
::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 1rem;
	border: solid 0.3rem transparent;
	box-shadow: inset 0 0 1rem 1rem rgb(96, 96, 96);
}
::-webkit-scrollbar-button,
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner,
::-webkit-resizer {
	display: none;
}

.scroll-subtle::-webkit-scrollbar {
	background-color: transparent;
	border: none;
}
.scroll-subtle::-webkit-scrollbar-thumb {
	border: solid 0.4rem transparent;
	box-shadow: inset 0 0 1rem 1rem rgba(96, 96, 96, 0.5);
}

.pill-btn {
	padding: 0.5rem;
	cursor: pointer;
	text-align: center;
	border-radius: 0.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pill-btn > img {
	height: 1em;
	margin-right: 0.5rem;
}
.pill-btn.grey {
	background-color: #27272f;
	box-shadow: 0 0 4px 0 #0c0c0f;
}
.pill-btn.grey:active {
	background-color: #1a1a20;
}
.pill-btn.blue {
	background-color: #005cff;
	box-shadow: 0 0 4px 0 #0c0c0f;
}
.pill-btn.blue:active {
	background-color: #003faf;
}

*:not(input) {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.select {
	-webkit-touch-callout: initial;
	-webkit-user-select: initial;
	-khtml-user-select: initial;
	-moz-user-select: initial;
	-ms-user-select: initial;
	user-select: initial;
}
.select-all {
	-webkit-touch-callout: initial;
	-webkit-user-select: all;
	-khtml-user-select: all;
	-moz-user-select: all;
	-ms-user-select: all;
	user-select: all;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.spin {
	animation: spin 1s linear infinite;
	transform-origin: center center;
}
