/**
 * @author: Yoann Le Crom <yoann.lecrom@abstractive.fr>
 * date:    2020-03-05 11:48:40
 */

.ShareButton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    border: none;
    text-decoration: none;
    color: #fff;
    background: #00a377;
    border-radius: 1rem;
    transition: color .5s ease, background .5s ease;
}
.ShareButton + .ShareButton {
    margin-left: 1rem;
}

.ShareButton-icon {
    display: inline;
    height: 2rem;
    fill: #fff;
    margin-right: .5em;
    transition: fill .5s ease;
}

.ShareButton:hover {
    color: #fff;
    background: #00567a;
}

.ShareButton:hover .ShareButton-icon {
    fill: #fff;
}

@media (max-width: 480px) {
    .ShareButton {
        padding: .8rem 1rem;
    }
}

@media (max-width: 370px) {
    .ShareButton {
        padding: .5rem;
    }
    .ShareButton + .ShareButton {
        margin-left: .4rem;
    }
}
