.wp-block-vagabond-plus-social-buttons.social-links {
display: flex;
gap: 0.2rem;
transform: translate(-12px, -5px);
}
.socialBtn {
display: inline-block;
position: relative;
font-size: 12px;
text-align: center;
width: 38px;
height: 38px;
line-height: 35px;
cursor: pointer;
text-decoration: none;
color: var(--wp--preset--color--va-black);
}
.socialBtn {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 52px;
height: 52px;
cursor: pointer;
text-decoration: none;
color: var(--wp--preset--color--va-black);
border-radius: 50%;
overflow: hidden;
}
.socialBtn img {
width: 80%;
height: 80%;
-o-object-fit: contain;
object-fit: contain;
position: relative;
z-index: 2;
}
.socialBtn::after {
content: '';
position: absolute;
top: calc(50% + 1px) !important;
left: calc(50% + 1px) !important;
transform: translate(calc(-50% - 1px), calc(-50% - 1px));
width: 39px !important;
height: 39px !important;
aspect-ratio: 1 / 1;
border: 1.5px solid var(--wp--preset--color--va-white);
border-radius: 50%;
clip-path: inset(30px 0px);
transition:
clip-path 0.3s cubic-bezier(0.73, 0.17, 0.68, 0.89),
color 0s !important;
z-index: 1000;
opacity: 1 !important;
color: var(--wp--preset--color--va-black);
background: transparent !important;
}
.socialBtn.has-no-styling {
width: auto;
justify-content: start;
}
.socialBtn.has-no-styling img {
width: auto;
width: 100%;
}
.socialBtn.has-no-styling::after {
display: none;
}
.socialBtn:hover::after {
clip-path: inset(0px 0px);
}
@media only screen and (max-width: 1025px) {
.wp-block-vagabond-plus-social-buttons.social-links {
flex-wrap: wrap;
}
}