/* --- Map postioning and sizing -- */
#landing-content {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  margin: auto;
  padding: 0 87px;
  height: 100%;
  width: 100%;
  max-width: 950px;
  z-index: 5;
}
#landing-content .uk-container {
  height: 100%;
}
#landing-content .uk-card {
  color: #4e4643;
}
#landing-content h2 {
  font-size: 42px;
  line-height: 35px;
  margin-top: 80px;
  opacity: 0;
}
#landing-content h2 span {
  color: #a6ce39;
}
#landing-content p {
  font-size: 18px;
  line-height: 28px;
  color: #7a7a7a;
  opacity: 0;
}

#map-container {
  opacity: 0;
  height: 100vh;
  padding: 100px 180px 80px 40px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  z-index: 8;
}


#map-container .svg {
  max-width: 100%;
  max-height: 100%;
}

#map-country-select {
  position: absolute;
  bottom: 17%;
  left: -500px;
  padding-left: 32px;
  font-weight: lighter;
  font-size: 32px;
  z-index: 15;
  color: #7a7a7a;
}
#map-country-select span {
  color: #a6ce39;
}
#map-country-select .line {
  height: 2px;
  width: 68px;
  background: #a6ce39;
  position: absolute;
  bottom: 17px;
  left: 10px;
}
#map-country-select:after {
  content: " ";
  height: 12px;
  width: 12px;
  border-radius: 5px;
  background: #a6ce39;
  position: absolute;
  bottom: 12px;
  left: 10px;
}

/* -- Map Items Interaction -- */
#map-container .svg circle {
  transition: fill 0.5s;
}

#map-container .svg .active circle {
  fill: #a6ce39 !important;
  transition: fill 0.5s;
}

#map-container .svg #hm-africa path.pop {
  fill: #a6ce39 !important;
  transition: fill 0.5s;
}

#map-container .svg #hm-africa path:hover {
  fill: #eeeff1 !important;
  transition: fill 0.5s;
  cursor: pointer;
}

#map-container .svg #hm-map-outline {
  opacity: 0;
}

#map-container .svg #hm-map-outline,
#map-container .svg #hm-dots {
  pointer-events: none;
}


/* --- Map Responsive Styles-- */

@media only screen and (max-width: 600px) {

#landing-content {
	padding: 40px;
}

#map-container {
  padding: 40px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  z-index: 8;
}

#map-country-select {
  position: absolute;
  bottom: 22%;
  padding-left: 90px;
  font-weight: lighter;
  font-size: 32px;
  z-index: 15;
  color: #7a7a7a;
}

}
