#nps-av-root.nps-av-root {
position: fixed;
inset: 0;
z-index: 999999;
} #nps-av-root.nps-av-root[hidden] {
display: none;
} #nps-av-root .nps-av-backdrop {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.82);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
} #nps-av-root .nps-av-dialog {
position: relative;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 16px;
} #nps-av-root .nps-av-dialog .nps-av-card {
width: min(640px, 92vw);
background-color: #000;
color: #fff;
border-radius: 18px;
padding: 32px 28px;
border: 1px solid rgba(255, 255, 255, 0.18);
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
} #nps-av-root .nps-av-card .nps-av-title {
margin: 0 0 14px;
font-size: 1.8rem;
line-height: 1.2;
font-weight: 700;
color: #fff;
} #nps-av-root .nps-av-card .nps-av-desc {
margin: 0 0 26px;
font-size: 1.06rem;
line-height: 1.65;
color: rgba(255, 255, 255, 0.92);
max-width: 56ch;
} #nps-av-root .nps-av-card .nps-av-actions {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
gap: 14px;
flex-wrap: wrap;
} #nps-av-root .nps-av-card .nps-av-btn {
appearance: none;
-webkit-appearance: none;
border-radius: 14px;
padding: 14px 20px;
font-size: 1.06rem;
font-weight: 700;
line-height: 1;
cursor: pointer;
text-decoration: none;
min-width: 200px;
border: 2px solid transparent;
background: none;
} #nps-av-root .nps-av-card #nps-av-yes.nps-av-btn-primary {
background-color: #fff;
color: #000;
border-color: #fff;
} #nps-av-root .nps-av-card #nps-av-no.nps-av-btn-ghost {
background-color: transparent;
color: #fff;
border-color: rgba(255, 255, 255, 0.55);
} #nps-av-root .nps-av-card .nps-av-btn:hover {
transform: translateY(-1px);
filter: brightness(0.95);
}
#nps-av-root .nps-av-card .nps-av-btn:focus-visible {
outline: 3px solid rgba(255, 255, 255, 0.65);
outline-offset: 3px;
} body.nps-av-open {
overflow: hidden;
} @media (max-width: 520px) {
#nps-av-root .nps-av-dialog .nps-av-card {
padding: 24px 18px;
}
#nps-av-root .nps-av-card .nps-av-btn {
min-width: 100%;
}
}