tooltip {position: relative; display: inline-block;}
tooltip span:last-child{
	opacity: 0;
    z-index: 5;
	user-select: none;
    visibility: hidden;
    position: absolute;
	pointer-events: none;
	font-size: 15px;

    color: var(--color-white);
	white-space: pre;
    text-align: center;
    border-radius: 10px;
	border: 1px solid var(--color-white);
	background-color: var(--color-orangeGrey);
    padding: 7px 15px;
	font-weight: normal;

	right: calc(100%);
	bottom: calc(50% - 15px);
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	transition: all .5s cubic-bezier(.84,-0.18,.31,1.26) .1s;

	max-width: 300px;
	overflow: hidden;
	display: inline-block;
	text-overflow: ellipsis;
}
div.info tooltip span:last-child{bottom: calc(50% - 17px);}

tooltip:hover span:last-child {visibility: visible; opacity: 1;}
tooltip:hover span:not(.right):last-child {right: calc(100% + 10px);}

tooltip span.right:last-child{right: initial; left: calc(100%);}
tooltip:hover span.right:last-child{right: initial; left: calc(100% + 10px);}


