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

.fe-icon-holder {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #03b2ae;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fe-icon-holder:hover {
    opacity: 0.8;
}

.hidden {
    display: none;
}

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

    height: 100%;
    font-size: 45px;
    color: #fff;
}

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

    height: 100%;
    font-size: 20px;
    font-style: normal;
    color: #fff;
}

.feb {
    width: 60px;
    height: 60px;
    background: #4DC247;
}

.fe-options {
    list-style-type: none;
    margin: 0;

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

    opacity: 0;

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

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