.share-buttons {
    position: fixed;
    top: 40%;
    display: inline-grid;
    right: 0;
    width: 35px;
    z-index: 999;
}

.share-buttons .share-button {
    float: left;
    margin-top: 15px;
}

.share-buttons .share-button:first-child {
    margin-top: 0;
}

.share-buttons .share-button:after {
    clear: both;
    display: table;
}

.share-button {
    display: block;
    position: relative;
    height: 30px;
}

.share-button:hover {
    cursor: pointer;
}

.share-button:hover .share-button-primary {
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
}

.share-button:hover .share-button-secondary-content {
    transform: translate3d(0, 0, 0);
}

.share-button-primary {
    position: absolute;
    background: var(--azulclaro);
    width: 40px;
    height: 40px;
    border-radius: 25px;
    left: -12px;
    top: 50%;
    margin-top: -15px;
    text-align: center;
}

.share-button-icon {
    display: block;
    color: #242424;
    position: absolute;
    width: 40px;
    line-height: 38px;
    font-size: 16px;
    margin-top: 1px;
}

.share-button-secondary {
    overflow: hidden;
    margin-left: 15px;
    height: 30px;
}

.share-button-secondary-content {
    font-family: sans-serif;
    font-size: 0.75em;
    background: #fff;
    display: block;
    height: 30px;
    text-align: left;
    padding-left: 24px;
    padding-right: 18px;
    line-height: 30px;
    color: #242424;
    border-radius: 0 15px 15px 0;
    transform: translate3d(-100%, 0, 0);
    transition: transform 175ms ease;
}

@media only screen and (max-width: 500px) {
    .share-buttons {
        position: absolute;
        top: 40%;
        display: inline-grid;
        right: 0;
        width: 35px;
        z-index: 1;
    }
}