.custom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    display: block;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.custom-modal-dialog {
    display: flex;
    align-items: center;
    height: 100%;
}

.custom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .75rem;
    outline: 0;

    background: transparent;
    border-width: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
}

.custom-modal-spinner {
    justify-content: center !important;
    display: flex !important;
}