.fFixed {
    position: fixed;
    z-index: 9999;
    bottom: 72px;
    right: 0;
}
.fFixedLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    color: #2F6B13;
    background: #B7CC77;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid #B7CC77;
    transition: all .5s;
    gap: 10px;
    padding: 20px 8px;
    font-size: 14px;
}
.fFixedLink:hover {
    color: #2F6B13;
    background: #E8F4C3;
    transition: all .5s;
}

@media screen and (max-width: 767px) {
    .fFixed {
        display: none;
    }
}