.action-button {
    position: fixed;
    z-index: 99;
}

    .action-button .ab-link {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #b1b1b1;
        color: #fff;
        margin: 0;
        padding: 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 80px;
        font-weight: 100;
        cursor: pointer;
        transition: all 0.2s;
        box-shadow: 0px 6px 24px -2px rgba(0, 0, 0, 0.3);
        z-index: 3;
        line-height: 1;
    }

        .action-button .ab-link:hover {
            transform: scale(1.1) translateZ(0) translateY(0);
            background: #b1b1b1;
        }

    .action-button.open .ab-link {
        background: #b1b1b1;
    }

    .action-button.open .action-list span {
        display: block;
        opacity: 1;
    }

    .action-button.open .action-list li:hover span {
        opacity: 1;
        transform: scale(0.9) translateZ(0) translateY(0);
    }

    .action-button .action-list {
        list-style-type: none;
        margin: 0;
        position: absolute;
        padding: 0;
        transition: all 0.2s;
    }

        .action-button .action-list li {
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            font-size: 20px;
            box-shadow: 0px 6px 24px -2px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.2s;
            position: absolute;
            z-index: 1;
            opacity: 0;
        }

            .action-button .action-list li:hover {
                transform: scale(1.1) translateZ(0) translateY(0);
            }

                .action-button .action-list li:hover i {
                    color: #b1b1b1;
                }

            .action-button .action-list li.active i {
                color: #b1b1b1;
            }

            .action-button .action-list li.active span {
                opacity: 1;
                color: #fff;
                background: #b1b1b1;
            }

            .action-button .action-list li i {
                color: #333;
                transition: all 0.2s;
            }

            .action-button .action-list li span {
                position: absolute;
                left: 65px;
                font-size: 12px;
                background: #fff;
                white-space: nowrap;
                box-shadow: 0px 6px 24px -2px rgba(0, 0, 0, 0.3);
                padding: 3px 12px;
                font-weight: 700;
                transition: all 0.2s;
                border-radius: 0.33 rem;
            }

    .action-button.top-left li {
        top: 0;
    }

    .action-button.top-right .action-list li span {
        right: 80px;
        left: initial;
    }

    .action-button.top-right li {
        top: 0;
    }

    .action-button.bottom-right {
        bottom: 75px;
        left: 30px;
    }

        .action-button.bottom-right .action-list li span {
            left: 64px;
            right: initial;
        }

        .action-button.bottom-right .action-list {
            margin-top: -45px;
            left:5px;
        }

        .action-button.bottom-right li {
            bottom: 0;
        }
