.share {
  position: relative;
}
.share__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #1F1F1F;
  transition: 0.3s ease-in-out;
  font-family: "IBMPlexMono", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: 0.875rem;
  letter-spacing: 0;
}
.share__toggle:hover, .share__toggle[aria-expanded=true] {
  color: #006875;
}
.share__popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0.375rem;
  padding: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  min-width: 250px;
}
.share__popup::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.share__popup[hidden] {
  display: none;
}
.share__popup .a2a_kit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/*# sourceMappingURL=share.css.map*/