.social-custom-links.with-margin{
    margin: 10px 10px 0 0; 
}
.social-custom-links{
    display: flex;
    padding: 0;
    float: right;
    list-style: none;
    margin: 0;   
    gap: 10px; 
}
.social-custom-links li{
    display: flex;
}

.social-custom-links a{
    width: 36px;
    height: 36px;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #413648;
}
.social-custom-links img,
.social-custom-links svg{
    max-width: 100%;
    max-height: 20px;
    
}

.social-custom-links svg path{
    fill:#78737E;
}
.social-custom-links a:hover svg path{
    fill:#e36740;
}

@media (max-width: 768px) {
    .social-custom-links{
        justify-content: center;
        float: none;
    }
}