.tooltips {
	pointer-events: none;
    z-index: 8;
    opacity: 0;
    display: none;
    position: absolute;
    padding: 5px 8px;
    color: #eee;
    border: 1px solid #eee;
    border-radius: 4px;
    text-align: center;
    font-stretch: condensed;
    text-decoration: none;
    box-shadow: 0 0 5px black;
    font-size: 12px;
    background-color: #b90000;
	max-width: 250px;
}
.tooltips.right,
.tooltips.left{
	text-align: left;
}
.tooltips:before {
    content: '';
    position: absolute;
    z-index: 0;
    height: 16px;
    width: 16px;
}
.tooltips.top:before {
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #b90000 transparent;
    bottom: -16px;
    left: 50%;
    margin-left: -8px;
}
.tooltips.bottom:before {
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: #b90000 transparent;
    top: -16px;
    left: 50%;
    margin-left: -12px;
}
.tooltips.right:before {
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent #b90000;
    top: 50%;
    left: -16px;
    margin-top: -8px;
}
.tooltips.left:before {
	border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent #b90000;
    top: 50%;
    right: -16px;
    margin-top: -8px;
}
.tooltips.active {
	display: block;
	opacity: 1;
	z-index: 9999;
}
