.wpdev-top-share {
    width: 33.33%;
}

.wpdev-top-share a.share {
    width: 100%;
    color: #fff;
    font-family: 'Open Sans',helvetica,arial,sans-serif;
    letter-spacing: -0.5px;
    font-weight: 900;
    font-size: 15px;
}

.wpdev-top-share .fa {
    padding: 12px 0px;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    text-align: center;
    margin-right: 10px;
    font-size: 18px;
}

.wpdev-top-share, .wpdev-top-share a.share, span.wpdev-share-title, span.wpdev-share-total {
    display: inline-block;
}

span.wpdev-share-title, span.wpdev-share-total {
    padding: 12px 0px;
}

/* Transitions */

.wpdev-top-share .fa, .wpdev-top-share a.share {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

/* Individual Button Colors */

.wpdev-facebook-share a.share {
    background: rgb(52, 78, 139);
}

.wpdev-twitter-share a.share {
    background: rgb(0, 154, 216);
}

.wpdev-email-share a.share {
    background: rgb(199, 68, 51);
}

/* Hovers */

.wpdev-top-share a.share:hover .fa {
    width: 50px;
    background: rgba(255, 255, 255, 0.07);
}

.wpdev-facebook-share a.share:hover {
    background: rgb(44, 67, 118);
}

.wpdev-twitter-share a.share:hover {
    background: rgb(0, 132, 184);
}

.wpdev-email-share a.share:hover {
    background: rgb(170, 58, 44);
}

/* Media Queries */

@media screen and (max-width: 500px) {
    
    .wpdev-top-share {
        width: 100%;
    }
    
}