.wpcf7-response-output {
display: none !important;
} #cf7-confirm-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 99999;
justify-content: center;
align-items: center;
padding: 20px;
box-sizing: border-box;
overflow-y: auto;
}
#cf7-confirm-overlay.active {
display: flex;
} .cf7-confirm-modal {
background: #fff;
border-radius: 8px;
max-width: 700px;
width: 100%;
max-height: 90vh;
overflow-y: auto;
padding: 32px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.cf7-confirm-modal h3 {
font-size: 20px;
font-weight: 600;
margin: 0 0 12px;
text-align: center;
color: #333;
}
.cf7-confirm-desc {
text-align: center;
color: #666;
font-size: 14px;
margin-bottom: 24px;
} .cf7-confirm-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 24px;
border: 1px solid #e5e5e5;
}
.cf7-confirm-table th,
.cf7-confirm-table td {
padding: 14px 16px;
border-bottom: 1px solid #e5e5e5;
text-align: left;
vertical-align: top;
}
.cf7-confirm-table th {
width: 35%;
background: #f7f7f7;
font-weight: 500;
font-size: 14px;
color: #333;
}
.cf7-confirm-table td {
font-size: 14px;
color: #333;
word-break: break-word;
} .cf7-confirm-buttons {
display: flex;
gap: 16px;
justify-content: center;
}
.cf7-btn {
padding: 14px 32px;
font-size: 15px;
font-weight: 600;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background 0.2s, transform 0.1s;
font-family: inherit;
}
.cf7-btn:active {
transform: scale(0.98);
}
.cf7-btn-back {
background: #e5e5e5;
color: #333;
}
.cf7-btn-back:hover {
background: #d5d5d5;
}
.cf7-btn-submit {
background: #333;
color: #fff;
}
.cf7-btn-submit:hover {
background: #555;
} @media screen and (max-width: 600px) {
.cf7-confirm-modal {
padding: 24px 16px;
}
.cf7-confirm-modal h3 {
font-size: 18px;
}
.cf7-confirm-table th,
.cf7-confirm-table td {
display: block;
width: 100%;
padding: 10px 12px;
}
.cf7-confirm-table th {
border-bottom: none;
padding-bottom: 4px;
}
.cf7-confirm-table td {
padding-top: 4px;
}
.cf7-confirm-buttons {
flex-direction: column;
}
.cf7-btn {
width: 100%;
text-align: center;
}
}