.widget-social i {
    font-size: 18px;
    margin-right: 10px;
}

.widget-social a {
    position: relative;
    top: -2px;
}

@media screen and (min-width: 768px) {
    .hide-desktop {
        display: none;
    }
}

.social-section {
    padding-top: 30px;
}

.social-section ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 400px;
    margin: auto;
}

.social-section ul > li {
    list-style: none;
}

.social-section ul > li a {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d5d5d6;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
}

.social-section ul > li:last-of-type {
    margin: 0;
}

.social-section ul > li a:after {
    margin: 0;
    font-size: 30px;
}

.social-section ul > li a span {
    position: absolute;
    display: flex;
    right: auto;
}

.social-section ul > li a:after {
    content: none !important;
}


/* Icons */
a[href*="facebook.com"]:after {
    content: "\f39e" !important;
    color: #3b5999;
}

a[href*="instagram.com"]:after {
    background: -webkit-radial-gradient(33% 100% circle, #FED373 4%, #F15245 30%, #D92E7F 62%, #9B36B7 85%, #515ECF);
    background: radial-gradient(circle at 33% 100%, #FED373 4%, #F15245 30%, #D92E7F 62%, #9B36B7 85%, #515ECF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a[href*="pinterest.it"]:after,a[href*="pinterest.com"]:after {
    font-family: "Font Awesome 5 Brands";
    content: "\f231" !important;
    color: #cb2027;
}

a[href*="reddit.com"]:after,a[href*="reddit.it"]:after {
    font-family: "Font Awesome 5 Brands";
    content: "\f281" !important;
    color: #ff0000;
}

@media screen and (max-width: 425px) {
    .social-section {
        padding-top: 50px;
    }

    .social-section ul > li {
        width: calc(100vw / 4);
        text-align: center;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}