.tooltip {
	display: inline-block;
	position: relative;
	z-index: 999;
   white-space: initial;
   text-transform: none;
}

/* Trigger text */





.tooltip-item {
	cursor: pointer;
	display: inline-block;
	padding: 0;
  text-align: center;
  line-height: 25px; 
  font-size: 13px; 
  color: #fff; 
  font-weight: 300;
  margin: 0;
  text-decoration: underline; 
  -webkit-transition: all 250ms ease-out; -moz-transition: all 250ms ease-out; -o-transition: all 250ms ease-out; -ms-transition: all 250ms ease-out; transition: all 250ms ease-out;
}


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

/* 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: 400px;
	left: 50%;
	margin: 0 0 8px -200px;
	bottom: 100%;
	background: #2aa7cd;
	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;
}


.notouch .tooltip:hover .tooltip-content, .tooltip.hover_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);}
.notouch .tooltip.tooltip-effect-2:hover .tooltip-content, .tooltip.tooltip-effect-2.hover_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: #2aa7cd;
	border-width: 8px;
   margin-left: -4px;
}  




.tooltip-content::after{border-top-color: #c69c6d;}
.tooltip-content{background: #c69c6d;}


/* Tooltip content*/

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

.tooltip-text {
	font-size: 14px;
	line-height: 19px;
	display: block;
   font-weight: 300;
	padding: 30px 35px;
	color: #000;
  text-align: left;

}

