/*map image configuration*/
.bee-map {
  position: relative;
  max-width: 100%;
}

.bee-map-image {
  width: 100%;
  height: auto;
  display: block;
}

/*map pins (dots)*/
.bee-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #043253;
  border-radius: 50%;
  cursor: pointer;
}

/*pop up pins*/
.bee-popup {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 155px;

  background-image: url('https://roundcause.s6-tastewp.com/wp-content/uploads/2026/01/blueishpin.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  text-align: center;
  padding-top: 18px;

  display: none;
  z-index: 20;
}

/*bee pictures*/
.bee-popup img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 6px;
}

/*pop up text*/
.bee-popup p {
  margin: 0;
  font-size: 12px;
  color: #ffffff;
}

/*flurishes*/
.bee-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

/*hover trigger*/
.bee-pin:hover .bee-popup {
  display: block;
}

/*transition - idk if this even works*/
.bee-popup {
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/*shadow*/
.bee-popup {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

/*static pins*/
.bee-pin-static {
  background-color: #98C6C3;
  cursor: default;
}

.bee-pin-static .bee-popup {
  display: none;
}

/*mobile support - click vs. hover*/
.bee-pin.active .bee-popup {
  display: block !important;
}

/*mobile support - scalability*/
@media (max-width: 768px) {
  .bee-pin {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 768px) {
  .bee-popup {
    transform: translateX(-50%) scale(0.85);
    transform-origin: bottom center;
  }
}
/*invisible tap area*/
.bee-pin::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}
@media (hover: none) {
  .bee-pin:hover .bee-popup {
    display: none;
  }
}

/* Form Borders in Daphne Blue (#98C6C3) */

.page-id-1995 form input,
.page-id-1995 form textarea,
.page-id-1995 form select {
  border-color: #98C6C3 !important;
}

.page-id-1995 form input:hover,
.page-id-1995 form textarea:hover,
.page-id-1995 form select:hover,
.page-id-1995 form input:focus,
.page-id-1995 form textarea:focus,
.page-id-1995 form select:focus,
.page-id-1995 form input:active,
.page-id-1995 form textarea:active,
.page-id-1995 form select:active {
  border-color: #98C6C3 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(152, 198, 195, 1);
}

.page-id-1995 input[type="file"],
.page-id-1995 input[type="file"]:focus,
.page-id-1995 input[type="file"]::file-selector-button {
  border-color: #98C6C3;
}

.page-id-1995 input[type="file"]::file-selector-button {
  border: 1px solid #98C6C3;
}

.page-id-1995 .jetpack-form-file-field__dropzone,
.page-id-1995 .jetpack-form-file-field__dropzone:hover,
.page-id-1995 .jetpack-form-file-field__dropzone.is-dropping,
.page-id-1995 .jetpack-form-file-field__dropzone:focus-within {
  border-color: #98C6C3;
}


.page-id-1995 .jetpack-form-file-field__dropzone-inner {
  border: 1px solid #98C6C3 !important;
}

.page-id-1995 .jetpack-form-file-field__dropzone-inner:hover,
.page-id-1995 .jetpack-form-file-field__dropzone-inner:focus,
.page-id-1995 .jetpack-form-file-field__dropzone:focus-within
  .jetpack-form-file-field__dropzone-inner,
.page-id-1995 .jetpack-form-file-field__dropzone.is-dropping
  .jetpack-form-file-field__dropzone-inner {
  border-color: #98C6C3 !important;
}

/* Ballast Bee Mascot PNG */

.bee-mascot {
  position: absolute;
  display: block;

  width: 180px;
  height: auto;

  top: 10%;
  left: 20%;

  transform: translate(-2%, -6%);
  z-index: 4;

  pointer-events: none;
}



