

#omipressfb-buttons-container {
    position: fixed;
    top: 50%;
    right: -100%;
    z-index: 99999;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

body.opfb-active #omipressfb-buttons-container {
    right: 12px;
    animation: slideLeft 0.3s ease-in-out;
}

#omipressfb-buttons-container ul {    
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    list-style: none;
    padding: 0;
    margin: 0
}

#omipressfb-buttons-container ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#omipressfb-buttons-container ul li a.omipressfb-button {
    position: relative;
    background-color: #242424;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

#omipressfb-buttons-container ul li:last-child .omipressfb-button {
    background: #ff4900;
    margin-bottom: 0;
}

.omipressfb-button .fb-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    font-size: 20px;
}

.omipressfb-button .fb-icon-label {
    width: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

#omipressfb-buttons-container ul li:nth-child(1) a:hover span {
    width: 80px;
}

#omipressfb-buttons-container ul li:nth-child(2) a:hover span {
    width: 112px;
}

#omipressfb-buttons-container ul li:nth-child(3) a:hover span {
    width: 72px;
}

#omipressfb-buttons-container .floating-label {
    position: absolute;
    bottom: 50%;
    right: 12px;
    transform: translateY(-50%);

}



