.popup {
    position: fixed;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    top: 0px;
}

.popup-content {
    width: 30%;
    position: relative;
    padding: 15px;
    border-radius: 12px;
    display: none;
}

.popup-content.success {
    /* background: var(--popup-bg-success); */
    background: var(--bg-primary);
    /* border: 1px solid var(--popup-border-success); */
}
.popup-content.error {
    background: var(--popup-bg-error);
    border: 1px solid var(--popup-border-error);
}

.popup-content .title {
    font-size: 'inter';
    font-size: 16px;
    font-weight: 500;
}

.popup-content .message {
    font-size: 'inter';
    font-size: 13px;
}

.popup button {
    /* background: var(--popup-btn-bg); */
    /* color: var(--popup-btn-color); */
}