.leaflet-popup.leaflet-menu {
  left: 0 !important;
  top: 0 !important;
  bottom: unset !important;
  position: relative;

  .leaflet-popup-tip {
    display: none;
  }

  .leaflet-popup-content-wrapper {
    border-radius: 0;

    a {
      text-decoration: none;
      color: black;
    }

    div.rfa-popup {
      position: relative;

      &:after {
        position: absolute;
        content: '➤';
        display: inline-block;
        margin-left: 0.5rem;
      }

      ul {
        display: none;
        list-style-type: none;
        padding-inline-start: 0;
      }

      &:hover ul {
        display: block;
        background: white;
        position: absolute;
        top: -1.75rem;
        left: 100%;
        padding: 1rem;
        z-index: 1;
        max-height: 20rem;
        overflow-y: auto;
        width: max-content;
      }
    }

    li {
      &:before {
        content: '';
        display: inline-block;
        width: 1.25rem;
      }

      &[data-selected='true']:before {
        content: '✓';
      }
    }

    .menu_item {
      padding: 0.25rem;

      &:hover {
        background: #e29700;
      }
    }
  }
}
