#guardian-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.80);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

span.popup-close {
    font-size: 25px;
    cursor: pointer;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    background: #E5E5E5;
    align-items: center;
    padding: 0 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.popup-header h5 {
    margin: 0;
}

form#guardian-payment-form {
    padding: 15px;
    /* overflow-y: scroll; */
    display: grid;
    grid-template-columns: 1fr;
    max-height: 500px;
    gap: 10px;
}

.popup-content {
    max-width: 500px;
    background: #fff;
    border-radius: 5px;
    width: 100%;
}



.open-guardian-popup {
    width: 100%;
    border: none;
    color: #fff !important;
    padding: 10px !important;
}




