.popover-menu-button {
  cursor: pointer;
  color: black;
  border: 0;
  background-color: transparent;
}

.menu-options {
    /* anchoring to the button */
    position: absolute;
    border: none;
    margin: 0;
    inset: auto;
    top: anchor(center);
    left: anchor(right);
    opacity: 0;
    transition: opacity .5s, display .5s, overlay .5s;
    transition-behavior: allow-discrete;
    transform: translateY(-50%);
    position-try-fallbacks: --left;
    border-radius: 15px;
    padding: 15px;
    padding-left: 20px;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    background-color: #f3f6f9;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    z-index: 2000;
    position: relative;
}

.menu-options[open]{
    display: flex;
}
/*.menu-options::backdrop{
    display: none;
}
*/
.menu-options:popover-open {
    display: flex;
    opacity: 1;

    @starting-style {
        display: flex;
        opacity: 0;
    }
}

@position-try --left {
    inset: auto;
    top: anchor(top);
    left: anchor(right);
}

.menu-options__header {
  text-align: center;
}

.menu-options__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
}

.menu-options__body a {
  text-decoration: none;
  color: inherit;
}

.menu-options__body_action {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 10px;
}


.menu-options a:hover {
    color: var(--rz-secondary);
}

.menu-options::before {
    content: "";
    clip-path: polygon(0 46%, 100% 100%, 100% 0);
    background-color: black;
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
}
