.img-replace {
  /* replace text with background images */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.map-wrapper {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  max-width: 2000px;
}
.map-wrapper  img {
  display: block;
}
.map-wrapper ul{margin: 0;}
.single-point {
  position: absolute;
  border-radius: 50%;
  list-style: none;
}
.single-point > a {
  position: relative;
  z-index: 2;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: inherit;
  background: #fbd532;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.single-point > a::after, .single-point > a:before {
  /* rotating plus icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.single-point > a::after {
  height: 2px;
  width: 12px;
}
.single-point > a::before {
  height: 12px;
  width: 2px;
}
.single-point::after {
  /* this is used to create the pulse animation */
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: transparent;
  -webkit-animation: pulse 2s infinite;
  -moz-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
.single-point:nth-of-type(1) {
  top: 8%;
  left: 65%;
}
.single-point:nth-of-type(2) {
  top: 21%;
  left: 78%;
}
.single-point:nth-of-type(3) {
  top: 33%;
  left: 90%;
}
.single-point:nth-of-type(4) {
  top: 79%;
  left: 99%;
}
.single-point.is-open > a {
  background-color: #475f74;
}
.single-point.is-open > a::after, .single-point.is-open > a::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.single-point.is-open::after {
  /* remove pulse effect */
  display: none;
}
.single-point.is-open .more-info {
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
.single-point.visited > a {
  background-color: #475f74;
}
.single-point.visited::after {
  /* pulse effect no more active on visited elements */
  display: none;
}
@media only screen and (min-width: 600px) {
  .single-point.is-open .more-info.left {
    right: 140%;
  }
  .single-point.is-open .more-info.right {
    left: 140%;
  }
  .single-point.is-open .more-info.top {
    bottom: 140%;
  }
  .single-point.is-open .more-info.bottom {
    top: 140%;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0.8);
  }
  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0.8);
  }
  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0.8);
  }
  100% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(251, 213, 50, 0);
  }
}
.single-point .more-info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
.single-point .more-info::before {
  /* triangle next to the interest point description - hidden on mobile */
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  display: none;
  border: 8px solid transparent;
}
.single-point .more-info h2 {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: .6em;
}
.single-point .more-info p  a{
  color: #95b64e;
}
@media only screen and (min-width: 600px) {
  .single-point .more-info {
    position: absolute;
    width: 300px;
    height: auto;
    padding: 0;
    overflow-y: visible;
    line-height: 1.4;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	/* z-index: 9 !important; */
  }
  .single-point .more-info::before {
    display: block;
  }
  .single-point .more-info.left, .single-point .more-info.right {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .single-point .more-info.left::before, .single-point .more-info.right::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .single-point .more-info.left {
    right: 160%;
    left: auto;
  }
  .single-point .more-info.left::before {
    border-left-color: rgba(255, 255, 255, 0.95);
    left: 100%;
  }
  .single-point .more-info.right {
    left: 160%;
  }
  .single-point .more-info.right::before {
    border-right-color: rgba(255, 255, 255, 0.95);
    right: 100%;
  }
  .single-point .more-info.top, .single-point .more-info.bottom {
    left:-120px;/*left: 50%;*/
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .single-point .more-info.top::before, .single-point .more-info.bottom::before {
    /*left: 50%;
    right: auto;*/
	left: auto;
    right: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .single-point .more-info.top {
    bottom: 160%;
    top: auto;
  }
  .single-point .more-info.top::before {
    border-top-color: rgba(255, 255, 255, 0.95);
    top: 100%;
  }
  .single-point .more-info.bottom {
    top: 160%;
  }
  .single-point .more-info.bottom::before {
    border-bottom-color: rgba(255, 255, 255, 0.95);
    bottom: 100%;
  }
  .single-point .more-info h2 {
    font-size: 20px;
    margin: 0;
  }
  .single-point .more-info p {
    font-size: 12px;
  }
}

/* close the interest point description - only on mobile */
.close-info {
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
  background-color: #95b64e;
  border-radius: 50% 0 50% 50%;
}
.close-info::after, .close-info:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background-color: #475f74;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.close-info::after {
  height: 2px;
  width: 16px;
}
.close-info::before {
  height: 16px;
  width: 2px;
}
.tooltip-img{ 
	height: 300px; 
	background-size: cover; 
	background-repeat: no-repeat; 
	position: relative; 
	border: 2px solid #95b64e;
	border-bottom:0;
}
.tooltip-text{padding: 10px;}
@media only screen and (min-width: 600px) {
  .close-info {
    display: none;
  }
  .tooltip-img{ 
  height: 150px; }
}
