#ta-command-palette-container {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
	font-size: 20px;
	background-color: rgba(0, 0, 0, 0.0);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 0vh;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	z-index: 999999;
	transition: background-color 0.3s, height 0s 0.3s;
	overflow: hidden;
}

#ta-command-palette-container.active {
	background-color: rgba(0, 0, 0, 0.4);
	height: 100vh;
	transition: background-color 0.3s;
}

#ta-command-palette {
	display: flex;
	flex-direction: column;
	background-color: #000;
	width: 60%;
	max-width: 600px;
	padding: 1rem;
	border-radius: 8px;
	position: absolute;
	top: calc( 10vh + 20px );
	left: 50%;
	overflow: hidden;
	transform: translateX(-50%);
	opacity: 0;
	transition: top 0.3s, opacity 0.3s;
}

#ta-command-palette-container.active #ta-command-palette {
	opacity: 1;
	top: 10vh;
}

#ta-command-palette-input {
	font-family: inherit;
	background-color: #333;
	border: 0 none;
	border-radius: 6px;
	font-size: inherit;
	display: block;
	margin: 0 0 0.8rem 0;
	padding: 0.15rem 0.5rem;
	width: 100%;
	color: #FFF;
	outline: none;
}

#ta-command-palette-items {
	position: relative;
	background-color: #000;
	font-size: inherit;
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%;
	height: 80%;
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: scroll;
	color: #FFF;
	scrollbar-width: thin;          /* "auto" or "thin" */
    scrollbar-color: #444 #000;   /* scroll thumb and track */
}
#ta-command-palette-items::-webkit-scrollbar {
  width: 6px;               /* width of the entire scrollbar */
}

#ta-command-palette-items::-webkit-scrollbar-track {
  background: #000;        /* color of the tracking area */
}

#ta-command-palette-items::-webkit-scrollbar-thumb {
  background-color: #444;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 0px none;  /* creates padding around scroll thumb */
}

#ta-command-palette li {
	display: block;
	margin: 0;
	padding: 0.5rem;
}

#ta-command-palette a {
	display: flex;
	color: #FFF;
	text-decoration: none;
}

#ta-command-palette li.selected {
	display: flex;
	padding: 0.5rem;
	background-color: #2271b1;
}

#ta-command-palette .update-plugins,
#ta-command-palette .awaiting-mod {
	background-color: #d63638;
	color: #fff;
	border-radius: 9px;
	height: 18px;
	min-width: 18px;
	padding: 0 5px;
	font-size: 11px;
	line-height: 1.6;
	text-align: center;
	display: inline-block;
	margin-left: 0.5rem
}

#ta-command-palette .update-plugins.count-0,
#ta-command-palette .awaiting-mod.count-0 {
	display: none;
}
