.fab-container {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 999;
    cursor: pointer;
}

.fab-icon-holder {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: rgb(62, 62, 62);
    box-shadow: 0 6px 20px rgba(0,0,0.2) ;
    text-decoration: none;

}

.fab-icon-holder:hover{
   background-color: #57BD82;
    text-decoration: none;

}

.fab-icon-holder i {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
    font-size: 25px;
    color: #ffffff;
}

.fab {
    text-decoration: none;
    width: 50px;
    height: 50px;
    background-color: rgb(175, 175, 175);
}

.fab-options {
    list-style-type:none;
    margin: 0;
    text-decoration: none;

    position: absolute;
    bottom: 70px;
    right: 0;

    opacity: 0;

    transition: all 0.3s ease;
    transform: scale(0.5);
    transform-origin:85% bottom;
}

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

}

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

}

.fab-label {
    padding: 2px 5px;
    align-self: center;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 16px;
    background-color: #a0a0a0;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-right:10px ;
    text-decoration: none;

}

.fab-home{
    position: fixed;
    top: 100px;
    z-index: 999;
    cursor: pointer;
}
