.tool-tip {
	display: table;
	max-width: 500px;
	color: #ffffff;
	background: #bd0a0a;
	z-index: 1000;
	padding: 15px;
	position: absolute;
	top: -100%;
	left: -100%;
	border-radius: 8px;
	opacity: 0;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.55);
}
.arrow-down {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 7px solid #bd0a0a;
	position: absolute;
	top: 100%;
}
.btn-close-tooltip {
	cursor: pointer;
	float: left;
	font-size: 14px;
	width: 14px;
	height: 14px;
	line-height: 14px;
	vertical-align: middle;
	position: absolute;
	right: 5px;
	top: 5px;
	opacity: 0.9;
	transition: opacity ease 0.2s;
}
.btn-close-tooltip:hover {
	opacity: 1;
}