/**
 * ==========================================================================
 * MultiPress Floating Share Bar
 * ==========================================================================
 */

.mp-floating-share{
    position:sticky;
    top:120px;
    display:flex;
    flex-direction:column;
    gap:12px;
    align-self:flex-start;
}

.mp-floating-share a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    color:#fff;
    font-size:1.1rem;
    transition:.3s;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.mp-floating-share a:hover{
    transform:translateY(-3px) scale(1.08);
}

.mp-share-facebook{background:#1877f2;}
.mp-share-x{background:#111827;}
.mp-share-whatsapp{background:#25d366;}
.mp-share-linkedin{background:#0a66c2;}
.mp-share-copy{background:#6b7280;}

@media (max-width:1024px){
    .mp-floating-share{
        display:none;
    }
}
