.fab-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999999;
}

.fab-icon-holder {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #016fb9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2)
}

.fab-icon-holder:hover {
    opacity: .8
}

.fab-icon-holder i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 32px;
    color: #fff
}

.fab-icon-holder img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    margin: 18px auto 0;
}

/* .fab{width:60px;height:60px;background:#d23f31} */
.fab-options {
    list-style-type: none;
    margin: 0;
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    transition: all .3s ease;
    transform: scale(0);
    transform-origin: 85% bottom;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.fab:hover+.fab-options,
.fab-options:hover {
    opacity: 1;
    transform: scale(1)
}

.fab-options li {
    display: flex;
    justify-content: flex-end;
    padding: 5px
}

.fab-label {
    padding: 2px 5px;
    align-self: center;
    user-select: none;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 16px;
    background: #666;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    margin-right: 10px
}


@media only screen and (max-width: 767px) {
    .fab-container {
        position: fixed;
        bottom: 15px;
        right: 10px;
    }

    .fab-icon-holder {
        width: 50px;
        height: 50px;
    }
}