.mktoForm{
  font-family: 'Roboto Flex', sans-serif !important;
  font-size: 16px !important;
  color: #212E35 !important;
  width: 100% !important;
  max-width: 1036px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 52px;
}

.mktoOffset,
.mktoGutter{
  display: none;
}
.mktoFieldDescriptor,
.mktoFieldWrap{
  margin: 0 !important;
  width: 100%;
}

.mktoFieldWrap input,
.mktoFieldWrap textarea{
  display: block;
  width: 100% !important;
  height: 59px !important;
  padding: 0 50px 0 32px !important;
  margin: 0;
  border: none;
  background: #E2E2E2;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: #212E35;
  outline: 2px solid transparent;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: none;
}
.mktoFieldWrap textarea{
  height: 150px !important;
  padding: 18px 50px 0 32px !important;
}
.mktoRequiredField:after {
  position: absolute;
  content: " ";
  top: 10px;
  right: 20px;
  width: 6px;
  height: 6px;
  background: #ed123d;
  border-radius: 50%;
  z-index: 10;
}
.mktoFieldWrap input:focus, .mktoFieldWrap textarea:focus{
  border: 2px solid #70CAD5
}
/* Fix for textarea */
.mktoFormRow:nth-of-type(even).row-has-textarea{
  max-height: 59px !important;
}
.row-has-textarea + .row-has-checkbox,
.row-has-textarea + .row-has-hidden + .row-has-checkbox{
  min-height: 140px !important;
}

.mktoFormRow .mktoFieldWrap input[type="checkbox"],
.mktoFormRow .mktoCheckboxList{
  display: none;
}
.mktoFormRow .mktoFieldWrap input[type="checkbox"] + label{
  padding-left: 30px !important;
  display: block;
  width: 100% !important;
  position: relative;
  cursor: pointer;
  padding: 0;
  font-weight: 300;
  font-size: 14px;
}
.mktoFormRow .mktoFieldWrap input[type="checkbox"] + label .mktoHtmlText{
  width: 100% !important;
  margin-top: 20px !important;
}
.mktoFormRow .mktoFieldWrap  input[type="checkbox"] + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 0;
  background: #e2e2e2;
  position: absolute;
  top: -1px;
  left: 0;
}
.mktoFormRow .mktoFieldWrap  input[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 2px;
  height: 2px;
  background: #ED123D;
  -webkit-box-shadow: 2px 0 0 #ED123D, 4px 0 0 #ED123D, 4px -2px 0 #ED123D, 4px -4px 0 #ED123D, 4px -6px 0 #ED123D, 4px -8px 0 #ED123D;
  box-shadow: 2px 0 0 #ED123D, 4px 0 0 #ED123D, 4px -2px 0 #ED123D, 4px -4px 0 #ED123D, 4px -6px 0 #ED123D, 4px -8px 0 #ED123D;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mktoForm .mktoError{
  top: 59px;
}

/* Phone flags */
.mktoFieldWrap .iti__flag-container{
  position: absolute;
  top: 30px;
  left: 32px;
  bottom: 0;
  right: 0;
  padding: 0;
  width: 100px;
}
.mktoFieldWrap .iti__selected-flag{
  padding: 0;
  width: 100px;
}
.mktoFieldWrap .iti__selected-flag .iti__flag{
  margin-left: 0;
}
.mktoFieldWrap .iti__country-list{
  left: -31px;
  top: 20px;
  width: 430px;
  padding: 0;
  border-radius: 0 0 4px 4px;
}
.iti--separate-dial-code .iti__selected-dial-code,
.iti__country .iti__country-name{
  margin: 0 6px 0 6px;
}

.mktoFieldWrap input[type="tel"] {
  padding-left: 110px !important;
}

/* Button */
.mktoButtonRow {
  align-self: end;
}
.mktoButtonRow .mktoButtonWrap{
  margin: 0 !important;
}
.mktoButtonRow button[type="submit"] {
  display: inline-block;
  background: #ed123d !important;
  height: 50px;
  line-height: 50px;
  font-size: 16px !important;
  text-transform: uppercase;
  padding: 0 55px !important;
  border: none !important;
  border-radius: 4px;
  color: #fff !important;
}

/* Preloader */
.fuel-cards-form__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  width: 100%;
}
.fuel-cards-form__loader-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #eee;
  border-top: 5px solid #ed123d;
  border-radius: 50%;
  animation: fuel-cards-form-spin 0.7s linear infinite;
}
@keyframes fuel-cards-form-spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

#fuelCardsFormSuccess{
  display: none;
}
/*Mobile*/
@media screen and (max-width: 1024px){
  .mktoForm{
    grid-template-columns: 1fr;
    gap: 30px 0px;
  }
  .mktoFormRow:nth-of-type(even).row-has-textarea{
    max-height: none !important;
  }
  .row-has-textarea + .row-has-checkbox,
  .row-has-textarea + .row-has-hidden + .row-has-checkbox{
    min-height: 0 !important;
  }
}
