/*------------------------------------*\
    FxSocialShare – Sharingbuttons.io

    Row............Container (ul).
    Item...........List items.
    Button link....Anchor and icon display.
    Button.........Button box (padding, radius, transition).
    Icon...........SVG size, stroke, fill.
    Networks.......LinkedIn, Facebook, X, Email, Pinterest (base + hover).
\*------------------------------------*/


/* ==========================================================================
   Row
   ========================================================================== */

.social-share-row {
    margin: 0;
    padding: 0;
    list-style: none !important;
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}


/* ==========================================================================
   Item
   ========================================================================== */

.social-share-row__item {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.social-share-row__item:before {
    display: none;
}


/* ==========================================================================
   Button link
   ========================================================================== */

.resp-sharing-button__link,
.resp-sharing-button__icon {
    display: inline-block;
}

.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
    background: none;
}

.social-share-row__item:first-child .resp-sharing-button__link {
    margin-left: 0;
}


/* ==========================================================================
   Button
   ========================================================================== */

.resp-sharing-button {
    padding: 0.5em 0.75em;
    border-radius: 6px;
    background-color: #00807F;    
    transition: background-color 0.3s;
}


/* ==========================================================================
   Icon
   ========================================================================== */

.resp-sharing-button__icon svg {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: top;
}

.resp-sharing-button--small svg {
    margin: 0;
    vertical-align: middle;
}

.resp-sharing-button__icon {
    stroke: #fff;
    fill: none;
}

.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none;
}

@media (min-width: 1200px) {
    .resp-sharing-button:hover {
        background-color: #EE6618;
    }
}