.op3-element[data-op3-element-type="socialsharing"] {
    display: table;

    [data-op3-element-container] {
        display: flex;
        justify-content: center;
        align-items: center;

        .op3-total {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 10px;

            p {
                margin-bottom: 0;
                font-size: 0.5em !important;
            }

            .op3-total-count {
                font-weight: bold !important;
                font-size: 1em !important;
            }
        }

        &[data-op3-social-share-total-count="1"] {
            .op3-total {
                display: flex;
            }
        }

        [data-op3-children] {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }

        [data-op3-children] .op3-count {
            display: none;
        }

        &[data-op3-social-share-count="1"] {
            [data-op3-children] .op3-count {
                display: flex;
            }
        }
    }
}

@media (max-width: $breakpoint-mobile) {
    .op3-element[data-op3-element-type="socialsharing"] {
        [data-op3-element-container] {
            flex-direction: column !important;
        }
    }
}
