.menu {
  width: auto;
  height: auto;
  padding: 5px;
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 4px 0 rgba(0, 0, 0, 0.15), 0 8px 15px 6px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: rgba(246, 246, 246, 0.6);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.menu.visible {
  opacity: 1;
  pointer-events: initial;
}
.menu p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 16px;
  font-family: "SFPro-Medium", "PingFang-Medium";
  margin: 1.5px 0;
  border-radius: 5px;
  padding: 3px 10px;
}
.menu p:hover {
  background: #0A82FF;
  color: white;
}
.menu p:first-child {
  margin-top: 0;
}
.menu p:last-child {
  margin-bottom: 0;
}
.menu p[disabled] {
  color: rgba(0, 0, 0, 0.25);
}
.menu hr {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5px;
  border: none;
  width: calc(100% - 14px);
  height: 1px;
  margin: 4px 0;
  align-self: center;
}/*# sourceMappingURL=ui.css.map */