HUD
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	font-weight: bold;

	font-family: Poppins;

	color: white;

	.input-hints
	{
		position: absolute;
		right: 12px;
		bottom: 12px;

		gap: 4px;
	}

	.input-hint
	{
		height: 42px;
		background-color: #333333;

		border-color: rgb(59, 59, 59);

        border-width: 4px;
        border-radius: 4px;

		padding: 3px;

		align-items: center;
		justify-content: center;

		> img
		{
			width: 32px;
			height: 32px;
		}
	}

	ChangeClothingPanel
	{
		position: absolute;
		left: 32px;
	}
}