
#ConfirmationPendingModal .modal-content {
    padding: 14px;
    width: 500px !important;
    height: unset;
    border-radius: 20px;
    /* width: fit-content; */
}

#ConfirmationPendingModal .modal-header {
    border-bottom: unset;
}

#ConfirmationPendingModal .modal-header.forgot-password {
    bottom: unset;
}

#ConfirmationPendingModal  .sub-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ConfirmationPendingModal .sub-header > svg {
    width: 75px;
    height: 75px;
}

#ConfirmationPendingModal .sub-header > p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 33px;
    margin: unset;
    color: #7c7c7c;
}

#ConfirmationPendingModal .modal-title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

#ConfirmationPendingModal .modal-body {
    display: flex;
    justify-content: center;
    padding: unset;
}

#ConfirmationPendingModal .main-body-content {
    width: unset;
}

#ConfirmationPendingModal .main-body-content > .message {
    /* width: 550px; */
    text-align: center;
    font-family: Lato;
    font-weight: 500;
    line-height: 26px;
}

#ConfirmationPendingModal .modal-footer {
    border-top: unset;
    justify-content: center;
    /* margin-top: 100px; */
}

#ConfirmationPendingModal .modal-footer .main-footer-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ConfirmationPendingModal .modal-footer .main-footer-content > button[type='submit'] {
    width: 175px;
    padding: 10px !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    background-color: var(--primary-color) !important;
  }
  

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: unset;
    }
}


@media screen and (max-width: 768px) {
    #ConfirmationPendingModal .modal-content {
        width: 500px;
    }
    #ConfirmationPendingModal .sub-header > svg {
        width: 65px;
        height: 65px;
    }
    #ConfirmationPendingModal .sub-header > p {
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 25px;
    }
    #ConfirmationPendingModal .modal-title {
        font-size: 20px;
        line-height: 30px;
    }
}

@media screen and (max-width: 450px) {
    #ConfirmationPendingModal .modal-content {
        width: 320px;
    }
    #ConfirmationPendingModal .sub-header > svg {
        width: 35px;
        height: 35px;
    }
    #ConfirmationPendingModal .sub-header > p {
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }
    #ConfirmationPendingModal .modal-title {
        font-size: 15px;
        line-height: 25px;
    }
}