:root {
    --main-bg-color: #f37d20;
    --main-text-color: black;
    --secondary-text-color: black;
    --input-bg: #f9fafc94;
    --critical-color: #EE4549;
    --input-border-bottom: #E6E6E6;
    --btn-dark : #414B56;
}
.btn-dark{
    background: var(--btn-dark);
    border: 1px solid  var(--btn-dark)
}
body {
    color: black;
    background: #ecedf3;
    font-weight: 300;
}
input{
    font-weight: 300 !important;
}

input[required]:focus {
    border: 2px solid rgb(243, 36, 36);
}

textarea[required]:focus {
    border: 2px solid rgb(243, 36, 36);
}

.form-check-input:checked {
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
}
.form-check-input:focus {
    border-color: var(--main-bg-color);
    outline: 0;
    box-shadow: none;
}
.main-wrapper{
    /* box-shadow: 0px -1px 5px 1px rgb(87 100 126 / 21%); */
    background: white;
}
.main-text-color {
    color: var(--main-bg-color);
}

.primary-bg-color {
    background-color: var(--main-bg-color);
}

.primary-text-color {
    color: black;
}

.secondary-text-color {
    color: var(--secondary-text-color);
}

.input-bg {
    background-color: var(--input-bg);
    border: 1px solid #d7d8e1;
    border-radius: 4px;
}

.label-color {
    color: var(--main-text-color);
    font-size: 14px
}

