@charset "utf-8";
/* CSS Document */

.distribution-map {
  position: relative;
  width: 100%;
}

.distribution-map img {
  width: 100%;
  display: block;
}

/* MAP POINT */
.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}

/* DOT */
.map-point .dot {
  width: 18px;
  height: 18px;
  background: rgba(26, 26, 26, 0);
  border-radius: 50%;
  display: block;
}

/* POPUP */
.map-point .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  padding: 30px 15px;
  background: rgba(30, 50, 87, 0.9);
  color: #fff;
  border: 4px solid #999D9E;
  pointer-events: none;
  border-radius: 20px;
  text-align: center;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(.25,.8,.25,1);
	
}

/* ACTIVE STATE */
.map-point.active {
  z-index: 10;
	
}

.map-point.active .content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* TEXT */
.map-point h2 {
  margin-bottom: 10px;
  font-size: 28px;
	color: #ffffff;
	font-weight: 600;
}

.map-point p {
  font-size: 16px;
  line-height: 1.2;
	color: #ffffff;
}

/* shift popup right */
.map-point.shift-right .content {
  left: 0;
  transform: translate(0, -50%) scale(1);
}

/* shift popup left */
.map-point.shift-left .content {
  left: 100%;
  transform: translate(-100%, -50%) scale(1);
}

/* MOBILE */
@media (max-width: 768px) {
  .map-point .dot {
    width: 12px;
    height: 12px;
  }

  .map-point .content {
    width: 200px;
  }

  .map-point h2 {
    font-size: 14px;
  }

  .map-point p {
    font-size: 11px;
  }
}