
.mat-info {
	cursor: pointer;
	position: relative;
	display: inline-block;
}

.mat-info .mat-description {
	position: absolute;
	/*left: -142px;*/
	left: -293px;
	z-index: 25;
	display: none;
	/*opacity: 0;*/
	pointer-events: none;
	text-transform: none;
}

.mat-info .mat-description.narrow {
	left: -142px;
}

.mat-info:hover .mat-description {
	display: block;
	/*opacity: 1;*/
}

.mat-info .mat-description .mat-pointer {
	background: url(images/pointer.png);
	height: 16px;
	width: 32px;
	margin: 0 auto;
	display: block;
	z-index: 5;
    position: relative;
}

.mat-info .mat-description .mat-text {
	background: #fff;
	color: #1E2020;
	font-size: 16px;
	line-height: 24px;
	padding: 16px 24px;
	/*width: 298px;*/
	width: 600px;
	box-sizing: border-box;
	border-radius: 8px;
	display: block;
	box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}

.mat-info .mat-description.narrow .mat-text {
	width: 298px;
}

@media all and (max-width: 800px){
	
	.mat-info .mat-description {
		left: -142px;
	}	
	
	.mat-info .mat-description .mat-text {
		font-size: 12px;
		line-height: 16px;
		width: 298px;
	}
}