.custom-padding {
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
label.form-check-label.secondary-text-color {
    color: #929eaa;
}
.date-picker {
    width: 100%;
    height: 58px;
    border: none;
    /* border-bottom: 2px solid #eee; */
   
    border: 1px solid #d7d8e1;
    padding: 0 10px;
    transition: all .3s ease;
    outline: none !important;
    border-radius: 4px;
}

.datepicker_label {
    position: absolute;
    top: 0;
    left: 0;
    margin: 9px;
    transition: all .3s ease;
    top: 9px;
    left: 2px;
    color: #3f4953;
    font-size: 14px;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: transparent;
    font-size: 14px;
}

.datepicker_container {
    position: relative;
}

.date-picker:not(:placeholder-shown) {
    border-color: #ddd;
}

.date-picker:focus~label,
.date-picker:not(:placeholder-shown)~label {
    font-size: 12px;
    transform: translateY(-14px);
    color: var(--main-bg-color) !important;
}

.date-picker:focus~label {
    color: #ddd;
}

.date-picker:not(:placeholder-shown)~label {
    color: #ddd;
}

.form-check-custom {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.form-check-custom .form-check-input {
    margin-left: 0px;
    margin-top: 15px;
}

.critical-container {
    border: 1px solid var(--critical-color);
    padding: 14px 18px;
}

.critical-container_text {
    color: var(--critical-color)
}

.small-input {
    width: 190px;
    display: inline-block;
}

.bg-dark {
    background-color: #414B56 !important;
}
.main-heading{
    padding : 1.5em 36px;
    border-bottom: 1px solid #d7d8e1;

}
.main-heading_font{
    font-size : 1.5em;
}


.bg-container {
    display: inline-block;
    color: white;
    margin-left: 15px;
    margin-right: 15px;
    padding: 5px 20px;
    background: black;
}

.btns-container {
    /* border: 1px solid blue; */
    padding: 14px;
}

.navbar {
    padding: 0
}

.btn-primary {
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
}

.btn-secondary {
    background-color: #B3B3B3;
    border-color: #B3B3B3;
}

.label-fixed-width {
    min-width: 100px;
    display: inline-block;
}

.form-floating>.form-control,
.form-control {
    /* border: 0; */
    border: 1px solid #d7d8e1;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {

    color: var(--main-bg-color);
}
textarea.form-control {
    background: var(--input-bg);
}

.large-datepicker {
    height: 100%;
    min-height: 120px;
}

.large-datepicker .date-picker {
    height: 120px;
}

.form-control:focus,
.date-picker:focus {
    border : 1px solid var(--main-bg-color);
    box-shadow: none !important;
    background: white;
    /* border-color: var(--main-bg-color); */
/* box-shadow: 0 0 0 0.25rem hsl(11deg 100% 62% / 12%) */
}

ul {
    position: relative;
    list-style: inherit;
    margin: 0;
}

ul>li {
    font-style: italic;
    position: relative;
}
/* 
ul>li::before {
    content: '➢';
    position: absolute;
    left: 0;
    font-size: 20px;
} */

.btn-primary:hover {
    color: #fff;
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
    box-shadow: 0 0 0 0.25rem hsl(11deg 100% 62% / 12%) !important;
}
.login-text{
    color: white;
    font-size: 36px;
    text-align: center;
}
.submit-btn{
    float: right;
    margin-top: 20px;
}
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}

@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.formContent {
padding: 45px 99px;
background: #646C75;
border-radius: 20px;
}
a {
    color: white;
    text-decoration: none;
}
a:hover {
    color: white;
}
.medical-row > *{
    flex : 1
}
.medical-row_inner{
    text-align: end;
}
.medical-row_inner .form-check-label{
    width : 25px;
    text-align: initial;
    text-transform: capitalize;
}

@media (max-width : 576px){
    .medical-row_inner {
        text-align: end;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .step-label{
        position: absolute;
        min-width: 140px;
    }
    
}
@media (max-width : 768px){
    .form-check-custom{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 0;
    }

    .step-label{
        position: absolute;
    }
    
}

/* ul li::before {
    content: "";
    display: block;
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    border: 1px solid #ed1c24;
    background: #ed1c24;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 3px #fff inset;
    margin-left: 18px;
} */
.padding-full{
    padding : 50px 50px 30px 50px
}
.padding-horizontal{
    padding : 0px 50px
}
.padding-not-top{
    padding :0px 50px 50px 50px
}
.padding-not-bottom{
    padding : 50px 50px 0px 50px
}
.padding-full-1{
    padding :20px 50px 50px 50px
}
.padding-complete{
    padding : 50px 50px
}
.main-container{
    padding-top: 0px;
}
.main-container1{
    padding-top: 100px;
    margin-bottom: 100px;
}
.progress-bar-padding{
    padding-top: 150px;
}
@media (max-width : 768px){
    .padding-full{
        padding : 50px 20px 30px 20px
    }
    .padding-horizontal{
        padding : 0px 20px
    }
    .padding-not-top{
        padding :0px 20px 50px 20px
    }
    .padding-not-bottom{
        padding : 50px 20px 0px 20px
    }
    .padding-full-1{
        padding :20px 20px 50px 20px
    }
    .padding-complete{
        padding : 50px 20px
    }
    .main-heading{
        padding : 2em 20px;
    }
    .main-heading_font{
        font-size: 1.5em;
    }
    .main-container{
        padding-top: 50px;
        padding-left: 25px;
    }
    .main-container1{
        padding-top: 35px;
        padding-left: 25px;
        padding-right: 30px;
    }
    .progress-bar-padding {
        padding-top: 160px;
    }
    /* .step-label{
        top: 6px;
    left: 52px;
    }
    .line{
        display : none
    }
    .step-label {
        min-width: 200px;
    } */
}

.top-ul li::before{
    content : none;
}
.signature-container{
    padding : 0px
}
.custom-shadow{
    box-shadow: 0 4px 4px rgb(87 100 126 / 21%);
}
.form_submit {
    position: relative;
      top: -5px;
      min-width: 126px;
    margin: 10px 0px;
    cursor: pointer;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: #708DFD;
    color: #FFFFFF;
    box-shadow: 0 12px 7px -5px rgba(0,0,0,0.35);
    transition: box-shadow .2s, top .2s, background-color .2s, flex-basis .2s;
  }
   .form_submit:hover,
 .form_submit:focus {
  box-shadow: 0 0 0 0 rgba(0,0,0,0.35);
  top: 0;
}
 .form_submit:focus {
  background-color: #4A65CE;
  outline: 0;
}
.custom-margin-bottom{
    margin-bottom: 120px;
}
.progresses {
    display: flex;
    align-items: center
}

.line {
    width: 120px;
    height: 6px;
    background: #b3b3b3
}
.line.complete {
    width: 100px;
    height: 5px;
    background: #414b56
}

.steps {
    display: flex;
    background-color: #b3b3b3;
    color: #fff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}
.steps.complete {
    display: flex;
    background-color: #414b56;
    color: #fff;
 
}
.step-label{
    position: absolute;
    min-width: 140px;
}

.step-info {
    font-size: 10px;
    font-weight: 800;
    max-width: 7.0rem;
}

.fixed-top {
    height: 7rem;
}


.main-logo{
    max-width: 150px;
    width: 100%;
}
@media only screen and (max-width: 1200px) {
    .steps{
        width: 35px;
        height: 35px;
    }

    .line.complete {
        width: 90px;
      
    }
    .step-info {
        font-size: 9px;
        font-weight: 800;
        max-width: 5rem;
    }
}
@media only screen and (max-width: 992px) {
    .steps{
        width: 30px;
        height: 30px;
    }

    .line.complete {
        width: 75px;
       
    }
    .step-info {
        font-size: 9px;
        font-weight: 800;
        max-width: 5rem;
    }
}
@media only screen and (max-width: 920px) {
    .steps{
        width: 25px;
        height: 25px;
    }

    .line.complete {
        width: 70px;
       
    }
    .step-info {
        font-size: 8px;
        font-weight: 800;
        max-width: 4rem;
    }
}
@media only screen and (max-width: 830px) {
    .steps{
        width: 25px;
        height: 25px;
    }

    .line.complete {
        width: 60px;
       
    }
    .step-info {
        font-size: 8px;
        font-weight: 800;
        max-width: 4rem;
    }
}
@media only screen and (max-width: 768px) {
    .steps{
        width: 26px;
        height: 26px;
    }

    .line.complete {
        width: 40px;
       
    }
    .step-info {
        font-size: 7px;
        font-weight: 800;
        max-width: 3rem;
    }
}
@media only screen and (max-width: 600px) {
    .steps{
        width: 23px;
        height: 23px;
    }

    .line.complete {
        width: 30px;
       
    }
    .step-info {
        font-size: 7px;
        font-weight: 800;
        max-width: 3rem;
    }
}
@media only screen and (max-width: 500px) {
    .steps{
        width: 23px;
        height: 23px;
    }

    .line {
      display: none;
    }
    .step-info {
        font-size: 7px;
        font-weight: 800;
        max-width: 3rem;
    }
    .progresses{
        flex: 1;
        justify-content: space-between !important;
    }
    .main-btn{
        font-size: 11px;
    }
}
@media only screen and (min-width: 992px) {
   .header-container{
       height: 7rem;
   }
}
.nav-link.active {
    background-color: #f37d20!important;
    color: white !important;

    border:0px;
}