button > *, 
.btn > *,
.page-link > *{
  pointer-events: none;
}

.select2{
  width: 100% !important;
}

.btn-pnh{
  background-color: var(--p-blue);
  color: #FFF;
  font-weight: bold;
}

.btn-pnh:hover{
  background-color: var(--p-dblue);
  color: #FFF !important;
}

.btn-tip{
  padding: .1rem .3rem;
  font-size: .675rem;
  border-radius: .2rem;
  position: relative;
  top: -7px;
}

.b-u{
  padding-bottom: 5px;
  border-bottom: var(--p-blue) 2px solid;
}

.b-b{
  padding-bottom: 5px;
  border-bottom: var(--gray) 2px solid;
}

.bs-u{
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0,0,0,.125);
}

.accent{
  color: var(--p-blue);
}

.pr-bg{
  background-color: var(--p-blue);
  color: #FFF;
}

.hide{
  display: none;
}

.break{
  flex-basis: 100%;
  height: 0;
}

hr.hr-divider{
  height: 2px;
  margin: .5rem 0;
  overflow: hidden;
  border-top: 2px solid rgba(0,0,0,.15);
}

.text-purple{
  color: var(--bs-purple) !important;
}

.signature {
  font-family: 'Zeyada', cursive;
  font-size: 2.5rem;
  margin: 0 1rem;
}

.price-unlisted{
  color: #d40000;
  font-style: italic;
}

.pnh-will-source{
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-size: 0.7rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #0d6efd;
  background-color: #e7f1ff;
  border: 1px solid #b6d4fe;
  border-radius: 0.25rem;
  padding: 0.15rem 0.4rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  cursor: help;
}

/* Pure-CSS tooltip for the PNH WILL SOURCE badge — no JS or Bootstrap
   dependency. Shows on hover and on keyboard focus. */
.pnh-will-source[data-pnh-tooltip]::after{
  content: attr(data-pnh-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  max-width: 80vw;
  padding: 0.5rem 0.65rem;
  background-color: #212529;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  border-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out;
  z-index: 1080;
}

.pnh-will-source[data-pnh-tooltip]::before{
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #212529;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out;
  z-index: 1080;
}

.pnh-will-source[data-pnh-tooltip]:hover::after,
.pnh-will-source[data-pnh-tooltip]:focus::after,
.pnh-will-source[data-pnh-tooltip]:hover::before,
.pnh-will-source[data-pnh-tooltip]:focus::before{
  opacity: 1;
  visibility: visible;
}