.scene-radial-menu {
  --radial-scale: 1;
  position: absolute;
  z-index: 20;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%) scale(var(--radial-scale));
  transform-origin: center;
  pointer-events: none;
  user-select: none;
  outline: none;
  font-family: "Segoe UI", sans-serif;
  contain: layout style;
}
.scene-radial-menu[hidden] { display: none; }
.scene-radial-menu__ring {
  position: absolute;
  left: 120px;
  top: 120px;
  width: 120px;
  height: 120px;
}
.scene-radial-menu__wedge { fill: #3f72ff; }
.scene-radial-menu .scene-radial-menu__button {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 94px;
  height: 70px;
  margin: 0;
  padding: 5px 2px;
  border: 3px solid #303236;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  background: #303236;
  color: #f2f3f5;
  box-shadow: 0 2px 5px #0003;
  font: 13px/1.2 "Segoe UI", sans-serif;
  white-space: nowrap;
  pointer-events: none;
}
.scene-radial-menu .scene-radial-menu__button--move {
  height: 78px;
  background: #e6eceb;
  color: #242c37;
}
.scene-radial-menu .scene-radial-menu__move-icon {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scene-radial-menu .scene-radial-menu__button--centre {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border-color: #5f626a;
  background: #5f626a;
  box-shadow: none;
}
.scene-radial-menu .scene-radial-menu__button.is-active {
  border-color: #3f72ff;
  box-shadow: 0 0 0 1px #3f72ff;
}
.scene-radial-menu .scene-radial-menu__button--centre.is-active {
  border-color: #7c8494;
  background: #7c8494;
  box-shadow: none;
}
.has-scene-radial-menu #editor2d { cursor: default !important; }

