/* Stripe Button Styling */
.stripe-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF UI Display Medium', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: url(../images/submiticon1.png) no-repeat 20px center #0b3a34;
  border-radius: 6px;
  padding: 14px 50px 14px 70px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out, opacity 0.3s;
  position: relative;
}

.stripe-button:hover {
  background: url(../images/submiticon1.png) no-repeat 20px center #117970;
}

.stripe-button:disabled {
  background: #117970;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes spin {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

.hidden {
  display: none;
}

/* Layout */
.sr-root {
  display: flex;
  flex-direction: row;
  width: 100%;

max-width: 1048px;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
}
.sr-main {
  width: 100%;
}

.sr-field-error {
  color: var(--font-color);
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}

/* Inputs */
/**
.sr-input,
input[type="text"] {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 5px 12px;
  height: 44px;
  width: 100%;
  transition: box-shadow 0.2s ease;
  background: white;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.sr-input:focus,
input[type="text"]:focus,
.sr-main button:focus,
.focused {
  box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
    0 0 0 4px rgba(50, 151, 211, 0.3);
  outline: none;
  z-index: 9;
}

.sr-input::placeholder,
input[type="text"]::placeholder {
  color: var(--gray-light);
}
**/
.sr-result {
  height: 44px;
  -webkit-transition: height 1s ease;
  -moz-transition: height 1s ease;
  -o-transition: height 1s ease;
  transition: height 1s ease;
  color: var(--font-color);
  overflow: auto;
}
.sr-result code {
  overflow: scroll;
	
}
.sr-result.expand {
  height: 350px;
}

.sr-combo-inputs-row {
width: 100%;
    height: 46px;
    box-shadow: none;
    border: 1px solid #d1d1d1;
}

/* .sr-main buttons and links */
.sr-main button {
 font-family: 'SF UI Display Medium';
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 20px;
    color: #fff;
    background: url(../images/submiticon1.png)no-repeat 25% center #0b3a34;
    border-radius: 6px;
    padding: 14px 26px 13px 70px;
    margin: 30px 0;
    border: none;
    text-align: center;
    transition: all 500ms ease-in-out;
}
.sr-main button:hover {
  background:url(../images/submiticon1.png)no-repeat 25% center #117970;
}
.sr-main button:disabled {
    background:#117970;
	    padding: 13px 40px 13px 40px;
}

/* Stripe Element placeholder */
.sr-card-element {
  padding-top: 12px;
}

/* Responsiveness */
@media (max-width: 720px) {
  .sr-root {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 20px;
    min-width: 320px;
  }

  .sr-header__logo {
    background-position: center;
  }

  .sr-payment-summary {
    text-align: center;
  }

  .sr-content {
    display: none;
  }

  .sr-main {
    width: 100%;
    border-radius: 6px;
  }
}

/* todo: spinner/processing state, errors, animations */

.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 25px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: var(--accent-color);
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: var(--accent-color);
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Animated form */

.sr-root {
  animation: 0.4s form-in;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.hidden {
  display: none;
}

@keyframes field-in {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

@keyframes form-in {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stripe Button Styling */
.stripe-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF UI Display Medium', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: url(../images/submiticon1.png) no-repeat 20px center #0b3a34;
  border-radius: 6px;
  padding: 14px 50px 14px 70px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out, opacity 0.3s;
  position: relative;
}

.stripe-button:hover {
  background: url(../images/submiticon1.png) no-repeat 20px center #117970;
}

.stripe-button:disabled {
  background: #117970;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner */
.spinner {
  width: 25px;
  height: 25px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
  
  transform: translateX(-50%);
}

@keyframes spin {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

.hidden {
  display: none;
}

.stripebtn {
  background-image: none !important;
  padding: 15px 30px !important;
  font-family: 'Roboto', sans-serif !important; font-size: 20px !important; font-weight: 600; 
}