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

/* Trigger item */

.tooltip-item {
	width: 30px;
	height: 30px;
	left: 50%;
	top: 50%;
	margin: -15px 0 0 -15px;
	position: absolute;
	z-index: 9999;
	border-radius: 50%;
	border: 2px solid #fff;
	-webkit-animation: pulse 0.6s infinite alternate;
	animation: pulse 0.6s infinite alternate;
	-webkit-transition: all .5s, -webkit-transform .5s;
		transition: all .5s, transform .5s;
}

@-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: rgba(56,66,49,0.9);
}

.tooltip:first-child {
	top: 25%;
	left: 40%;
}

.tooltip:nth-child(2) {
	top: 60%;
	left: 43%;
}

.tooltip:nth-child(3) {
	top: 40%;
	left: 55%;
}

.tooltip:nth-child(4) {
	top: 60%;
	left: 70%;
}

.tooltip:nth-child(5) {
	top: 40%;
	left: 80%;
}

/* Tooltip */

.tooltip-content {
	position: absolute;
	background: rgba(102,102,102,1);
	z-index: 99999;
	width: 165px;
	bottom: 20%;
	left:20%;
	margin-bottom: -1em;
	padding: 10px;
	border-radius: 2px;
	font-size: 11px;
	text-align: left;
	color: #fff;
	opacity: 0;
	cursor: default;
	pointer-events: none;
	font-family: "Gotham", "proxima-nova", Helvetica, Arial, sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.tooltip-content a {
	color:rgba(249,250,208,1);
}

.tooltip-content a:hover {
	color:white;
	text-decoration:none;
	border-bottom:1px solid white;
	padding:0 0 3px 0;
}

.tooltip-left .tooltip-content {
	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-right .tooltip-content {
	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 {
	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::before,
.tooltip-content::after {
	content: '';
	position: absolute;
}

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

.tooltip-content::after {
	width: 2em;
	height: 2em;
	top: 50%;
	margin: -1em 0 0;
	/*background: url(http://www.thecurlewrestaurant.co.uk/img/tooltip2.svg) no-repeat center center;*/
	background-size: 100%;
}

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

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

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

/* 2018 Tool tip
.title {
	font-weight: 700;
	width: 145px;
	margin: 10px 0 0 50px;
	padding: 10px;
	float: left;
	background: rgba(56,66,49,0.9);
	color: #fff;
} */

/* v2 Overide */

.tooltip-item {
	border: 0px solid #fff;
}

.tooltip:first-child {
	top: 17%;
	left: 37.5%;
}

.tooltip:nth-child(2) {
	top: 41%;
  left: 34%;
}

.title {
    font-weight: 500;
		font-size: 11px;
    width: 115px;
    margin: 15px 0 0 15px;
    padding: 10px;
    float: left;
    background: rgba(56,66,49,0.9);
		border-radius: 5px;
    color: #fff;
    z-index: 10000;
    position: absolute;
		-webkit-box-shadow: 11px 10px 35px -15px rgba(0,0,0,0.75);
		-moz-box-shadow: 11px 10px 35px -15px rgba(0,0,0,0.75);
		box-shadow: 11px 10px 35px -15px rgba(0,0,0,0.75);
}

.title a {
	opacity: 0;
	color: #fff;
	font-weight: 200;
	-webkit-transition: all .5s, -webkit-transform .5s;
		transition: all .5s, transform .5s;
}

.tooltip:hover .title a {
	opacity: 1;
	color: #fff;
	-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
	transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
	-webkit-transition: all .5s, -webkit-transform .5s;
	transition: all .5s, transform .5s;
	pointer-events: auto;
}