.bfb-floating-icon {
display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 19px;
    bottom: 85px;
    z-index: 44;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--btn-accented-bgcolor);
    color: #fff;
    box-shadow: none;
    font-size: 18px;
    transition: all .25s ease;
}

.bfb-floating-icons-container {
    opacity: 0;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 150px;
    right: 19px;
    width: 50px;
    background-color: transparent;
    transition: all .25s ease;
    transform: translatex(60px);
    z-index: 44;
}

.bfb-floating-icons-container a {
	width: 50px;
    height: 50px;
	display: flex;
	border-radius: 50%;
	justify-content: center;
    align-items: center;
	margin-top: 12px;
	background-color: #fff;
	z-index: 45;
}

.bfb-floating-icons-container.active {
    display: flex;
	opacity: 1;
	transform: translatex(0);
}

.bfb-floating-icon:hover, .bfb-floating-icon.active, .bfb-floating-icons-container a:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	background-color: #000;
	color: #fff;
}

@media (max-width: 1024px) {
	
.bfb-floating-icon {
    right: 12px;
	bottom: 64px;
}
	
.bfb-floating-icons-container {
	right: 12px;
	bottom: 114px;
}

}
