.button.button.button--pink:hover,
.button.button.button--green:hover {
    background: inherit;
    color: inherit;
}

.button.button.button--pink {
    background: magenta;
    color: white;
    border: 1px solid magenta;
}

.button.button.button--green {
    background: #a2c516;
    color: white;
    border: 1px solid #a2c516;
}

.button.button-fixed-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    font-size: 2rem;
    line-height: 1.725;
    border-radius: 0;
}

.button.button.button--pink.button-fixed-bottom:hover,
.button.button.button--pink.button-fixed-bottom:focus {
    background: magenta;
    color: white;
    filter: brightness(90%);
}

