.header_area.navbar_fixed .sticky_logo img + img{
    display: inline-block;
}
.header_area a.navbar-brand{
    color: #FFF;
}
.header_area.navbar_fixed .sticky_logo{
    color: #051441;
}
.footer_nine_bottom{
    background: #f4f4f5;
}
#wizardForm {
    max-width: 1000px;
    background-color: #ffffff;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 12px;
}
#wizardForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}
#wizardForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}
#wizardForm .form-header .stepIndicator.active {
    font-weight: 600;
}
#wizardForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #009688;
}
#wizardForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #d5efed;
    border-radius: 50%;
    border: 3px solid #ecf5f4;
}
#wizardForm .form-header .stepIndicator.active::before {
    background-color: #a7ede8;
    border: 3px solid #d5f9f6;
}
#wizardForm .form-header .stepIndicator.finish::before {
    background-color: #009688;
    border: 3px solid #b7e1dd;
}
#wizardForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}
#wizardForm .form-header .stepIndicator.active::after {
    background-color: #a7ede8;
}
#wizardForm .form-header .stepIndicator.finish::after {
    background-color: #009688;
}
#wizardForm .form-header .stepIndicator:last-child:after {
    display: none;
}
#wizardForm input, #wizardForm select {
    padding: 15px 20px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}
#wizardForm input:focus {
    border: 1px solid #009688;
    outline: 0;
}
#wizardForm input.invalid {
    border: 1px solid #ffaba5;
}
#wizardForm .step {
    display: none;
}
#wizardForm .form-footer{
    overflow:auto;
    gap: 20px;
}
#wizardForm .form-footer button{
    background-color: #009688;
    border: 1px solid #009688 !important;
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}
#wizardForm .form-footer button:hover {
    opacity: 0.8;
}

#wizardForm .form-footer #prevBtn {
    background-color: #fff;
    color: #009688;
}
.btnPowr{
    color: #18181b;
    line-height: 1.25;
    font-weight: 600;
    font-size: .875rem;
    border-color: transparent;
    border-width: 1px;
    white-space: nowrap;
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    cursor: pointer;
}
.btnPowrDark{
    background-color: #18181b;
}
.btnPowrDark:hover, .btnPowrDark:active, .btnPowrDark:focus{
    background-color: #27272a;
}
.btnPowrYellow{
    background-color: #fc0;
}
.btnPowrYellow:hover, .btnPowrYellow:active, .btnPowrYellow:focus{
    background-color: #ffdb0d;
    color: #18181b;
}
.shelterOption, .shelterOption label {
    cursor: pointer!important;
}
.shelterOption:hover {
    background-color: #eeeeee;
}
.shelterOption, .shelterOption img {
    border-radius: 5px;
}
.shelterOption.mandatoryOption, .shelterOption.mandatoryOption label, .shelterOption.mandatoryOption input[type="checkbox"] {
    cursor: not-allowed!important;
}
.card.selectableCard {
    cursor: pointer;
}
.card.disabledCard b {
    color: #888;
}
.card.disabledCard {
    cursor: not-allowed;
    background-color: #eeeeee;
}
.card.selectedCard {
    border: 3px solid #fc0;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    color: #677294;
    font-weight: bold;
}
.separatorCustom{
    height: 1px;
    width: 100%;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox].niceCheckbox {
        --active: #fc0;
        --active-inner: #fff;
        --focus: 2px rgb(185, 142, 0);
        --border: #BBC1E1;
        --border-hover: #fc0;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
        padding: 15px!important;
    }
    input[type=checkbox].niceCheckbox:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    input[type=checkbox].niceCheckbox:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    input[type=checkbox].niceCheckbox:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }
    input[type=checkbox].niceCheckbox:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }
    input[type=checkbox].niceCheckbox:disabled + label {
        cursor: not-allowed;
    }
    input[type=checkbox].niceCheckbox:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }
    input[type=checkbox].niceCheckbox:focus {
        box-shadow: 0 0 0 var(--focus);
    }
    input[type=checkbox].niceCheckbox:not(.switch) {
        width: 21px;
    }
    input[type=checkbox].niceCheckbox:not(.switch):after {
        opacity: var(--o, 0);
    }
    input[type=checkbox].niceCheckbox:not(.switch):checked {
        --o: 1;
    }
    input[type=checkbox].niceCheckbox + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    input[type=checkbox].niceCheckbox:not(.switch) {
        border-radius: 7px;
    }
    input[type=checkbox].niceCheckbox:not(.switch):after {
        width: 8px;
        height: 15px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 11px;
        top: 6px;
        transform: rotate(var(--r, 20deg));
    }
    input[type=checkbox].niceCheckbox:not(.switch):checked {
        --r: 43deg;
    }
}

@media screen and (max-width: 767px) {
    #wizardForm .form-header .stepIndicator.active::after {
        display: none;
    }
}
@media screen and (max-width: 469px){
    .svg_intro_bottom{
        top: 100px;
    }
}
@media screen and (max-width: 407px){
    .payment_banner_content{
        max-width: 89%;
        margin-top: 140px;
    }
    .payment_banner_content p.f_size_18{
        font-size: 16px;
    }
}
@media screen and (max-height: 880px){
    .payment_banner_area{
        padding-top: 93px;
    }
}