.vehicle-arrow {
  width: 40px;
  height: 50px;
  background: #ffe600;
  filter:
    drop-shadow(0 0 2px #000)
    drop-shadow(0 0 3px #000)
    drop-shadow(0 3px 6px #000);
}

.position-picker {
  position: relative;
  width: 66px;
  height: 66px;
}

.position-picker summary {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 4px solid #121b22;
  border-radius: 50%;
  background: linear-gradient(#eef4f7, #9db1c1);
  color: #121920;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 4px 9px #0009;
  cursor: pointer;
  list-style: none;
}

.position-picker summary::-webkit-details-marker { display: none; }

.position-menu {
  position: absolute;
  z-index: 550;
  top: 0;
  right: 78px;
  display: none;
  gap: 8px;
  padding: 7px;
  border: 2px solid #71869a;
  border-radius: 38px;
  background: #071019e8;
  box-shadow: 0 5px 18px #000b;
}

.position-picker[open] .position-menu { display: flex; }

.position-menu button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 3px solid #17232d;
  border-radius: 50%;
  background: linear-gradient(#eef4f7, #9db1c1);
  color: #101820;
  box-shadow: 0 2px 5px #0008;
  cursor: pointer;
}

.position-menu button:active { transform: translateY(1px); }
.position-menu button:disabled { opacity: .3; cursor: default; }
.position-menu button > span { font-size: 1.7rem; line-height: 1; }
.position-menu .position-both { font-size: 1.15rem; letter-spacing: -5px; padding-right: 4px; }

@media (max-width: 760px) {
  .position-picker, .position-picker summary { width: 52px; height: 52px; }
  .position-picker summary { font-size: 1.45rem; }
  .position-menu { top: 0; right: 60px; gap: 5px; padding: 5px; }
  .position-menu button { width: 44px; height: 44px; }
}
