/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.ortto-form-wrapper {
   padding: 20px;
   border: 2px solid #e9e9e9;
   border-radius: 10px;
}

label.ortto-field-label {
    color: #000!important;
}

.ortto-form-steps-btn {
   display: flex;
   justify-content: space-between;
   flex-wrap: nowrap;
   flex-direction: row;
   margin: 0px 0px 10px 0px;
}

.ortto-form-step.unactive-step, .ortto-form-back-btn{
   display: none;
}
.ortto-form-btn{
	background-color: #EC6607!important; border: none!important; padding: 10px 20px!important;
}

.ortto-form-submit-btn{
	background-color: #EC6607!important; color: #000 !important; border: none!important; padding: 10px 20px!important;
}

.ortto-steps {
   display: flex;
   justify-content: space-between;
   align-items: center;
}


/* .ortto-step:not(:last-child)::after {
   content: "";
   height: 2px;
   width: 50px;
   background-color: #ccc;
   position: absolute;
   top: 50%;
   left: 38px;
} */

/* .ortto-step:first-child::before {
   content: "";
   height: 2px;
   width: 20px;
   background-color: #ccc;
   position: absolute;
   top: 50%;
   left: -20px;
} */

.ortto-field-row1 {
    padding: 10px;
    display: block;
    width: 50%;
}
.submission-successfull {
   padding: 5px;
   background: #d3eed3;
}

form {
   display: flex;
   flex-direction: column;
   max-width: 600px;
   margin: 0 auto;
}

/* Style for the labels */
label.ortto-field-label {
   display: block;
   margin-bottom: 10px;
}

/* Style for the input fields */
.ortto-input-field {
   padding: 10px;
   border-radius: 5px;
   border: 1px solid #ccc;
   margin-bottom: 20px;
   width: 100%;
}

.error-message-wrapper {
   background: #fcdbdb;
   padding: 5px;
}

.form-group.horizontal-element {
  display: flex;
  flex-wrap: wrap;
}

.ortto-field-row {
  flex: 1;
  margin-right: 10px;
}

.prog-container {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.progressbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding: 0;
}

.progressbar li {
  width: auto;
  position: relative;
  text-align: center;
  list-style-type: none!important;
}


.progressbar {
  counter-reset: step;
}

.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  border: 2px solid #bebebe;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  line-height: 27px;
  background: white;
  color: #bebebe;
  text-align: center;
  font-weight: bold;
}

.progressbar li:after {
    content: '';
    position: absolute;
    width: calc(400% + 30px);
    height: 3px;
    background: #bebebe;
    top: 15px;
    left: calc(-400%);
    z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active:before {
  border-color: #EC6607!important;
  background: #EC6607!important;
  color: white!important;
}


.progressbar li.active ~ li:before {
  border-color: #bebebe;
  background: white;
  color: #bebebe;
}

.progressbar li.active:after {
  background: #EC6607!important;
}

.progressbar li.active + li:after {
  background: #bebebe;
}

/* Hide the incrementor on number input fields */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.grecaptcha-badge { visibility: hidden; }
