.vid-tokens {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	position: relative;
	box-sizing: border-box;
	min-width: 80px;
	max-width: 200px;
	min-height: var(--vid-text-height);
	padding: 4px;
	line-height: 2;
	gap: var(--vid-gap);
	color: var(--vid-text-color) !important;
}
.vid-tokens-input {
	display: block !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	min-height: 20px !important;
	height: 20px !important;
	padding: 0 !important;
	background-color: transparent !important;
	color: var(--vid-text-color) !important;
}
.vid-tokens-suggestions {
	position: absolute;
	z-index: 99999;
	display: flex;
	flex-flow: column nowrap;
	width: max-content;
	height: max-content;
	-webkit-box-shadow: 5px 5px 10px 0px #0005;
	box-shadow: 5px 5px 10px 0px #0005;
}
.vid-tokens-suggestions label {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	gap: 0;
	width: 100%;
	height: 2em;
	padding: 5px;
	font-family: sans-serif;
}
.vid-tokens-suggestions label.active { background-color: #eee; }
.vid-tokens-token {
	display: flex;
	align-items: center;
	background-color: var(--vid-text-alt);
	padding: 0 4px;
	line-height: 1.5;
	border-radius: var(--vid-border-radius);
	width: max-content;
	font-family: sans-serif;
	gap: var(--vid-gap);
	user-select: none;
}
.vid-tokens-token label { font-size: 0.8em; word-break: break-all; }
.vid-tokens-token-remove { color: #777; font-size: 1.1em; cursor: pointer; padding-left: 5px; }

.vid-tokens, .vid-tokens-suggestions {
	background-color: var(--vid-text-bg);
	border: 1px solid var(--vid-text-border);
	border-radius: var(--vid-border-radius);
}
.vid-tokens.active { outline: 1px solid var(--vid-text-focus); }
.vid-tokens.disabled { background-color: var(--vid-text-disabled); color: var(--vid-text-placeholder) !important; }
.vid-tokens-wrapper { display: flex; flex-flow: column nowrap; width: max-content; }
.vid-tokens-wrapper.row { flex-flow: row nowrap; align-items: center; }
