.tltp {
	display: inline;
	position: relative;
}
/* Trigger text */
.tltp-itm {
	background: rgba(0,0,0,0);
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	border-bottom: 1px solid;
}
/* Gap filler */
.tltp-itm::after {
	content: '';
	position: absolute;
	width: 360px;
	height: 20px;
	bottom: 100%;
	left: 50%;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.tltp:hover .tltp-itm::after {
	pointer-events: auto;
}
/* Tooltip */
.tltp-contnt {
	position: absolute;
	z-index: 99999999;
	min-width: 360px;
	left: 50%;
	margin: 0 0 20px calc(50% - 200px);;
	bottom: 100%;
	text-align: left;
	font-size: 0.765em;
	line-height: 1.4;
	box-shadow: -5px -5px 15px rgba(48,54,61,0.2);
	background: rgba(119,119,119,0.9);
	opacity: 0;
	cursor: default;
	pointer-events: none;
	display: inherit;
}
.tltp-efct-1 .tltp-contnt {
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
.tltp-efct-2 .tltp-contnt {
	-webkit-transform-origin: 50% calc(100% + 10px);
	transform-origin: 50% calc(100% + 10px);
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,45deg);
	transform: perspective(1000px) rotate3d(1,0,0,45deg);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
}
.tltp-efct-3 .tltp-contnt {
	-webkit-transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
	transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
.tltp-efct-4 .tltp-contnt {
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transform: scale3d(0.7,0.3,1);
	transform: scale3d(0.7,0.3,1);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
}
.tltp-efct-5 .tltp-contnt {
	width: 180px;
	margin-left: -90px;
	-webkit-transform-origin: 50% calc(100% + 6em);
	transform-origin: 50% calc(100% + 6em);
	-webkit-transform: rotate3d(0,0,1,15deg);
	transform: rotate3d(0,0,1,15deg);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
	transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
}
.tltp:hover .tltp-contnt {
	pointer-events: auto;
	opacity: 1;
	-webkit-transform: translate3d(0,0,0) rotate3d(0,0,0,0);
	transform: translate3d(0,0,0) rotate3d(0,0,0,0);
	padding: 5px 10px;
}
.tltp.tltp-efct-2:hover .tltp-contnt {
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg);
	transform: perspective(1000px) rotate3d(1,0,0,0deg);
}
/* Arrow */
.tltp-contnt::after {
	content: '';
	top: 100%;
	left: 50%;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: rgba(119,119,119,0.9);
	border-width: 10px;
	margin-left: -10px;
}
/* Tooltip content*/
.tltp-contnt img {
	position: relative;
	height: 150px;
	width: 150px;
	display: block;
	float: left;
	margin-right: 1em;
}
.tltp-txt {
	font-size: 1em;
	line-height: 1.35;
	display: block;
	padding: 1.31em 1.21em 1.21em 0;
	color: #fff;
}
.tltp-efct-5 .tltp-txt {
	padding: 1.4em;
}
.tltp-txt a {
	font-weight: bold;
	color: #fff;
}
/*.tltp-contnt.clrfx .tltp-txt::after {
    width: 1px;
    height: 100%;
    background: #ffffff;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
}*/
.tltp-contnt.clrfx .tltp-txt {
    position: relative;
    text-align: left;
    padding: 5px 10px;
}
.tltp-contnt.clrfx .img-box {
    float: right;
    width: 50%;
    position: relative;
    text-align: justify;
    padding: 5px 10px;
}
.tltp-contnt.clrfx .img-box img {
	max-width: 100%;
	width: 100%;
}
.tltp-contnt.clrfx .tltp-txt .btn.btn-default {
    background: transparent;
    color: #ffffff;
    margin-top: 10px;
    padding: 3px 10px;
    text-align: center;
    box-shadow: none;
    border: 1px solid;
    float: left;
    margin: 10px auto;
    width: 100%;
}
.single .eltdf-blog-holder article .eltdf-post-text-inner {
	overflow: visible;
}