#multiStepForm .step2 {
    display: none;
}
#multiStepForm  .step2.active {
    display: block;
}

#multiStepForm .btn-close{
    right: 25px;
    left: unset;
    z-index: 111111;
}

#FormPopup { 
    z-index: 999999;
}

#FormPopup .step2 { 
    width: 100%;
    float: left;
    /* display: block; */
}
#FormPopup .modal-content{
    display: flex;
    padding: 14px 10px;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 10px 10px;
    flex-wrap: wrap;
    border-radius: 30px;
    background: #FFF;
}

#FormPopup .btn-check:focus+.btn, .btn:focus {
    box-shadow: 0 0 0;
}

#FormPopup #submitBtn {
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #C1A269;
    color: #FFF;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    float: right;
    min-width: 100px;
}


#FormPopup #nextBtn {
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #C1A269;
    color: #FFF;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    float: right;
    width: 100px;
}

#FormPopup #prevBtn {
    color: #000;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: transparent;
    float: right;
    border: none;
    padding: 0px;
    margin: .375rem .75rem;
}

#FormPopup .form-control {

    padding: 15px 15px;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    background: #F5F6F7;
    color: #767E86;
    font-family: 'Inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;   
}


#FormPopup .form-select {

    padding: 15px 15px;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    background: #F5F6F7;
    color: #767E86;
    font-family: 'Inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23767E86'%3E%3Cpath d='M1.5 5.5l6 6 6-6h-12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    
}

.formhead {
    color: #000;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    float: left;
}

.radio-custom-new {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;

    display: flex;
    width: 100%;
    padding: 15px 15px;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #F5F6F7;

}

.radio-custom-new input {
    display: none;
}

.radio-custom-new .custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #C1A269;
    /* Border color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 10px;
}

/* Inner circle (hidden by default) */
.radio-custom-new .custom-radio::after {
    content: "";
    width: 18px;
    height: 18px;
    background-color: transparent;
    /* Default transparent */
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Change inner circle color when checked */
.radio-custom-new input:checked+.custom-radio::after {
    background-color: #C1A269;
    /* Active color */
}

.radio-custom-new input:checked+.custom-radio {
    border: 2px solid #C1A269;
    /* Border color */
}