
.payments-methods {
    display: flex;
    flex-direction: column;
}

.payment-method {
    transition: background-color 0.3s, box-shadow 0.3s;
    padding: 12px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;
    margin: 5px;
}

.payment-method {
    /*width: 100%;*/
    width: 200px;
    height: 50px;
    border-radius: 16px;
}

.payment-method:hover {
    cursor: pointer;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
    background: #6b6b6b !important;
}

.payment-method:active {
    background-color: #eeeeee;
}

.payment-method:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25),
    0 0 0 3px #c8dafc;
}

.payment-method:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}

/* credit card button */
#credit_card button {
    background: dodgerblue;
    color: white;
}

/* apple pay button */
#apple_pay button {
    background: black;
    color: white;
}

#apple_pay img {
    filter: invert(100%);
}