.info-mask {
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: table;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.info-mask.active{
	pointer-events: initial;
	opacity: 1;
}

.info-wrapper {
	display: table-cell;
	vertical-align: middle;
}

.info-container {
	width: 5.5rem;
	margin: 0px auto;
	padding: 0.2rem;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
	transition: all 0.3s ease;
	/* font-family: Helvetica, Arial, sans-serif; */
	font-family: CenturyGothic-Bold;
	border-radius: 0.4rem;
	text-align: center;
}