.fab-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.fab-icon-holder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: #ffffff solid 1px;
    background: #ddb32d;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fab-icon-holder img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.fab {
    width: 60px;
    height: 60px;
    background: #ddb32d;
}

.fab-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style-type: none;
    margin: 0 0 -5px;
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 85% bottom;
        -ms-transform-origin: 85% bottom;
            transform-origin: 85% bottom;
}

.fab-options.fab-options-displayed {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.fab-options li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 5px;
}

.fab-options li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.fab-label {
    padding: 2px 5px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    white-space: nowrap;
    border-radius: 3px;
    border: #ffffff solid 1px;
    font-size: 14px;
    letter-spacing: 1px;
    background: #c39c46;
    color: #ffffff;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
    text-transform: uppercase;
}

.circle {
    height: 60px;
    width: 60px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    top: -1px;
    left: -1px;
    -webkit-animation: scaleIn 1.5s infinite ease;
            animation: scaleIn 1.5s infinite ease;
}

@-webkit-keyframes scaleIn {

    from {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);
        opacity: .5;
    }

    to {
        -webkit-transform: scale(2.0, 2.0);
                transform: scale(2.0, 2.0);
        opacity: 0;
    }
}

@keyframes scaleIn {

    from {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);
        opacity: .5;
    }

    to {
        -webkit-transform: scale(2.0, 2.0);
                transform: scale(2.0, 2.0);
        opacity: 0;
    }
}

@media screen and (max-width: 420px) {

    .fab-container {
        bottom: 10px;
        right: 10px;
    }
}