.info-container {
	position: absolute;
	width: 100%;
	height: 35px;
	background-color: var(--red);
	background-image: url('../assets/images/textures/texture8.png');
	z-index: 3;
}

.info-name {
	position: absolute;
	top: 7px;
	left: 15px;
	font-size: 12px;
	color: var(--white);
}

.info-gold {
	position: absolute;
	bottom: 4px;
	left: 15px;
	font-size: 9px;
	color: var(--yellow);
}

.info-zone {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	font-size: 14px;
	line-height: 38px;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--white);
}

.info-settings {
	position: absolute;
	top: -1px;
	right: 15px;
	font-size: 26px;
	font-weight: bold;
	color: var(--white);
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}

.info-settings:hover {
	filter: brightness(1.2);
}

