.app-sortable {
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	padding: 1vw;
	
	font-weight: bold;
	
	background-color: rgba(var(--ColorHighlight), 0.2);
	backdrop-filter: blur(1vw);
	
}

.app-sortable:hover,active {
	
	background-color: rgba(var(--ColorAccentBright), 0.5);
	
}

.app-sortable-column {
	
	flex-direction: column;
	
}

.app-sortable-options {
	
	display: flex;
	flex-direction: row;
	
	justify-content: center;
	align-items: center;
	
}

.app-sortable-options div {
	
	padding: 1vw;
	
}