.apple-pay-element,
.g-pay-element {
    min-height: 44px;
    background-color: #000000;
    border-radius: 5px;
    animation: pulse 1.5s infinite;
    width: 266px;
    display: block;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
    margin: auto;
}

.g-pay-element {
    margin-top: 10px;
    background-image: url("../img/google-pay.svg");

}

.apple-pay-element {
    background-image: url("../img/apple-pay.svg");
    background-size: 50px;

}

@keyframes pulse {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.2;
    }
}