ui/playerperks.razor.scss
PlayerPerks {
	position: absolute;
	color: white;
	//width: 142px;
	left: 10px;
	bottom: 146px;
	//height: 880px;
	//max-height: 880px;
	//top: 10px;
	font-family: Nunito;
	font-weight: 800;
	//align-content: center;
	//justify-content: center;
	//align-items: center;
	z-index: 998;
	pointer-events: all;
	//background-color: #ff000055;

	.itemlist {
		flex-wrap: wrap;
		//gap: 10px;
		gap: 4px;
		flex-direction: column-reverse;
		height: 100%;
		width: 100%;
		//align-content: flex-start;
		//justify-content: center;
		transition: all 0.3s ease;
	}

	.itemlist_hover {
		opacity: 0.3;
		&:hover {
			opacity: 1;
		}
	}
}