.tooltipS {
	display: inline;
	position: relative;
	z-index: 999;
	font-family: Raleway, sans-serif;
}

/* Trigger text */

.tooltipS-item {
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	font-size: 13.5px;
	color: #06F;
	background-color: #F0F0F0;
	background-position: 0;
	padding-top: 0;
	padding-right: 3px;
	padding-bottom: 0;
	padding-left: 3px;
}

/* Gap filler */

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

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

/* Tooltip */

.tooltipS-content {
	position: absolute;
	z-index: 9999;
	width: 360px;
	left: 50%;
	margin: 0 0 15px -180px;
	bottom: 100%;
	/* text-align: left; */
	text-align: justify;
	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;
	background-color: #2a3035;
}

.tooltipS-effect-1 .tooltipS-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;
	
	padding: 15px;
	border-radius: 12px;
	
}

.tooltipS-effect-2 .tooltipS-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;
}

.tooltipS-effect-3 .tooltipS-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;
}

.tooltipS-effect-4 .tooltipS-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;
}

.tooltipS-effect-5 .tooltipS-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);
}

.tooltipS:hover .tooltipS-content {
	pointer-events: auto;
	opacity: 1;
	-webkit-transform: matrix;
	transform: translate3d(0,0,0) rotate3d(0,0,0,0);
}

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

/* Arrow */

.tooltipS-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*/

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

.tooltipS-text {
	font-size: 13.5px;
	line-height: 1.5;
	display: block;
	padding: 1.31em 1.21em 1.21em 0;
	color: #fff;
}

.tooltipS-text2 {
	font-size: 12px;
	line-height: 1.5;
	display: block;
	padding: 1.11em 1.21em 1.21em 0;
	color: #fff;
	font-family: Raleway, sans-serif;
	
}
		
	
	

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

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