.tooltip {
	display: block;
	position: relative;
	z-index: 999;
   height: 32px;
  float: right;
}

/* Trigger text */





.tooltip-item {
	cursor: pointer;
	display: inline-block;
	padding: 0;
  text-align: left;
  height: 32px;
  float: right;
  text-decoration: underline; 
  line-height: 32px; 
  font-size: 16px; 
  color: #000; 
  font-weight: 700; 
  margin: 0;
   -webkit-transition: all 150ms ease-out; -moz-transition: all 150ms ease-out; -o-transition: all 150ms ease-out; -ms-transition: all 150ms ease-out; transition: all 150ms ease-out;
}

.tooltip-item:hover, .tooltip.active_efekt .tooltip-item{text-decoration: none; color: #ff0000;}

/* Gap filler */

.tooltip-item::after {
	content: '';
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.tooltip.active_efekt .tooltip-item::after {
	pointer-events: auto;
}

/* Tooltip */



.tooltip-content {
	position: absolute;
	z-index: 9999;
	width: 600px;
	left: 50%;
	margin: 0 0 6px -300px;
	bottom: 100%;
	background: #000;
	opacity: 0;
	cursor: default;
	pointer-events: none;
}
 

    
.tooltip-effect-2 .tooltip-content {
	-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;
}


.tooltip.active_efekt .tooltip-content {
	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);
}

.tooltip.tooltip-effect-2.active_efekt .tooltip-content {
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg);
	transform: perspective(1000px) rotate3d(1,0,0,0deg);
}

/* Arrow */

.tooltip-content::after {
	content: '';
	top: 100%;
	left: 50%;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: #000;
	border-width: 6px;
	margin-left: -6px;
}

/* Tooltip content*/

.tooltip-content img {
	position: relative;
	display: block;
	margin:  0 auto;
}

.tooltip-text {
	font-size: 13px;
	line-height: 21px;
	display: block;
	padding: 15px 15px;
	color: #fff;
  text-align: left;
}

.tooltip-text ul{margin: 0; padding: 0;}

.tooltip-text p, .tooltip-text li{
	font-size: 13px;
	line-height: 18px;
	display: block;
	color: #fff;
   font-weight: 400;
   margin: 0 0 6px;
  text-align: left;
}

.tooltip-text p strong{
	font-size: 13px;
	line-height: 18px;
   font-weight: 700;
	color: #fff;
  text-align: left;
}

.tooltip-text li{
background: url(../img/sub_arrow.png) no-repeat scroll left 6px;
padding-left: 10px;	
}

