.gfcp-original-confirmation {
    display: none !important;
}

.gfcp-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
}

.gfcp-modal.gfcp-is-open {
    display: flex;
}

.gfcp-dialog {
    position: relative;
    width: min(100%, 620px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 46px 38px 34px;
    border-radius: 10px;
    background: #ffffff;
    color: #222222;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.gfcp-dialog:focus {
    outline: 3px solid rgba(0, 0, 0, 0.25);
    outline-offset: 3px;
}

.gfcp-content {
    font-size: 18px;
    line-height: 1.6;
}

.gfcp-content > :first-child {
    margin-top: 0;
}

.gfcp-content > :last-child {
    margin-bottom: 0;
}

.gfcp-close-icon {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    padding: 4px 8px;
    background: transparent;
    color: #222222;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.gfcp-close-button {
    margin-top: 26px;
    border: 0;
    border-radius: 4px;
    padding: 12px 26px;
    background: #222222;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.gfcp-close-icon:hover,
.gfcp-close-icon:focus,
.gfcp-close-button:hover,
.gfcp-close-button:focus {
    opacity: 0.78;
}

.gfcp-no-scroll {
    overflow: hidden;
}

@media (max-width: 600px) {
    .gfcp-modal {
        padding: 16px;
    }

    .gfcp-dialog {
        max-height: calc(100vh - 32px);
        padding: 42px 22px 28px;
    }

    .gfcp-content {
        font-size: 16px;
    }
}

