

.bootbox .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    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;
    max-height: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.bootbox.modal.show .modal-dialog {
    transform: none;
}
.bootbox.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (min-width: 576px){
    .bootbox .modal-dialog {
        max-width: 500px;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

.bootbox .modal-dialog {
    position: relative;
    margin: var(--bs-modal-margin);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.5rem;
    outline: 0;
}

@media (min-width: 576px){
    .bootbox.modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
}

.bootbox.modal {
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.bootbox .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #fff;
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
    background-color: #fff;
}

.bootbox .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.bootbox .modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(1rem - 0.5rem * .5);
    border-top: 1px solid #fff;
    border-bottom-right-radius: calc(0.5rem - 1px);
    border-bottom-left-radius: calc(0.5rem - 1px);
}

.modal-header .btn-close {
    padding: calc(1rem * .5) calc(1rem * .5);
    margin: calc(-.5 * 1rem) calc(-.5 * 1rem) calc(-.5 * 1rem) auto;
}
button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}

.bootbox .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    border: 0;
    border-radius: 4px;
    opacity: 0.5;
}

.bootbox .btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

.bootbox-body {
    font-size: 16px;
}