.checkout-button {
  border-collapse: collapse;
  cursor: pointer;
  box-shadow: 0 0 0 rgb(24 96 211 / 80%);
  animation: pulse 2s infinite;
  text-align: center;
  background: #1450a8 none repeat scroll 0% 0% / auto padding-box border-box;
  border: 0;
  transition: all 0.2s ease 0s;
  padding: 15px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  color: #fff;
  margin-top: 20px;
  display: inline-block;
  width: max-content;
  border-radius: 32px;
  position: relative;
  font-weight: 400;
}
.checkout-button a {
  color: #fff;
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(24, 96, 211, 0.8);
    box-shadow: 0 0 0 0 rgba(24, 96, 211, 0.8);
  }
  70% {
    -moz-box-shadow: 0 0 0 8px rgba(214, 32, 39, 0);
    box-shadow: 0 0 0 10px rgba(214, 32, 39, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(214, 32, 39, 0);
    box-shadow: 0 0 0 0 rgba(214, 32, 39, 0);
  }
}
.checkout-button.header-button {
  padding: 0px 30px;
  line-height: 45px;
  margin-top: 0px;
  font-size: 2rem !important;
  font-weight: 400;
}
button.checkout-button.header-button.rounded-button a span {
  color: #fff;
}
@media(max-width: 380px){
  .partner-image h3{
    font-size: 2rem;
  }
}