:root {
    --primary: #333;
    --secondary: #333;
    --errorColor: var(--maryland-red);
    --stepNumber: 3;
    --bgColor: #333;
    --inputBorderColor: #D8D6D6;
}


.title-section.md{
    margin: 0 0 20px 0;
}

.container-form {
    width: 100%;
    padding: 0;
}
.container-form header {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
}
.container-form .form-outer {
    width: 100%;
    overflow: hidden;
    height: auto;
    
}
.container-form .form-outer form {
    display: flex;
    width: calc(100% * var(--stepNumber));
    padding: 1px;
    padding-top:0;
    
}
.form-outer form .page {
    width: calc(100% / var(--stepNumber));
    transition: margin-left 0.3s ease-in-out;
    box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;
    overflow: hidden;
    height: auto!important;
  
}
.form-outer form .page .title {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
}
.form-outer form .page .field {
    width: var(--containerWidth);
    display: block;
    position: relative;
    padding: 0 0 20px 0;
     box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    
}

.form-outer .form-groups{padding: 0 40px;}
.footer-button .btn-panel{
    margin-right:40px;
}

.field.btns .btn-panel{
    margin-right:40px;     display: flex;
    justify-content: flex-end;
    grid-column-gap: 10px;
}


.form-outer form .page .field.success-message-wrapper{margin: 0;}

form .page .field .label {
    font-weight: 400;
    margin: 0 0 10px 0;
     font-family:var(--poppins-font);
    font-size:14px;
    
}
form .page .field input, form .page .field select, form .page .field textarea {
    box-sizing: border-box;
    border: 1px solid var(--inputBorderColor);
    border-radius: 4px;
    padding: 14px 20px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 16px;
     outline: none;
    font-family:var(--poppins-font);
    display: block;
    width:99%;
    background:none;
   
}

.textarea{height:150px;}
form .page .field input.invalid-input,
form .page .field select.invalid-input {
    border-color: var(--errorColor);
}
form .page .field select {
    width: 99%;
    font-size: 16px;
    font-weight: 500;
    -webkit-appearance:none;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
   
    background: url("../images/arrow-angle-down.svg") no-repeat right center;
}
form .page .field button {
    border: none;
    background: var(--maryland-red);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    line-height: 19px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.5s ease;
    margin:34px 0 0;
    padding: 0 30px;
     border:1px solid var(--maryland-red);
    height: 56px;
    font-family:var(--poppins-font);
    margin-right: 0;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
   
    
    
}



form .page .field button:hover {
    background: #e19717;  border-color:#e19717;
}

form .page .field button svg{margin: 0 0 0 8px;}

form .page .btns button.prev {
    font-size: 18px;
    background: none;
    border:1px solid var(--maryland-red); border-radius: 4px; color:var(--maryland-red);
}

.form-outer form .page .field:last-child{margin-bottom: 0;}

form .page .btns button.prev:hover{
    color:#e19717; border-color:#e19717;
}

form .page .btns button.next {
    margin-left: 0;
    
}
.container-form .progress-bar {
    display: flex;
    padding: 40px  0 0;
    user-select: none;
    justify-content: space-between;
}
.container-form .progress-bar .step {
    text-align: left;
    width: 100%;
    position: relative;
}

.container-form .progress-bar .last-step {
    width: auto!important;
}

.container-form .progress-bar .step p {
    font-weight: 500;
    font-size: 18px;
    color: var(--maryland-blue);
    margin-bottom: 8px;
}
.progress-bar .step .bullet {
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
     display: flex; align-items: center;
    text-align: left;
}

.line{width:98%; height: 2px; background: #D8D6D6; margin: 0 10px;}
.progress-bar .step .bullet span{white-space:nowrap; text-transform: uppercase; color:var(--maryland-grey); font-size:16px; font-weight: 500; font-family: "filson-pro", sans-serif; font-weight: 500; letter-spacing: .2em;}

.progress-bar .step .bullet.active span  {
    color:var(--maryland-red);
}
.progress-bar .step .bullet.active .line{background: var(--maryland-red);}




@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}
.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after {
    display: none;
}
.progress-bar .step p.active {
    color: var(--primary);
    transition: 0.2s linear;
}
.progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none!important;
}
.progress-bar .step .check.active {
    display: block;
    color: #fff;
    display: none!important;
}

@media screen and (max-width: 767px) {

    .step-wrapper-section{padding-left:20px; padding-right: 20px;}
    .form-outer .form-groups {
    padding: 0 20px; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;
}
    .footer-button .btn-panel, .field.btns .btn-panel {
    margin-right: 20px;
}
    
    
    
    .footer-button, .field.btns{grid-column-gap: 10px; padding: 0 5px; width:auto!important;}
    
    
}

@media screen and (max-width: 490px) {
    :root {
        --containerWidth: 100%;
    }
    .container-form {
        box-sizing: border-box;
        border-radius: 0;
    }
    
    form .page .field button{padding: 0 30px; margin: 20px 5px 0;}
    
    form .page .field button.submit{margin-left: 0;}
    
    .progress-bar .step .bullet span{font-size:14px;}
}




label.error {
    font-size: 12px;
    color: red;
    font-weight: 300;
    padding-left: 20px;
}

.invalid-input.error {
    border-color: red;
    
}

.success_message,
.dynamic {
    background: #21409A;
    padding: 10px 20px;
    display: none;
}

.success_message h5,
.dynamic h5 {
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
/* 9/08/24 */
.search-panel label.error {
    display: none!important;
}
.search-panel input[type="text"].error {
    border: 1px solid #ff0000;
}
span.notification.error {
    display: block;
    color: red;
    font-size: 18px;
    font-weight: 600;
    padding-top: 10px;
}
.search-panel .btn-search {
    width: 130px;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
    height: 58px;
}
.search-panel input[type="text"] {
    min-width: 323px;
    font-size: 18px;
    background: #fff;
    padding: 0 32px;
    font-size: 18px;
    color: var(--maryland-blue);
    border: 1px solid var(--maryland-blue) ;
    outline: none;
    border-radius:0;
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    
}