/*Progress Bar*/
.progress-bar-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    max-width: 600px !important;
    margin: auto;
    position: relative;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.progress-step .step-number {
    background: #b1b1b1;
    padding: 6px 10px;
    border-radius: 50px;
    color: #ffffff;
}
.progress-step.completed .step-number {
    background: #278cad;
}
.progress-step.completed.active .step-number {
    border: 5px solid #278cad;
}
.progress-step .step-text {
    color: #b1b1b1;
}
.progress-step.completed .step-text {
    color: #000000;
}

.progress-step {
    text-align: center;
    position: relative;
    flex-grow: 1;
    padding: 30px 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.step-number {
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

.step-text {
    margin-top: 8px;
    font-size: 14px;
    color: #fff;
}

.progress-line {
    position: absolute;
    top: 35%;
    left: 11%;
    width: 79%;
    height: 4px;
    background-color: #a9a9a9;
    border-radius: 2px;
    z-index: 1;
}

.progress-bar::before {
    content: "";
    position: absolute;
    top: 35%;
    left: 11%;
    width: 79%;
    height: 4px;
    background-color: #b1b1b1;
    border-radius: 2px;
    transition: width 0.3s ease;
}
.progress-line-fill {
    background-color: #278cad;
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}
.progress-bar-container.active .progress-line-fill {
    width: 100%;
}

/*Progress bar style ends*/

#oe-calculation-summary p{
    color: #ffffff;
}
input.valid, select.valid {
    border: 2px solid green;
}
input.error, select.error {
    border: 2px solid red;
}
.request-form-container {
    max-width: 600px !important;
    margin: auto;
margin-bottom:80px;
}
.request-form-container label,
.request-form-container span,
.request-form-container small,
.request-form-container .it-code {
    color: #000000;
    font-size: 16px;
}
.request-form-container .it-code {
    font-size: 16px;
}
h3.request-form-title{
    text-align: center;
    margin: 20px 0px;
    display: block;
    font-size: 28px;
    color: #102851;
	font-family: inherit;
font-weight: bold;

}
form#oe-request-form label{
    margin-bottom: 8px;
    display: block;
}
.form-fiels{
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
form#oe-request-form {
    background: #ffffff;
    border-radius: 4px;
    max-width: 100%;
	padding:30px;
  
}
form#oe-request-form input[type=text],
form#oe-request-form input[type=email],
form#oe-request-form input[type=password] {
    background: #eeeeee;
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border-width: 1px;
    border-style: solid;
    border-color: #D1D5DB;
    transition: all .2s linear;
    outline: none;
    box-sizing: border-box;
}
form#oe-request-form select {
    height: 50px;
    background: #eeeeee;
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border-width: 1px;
    border-style: solid;
    border-color: #D1D5DB;
    transition: all .2s linear;
    outline: none;
    box-sizing: border-box;
}
textarea#oe-addtional-info {
    width: 100%;
    padding: 10px;
    height: 100px;
}
form#oe-request-form  input[type="submit"] {
    margin:auto;
    display: block;
    background: #004F90;
    color: #ffffff;
    width: 100%;
    box-shadow: none !important;
    outline: 0;
    padding-top: 15px;
    padding-right: 30px;
    padding-bottom: 15px;
    padding-left: 30px;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1em;
    border-radius: 4px;
    text-shadow: none;
    -webkit-appearance: button;
    cursor: pointer;
}
form#oe-request-form  button {
    padding-left: 0px;
    padding-right: 0px;
    background: #044F90;
    color: #ffffff;
    box-shadow: none !important;
    outline: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3em;
    border-radius: 4px;
    text-shadow: none;
    -webkit-appearance: button;
    cursor: pointer;
    border: none;
}
#coverage-toggle {
  color: #0073aa;
  text-decoration: none;
}
#coverage-toggle:hover {
  text-decoration: underline;
}
#coverage-list {
  font-size: .9em;
  line-height: 1.4;
}
/* limit the suggestions box to ~5 items high, then scroll */
#suggestions {
  max-height: 200px;       /* adjust to roughly 5 items tall */
  overflow-y: auto;        /* vertical scroll when content overflows */
}

/* style each suggestion for clarity */
#suggestions .suggestion {
  padding: 0.5em;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  background: #ffffff;
}
#suggestions .suggestion:last-child {
  border-bottom: none;
}
#suggestions .suggestion:hover {
  background: #f0f0f0;
}
.oe-step { display: none; }
.oe-step.active { display: block; }
/* keep the wizard controls always at bottom */
#oe-step-controls {
  margin: 1em 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#service-add-submit-btns{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#service-add-submit-btns button{
  width:45%;
}
#oe-step-controls #oe-next-step {
  width: 110px;
  margin-left: auto;
}
#oe-step-controls #oe-prev-step {
  width: 110px;
  margin-right: auto;
}
.oe-radio-group {
  gap: 1rem;
}
.oe-radio-group label {
  cursor: pointer;
  margin-bottom:20px !important;
}
.oe-radio-group input[type="radio"] {
  margin-right: .5em;
}
fieldset {
    border: 1px solid #D1D5DB !important;
    margin: 0 0!important;
    padding: 15px 30px !important;
    border-radius: 4px !important;
}
fieldset legend {
    margin-bottom: 1.5em !important;
    padding: 0 .5em !important;
    color: #111827 !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 20px !important;
}
.request-form-container {
  max-width: 700px !important;
}
form#oe-request-form p {
    margin: 0px !important;
    padding-bottom: 10px;
}
button[disabled] {
  opacity: .5;
}
summary::marker{
    color: #000000;
  }
@media all and (max-width: 576px){
  #service-add-submit-btns button {
    width: 100%;
    margin-bottom: 10px;
}
.progress-bar-container {
    width: 100%;
}
#service-add-submit-btns{
    display: block;
}
}