#registrationForm {
  position: relative;
}
#registrationForm fieldset {
  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#registrationForm fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
/*buttons*/
#registrationForm .action-button {
  width: 100px;
  font-weight: 500;
  color: white;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  padding: px;
  margin: 10px 5px;
  font-size: 16px;
}
#registrationForm .action-button:hover,
#registrationForm .action-button:focus {
  background: #234354 !important;
}
/*headings*/
.fs-title {
  font-size: 20px;
  text-transform: capitalize;
  color: #640000;
  margin-bottom: 25px;
  text-align: center;
  font-weight: normal;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: #FFF;
  text-transform: uppercase;
  font-size: 9px;
  width: 20%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #640000;
  background: #d4c2c2;
  border-radius: 3px;
  margin: 0 auto 5px auto;
  text-align: center;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #d4c2c2;
  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: #640000;
  color: white;
}
.advanceRegistrationForm label {
  display: inline-block;
  color: #234354;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 3px;
  width: 30%;
  line-height: 40px;
  margin: 0;
}
.cInputField {
  line-height: 1.5;
  font-size: 12px;
  margin-bottom: 20px;
}
.cInputField input,
.cInputField textarea,
.cInputField select {
  display: inline-block;
  width: 69%;
  box-sizing: border-box;
  padding: 10px 15px;
  color: #8c8c8c;
  border-radius: 3px;
  border: 1px  solid #e7edef;
  font-size: 16px;
  line-height: 20px;
  /* -webkit-appearance: none; */
  box-shadow: none;
  height: 40px;
  margin: 0;
  vertical-align: top;
}
.cInputField textarea {
  width: 100% !important;
}
p.info {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}
.cInputField input.checkbox {
  height: auto !important;
}
.advanceRegistrationForm .row-fluid [class*="span"] {
  margin: 0 7px 20px 0 !important;
}
.cInputField input[type="checkbox"] {
  width: auto;
}
.advanceRegistrationForm .btn-primary,
.advanceRegistrationForm .btn-primary:hover,
.advanceRegistrationForm .btn-primary:active,
.advanceRegistrationForm .btn-primary.active,
.advanceRegistrationForm .advanceRegistrationForm .btn-primary.disabled,
.advanceRegistrationForm .btn-primary[disabled],
.btn-success,
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background: #640000 !important;
  border-radius: 5px;
}
.advanceRegistrationForm label em {
  vertical-align: top;
  color: #d4c2c2;
  margin-left: 2px;
}
.advanceRegistrationForm .mgrL0 {
  margin-left: 0;
}
.advanceRegistrationForm p.validation-failed {
  color: #f00 !important;
  text-align: right;
}
.advanceRegistrationForm input.validation-failed {
  border: 1px solid #f00  !important;
}
.btn-left {
  float: left;
}
.btn-right {
  float: right;
}
