.nb-modal {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 10%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}
.nb-modal .container {
    display: flex;
    flex-flow: column;
    background-color: #ffffff;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}
.nb-modal .container.zoom {
    transform: scale(0.5);
}
.nb-modal .container.slide {
    transform: translateY(-1000px);
}
.nb-modal .container .header {
    display: flex;
    padding: 20px;
    font-weight: 600;
    justify-content: space-between;
    border-bottom: 1px solid #e6e9ec;
    align-items: center;
}
.nb-modal .container .header h1 {
    font-weight: 500;
    color: #4d4d4d;
    padding: 0;
    margin: 0;
}
.nb-modal .container .header button {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    padding-bottom: 4px;
    color: #9a9a9a;
}
.nb-modal .container .header button:hover {
    color: #676767;
}
.nb-modal .container .content {
    margin: 20px;
    flex: 1;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
}
.nb-modal .container .content .prompt-input input {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #e6e9ec;
    margin-top: 15px;
    width: 100%;
}
.nb-modal .container .footer {
    margin: 10px;
    display: flex;
}
.nb-modal .container .footer button {
    appearance: none;
    border: none;
    background-color: #198754;
    color: #ffffff;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 14px;
    margin-right: 7px;
    cursor: pointer;
    min-width: 6rem;
}
.nb-modal .container .footer button:last-child {
    margin-right: 0;
}
.nb-modal .container .footer button:hover {
    background-color: #157347;
}
.nb-modal .container .footer button.alt {
    font-weight: 500;
    background-color: #dc3545;
    color: #ffffff;
}
.nb-modal .container .footer button.alt:hover {
    background-color: #bb2d3b;
}
.nb-modal .container .footer button.right {
    margin-left: auto;
}
.nb-modal.small .container {
    width: 400px;
}
.nb-modal.medium .container {
    width: 600px;
}
.nb-modal.large .container {
    width: 900px;
}
.nb-modal.full .container {
    width: 100%;
    height: 100%;
}
.nb-modal.open {
    display: flex;
}
.nb-modal.open .container.zoom {
    transform: scale(1);
    transition: all 0.2s ease;
}
.nb-modal.open .container.slide {
    transform: translateY(0);
    transition: all 0.5s ease;
}
