body {
	font-family: 'Inter', sans-serif;
	min-height: 100vh;
	padding: 0;
	margin: 0 auto;
	background-color: #f0f0f0;
}

.button-black {
	background-color: black;
	border-color: black;
}

.button-black.button-clear,
.button-black.button-outline {
	background-color: transparent;
	color: black;
}

.button-black.button-clear {
	border-color: transparent;
}

.button-small {
	font-size: 0.8rem;
	height: 2.8rem;
	line-height: 2.8rem;
	padding: 0 1.5rem;
}

.button-large {
	font-size: 1.4rem;
	height: 4.5rem;
	line-height: 4.5rem;
	padding: 0 2rem;
}

.button-x-large {
	font-size: 2rem;
	height: 6rem;
	line-height: 6rem;
	padding: 0 5rem;
	border: 1px solid #a0a0a0;
	border-radius: 30px;
}

.button-x-large:hover {
	font-size: 2rem;
	height: 6rem;
	line-height: 6rem;
	padding: 0 5rem;
	background-color: black !important;
	color: white !important;
	border: 1px solid #a0a0a0;
	border-radius: 30px;
}

.form-div {
	display: block;
	padding: 20px;
	text-align: center;
	font-size: large;
	background-color: white;
}

.toolbar {
	left: 5px;
	top: 15px;
	position: absolute;
	margin: 0 auto;
	z-index: 99;
}

.toolbar :hover,
.toolbar:active {
	opacity: 1;
}

.token-box {
	height: 80vh;
	width: 100vw;
	margin-top: 10vh;
	padding: 5vw;
	text-align: center;
	list-style: none;
}

.token-tile {
	float: left;
	margin-right: 20px;
	height: 20vh;
	width: 20vh;
	line-height: 20vh;
	font-size: 8vh;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	border-radius: 10vh;
}

.token-message {
	margin-top: 10vh;
	line-height: 10vw;
	font-size: 10vw;
	font-weight: bold;
	display: block;
}

div.scroll-container {
	overflow: auto;
	white-space: nowrap;
	padding: 10px;
}

div.scroll-container img {
	padding: 10px;
}

/* scrollbar */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 255, 255, 0.3);
}

input,
textarea {
	font-size: 18pt;
	padding: 10px;
	line-height: 22pt;
	display: block;
	font-weight: bold;
	;
}

.image-slideshow {
	position: relative;
	margin: auto;
}

.image-slideshow img {
	background-color: black;
	width: 100%;
	display: inline-block;
}

.fade {
	animation-name: fade;
	animation-duration: 1s;
}

@keyframes fade {
	from {
		opacity: 0.9;
	}

	to {
		opacity: 1;
	}
}