:root {
    --a2a-active-box-shadow: 0px 0px 10px #00000040;
    --a2a-button-width: 115px;
    --a2a-button-height: 40px;
}

.a2a {
    position: relative;
    display: inline-block;
    font-size: 12px;
}

.a2a svg {
    width: 15px;
    height: 15px;
    text-align: center;
}

.a2a .a2a_kit {
    position: absolute;
    background: #fff;
    opacity: 0;
    width: -webkit-fill-available;
    display: none;
}

.a2a.a2a_kit--top .a2a_kit {
    bottom: 0;
    padding-bottom: var(--a2a-button-height);
    border-radius: 3px 3px 0 0;
}

.a2a.active.a2a_kit--top .a2a_button {
    border-radius: 0 0 3px 3px;
}

.a2a.a2a_kit--bottom .a2a_kit {
    top: 0;
    padding-top: var(--a2a-button-height);
    border-radius: 0 0 3px 3px;
}

.a2a.active.a2a_kit--bottom .a2a_button {
    border-radius: 3px 3px 0 0;
}

.a2a .a2a_kit a {
    float: none;
    display: flex;
    color: #000;
    background-color: #fff;
    border-bottom: 1px solid lightgray;
    padding: 10px;
    transition: all .35s;
    align-items: center;
}

.a2a .a2a_kit a:last-child {
    border: 0px;
}


.a2a .a2a_kit a:hover {
    color: #000;
    text-decoration: none;
    background-color: #0000001A;
}

.a2a .a2a_kit a.a2a_button_x:hover {
    text-decoration: none;
    background-color: #3B4D761A;
}

.a2a .a2a_kit a.a2a_button_facebook:hover {
    text-decoration: none;
    background-color: #0054FF1A;
}

.a2a .a2a_kit a.a2a_button_pinterest:hover {
    text-decoration: none;
    background-color: #FF000C1A;
}

.a2a .a2a_kit a.a2a_button_linkedin:hover {
    background-color: #FF000C1A;
    text-decoration: none;
    background-color: #02ADFD1A;
}

.a2a svg {
    margin-right: 10px;
}

.a2a .copied-toolbar {
    position: absolute;
    width: 100%;
    bottom: calc(100% + 12px);
    left: 0;
    right: 0;
    text-align: center;
    z-index: 0;
    display: none;
}

.a2a .copied-toolbar span {
    position: relative;
    box-shadow: var(--a2a-active-box-shadow);
    padding: 8px 7px;
    background: #EAEAEA;
    border-radius: 3px;
    display: block;
}

.a2a .copied-toolbar span:before,
.a2a .copied-toolbar span:after {
    content: "";
    position: absolute;
    display: inline-block;
    background: #EAEAEA;
    z-index: 0;
    width: 10px;
    height: 10px;
    left: 50%;
    bottom: -5px;
    transform: rotate(45deg) translate3d(-25%, 25%, 0);
}

.a2a .copied-toolbar span:before {
    z-index: -1;
    box-shadow: var(--a2a-active-box-shadow);
}

.a2a.copied .copied-toolbar {
    display: block;
}


.a2a .a2a_button {
    background: #ffffff;
    padding: 5px 23px;
    border: 2px solid #CCCCCC;
    font-weight: 600;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--a2a-button-width);
    height: var(--a2a-button-height);
    max-width: var(--a2a-button-width);
    max-height: var(--a2a-button-height);
    position: relative;
    transition: .35s all;
}

.a2a .a2a_button:hover {
    color: #fff;
    background: #000;
    border-color: #000;
}

.a2a .a2a_button svg {
    margin-left: 8px;
    width: 16px;
    height: 17px;
    margin-right: 4px;
}

/** Active Share Kit */

.a2a .a2a_kit a.a2a_button_copy_link_alt {
    position: relative;
}

.a2a .a2a_kit a.a2a_button_copy_link_alt:after {
    position: absolute;
    content: 'Link copied!';
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background: aliceblue;
}


.a2a .a2a_kit a.a2a_button_copy_link_alt.copied:after {
    opacity: 1;
}


/** Active Share Kit */
.a2a.active {
    opacity: 1;
    z-index: 20;
}

.a2a.active .a2a_kit {
    opacity: 1;
    box-shadow: var(--a2a-active-box-shadow);
    display: block;
    overflow: hidden;
}

.a2a.active .a2a_button {
    background: #000;
    color: #fff;
    border-color: #000;
}

.a2a.active .a2a_button svg {
    fill: #fff;
    stroke: #fff;
    color: #fff;
}

.panel-panel .pane-scad-social-scad-social-share {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 50px;
    position: relative;
}

.panel-panel .pane-scad-social-scad-social-share:before {
    content: "";
    border-top: 1px solid #cccccc;
    display: block;
    position: absolute;
    width: 100%;
    top: 50%;
}

.panel-panel .pane-scad-social-scad-social-share .pane-content {
    background: #fff;
    padding: 0 20px;
    display: inline-block;
    position: relative;
}


/**
 *  Event page only.
 */
@media screen and (min-width: 992px) {
    .node-type-scad-event .a2a {
        margin-left: 28px;
    }
}


/** 
 * scadask-report-node
 */


.scadask-report-node__social-wrapper {
    position: relative;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.scadask-report-node__social-wrapper:before {
    content: "";
    border-top: 1px solid #cccccc;
    display: block;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
}

.scadask-report-node__social-wrapper .a2a__centered-wrapper {
    background: #fff;
    padding: 0 20px;
    display: inline-block;
    position: relative;
    margin: 0 auto;
}