form-multi-file .unselected
{
	background: var(--color-background-input, #F2F2F2);
	height: 48px;
	padding: 0 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-subtext, #717171);
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	gap: 16px;
}
form-multi-file .unselected i
{
   font-size: 24px;
	color: var(--color-subtext, #717171);
}

form-multi-file .selected
{
	background: var(--color-background-input, #F2F2F2);
	height: 48px;
	padding: 0 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
form-multi-file .selected button
{
   color: var(--system-danger, #EB2A2A);
   text-align: center;
   font-size: 16px;
   line-height: 150%;
   display: flex;
   padding: 4px 8px;
   align-items: center;
   gap: 8px;
   border-radius: 32px;
   border: 1px solid var(--system-danger, #EB2A2A);
}
form-multi-file .selected button i
{
   font-size: 24px;
	color: var(--system-danger);
}


form-multi-file input
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
form-multi-file input[selected],
form-multi-file input[selected] ~ .unselected,
form-multi-file input:not([selected]) ~ .selected
{
   display: none;
}