.i-popup:not(:first-child) {
    display: none;
}

.i-popup-bg {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #00000088;
    position: fixed;
    display: flex;
    z-index: 2000;
    align-items: center;
    flex-direction: column;
}

.i-popup-content {
    margin-top: 64px;
    margin-bottom: 64px;
    min-width: 100px;
    min-height: 100px;
    background-color: white;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    border-radius: 4px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(219, 223, 230);
}

.i-popup-spinner {
    margin-top: 96px;
}

.i-popup-title {
    display: flex;
    border-bottom: 1px solid var(--border);
    color: var(--label);
    font-weight: bold;
    font-size: 20px;
}

.i-popup-title-label {
    flex-grow: 1;
    padding: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.i-popup-title-close {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 16px;
    user-select: none;
}

.i-popup-body {
    flex-grow: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.i-popup-footer {
    padding: 16px;
    border-top: 1px solid rgb(219, 223, 230);
}


.i-popup-footer, .i-popup-body {
    color: var(--label);
    font-size: 16px;
}