.sq-color-grey {
  color: #6a6a6a;
}

.sq-btn-main {
  border-radius: 6px;
  background: #4BABFF;
  color: #fff;
}
.sq-btn-main:hover {
  color: #fff;
  background: #329fff;
}

.sq-btn-secondary {
  border-radius: 6px;
  background: #18C69C;
  color: #fff;
}
.sq-btn-secondary:hover {
  color: #fff;
  background: #15af8a;
}

.sq-btn-v3 {
  border-radius: 6px;
  background: #bdddff;
  color: #1E7BD8;
}
.sq-btn-v3:hover {
  color: #1E7BD8;
  background: #a4d0ff;
}

.sq-chk-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sq-chk-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.sq-chk-container input:checked ~ .sq-checkmark {
  background-color: #fff;
}
.sq-chk-container input:checked ~ .sq-checkmark:after {
  display: block;
}
.sq-chk-container .sq-checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #c5d3d7;
}
.sq-chk-container .sq-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #18C69C;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sq-chk-container:hover input ~ .sq-checkmark {
  background-color: white;
}

.sq-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.sq-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.sq-switch input:checked + .slider {
  background-color: #4BABFF;
}
.sq-switch input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  transform: translateX(18px);
}
.sq-switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #4BABFF;
          box-shadow: 0 0 1px #4BABFF;
}
.sq-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sq-switch .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sq-switch .slider.round {
  border-radius: 18px;
}
.sq-switch .slider.round:before {
  border-radius: 50%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes slide {
  100% {
    left: 0;
  }
}

@keyframes slide {
  100% {
    left: 0;
  }
}
.sq-text-green {
  color: #00c29a;
}

.sq-pay-page {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #f9fbff;
}
.sq-pay-page .sq-pay-credit-card {
  font-size: 16px;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 20px;
}
.sq-pay-page .sq-pay-container {
  left: 50vw;
  top: 60px;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: grey;
  font-size: 18px;
  width: 650px;
  max-width: 100%;
  padding: 20px;
}
.sq-pay-page .sq-pay-container input::-webkit-input-placeholder {
  color: #c5d3d7;
}
.sq-pay-page .sq-pay-container input::-moz-placeholder {
  color: #c5d3d7;
}
.sq-pay-page .sq-pay-container input:-ms-input-placeholder {
  color: #c5d3d7;
}
.sq-pay-page .sq-pay-container input::-ms-input-placeholder {
  color: #c5d3d7;
}
.sq-pay-page .sq-pay-container input::placeholder {
  color: #c5d3d7;
}
.sq-pay-page .sq-pay-container form {
  position: relative;
}
.sq-pay-page .sq-pay-container h2 {
  font-size: 28px;
}
.sq-pay-page .sq-pay-container h3 {
  font-size: 24px;
}
.sq-pay-page .sq-pay-container h2, .sq-pay-page .sq-pay-container h3 {
  margin-bottom: 20px;
  margin-top: 20px;
  line-height: 1.1;
  font-weight: bold;
  text-align: left;
}
.sq-pay-page .sq-pay-container .sq-pay-header {
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
.sq-pay-page .sq-pay-container .sq-proceed {
  margin-top: 30px;
  width: 100%;
}
.sq-pay-page .sq-pay-container .sq-pay-step {
  color: #364565;
  width: 100%;
  position: relative;
  margin-top: 70px;
  left: calc(100% + 15px);
  display: none;
  -webkit-animation: slide 0.5s forwards;
          animation: slide 0.5s forwards;
}
.sq-pay-page .sq-pay-container .sq-pay-step h3 {
  color: #364565;
  font-size: 18px;
  font-weight: normal;
}
.sq-pay-page .sq-pay-container .sq-pay-step.sq-pay-step-1 {
  left: 0;
  display: block;
}
.sq-pay-page .sq-pay-container .sq-pay-step .sq-step-label {
  font-size: 24px;
  font-weight: bold;
}
.sq-pay-page .sq-pay-container .sq-pay-step label {
  color: #688E96;
  font-size: 12px;
  margin-top: 29px;
  display: block;
}
.sq-pay-page .sq-pay-container .sq-pay-step .sq-pay-next {
  display: block;
  position: relative;
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
  color: #fff;
  padding: 5px 40px;
}
.sq-pay-page .sq-pay-container .sq-pay-step .sq-pay-next:hover {
  cursor: pointer;
}
.sq-pay-page .sq-pay-container .sq-pay-step .sq-pass-reset {
  float: right;
}
.sq-pay-page .sq-pay-container .sq-pay-explanation {
  font-size: 16px;
  text-align: left;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.sq-pay-page .sq-pay-container .sq-pay-explanation .sq-trial-span {
  color: #00c29a;
  font-weight: bold;
  text-transform: uppercase;
}
.sq-pay-page .sq-pay-container .sq-pay-explanation-under {
  font-size: 12px;
  text-align: left;
  margin-top: 10px;
  color: #688E96;
}
.sq-pay-page .sq-pay-container .form-field {
  background-color: white;
  height: 40px;
  font-size: 14px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #c5d3d7;
  -webkit-box-shadow: 0 1px 3px 0 #e6ebf1;
          box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  -webkit-transition: -webkit-box-shadow 150ms ease;
  transition: -webkit-box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease, -webkit-box-shadow 150ms ease;
  margin-top: 0;
}
.sq-pay-page .sq-pay-container .sq-pay-error-field {
  border: 1px solid red;
  color: red;
}
.sq-pay-page .sq-pay-container .sq-pay-error-field.sq-accept-container {
  border-width: 0;
}
.sq-pay-page .sq-pay-container .sq-pay-error, .sq-pay-page .sq-pay-container #card-errors {
  font-size: 12px;
  color: red;
}
.sq-pay-page .sq-pay-container .sq-pay-error:not(:empty) {
  display: block;
}
.sq-pay-page .sq-pay-container .StripeElement--focus {
  -webkit-box-shadow: 0 1px 3px 0 #cfd7df;
          box-shadow: 0 1px 3px 0 #cfd7df;
}
.sq-pay-page .sq-pay-container .StripeElement--invalid {
  border-color: #fa755a;
}
.sq-pay-page .sq-pay-container .StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
.sq-pay-page .sq-pay-container .sq-accept-container {
  text-align: left;
  margin-top: 30px;
}
.sq-pay-page .sq-pay-container .sq-accept-container input {
  margin-top: 6px;
}
.sq-pay-page .sq-pay-container .sq-public-show {
  display: none;
}
.sq-pay-page .sq-pay-confirmation-container {
  position: absolute;
  top: 150px;
  left: 50vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid grey;
  color: grey;
  padding: 20px;
}
.sq-pay-page .sq-pay-confirmation-container p {
  font-size: 18px;
}
.sq-pay-page .sq-pay-confirmation-container h3 {
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
}
.sq-pay-page .sq-pay-confirmation-container .sq-pay-confirmation-disclaimer {
  font-size: 14px;
}
.sq-pay-page.sq-pay-page-evaluation .sq-evaluation-disclaimer {
  font-weight: normal;
  text-align: center;
  color: red;
  background-color: #f5f5f5;
  padding: 15px 90px;
}
.sq-pay-page.sq-pay-page-evaluation .sq-pay-step {
  margin-top: 70px;
}
.sq-pay-page.sq-pay-page-spreading button {
  margin-bottom: 25px;
}
.sq-pay-page .sq-pay-moneyback {
  font-size: 12px;
  color: #688E96;
  margin-top: 10px;
}
.sq-pay-page .sq-pay-moneyback h4 {
  color: #00c29a;
  font-weight: bold;
}
.sq-pay-page .sq-pay-moneyback span {
  white-space: nowrap;
}

.sq-request-demo {
  margin-top: 20px;
}

.loading-overlay {
  background-color: #7f7f7f;
  opacity: 0.7;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 150;
  text-align: center;
  display: none;
}
.loading-overlay .loading-spinner {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  height: 64px;
  text-align: center;
}

.sq-site-smartcapital .sq-public-show {
  display: block !important;
}
.sq-site-smartcapital .sq-public-hide {
  display: none !important;
}

@media screen and (max-width: 700px) {
  .sq-pay-page .sq-pay-container {
    top: 0;
  }
  .sq-pay-container .sq-pay-step {
    margin-top: 0;
  }
  .sq-pay-confirmation-container h3 {
    white-space: normal;
  }
}