/* Base overlay styles. The look of the popup itself comes from the editable CSS. */
.nbt-ei-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
}

.nbt-ei-popup-overlay.nbt-ei-visible {
    display: flex;
}

.nbt-ei-popup-overlay,
.nbt-ei-popup-overlay *,
.nbt-ei-popup-overlay *::before,
.nbt-ei-popup-overlay *::after {
    box-sizing: border-box;
}
