.add-this-panel.controlled-width{
    display: flex;
    margin-bottom: 50px;
    overflow: hidden;
}
@media(max-width:640px){
    .add-this-panel.controlled-width{
        margin-bottom: 0;
    }
}
.add-this-panel .left-col,
.add-this-panel .right-col {
    width: 50%;
}

.add-this-panel .right-col {
    text-align: right;
}

.add-this-panel .left-col {
    text-align: left;
}

.add-this-panel .add-this {
    display: inline-block;
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #50afad;
    border: 2px solid #eeebe6;
    cursor: pointer;
}

.shared-top .add-this-panel .add-this {
    background-color: white;
}

.add-this-panel .add-this a {
    color: #50afad;
}

.add-this-panel .add-this i {
    margin-left: 10px;
}

.add-this-panel a:hover {
    text-decoration: none;
}

@media (max-width: 640px) {
    .add-this-panel {
        flex-direction: column;
        margin: 0;
    }
    .add-this-panel .left-col,
    .add-this-panel .right-col {
        width: 100%;
    }
    .add-this-panel .left-col {
        order: 2;
        margin-bottom: 10px;
    }
    .add-this-panel .right-col {
        order: 1;
    }
    .shared-top .add-this-panel {
        flex-direction: row;
        margin-bottom: 25px;
    }
    .shared-top .add-this-panel .left-col {
        order: 1;
    }
    .shared-top .add-this-panel .right-col {
        order: 2;
    }
    .shared-top .add-this-panel .left-col,
    .shared-top .add-this-panel .right-col {
        width: 50%;
    }
    .add-this-panel .add-this a {
        font-size: 15px;
        line-height: 17px;
    }
}

