* {
  box-sizing: border-box;
}

form {
  align-self: center;
  width: 100%;
  min-width: 500px;
  padding: 0 1rem 0 0;
}

.hidden {
  display: none;
}

#payment-message {
  color: #697386;
  text-align: center;
  padding-top: 12px;
  font-size: 16px;
  line-height: 20px;
}

#express-checkout {
  display: none;
}

#payment-element {
  margin-bottom: 24px;
}

button {
  color: #fff;
  cursor: pointer;
  background: #e83458;
  border: 0;
  border-radius: 1rem;
  width: 100%;
  padding: 12px 16px;
  font-family: freight-sans-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: block;
  box-shadow: 0 4px 5.5px #00000012;
}

button:hover {
  filter: contrast(115%);
}

button:disabled {
  opacity: .5;
  cursor: default;
}

.spinner, .spinner:before, .spinner:after {
  border-radius: 50%;
}

.spinner {
  color: #fff;
  text-indent: -99999px;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  font-size: 22px;
  position: relative;
  transform: translateZ(0);
  box-shadow: inset 0 0 0 2px;
}

.spinner:before, .spinner:after {
  content: "";
  position: absolute;
}

.spinner:before {
  transform-origin: 10.4px 10.2px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  width: 10.4px;
  height: 20.4px;
  animation: 2s 1.5s infinite loading;
  top: -.2px;
  left: -.2px;
}

.spinner:after {
  transform-origin: 0 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  width: 10.4px;
  height: 10.2px;
  animation: 2s infinite loading;
  top: -.1px;
  left: 10.2px;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (width <= 600px) {
  form {
    min-width: initial;
    width: 95vw;
  }
}

/*# sourceMappingURL=confirmation.1083f0a3.css.map */
