.social {
    border: none;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    font-weight: normal;
    line-height: 1;
    text-align: left;
    text-decoration: none;
    position: relative;
    height: 40px;
    padding: 0 16px;
    display: -webkit-inline-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items:center;
    -webkit-transition: -webkit-box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
    width: 100%;
    margin: 16px 0;
}

.social:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #006298;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #006298;
}

.facebook {
    background-color: #4267B2;
    border-color: #4267B2;
}

.facebook:hover {
    background-color: #34528e;
    border-color: #34528e;
}

.facebook:active {
    background-color: #273d6a;
    border-color: #273d6a;
}

.google {
    background-color: #ffffff;
    border: 2px solid #c3c3c3;
    color: #333333;
}

.google:hover {
    background-color: #f3f3f3;
}

.google:active {
    background-color: #e1e1e1;
}

.microsoft {
    background-color: #2f2f2f;
    border-color: #2f2f2f;
}

.microsoft:hover {
    background-color: #585858;
    border-color: #585858;
}

.microsoft:active {
    background-color: #828282;
    border-color: #828282;
}

.yahoo {
    background-color: #6001d2;
    border-color: #6001d2;
}

.yahoo:hover {
    background-color: #4c00a8;
    border-color: #4c00a8;
}

.yahoo:active {
    background-color: #39007e;
    border-color: #39007e;
}

.button-copy {
    margin-left: 16px;
}

/* Small view ports and up */
@media only screen and ( min-width: 30em ) {

    .options .social {
        width: 40%;
        font-size: 1rem;
        margin: 0 1rem 1rem;
        padding: 0 0.5rem;
        display: inline-flex;
    }

    .options .button-copy {
        margin-left: 0.75rem;
    }

    .hide-non-mobile {
        display: none;
    }

    .hide-mobile {
        display: initial;
    }
}
