.tooltips{
	position:absolute;
	display: block;
	padding: 4px 8px;
	background: #2c2c2c;
	border-radius:4px;
	border:1px solid #222222;
	text-align: center;
	font-size: 12px;
	color: #FFFFFF;
	z-index: 10;
	box-sizing: border-box;
	white-space:nowrap;
	transition: all ease-in-out .5s;
	line-height: 12px;
}
.tooltips .arrow{
	position: absolute;
	transform: rotate(45deg);
	width: 8px;				
	height: 8px;
	left: 0;
	right: 0;
	margin: auto;
	background: inherit;
}
.tooltip-box.top  .tooltips{
	top: -30px;
	left: -15px;
}
.tooltip-box.bottom  .tooltips{
	bottom: -30px;	
}
.tooltip-box.top .arrow{
	bottom: -5px;
	border-right: 1px solid #222222;	
	border-bottom: 1px solid #222222;
}
.tooltip-box.bottom .arrow{
	top: -5px;
	border-left: 1px solid #222222;
	border-top: 1px solid #222222;
}
.tooltip-box{
	position: relative;	
	flex-direction: row;
	justify-content: center;
	align-items: center;
}