/*sqpayment form*/
.sqform iframe {
  margin: 0;
  padding: 0;
  border: 0;
}

.sqform button {
  border: 0;
}

.sqform hr {
  height: 1px;
  border: 0;
  background-color: #CCC;
}

.sqform fieldset {
  margin: 0;
  padding: 0px 8px;
  border: 0;
}


.sqform #sqform-container {
  position: relative;
  width: 380px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.sqform .label {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5;
  text-transform: uppercase;
}

.sqform .third {
  float: left;
  width: calc((100% - 32px) / 3);
  padding: 0;
  margin: 0 16px 16px 0;
}

.sqform .third:last-of-type {
  margin-right: 0;
}

/* Define how SqPaymentForm iframes should look */
.sq-input {
  box-sizing: border-box;
  border: 1px solid #6744db !Important;
  border-radius: 4px;
 
  display: inline-block;
 
}

/* Define how SqPaymentForm iframes should look when they have focus */
.sq-input--focus {
  border: 1px solid #4A90E2;
  background-color: rgba(137, 112, 222, 0.35);
  color:#fff;
}


/* Define how SqPaymentForm iframes should look when they contain invalid values */
.sq-input--error {
  border: 1px solid #E02F2F;
  background-color: rgba(244,47,47,0.02);
}

#sq-card-number {
  margin-bottom: 16px;
}

/* Customize the "Pay with Credit Card" button */
.sqform .button-credit-card {
  width: 60%;
  margin: 10px auto;
  background: #4A90E2;
  cursor: pointer;
  display: block;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  -webkit-transition: background .2s ease-in-out;
     -moz-transition: background .2s ease-in-out;
      -ms-transition: background .2s ease-in-out;
          transition: background .2s ease-in-out;
}
.sqform .button-credit-card:hover {
  background-color: #4281CB;
}
.sqform #error {
  width: 100%;
  margin-top: 16px;
  font-size: 14px;
  color: red;
  font-weight: 500;
  text-align: center;
  opacity: 0.8;
}
/*sq-payment form end*/