/* :root {
  --font-color-light: #000;
  --border-color-light: #CCCDCF;
} */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

div#pcont div.outer.section.style1 {
  padding-bottom: 0px;
}

#pcont {
  max-width: 800px;
  margin-left: 20px;
}

input.vfield {
  color: rgb(0, 0, 0);
  border: 1px solid rgb(204, 205, 207);
  border-radius: 0px;
  padding: 10px 20px;
  font-family: Helvetica;
  font-size: 16px!important;
  height: 45px!important;
  width: 50%!important;
  margin-top: 5px!important;
  text-align:left!important;
}

select.classic {
  /*background-image:
    linear-gradient(45deg, transparent 50%, blue 50%),
    linear-gradient(135deg, blue 50%, transparent 50%),
    linear-gradient(to right, skyblue, skyblue);
    */
  background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%),
    linear-gradient(to right, #1E1E2A, #1E1E2A);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15.5px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.8em;
  background-repeat: no-repeat;
  height: 45px;
  padding: 10px 20px;
  background-color: #FFF;
}

select.classic:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, gray, gray);
  background-position:
    calc(100% - 15.5px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.8em;
  background-repeat: no-repeat;
  /*border-color: grey;*/
  border: 1px solid rgb(204, 205, 207);
  outline: 0;
  background-color: #FFF;
}



#fpay-form {
  visibility: visible;
}


span {
  color: red;
}

#example-form.show {
  visibility: visible;
}

.container {
  max-width: 800px;
  margin: 50px auto 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.row {
  display: flex;
  margin-top: 10px;
}

.field-holder {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.field-holder~.field-holder {
  margin-left: 20px;
}

label {
  color: #1E1E2A;
  font-weight: bold;
}

.field {
  margin-top: 5px;
}

.field iframe {
  height: 45px;
  width: 100%;
  border: none;
}

/* this select is not controlled by the iframe so it must be updated to match you styling manually */
select {

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;

  height: 45px;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 16px;
  margin-top: 5px;
  color: var(--font-color-light);
  border: 1px solid var(--border-color-light);
}


select:hover {
  cursor: pointer;
}

#submit {
  border: none;
  color: white;
  background-color: #D8463F;
  border-radius: 0px;
  padding: 13px 30px;
  font-size: 16px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  /*float: right;*/
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;

}

#submit:disabled {
  background-color: gray;
}

#submit:hover {
  cursor: pointer;
}

button {
  color: currentColor;
  padding: var(--size-bezel) calc(var(--size-bezel) * 2);
  background: var(--color-accent);
  border: none;
  border-radius: var(--size-radius);
  font-weight: 600;
}

button+button {
  margin-left: calc(var(--size-bezel) * 2);
}

select {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border: 3px solid currentColor;
  padding: calc(var(--size-bezel) * 1.5) var(--size-bezel);
  color: currentColor;
  background: transparent;
  border-radius: var(--size-radius)
}



#plusewait {
  max-height: 70px;
}

#wait {
  width: 100%;
  text-align: center;
}

@ {}

@media only screen and (max-width: 768px) {
  select {
    width: 100% !important;
  }
  input.vfield {
    width: 100%!important;
  }
  
}