.stickyActions {
    position: fixed;
    left: auto;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.stickyActions__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    transition: background 0.3s;
}
.stickyActions__btn:hover {
    background: #DECAFF;
}

.stickyActions__btn svg{
    width: 25px;
    height: 25px;
}

@media (min-width: 1024px) {
    .stickyActions {
        right: 24px;
        bottom: 24px;
        /* width: 360px; */
    }
}