* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #008e47;
    --secondary-color: #2da8e3;
}

.help-block.error-help-block {
    font-size: 14px;
    color: red;
}

.nst-form-container {
    height: 100vh;
    text-align: center;
    display: flex;
    place-items: center;
}

.nst-form-container img {
    margin-bottom: 25px;
}

small{
font-size: 11px;
}

.btn {
    transition: 0.3s linear;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    text-transform: uppercase;
}


.nst-form-container input,
.form-nst input[type="text"],input[type="email"],input[type="date"],input[type="time"],select {
    height: 32px !important;
    box-sizing: border-box;
    color: #000;
    padding: 0 20px !important;
    border-radius: 0;
    background: #f1f1f178;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #0000002b;
    width: 100% !important;
}

label {
    font-size: 12px;
}

textarea
{
    height: 35px !important;
    box-sizing: border-box;
    color: #000;
    padding: 0 20px !important;
    border-radius: 0;
    background: #f1f1f178;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #0000002b;
    width: 100% !important;
}

#progressbar {
    margin-bottom: 20px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    display: flex;
}

#progressbar li {
    list-style-type: none;
    color: #111;
    font-size: 14px;
    /* text-transform: uppercase; */
    font-weight:700;
    width: 33.33%;
    float: left;
    position: relative;
    text-align: center;
    cursor:pointer;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    font-size: 12px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 25px;
    margin: 0 auto 10px auto;
    position: relative;
    z-index: 2;
}

/*progressbar connectors*/
#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: -50%;
    top: 17px;
    z-index: 1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after,
#progressbar li.stepComplete::before,
#progressbar li.stepComplete::after
 {
    background: var(--primary-color);
    color: white;
}



#progressbar li.disabled:before,
#progressbar li.disabled:after {
    background: lightgray;
    color: white;
}

#progressbar li.active
{
   color: var(--primary-color);
}

#progressbar li.disabled a
{
   color: lightgray;
}

.nst-heading {
    font-weight: 500;
    font-size: 30px;
    text-transform: capitalize;
}

.nst-heading-wrap {
    margin-bottom: 20px;
}

/* .nst-multistep-form .step:not(:first-of-type) {
    display: none;
} */
.form-group {
    margin-bottom: 10px;
}
