/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply Poppins font to all elements */
* {
    font-family: 'Poppins', sans-serif;
}

#ppr-main-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 100px 10px 10px 10px;
}

#ppr-form-wrapper {
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    border: 1px solid #cacaca;
    /* box-shadow: 3px 3px 7px #0000003a; */
    padding: 2.15em 1.75em;
}

.ppr-form-title {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 400;
    color: #464646;
    margin-bottom: 5px;
}

/*
Step Progress Designs
*/
#ppr-step-progress {
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

#ppr-step-progress .ppr-step {
    position: relative;
    width: 20%;
    display: flex;
    flex-flow: column wrap;
    justify-content: start;
    align-items: center;
}

#ppr-step-progress .ppr-step>* {
    width: 100%;
    text-align: center;
}

#ppr-step-progress .ppr-step>.ppr-step-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d1d1d1;
    border-radius: 50% 50%;
    color: #d1d1d1;
    margin-bottom: 5px;
    z-index: 2;
}

#ppr-step-progress .ppr-step:not(:nth-child(1)):before {
    content: "";
    position: absolute;
    top: 15px;
    left: calc(-50% + 15px);
    width: calc(100% - 30px);
    height: 2px;
    background-color: #d1d1d1;
}

#ppr-step-progress .ppr-step>.ppr-step-text {
    font-size: .8rem;
    color: #858585;
}

/* Fix active class styling */
#ppr-step-progress .ppr-step.active>.ppr-step-icon,
#ppr-step-progress .ppr-step.active>.ppr-step-text {
    border-color: #464646;
    color: #464646;
}

#ppr-step-progress .ppr-step.active:before {
    background: #18da69;
}

#ppr-step-progress .ppr-step.active>.ppr-step-icon:before {
    content: "\2713";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #18da69;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 50% 50%;
}


/*
Multi Step Form Styles
*/
div#ppr-form-step-container {

    overflow: hidden;
    width: 90%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    transition: .5s ease-in-out;

}

div#ppr-form-step-container>.ppr-form-step-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    width: 100%;
    max-height: 1000px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Show the active form step with a transition */
div#ppr-form-step-container>.ppr-form-step-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}




.ppr-form-step-group {
    position: relative;
    margin-bottom: .5em;
}

.ppr-form-step-group>label {
    display: block;
    width: 100%;
    color: #464646;
    margin-bottom: 8px;
    font-size: 1rem;
}

.ppr-form-step-group>input {
    width: 100%;
    display: block;
    padding: 0.5em;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    outline: none;
    color: #464646;
}

.ppr-form-step-group>input:focus,
.ppr-form-step-group>input:active {
    border-color: #037ca1b0;
    box-shadow: 0px 4px 2px #8ccde100;
}

#ppr-review dl>dt {
    font-size: .85rem;
    color: #464646;
    letter-spacing: 1px;
}

#ppr-review dl>dd {
    margin-bottom: 5px;
    font-size: .9rem;
    color: #464646;
}

/*
Buttons Styles
*/
#ppr-form-action-btns {
    width: 90%;
    margin: auto;
    align-items: center;

}

#ppr-form-action-btns #ppr-previous {
    color: #e67e22;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #e67e22;
}

.toggle-pass {
    position: absolute;
    right: 25px;
    top: 70%;
    transform: translateY(-50%);
    border: none;
    color: #575555;
    cursor: pointer;
    font-size: 1rem;
}


button.ppr-form-action {
    padding: 0.4em 2.5em;
    background: #ff8a00;
    color: #fff;
    font-weight: 500;
    border: unset;
    border-radius: 0.3em;
    font-size: 1rem;
    cursor: pointer;
}

button.ppr-form-action:hover,
button.ppr-form-action:active {
    background: #dd7906;
    box-shadow: 1px 2px 5px #0c213945;
}

.ppr-form-action {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#ppr-previous {
    margin-right: auto;
}

#ppr-next,
#ppr-submit {
    margin-left: auto;
}

#ppr-previous,
#ppr-submit,
#ppr-data-submitted {
    display: none;
}

#ppr-data-submitted {
    padding: 20px;
    text-align: center;
    display: block;
}


.ppr-resend-btn {
    background-color: transparent;
    border-color: transparent;
    padding: 0;
}

.ppr-resend-btn:disabled {
    background-color: transparent;
    border-color: transparent;
    color: rgb(243 177 177) !important;
    padding: 0;
}

.ppr-resend-btn:hover {
    background-color: transparent;
    border-color: transparent;
    color: rgb(148, 25, 25);
    padding: 0;
}

#terms-condition {
    background-color: transparent;
    margin-top: 10px;
    font-size: 12px;
    text-decoration: underline;
    color: rgb(56, 55, 55);
}

.cust-modal-body {

    height: 700px;
    overflow-y: scroll;

}




.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.685);
    /* Semi-transparent black */
    z-index: 9999;
    /* Ensure it appears on top of other content */
}

.overlay .spinner-border {
    width: 5rem;
    height: 5rem;
    position: absolute;

    transform: translate(-50%, -50%);
    -webkit-animation: spinner 1.5s linear infinite;
    animation: spinner 1.5s linear infinite;
}

.overlay .spinner-content {
    position: absolute;
    top: 60%;

}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}