.response-popup {
    --popup-accent-color: var(--theme-popup-accent-color, #eb3b5a);
    --popup-text-color: var(--theme-popup-text-color, #ffffff);

    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(10, 10, 10, 0.95);
    padding: 16px;
    align-items: center;
}

.response-popup.is-visible {
    display: flex;
}

.response-popup-content {
    padding: 32px 24px;
    width: 100%;
    height: fit-content;
    position: relative;
    max-width: 575px;
    margin: auto;
    border-radius: 16px;
    background-color: var(--popup-accent-color);
}

.response-popup-content p,
.response-popup-content b {
    color: var(--popup-text-color);
    margin-bottom: 5px;
}

.response-popup-content b {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.response-popup-content p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

.response-popup-content ul {
    margin: 0;
    padding-left: 20px;
}

.response-popup-content ul li {
    color: var(--popup-text-color);
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    list-style-type: disc;
}

.response-popup-close {
    position: absolute;
    top: 22px;
    right: 16px;
    font-size: 24px;
    line-height: 0;
    cursor: pointer;
    font-weight: 100;
    color: var(--popup-text-color);
    transition: opacity 200ms;
}