.swa-form{
  background: #ebebeb;
}
.form-section {
  display: none;
  border: 0 none;
  border-radius: 0;
  padding: 20px 30px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
.form-section.current {
  display: inherit;
}
.btn-info, .btn-default {
  margin-top: 10px;
}

@font-face {
  font-family: 'Futura';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/futura-book.woff) format("woff"); }

@font-face {
  font-family: 'Futura';
  font-style: italic;
  font-weight: normal;
  src: url(../fonts/futura-book-italic.woff) format("woff"); }

@font-face {
  font-family: 'Futura';
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/futura-medium.woff) format("woff"); }

@font-face {
  font-family: 'Futura';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/futura-light.woff) format("woff"); }

@font-face {
  font-family: 'Futura';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/futura-heavy.woff) format("woff"); }

@font-face {
  font-family: 'Futura';
  font-style: normal;
  font-weight: bold;
  src: url(../fonts/futura-heavy.woff) format("woff"); }

@font-face {
  font-family: 'icons';
  font-weight: normal;
  font-style: normal;
  src: url(../fonts/icons.woff) format("woff"); }

/*basic reset*/
* {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px){
  .container {
    max-width: 768px;
  }
  label{
    text-align: right;
  }
  .control-label{
    padding-left: 0;
    padding-right: 0;
    padding-top: 7px;
  }
  .label-max{
    max-width: 180px;
    margin-top: -12px;
    line-height: 1.3;
    padding-right: 18px;
  }
  .label-max a.qmark{
    position: absolute;
    right: -5px;
    top: 5px;
  }
}
@media (min-width: 1200px){
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px){
  .container {
    max-width: 800px;
  }
}

@media (min-width: 576px){


}


html {
  height: 100%;
}

body {
  font-family: "Futura", "Helvetica", "Arial", sans-serif;
  background: transparent;
}
.main{
  margin-top: 50px;
}
a {
  color: #4f92aa;
}
.pull-left{
  float: left!important;
}
.pull-right{
  float: right!important;
}
/*form styles*/
{
  text-align: center;
  position: relative;
  margin-top: 30px;
}

fieldset {
  background: #ebebeb;
  border: 0 none;
  border-radius: 0;
  padding: 20px 30px;
  box-sizing: border-box;
  width: 100%;
  /*stacking fieldsets above each other*/
  position: relative;
}

/*Hide all except first fieldset*/
fieldset:not(:first-of-type) {
  display: none;
}

/*inputs*/
input,  textarea {
  padding: 15px;
  border-radius: 0;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Futura", "Helvetica", "Arial", sans-serif;
  color: #2C3E50;
  font-size: 13px;
}

/*headings*/
.fs-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #2C3E50;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 40px;
}



/*progressbar*/
#progressbar {
  margin: 0 auto 30px;
  width: 300px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}

#progressbar li {
  list-style-type: none;
  color: #4f92aa;
  text-transform: uppercase;
  font-size: 9px;
  width: 150px;
  float: left;
  position: relative;
  letter-spacing: 1px;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 24px;
  height: 24px;
  line-height: 26px;
  display: block;
  font-size: 12px;
  color: #333;
  background: #ebebeb;
  border-radius: 25px;
  margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #ebebeb;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
  background: #4f92aa;
  color: white;
}




input[type=number], input[type=search], input[type=time], input[type=text], input[type=email], input[type=password], input[type=date], input[type=url], input[type=tel], select, textarea {
  display: inline-block;
  width: 100%;
  padding: 7px;
  min-height: 38px;
  margin-bottom: 0;
  font-family: Futura,Helvetica,Arial,sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #272727;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  resize: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  outline: 0;
  transition: outline .2s ease-out;
  touch-action: manipulation;
}
select{
  cursor: pointer;

}
.select:after {
  font-family: icons;
  color: #000;
  top: 10px;
  right: 20px;
  position: absolute;
  font-size: .8em;
  content: '\e946';
  pointer-events: none;
  z-index: 10;
}
.text{
  text-align: left;
}
label{
  padding-top: 4px;
}
.parsley-errors-list{
  color:red;
  line-height: 2em!important;
  margin-bottom: 0px!important;
}
input.parsley-error, select.parsley-error, textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.form-control:focus {
  color: inherit;
  background-color: #fff;
  border-color: #4f92aa;
  outline: 0;
  box-shadow: none;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #4f92aa;
  background-color: #4f92aa;
}
.custom-control-label::before {
  position: absolute;
  top: 0.50rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.50rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

.btn-info {
  width: 120px;
  margin: 10px 30px 30px;
  background: #4f92aa;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 0;
}
.btn-default {
  width: 120px;
  margin: 10px 30px 30px;
  background: #ccc;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 15px;

  cursor: pointer;
  border: none;
  border-radius: 0;
}
.lang{
  width: 200px;
  position: relative;
  bottom: -28px;
  left: -5px;
}
.lang .select:after {
  right: 10px;
}
@media (max-width: 575px){
  .lang {
    width: 100%!important;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    margin-bottom: 55px;
  }
  .btn-default,.btn-info{
    margin: 10px;
  }
}
.g-recaptcha{
  margin-top: 40px;
}
.g-recaptcha.error {
  border-left: solid 4px #B94A48;
}
select::-ms-expand {
  display: none;
}
.steps{
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}
.select--white{
  position: relative;

}

select + ul.parsley-errors-list{
  line-height: 2em;
}
select + ul.parsley-errors-list:after{
  top: 10px;
}
select.parsley-error{
  margin-top: 0!important;
}
select.parsley-error:after{
  font-family: icons;
  color: #000;
  top: 0!important;
  right: 30px;
  position: absolute;
  font-size: .8em;
  content: '\e946';
  pointer-events: none;
  z-index: 10;
}
select
{
  color: #666;
}
option
{
  color: #000;
}
option:first-child
{
  color: #666;
}
.mandatory{
  font-size: 14px;
  font-style:italic;
  padding-top: 6px;
}
.ftext-center{
  margin-bottom: 40px;
}
.badge--circle {
  border-radius: 50%;
}
.badge--red {
  background-color: #4f92aa;
  color: #fff;
}
.badge--large {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.badge--large, .badge--medium {
  font-size: 15px;
  font-weight: 500;
}
.badge {
  width: 20px;
  height: 20px;
  text-align: center;
  vertical-align: center;
  line-height: 1.4em;

  font-size: .7em;
  z-index: 1;
}
a.qmark{
  position: relative;
  top: -1px;
  left: 5px;
}
a.qmark:hover{
  text-decoration: none;
}
#legal ol{
  margin-left: 3rem;
}
#legal h2{
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
}
#legal h2,#legal h1{
  margin-bottom:30px;
  margin-top: 30px;
}
#mub_info {
  border: 1px solid #000 !important;
  padding: 1em;
  font-size: 14px;
}

.smaller-text {
  font-size: 13px;
}

input#storeCode {
  margin-top: 6px;
}

p.greeting {
  text-align: center;
  margin-top: 30px;
}

ol li {
  margin: 20px 20px;
}

div.custom-checkbox label {
  text-align: left !important;
}