@import url(http://fonts.googleapis.com/css?family=Gochi+Hand);
.tooltip {
	position: absolute;
	
	width: 2.2em;
	height: 2.2em;
	cursor: pointer;
}

/* Trigger item */
.color-3 .container-t {
background: url(../img/updatedmap.jpg) no-repeat 50% 50%;
min-height: 1030px;
position: relative;
}
.tooltip-item {
	width: 30px;
	height: 30px;
	left: 50%;
	top: 50%;
	margin: -15px 0 0 -15px;
	position: absolute;
	border-radius: 50%;
	/*border: 2px solid #e35583;*/
	border: 2px solid green;
	-webkit-animation: pulse 0.6s infinite alternate;
	animation: pulse 0.6s infinite alternate;
}

@-webkit-keyframes pulse {
	from { -webkit-transform: scale3d(0.5,0.5,1); }
	to { -webkit-transform: scale3d(1,1,1); }
}

@keyframes pulse {
	from { -webkit-transform: scale3d(0.5,0.5,1); transform: scale3d(0.5,0.5,1); }
	to { -webkit-transform: scale3d(1,1,1); transform: scale3d(1,1,1); }
}

.tooltip:hover .tooltip-item {
	border-color: #fff;
}
/**Delhi**/
.tooltip:first-child {
/*top: 21.6%;
left: 35.1%;*/
top: 25.1%;
left: 36.9%;
}
/**Ahmedabad**/
.tooltip:nth-child(2) {
	/*top: 44.8%;
	left: 15.2%;*/
	top: 45%;
	left: 19.6%;
}
/**Anand**/
.tooltip:nth-child(3) {
	/*top: 46%;
	left: 21.4%;*/
	top: 46.3%;
	left: 25.1%;
}
/**Vadodara**/
.tooltip:nth-child(4) {
	top: 51.3%;
	left: 19.3%;
}
/**Rajkot**/
.tooltip:nth-child(5) {
	/*top: 53%;
	left: 11%;*/
	top: 52.3%;
	left: 16%;
}
/**Mumbai**/
.tooltip:nth-child(6) {
	/*top: 58.5%;
	left: 19.3%;*/
	top: 57%;
	left: 23.2%;
}
/**Dhule**/
.tooltip:nth-child(7) {
	/*top: 64%;
	left: 23.5%;*/
	top: 61.7%;
	left: 26.9%;
}
/**Pune**/
.tooltip:nth-child(8) {
	/*top: 70.5%;
	left: 27.2%;*/
	top: 67.6%;
	left: 30%;
}
/**Hubli**/
.tooltip:nth-child(9) {
	/*top: 79.5%;
	left: 29.3%;*/
	top: 75.3%;
	left: 31.8%;
}
/**Chennai**/
.tooltip:nth-child(10) {
	/*top: 86%;
	left: 42.3%;*/
	top: 80.8%;
	left: 43%;
}
/**Banglor**/
.tooltip:nth-child(11) {
	/*top: 90.2%;
	left: 34.2%;*/
	top: 84.6%;
	left: 36.1%;
}
/**kolkata**/
.tooltip:nth-child(12) {
	/*top: 46%;
	left: 64.9%;*/
	top: 46.3%;
	left: 62.6%;
}
/**Jabalpur**/
.tooltip:nth-child(13) {
	/*top: 47.8%;
	left: 42.5%;*/
	top: 47.5%;
	left: 43.3%;	
}
/**jamshedpur**/
.tooltip:nth-child(14) {
	/*top: 55.2%;
	left: 59.4%;*/
	top: 54%;
	left: 57.9%;
}
/**Rajnagar**/
.tooltip:nth-child(15) {
	/*top: 57%;
	left: 34.2%;*/
	top: 55.6%;
	left: 36.1%;
}
/**Raipur**/
.tooltip:nth-child(16) {
	/*top: 60.6%;
	left: 49.4%;*/
	top: 59%;
	left: 49.3%;
}
/**UK**/
.tooltip:nth-child(17) {
	/*top: 85%;
	left: 62.3%;*/
	top: 80%;
	left: 60.3%;
}
/**USA**/
.tooltip:nth-child(18) {
	/*top: 89%;
	left: 62.3%;*/
	top: 83.8%;
	left: 60.3%;
}
/**UAE**/
.tooltip:nth-child(19) {
	/*top: 93%;
	left: 62.3%;*/
	top: 87.7%;
	left: 60.3%;
}
/**Coimbatore **/
.tooltip:nth-child(20) {
	/*top: 93%;
	left: 62.3%;*/
top: 89.7%;
    left: 35.3%;
}
/**Pondichery **/
.tooltip:nth-child(21) {
	/*top: 92%;
	left: 62.3%;*/
top: 86%;
    left: 42%;
}
/**Hyderabad **/
.tooltip:nth-child(22) {
	/*top: 92%;
	left: 62.3%;*/
top: 64%;
    left: 39%;
}
/**nagpur **/
.tooltip:nth-child(23) {
	/*top: 92%;
	left: 62.3%;*/
    top: 54%;
    left: 40%;
}

/* Tooltip */

.tooltip-content-t {
	position: absolute; 
	background: #e35583;
/*	background: #db261d;*/
	z-index: 9999;
	width: 200px;
	bottom: 50%;
	margin-bottom: -1em;
	padding: 20px;
	border-radius: 20px;
	font-size: 1.1em;
	text-align: center;
	color: #fff;
	opacity: 0;
	cursor: default;
	pointer-events: none;
	font-family: 'Gochi Hand', cursive;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.tooltip-west .tooltip-content-t {
	left: 4em;
	-webkit-transform-origin: -2em 50%;
	transform-origin: -2em 50%;
	-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
	transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
}

.tooltip-east .tooltip-content-t {
	right: 4em;
	-webkit-transform-origin: calc(100% + 2em) 50%;
	transform-origin: calc(100% + 2em) 50%;
	-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
	transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
}

.tooltip:hover .tooltip-content-t {
	opacity: 1;
	-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
	transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
	pointer-events: auto;
}

/* Gap "bridge" and arrow */

.tooltip-content-t::before,
.tooltip-content-t::after {
	content: '';
	position: absolute;
}

.tooltip-content-t::before {
	height: 100%;
	width: 3em;
}

.tooltip-content-t::after {
	width: 2em;
	height: 2em;
	top: 30%;
	margin: -1em 0 0;
	background: url('../img/tooltip-t.png') no-repeat center center;
	background-size: 100%;
/*	background-color: red;*/
}

.tooltip-west .tooltip-content-t::before,
.tooltip-west .tooltip-content-t::after {
	right: 99%; /* because of FF, otherwise we have a gap */
}

.tooltip-east .tooltip-content-t::before,
.tooltip-east .tooltip-content-t::after {
	left: 99%; /* because of FF, otherwise we have a gap */
}

.tooltip-east .tooltip-content-t::after {
	-webkit-transform: scale3d(-1,1,1);
	transform: scale3d(-1,1,1);
}