/*
  All styles should be listed alphabetically.
  
  the only exception is for ID tags, which are organized in their own group 
  following the standard tag styles..
*/



div.map {
  background-color: #ffffff;
  background-repeat: no-repeat;
  width: fit-content;
  position: relative;
}

.intrElem {
  position:absolute;
  border-radius: 0.5rem;
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier();
}

.intrElem:hover {
  opacity: 1;
  transform: scale(3);
  animation: none;
}

@keyframes itemflash {
  0%  {opacity: 0;}
  8%  {opacity: 1;}
  16%  {opacity: 0;}
  100%  {opacity: 0;}
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.show {
  visibility: visible;
  -webkit-animation: fadeIn .1s;
  animation: fadeIn .1s;
}

.magnifier {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 100px;
  height: 100px;
}