
.modal-backdrop.show {
    opacity: 0.5;
}
.modal-backdrop {
    z-index: 1050;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
.modal-dialog {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
}
.modal-dialog {
    margin-top: 1.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #000;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.5rem;
    outline: 0;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    font-size: 1.25em;
    text-wrap: pretty;
}
.modal-footer {
    display: flex;
    flex-shrink: 0;
    justify-content: end;
    gap: 0.5em;
    align-items: flex-end;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.175);
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
}
.modal-footer .btn {
    margin-bottom: 0;
}
