/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 27 2026 | 21:15:54 */
.bh-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  transition: opacity 150ms ease;
  transform: translate(0, 0);
}

.bh-cursor.is-active {
  opacity: 1;
}

.bh-cursor__inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #01587E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform: translate(-92px, -92px) scale(0.95);
  transform-origin: center;
  transition: transform 150ms ease;
}

.bh-cursor.is-active .bh-cursor__inner {
  transform: translate(-92px, -92px) scale(1);
}

.bh-cursor__label {
  color: #12151c;
  line-height: 1.2;
  margin-bottom: 9px;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", Sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.bh-cursor__arrow {
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-cursor__arrow svg {
  width: 13px;
  height: 13px;
  display: block;
}

.bh-cursor__arrow svg path {
  fill: #01587E;
}