/* Start custom CSS *//* HOTSPOT DOT */
.ods-hotspot-trigger {
  cursor: pointer;
  background: radial-gradient(circle, rgba(255,220,150,.95) 0%, rgba(170,95,35,.75) 55%, rgba(60,20,10,.15) 100%);
  border: 1px solid rgba(255,210,130,.8);
  box-shadow: 0 0 16px rgba(255,170,70,.7);
  transition:
    opacity 650ms ease,
    transform 650ms ease,
    filter 650ms ease,
    box-shadow 650ms ease;
}

/* Dot fades when whisper is triggered */
.ods-hotspot-trigger:hover {
  opacity: 0.08;
  transform: scale(0.82);
  filter: blur(1px);
  box-shadow: 0 0 4px rgba(255,170,70,.18);
}

/* WHISPER CARD DEFAULT / EXIT STATE */
.ods-hotspot-card {
  opacity: 0;
  transform: translateY(22px) scale(.92);
  pointer-events: none;
  filter: blur(5px);
  transition:
    opacity 700ms ease,
    transform 900ms ease,
    filter 900ms ease;
}

/* WHISPER CARD APPEARS */
.ods-hotspot-card.active,
.ods-hotspot-trigger:hover + .ods-hotspot-card,
.ods-hotspot-card:hover {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  filter: blur(0);
}

/* Smoky tail */
.ods-hotspot-card::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(20, 16, 12, 0.62);
  border-radius: 50%;
  filter: blur(6px);
  z-index: -1;
}

/* Floating while visible */
.ods-hotspot-card.active,
.ods-hotspot-trigger:hover + .ods-hotspot-card {
  animation: odsWhisperFloat 3.5s ease-in-out infinite;
}

@keyframes odsWhisperFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.01);
  }
}

@media (max-width: 767px) {

  /* Center and constrain whisper cards */
  .ods-hotspot-card {
    position: absolute !important;

    left: 50% !important;
    transform: translate(-50%, 10px) scale(.95) !important;

    width: 75vw;
    max-width: 260px;

    text-align: center;
  }

  /* Active state */
  .ods-hotspot-card.active,
  .ods-hotspot-trigger:hover + .ods-hotspot-card {
    transform: translate(-50%, 0) scale(1) !important;
  }

  /* Reduce dot size */
  .ods-hotspot-trigger {
    width: 18px;
    height: 18px;
  }

}/* End custom CSS */