/**
* 2024 Anvanto
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
*
*  @author    Anvanto <anvantoco@gmail.com>
*  @copyright 2024 Anvanto
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

.blog-social-list {
 display: flex;
  flex-wrap: wrap;
}
.social-heading {
    font-size: 24px;
    font-weight: bold;
    text-transform: none;
  margin-bottom: 15px; 
}

.itemFacebookButton a {
    background-color: #5373be;
}
.itemFacebookButton .itemSocialButton-icon {
    background-color: rgba(0,0,0,0.15);
}
.itemFacebookButton a:hover {
    background-color: #3e5ea9;
}
.itemTwitterButton a {
    background-color: #0084b4;
}
.itemTwitterButton .itemSocialButton-icon {
    background-color: rgba(0,0,0,0.1);
}
.itemTwitterButton a:hover {
    background-color: #1195c5;
}
.itemPinterestButton a {
    background-color: #cb2027;
}
.itemPinterestButton .itemSocialButton-icon {
    background-color: rgba(0,0,0,0.1);
}
.itemPinterestButton a:hover {
    background: rgba(203,30,39,0.8);
}
.itemLinkedinButton a {
    background-color: #0077b5;
}
.itemLinkedinButton .itemSocialButton-icon {
    background-color: rgba(0,0,0,0.1);
}
.itemLinkedinButton a:hover {
    background-color: #1289c7;
}
.itemTumblrButton a {
    background-color: #405167;
}
.itemTumblrButton .itemSocialButton-icon {
    background-color: rgba(0,0,0,0.1);
}
.itemTumblrButton a:hover {
    background-color: #516278;
}
.itemSocialButton-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.15);
    width: 33px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: unset;
    bottom: 0;
}
.itemSocialButton-icon path {
    fill: #fff;
}
.itemSocialButton a {
    font-size: 12px;
    display: inline-block;
    height: 34px;
    border-radius: 3px;
    line-height: 18px;
    margin: 0 7px 10px 0;
    width: 120px;
    text-align: left;
    overflow: hidden;
    color: #fff!important;
    min-width: 100px;
    cursor: pointer;
    float: left;
    font-family: inherit;
    padding: 8px 10px 8px 41px;
    position: relative;
}