@keyframes popup {
    from {
        margin-top: 20px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.error-hide {
    animation-duration: 0.5s;
    animation-name: popdown;
    color: red;
}

@keyframes popdown {
    to {
        margin-top: 20px;
        opacity: 0;
    }
}
.info {
    color: green;
}

#apple-pay-button {
  background-color: black;
  background-image: -webkit-named-image(apple-pay-logo-white);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% calc(60% + 2px);
  border-radius: 5px;
  float: left;
  height: 30px;
  margin: 0px 0px 10px 0px;
  width: 100px;
}
