#step-payment input {
  border-radius: 6px;
  margin-bottom: 6px;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  font-size: 16px;
  width: 100%;
  background: white;
}

.result-message {
  line-height: 22px;
  font-size: 16px;
}

.result-message a {
  color: rgb(89, 111, 214);
  font-weight: 600;
  text-decoration: none;
}
.hide,
.hidden {
  display: none;
}
.forceshow {
    display: block !important;
}
#card-error {
    color: rgb(204, 15, 15);
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 12px;
}

#card-element {
  border-radius: 4px 4px 0 0 ;
  padding: 12px 0;
  margin: 25px 0 10px 0;
  border: 1px solid #2e2f33;
  height: 44px;
  width: 100%;
  background: white;
}

/* Buttons and links */
#step-payment button {
  background: #0f346c;
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 0 0 4px 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}
#step-payment button:hover {
  filter: contrast(115%);
}
#step-payment button:disabled {
  opacity: 0.5;
  cursor: default;
}
.stripe_button {
    margin-top: 30px !important;
    width: auto;
}

/* fontawesome loading page */
#loading-box {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.75);

    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: all 0.3s ease 0s;
}
#loading-box > div {
    position: absolute;
    top:50%;
    left:50%;

    display: flex;
    flex-direction: column;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform:    translate(-50%, -50%);
    -ms-transform:     translate(-50%, -50%);
    -o-transform:      translate(-50%, -50%);
    transform:         translate(-50%, -50%);

    font-size:24px;
    font-weight: bold;
    line-height:32px;
    color:#FFF;
    text-shadow: 1px 1px 1px #222;
    text-align: center;
}
#loading-box > div:before {
    content: "Processing, please don't push the back button or reload the page.";
    display: block;
    margin-bottom: 30px;
}

#loading-box > div:after {
    content: "\f2f1";
    font-family:"Font Awesome 5 Pro";
    font-size: 40px;
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite;
}
body.order-submitted {
    overflow: hidden;
}
.order-submitted #loading-box {
    opacity: 1;
    visibility: visible;
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  form {
    width: 80vw;
  }
}
