@import url(https://fonts.googleapis.com/css?family=Ubuntu+Condensed&subset=latin,latin-ext);

.tooltip {
	position: relative;
	width: 210px;
	margin: 0 auto;
}

.tooltip-content {
	position: absolute;
	line-height: 1.2;
	pointer-events: none;
	text-align: center;
	z-index: 100;
	opacity: 0;
	padding: 1.75em 0 1.75em 0;
	font-size: 1.55em;
	bottom: 100%;
	font-family: 'Ubuntu Condensed', sans-serif;
	color: #000;
}

.tooltip-effect .tooltip-content {
	width: 180px;
	right: 83%;
	margin: 0 0 20px 0;
	-webkit-transform: scale3d(0,0,1);
	transform: scale3d(0,0,1);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}



.tooltip-effect:hover .tooltip-content {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}



/* Shape */
.tooltip-shape {
	position: absolute;
	width: 220px;
	height: 165px;
	pointer-events: none;
}

.tooltip-effect .tooltip-shape {
	top: 0;
	right: 65%;
	-webkit-transform: translate3d(0,-90%,0);
	transform: translate3d(0,-90%,0);
}

.tooltip:hover .tooltip-shape {
	pointer-events: auto;
}

.tooltip-shape svg {
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2;
}

.tooltip-effect .tooltip-shape svg path {
	fill: #e5f5f5;
	-webkit-transform: scale3d(0,0,1);
	transform: scale3d(0,0,1);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.tooltip-effect:hover .tooltip-shape svg path {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

.tooltip-effect:hover .tooltip-shape svg path#path2 {
	-webkit-transition-delay: 0.07s;
	transition-delay: 0.07s;
}

.tooltip-effect:hover .tooltip-shape svg path#path3 {
	-webkit-transition-delay: 0.14s;
	transition-delay: 0.14s;
}

.tooltip-effect:hover .tooltip-shape svg path#path4 {
	-webkit-transition-delay: 0.21s;
	transition-delay: 0.21s;
}

@media screen and (max-width: 25em) {
	.tooltip-shape {
		position: absolute;
		width: 130px; /*66*/
		height: 90px;/*49,5*/
		pointer-events: none;
	}

	.tooltip-content {
		position: absolute;
		line-height: 1.2;
		pointer-events: none;
		text-align: center;
		z-index: 100;
		opacity: 0;
		padding: 1.75em 0 1.75em 0;
		font-size: 1.25em;
		bottom: 100%;
		font-family: 'Ubuntu Condensed', sans-serif;
		color: #000;
	}

	.tooltip-effect .tooltip-content {
		width: 100px;
		right: 77%;
		margin: 0px 0px -17px 0px;
	}
}

@media screen and (max-width: 45em) and (min-width: 25em) {
	.tooltip-shape {
		position: absolute;
		width: 176px; /*-44*/
		height: 132px;/*-33*/
		pointer-events: none;
	}

	.tooltip-content {
		position: absolute;
		line-height: 1.2;
		pointer-events: none;
		text-align: center;
		z-index: 100;
		opacity: 0;
		padding: 1.75em 0 1.75em 0;
		font-size: 1.45em;
		bottom: 100%;
		font-family: 'Ubuntu Condensed', sans-serif;
		color: #000;
	}

	.tooltip-effect .tooltip-content {
		width: 100px;
		right: 89%;
		margin: 0;
	}
}
