.tooltip {
	cursor: pointer;
	border-bottom: 1px dashed;
	display: inline-block;
}

.tooltip_content {
	font-weight: normal;
	position: absolute;
	background-color: black;
	color: white;
	font-size: 11px;
	line-height: 18px;
	padding: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	max-width: calc( 100% - 85px );
	margin-top: 31px;
	z-index: 10;
	display: none;
	left: 0;
	right: 0;
	min-width: 200px;
}
.tooltip_content * {
	color: white!important;
}
.tooltip_content.end {
	right: 25px;
}
.tooltip_content *,
.tooltip_content p {
	line-height: inherit;
}
.tooltip_content > *:first-child {
	margin-top: 0;
	padding-top: 0;
}
.tooltip_content > *:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.tooltip > i {
	font-weight: normal;
}
.tooltip::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	border-width: 0 5px 6px 5px;
	border-color: transparent transparent #000000 transparent;
	visibility: hidden;
	margin-top: 25px;
	margin-left: -40px;
}
.tooltip:hover .tooltip_content {
	display: block;
}
.tooltip:hover::after {
	visibility: visible;
}
.tooltip.top:after {
	border-width: 6px 5px 0 5px;
	border-color:  #000000 transparent transparent transparent;
	margin-top: -4px;
}

@media( max-width: 1040px ){
	.tooltip_content {
		max-width: calc( 100% - 40px );
	}
	.tooltip_content.end {
		right: 15px;
	}
}
@media( max-width: 768px ){
	.tooltip_content {
		max-width: none;
	}
	.tooltip_content.end {
		right: 0;
	}
}