.wp-social-sharing-buttons {
display: flex;
gap: 10px;
margin: 12px 0;
flex-wrap: wrap;
justify-content: center;
font-weight: 700;
line-height: 1.2;
}
.wp-social-sharing-buttons a {
box-sizing: border-box;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
text-decoration: none;
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 14px;
color: #333;
background-color: #f9f9f9;
transition: background-color .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
min-width: 120px;
text-align: center; -webkit-tap-highlight-color: transparent;
} .wp-social-sharing-buttons a:focus {
outline: none;
}
.wp-social-sharing-buttons a:focus-visible {
outline: 2px solid currentColor;
outline-offset: 2px;
} .wp-social-sharing-buttons a:hover {
background-color: #eaeaea;
transform: translateY(-1px);
}
.wp-social-sharing-buttons a:active {
transform: translateY(0);
} .wp-social-sharing-buttons a.facebook {
color: #3b5998;
border-color: #3b5998;
}
.wp-social-sharing-buttons a.facebook:hover {
background-color: #3b5998;
color: #fff;
}
.wp-social-sharing-buttons a.whatsapp {
color: #25d366;
border-color: #25d366;
}
.wp-social-sharing-buttons a.whatsapp:hover {
background-color: #25d366;
color: #fff;
} .wp-social-sharing-buttons a.xcom {
color: #1DA1F2;
border-color: #1DA1F2;
}
.wp-social-sharing-buttons a.xcom:hover {
background-color: #1DA1F2;
color: #fff;
}
.wp-social-sharing-buttons a.email {
color: #db4437;
border-color: #db4437;
}
.wp-social-sharing-buttons a.email:hover {
background-color: #db4437;
color: #fff;
} @media (max-width: 768px) {
.wp-social-sharing-buttons {
flex-direction: column;
gap: 12px;
align-items: stretch;
}
.wp-social-sharing-buttons a {
width: 100%;
min-width: 0;
font-size: 16px;
padding: 12px 18px;
}
} @media (max-width: 420px) {
.wp-social-sharing-buttons a {
font-size: 15px;
padding: 12px 16px;
}
}