/* styles.css */
#searchLoader {
  display: none;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-group {
  margin-bottom: 15px;
}

.signature-pad {
  border: 1px solid #ccc;
  width: 100%;
  height: 150px;
    background-color: transparent;
}

#checkout-button {
  background-color: grey;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: not-allowed;
  opacity: 0.6;
}

#checkout-button.active {
  background-color: green;
  cursor: pointer;
  opacity: 1;
}

.example.example1 {
  background-color: #fff;
}

.example.example1 * {
  font-family: Roboto, Open Sans, Segoe UI, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.example.example1 fieldset {
  margin: 0 15px 20px;
  padding: 0;
  border: 1px solid black;
  background-color: #fff;
  /*
  box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #829fff;
    */
  border-radius: 4px;
}

.example.example1 .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
 
}

.example.example1 .row2 {

  padding: 10px; 
  width: 100%;
}

.example.example1 .row + .row {
  border-top: 1px solid;
}

.example.example1 label {
  min-width: 95px;
  padding: 0px 0px 0px 9px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.example.example1 label[for="example1-amount"] {
  min-width: 95px;
}

.example.example1 input[id="example1-amount"] {
  min-width: 70px;
  /* font-weight: bold; */
}

.example.example1 input[id="final-amount"] {
  min-width: 70px;
  font-weight: bold;
}


.example.example1 input, .example.example1 button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-style: none;
}

.example.example1 input:-webkit-autofill {
  -webkit-text-fill-color: #fce883;
  transition: background-color 100000000s;
  -webkit-animation: 1ms void-animation-out;
}

.example.example1 .StripeElement--webkit-autofill {
  background: transparent !important;
}

.example.example1 .StripeElement {
  width: 100%;
  padding: 11px 15px 11px 0;
}

.example.example1 input {
    width: 100%;
    padding: 5px;
    color: #000;
    margin: 5px;
    background-color: #00000008;
    -webkit-animation: 1ms void-animation-out;
}

.example.example1 input::-webkit-input-placeholder {
  color: #87bbfd;
}

.example.example1 input::-moz-placeholder {
  color: #87bbfd;
}

.example.example1 input:-ms-input-placeholder {
  color: #87bbfd;
}

.example.example1 button {
  display: block;
  width: calc(100% - 30px);
  height: 40px;
  margin: 25px 15px 0;
  background-color: #0077c0;
  box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #0077c0;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

 #searchButton {
            background-color: gray;
            color: white;
            padding: 10px;
            border: none;
            cursor: pointer;
        }
		
		
.example.example1 button:active {
  background-color: #d782d9;
  box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #e298d8;
}

.example.example1 .error svg .base {
  fill: #fff;
}

.example.example1 .error svg .glyph {
  fill: #6772e5;
}

.example.example1 .error .message {
  color: #fff;
}

.example.example1 .success .icon .border {
  stroke: #87bbfd;
}

.example.example1 .success .icon .checkmark {
  stroke: #fff;
}

.example.example1 .success .title {
  color: #fff;
}

.example.example1 .success .message {
  color: #9cdbff;
}

.example.example1 .success .reset path {
  fill: #fff;
}

.search {
    width: 100%;
    max-width: 500px;
}

