.form-stripe {
    width: 100%;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 20px;
}


.form-stripe * {
  font-family: "Rubik", sans-serif;
  font-size: 14px !important;
  font-weight: 500;
  color: #741121;
  padding: 10px 0;
  text-align: center;
  margin: 0px !important;
  margin-bottom: 20px !important;
}

.form-stripe .fieldset {
  /*margin: 0 15px 30px;*/
  padding: 0;
  border-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-stripe .field {  
    width: 40%;
    background-color: #fff;
    border: 1px solid #999999;
    line-height: 23px;
    padding: 10px 5%;
    font-size: 14px !important;
    color: #666666;
    text-align: center;
    float: left;
}

.form-stripe .field.cvc {
    margin: 0px;
    width: 14% !important;
    margin-bottom: 20px;
}

.form-stripe .field.half-width {
  /*width: calc(40% - (5px / 2));*/
  width: 14% !important;
  margin: 0px;
}

.form-stripe .field.third-width {
  width: calc(33% - (5px / 3));
}

.form-stripe .field + .field {
  margin-top: 6px;
}

.form-stripe .field.focus,
.form-stripe .field:focus {
  color: #424770;
  background-color: #f0f0f0;
}

.form-stripe .field.invalid {
  background-color: #cccccc;
}

.form-stripe .field.invalid.focus {
  background-color: #cccccc;
}

.form-stripe .field.focus::-webkit-input-placeholder,
.form-stripe .field:focus::-webkit-input-placeholder {
  color: #cfd7df;
}

.form-stripe .field.focus::-moz-placeholder,
.form-stripe .field:focus::-moz-placeholder {
  color: #cfd7df;
}

.form-stripe .field.focus:-ms-input-placeholder,
.form-stripe .field:focus:-ms-input-placeholder {
  color: #cfd7df;
}

.form-stripe input, .form-stripe button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-style: none;
}

.form-stripe input {
  color: #000000;
}

.form-stripe input::-webkit-input-placeholder {
  color: #ffffff;
}

.form-stripe input::-moz-placeholder {
  color: #ffffff;
}

.form-stripe input:-ms-input-placeholder {
  color: #ffffff;
}

.form-stripe button {
  display: block;
  width: calc(100%);
  height: 45px;
  margin-top: 20px;
  background-color: #741121;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer; 
}

.form-stripe button:active {
  background-color: #f5be58;
}
.form-stripe button:hover {
  opacity: 0.8;
}

.form-stripe .error svg .base {
  fill: #741121;
}

.form-stripe .error svg .glyph {
  fill: #fff;
}

.form-stripe .error .message {
  color: #fff;
}

.form-stripe .success .icon .border {
  stroke: #741121;
}

.form-stripe .success .icon .checkmark {
  stroke: #fff;
}

.form-stripe .success .title {
  color: #fff;
}

.form-stripe .success .message {
  color: #9cabc8;
}

.form-stripe .success .reset path {
  fill: #fff;
}

.form-stripe .content_loading {
    width: 100%;
    max-width: 275px;
    margin: 0 auto;
    display: none;
    height: 75px;
}
.form-stripe .loading {
    width: 30px;
    height: 30px;
    background-image: url('../img/loading.gif');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 65%;
    display: inline-block;
    padding-left: 40px;
    float: left;   
}
.form-stripe .loading span {
    width: 200px;
    display: inline-block;
    font-weight: 500;
    margin-top: -5px;
}



@media only screen and (max-width: 662px) {

  .form-stripe .field {  
      width: 90% !important;
      padding: 10px 5% !important;
      margin-bottom: 5px !important;
  }

  .form-stripe .field.cvc {
      width: 90% !important;
      padding: 10px 5% !important;
      margin-bottom: 5px !important;
  }

  .form-stripe .field.half-width {
    width: 90% !important;
    padding: 10px 5% !important;
    margin-bottom: 5px !important;
  }


}