.popup-menu{
    width: 35px;
    height: 35px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    
    
}
.popup-menu button{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border:none;
    font-size: 14px;
    font-family: "sohne-var", "Helvetica Neue", "Arial", sans-serif;;
    white-space: nowrap;
    border-radius: 5px;
    cursor: pointer;
}
.popup-menu button i{
    color: #3e3e3e;
}
.popup-menu .activador.active{
    background-color: #f1f1f1;
}
.popup-menu .buttons{
    display: none;
    position: absolute;
    flex-direction: column;
    height: auto;
    top: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    width: max-content;
    background-color: #fdfdfd;
}
.popup-menu .buttons button{
    padding: 10px 15px;
    text-align: left;
    font-family: "sohne-var", "Helvetica Neue", "Arial", sans-serif;
    color: #3e3e3e;
}

.popup-menu .buttons button:hover{
    background-color: #f1f1f1;
}
.popup-menu .buttons.appear{
    display: flex;
}
.popup-menu .buttons.left{
    top:0;
    right: 35px;
}
.popup-menu .buttons.right{
    top:0;
    left: 35px;
}
.popup-menu .buttons.bottom{
    top: 35px;
    right: 0;
}
.popup-menu .buttons.top{
    bottom: 35px;
    right: 0;
}