﻿input.error,
select.error {
  border: 1px solid red;
}
.step-reg .modal-body {
  height: 465px;
}
.text-green {
  color: #15994E;
}
.form-confirmation {
  padding-top: 40px;
}
.form-confirmation p:last-child {
  font-size: 1.8em;
}
.form-confirmation .fa {
  font-size: 5em;
}
#step-form-registration .step-progress:not(:first-of-type) {
  display: none;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;
  position: relative;
  margin-left: 0;
  padding-left: 0;
}
#progressbar li {
  line-height: 3;
  list-style-type: none;
  color: #ccc;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  width: 24.33%;
  float: left;
  position: relative;
  text-align: center;
  /*progressbar connectors*/
  /*marking active/completed steps green*/
  /*The number of the step and the connector before it = green*/
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 12px;
  line-height: 12px;
  display: block;
  font-size: 10px;
  color: #ccc;
  background: #ccc;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto 5px auto;
}
#progressbar li:after {
  content: '';
  width: 94%;
  height: 4px;
  background: #ccc;
  position: absolute;
  left: -47%;
  top: 5px;
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
#progressbar li.active {
  color: #27AE60;
}
#progressbar li.active:before,
#progressbar li.active:after {
  background: #27AE60;
  color: #27AE60;
}
.modal-footer-text {
  text-align: left;
}