
/* Wrapper to isolate hover area */
.info-wrapper {
  position: relative;
  display: inline-block;
}

/* --- Round ? Button --- */
.info-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: dodgerblue;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  transition: transform .2s ease;
}

.info-btn:hover {
  transform: scale(1.12);
}

/* --- Popup Base --- */
.info-popup {
  position: fixed;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%) translateY(20px);
  
  width: 60%;
  max-width: 650px;
  min-height: 15em; /* ~250px */
  
  background: rgba(30,144,255,0.9);         /* dodgerblue w/ transparency */
  color: #fff;
  font-size: 1.2em;
  padding: 1.8em;
  border-radius: 0.8em;
  
  backdrop-filter: blur(8px);               /* GLASS EFFECT MAGIC */
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  transition: 
      opacity .35s ease,
      transform .35s ease,
      visibility .35s ease;
}

/* left aligned text but element centered visually */
.info-popup h2,
.info-popup p {
  text-align: left;
  margin: 0 0 .7em;
}

/* small arrow pointer */
.info-popup::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 16px solid rgba(30,144,255,0.9);
}

/* subtle shadow */
.info-popup::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.28);
}

/* --- Hover Trigger --- */
.info-wrapper:hover .info-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dottedline{border-width:0px 0px 2px 0px !important;
border-style:dashed;
border-color:#FFF;
}
/*=====================================================================*/

 


/* Center-out underline effect */
.info-popup h2 a {
  position: relative;
  text-decoration: none;
  color:#EFF; 
}

.info-popup h2 a::after {
  content: "";
  position: absolute;
  left: 50%;               /* start at center */
  bottom: -3px;            /* space under text */
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width .35s ease;
  box-shadow: 0 0 6px currentColor;
}

.info-popup h2 a:hover{
	text-shadow:0px 0px 5px white, -0px -0px 5px white;
	}

.info-popup h2 a:hover::after {
  width: 100%;             /* animate to full width */
}


.info-popup img {
  display: block;
  max-width: 99%;
  height: auto;
  margin: 0 auto;
}










































/**/