.ea-floating-social {
    position: fixed;
    z-index: 9999;
    display: flex;
    gap: 10px;
    transition: all .2s;
}
.ea-floating-social.ea-fs-left-center {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    flex-direction: column;
}
.ea-floating-social.ea-fs-right-center {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    flex-direction: column;
}
.ea-floating-social.ea-fs-bottom-center {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    flex-direction: row;
}
.ea-fs-link {
    text-decoration: none;
    display: inline-flex;
}
.ea-floating-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: #222;
    transition: all .4s ease-in-out;
}

.ea-floating-social svg,
.ea-floating-social path{
    transition: all .4s ease-in-out;

}

.ea-fs-hide-mobile { display: flex; }
@media (max-width: 767px) {
    .ea-fs-hide-mobile { display: none !important; }
}
.ea-fs-hide-tablet { display: flex; }
@media (max-width: 1024px) and (min-width: 768px) {
    .ea-fs-hide-tablet { display: none !important; }
}