.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: auto;
    outline: 0
}

.modal-dialog {
    margin: auto;
    position: relative;
    width: auto;
    pointer-events: none
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: 4px;
    outline: 0;
    max-width: 400px;
    text-align: center;
    padding: 20px;
    background: #16151c;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 16px
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px
}

.modal-title {
    font-size: 48px;
    font-weight: 600;
    margin: 20px 0;
    line-height: 1.5
}

.modal-close {
    margin: 0;
    padding: 0;
    border: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: none;
    font-size: 0;
    position: absolute;
    right: 40px;
    top: 20px;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #07070B
}

.modal-backdrop.in, .modal-backdrop.out {
    opacity: 0;
    transition: opacity .35s ease-in-out
}

.modal-backdrop.is-open {
    opacity: .8
}

.modal.in .modal-dialog {
    animation: scaleUp .35s ease-in-out
}

.modal.out .modal-dialog {
    animation: scaleDown .35s ease-in-out
}

@keyframes scaleUp {
    0% {
        transform: scale(1.2);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scaleDown {
    0% {
        transform: scale(1);
        opacity: 1
    }
    to {
        transform: scale(1.2);
        opacity: 0
    }
}