.tooltip {
	display: inline;
	position: relative;
	z-index: 999;
}

/* Trigger text */

.tooltip-item {
	padding: 3px 0;
}

.tooltip-item:hover{
    text-decoration: none;
}

/* Gap filler */

.tooltip-item::after {
	content: '';
	position: absolute;
	width: 360px;
	height: 20px;
	bottom: 100%;
	left: 50%;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

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

/* Tooltip */

.tooltip-content {
	position: absolute;
	z-index: 9999;
	width: 360px;
	left: 50%;
	margin: 0 0 20px -180px;
	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: #2a3035;
	opacity: 0;
	cursor: default;
	pointer-events: none;
    display: none;
}



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

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

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

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

.tooltip:hover .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:hover .tooltip-content {
	-webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg);
	transform: perspective(1000px) rotate3d(1,0,0,0deg);
}

/* Question bit */
.tooltip-content:before {
  background-color: #DE5636;
    content: " ";
    background-image: url(/images/content/icons/dserver.png);
    background-position: -822px -437px;
    
    display: block;
    position: absolute;
    left: 0;
    top:0;
    bottom:0;
    height: auto;
    max-height: 100%;
    width: 12px;
    color: #fff;
    text-transform: capitalize;
    padding: 17px 20px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
}


/* 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: #2a3035;
	border-width: 10px;
	margin-left: -10px;
}




/* Tooltip content*/

.tooltip-content img {
	position: relative;
	height: 170px;
	display: block;
	float: left;
	margin-right: 1em;
}

.tooltip-text {
	font-size: 1em;
	line-height: 1.35;
	display: block;
	padding: 1.31em 1.21em 1.21em 6.1em;
	color: #fff;
}

.tooltip-text:hover {
        text-decoration: none;
}

.tooltip-effect-5 .tooltip-text {
	padding: 1.4em;
}

.tooltip-text a {
	font-weight: bold;
}

.tooltip-content.clearfix:after {
    display: block;
}



@media only screen and (min-width: 1024px) {
.tooltip-item {
	cursor: pointer;
	display: inline-block;
	padding: 3px 0;
    border-bottom: 1px dotted #777;
}

.tooltip-item:hover{
    text-decoration: none;
}    
    
    
.tooltip-content {
    display: block;
}
}

/*------------------------------------------
WHITE BACKGOUND TOOLTIP
--------------------------------------------*/
.tipbox { position:relative;
cursor: help;
}

.tipbox .pop {
	background: rgba(255,255,255,0.99);
	padding: 20px;
	border:1px solid #ddd; 
	position: absolute;
	z-index: 99999999;
	width: 340px;
	left: 50%;
	margin: 0 0 20px -70px;
	top: 120%;
	text-align: left;
	cursor: default;
	pointer-events: none;
	display: none;
	font-size:0.74em;
	line-height: 1.4;
	box-shadow: 0px -5px 15px rgba(48,54,61,0.2);
}

.tipbox .pop:before{
	content:"";
	background: none;
}

.tipbox .pop:after, .tipbox .pop:before {
	bottom: 100%;
	left: 8%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.tipbox .pop:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: rgba(255,255,255,0.99);
	border-width: 10px;
	margin-left: -10px;
}
.tipbox .pop:before {
	border-color: rgba(221, 221, 221, 0);
	border-bottom-color: #ddd;
	border-width: 11px;
	margin-left: -11px;
}
.tipbox .pop h3 {
	font-size:18px;
	text-align:left;
	display:block;
	border-bottom:1px solid #ddd;
	padding-bottom:14px
}

.tipbox .pop li {
	float:left;
	width:48%;
	display:inline-block;
	text-align:left!important;
	padding-right:7px;
	}
	
.tipbox .pop li:before {
	content:"\f00c";
	font-family:FontAwesome;
	color:#999;
	margin-right:5px;
}

@media only screen and (max-width: 1024px) {
	.tipbox {
		cursor: default;
	}

	.tipbox .pop {
		display: none !important;
	}
}
