.sm-social-floating {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.sm-social-floating__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    text-decoration: none !important;
    transition: opacity 0.25s ease;
}

.sm-social-floating__link:hover {
    opacity: 0.85;
}

.sm-social-floating__link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .sm-social-floating__link {
        width: 36px;
        height: 36px;
    }

    .sm-social-floating__link svg {
        width: 16px;
        height: 16px;
    }
}
