* {
  user-select: none;
}
.body-discover-overlay {
    position: fixed;
    z-index: 9999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
    transition: all 0.6s ease;
}

.image-map-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.6s ease;
    z-index: 0;
}

.bring-to-front {
    z-index: 1;
    opacity: 1;
}

.send-to-back {
    z-index: 0;
    opacity: 0;
}

body{
	margin: 0;
	border: 0;
	width: 1920px;
	height: 1080px;
	overflow: hidden;
	background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
	transition: opacity 0.4s ease-in-out;
	opacity: 1;
}

area{
	outline: none;
}

.pulse {
	pointer-events: none;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(74, 74, 73, 0.9);
    animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 74, 73, 0.4);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(74, 74, 73, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(74, 74, 73, 0);
  }
}