/**
* Styling for the Social Share Block
* Created By: RubicoTech (Philip Pradeep)
* @Package Genesis Blocks
*/
.module_share {
    padding-top: 30px;
}
.module_share .grid-wrap {
    max-width: 825px;
}
[class^="module_"] + .module_share .grid-wrap {
    max-width: 1240px;
}
.module_share .grid-wrap > h6 {
    margin-bottom: 16px;
    text-align: center;
    grid-column: span 12;
}
.module_share .grid-wrap > .share_icons {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 12;
}
.share_icons > a {
    display: inline-block;
    transition: all .3s ease;
}
.share_icons > a:hover {
    opacity: .75;
}
.share_icons > a > img {
    max-width: 30px !important;
    max-height: 30px;
    margin: 0 20px 0 0 !important;
}
.share_icons > a:last-of-type > img {
    margin: 0 !important;
}
/* -- Media Break-Points -- */
@media (min-width: 768px) {
    .module_share .grid-wrap > .share_icons {justify-content: flex-start;}
    .module_share .grid-wrap > h6 {text-align: left;}
}