| 1 |
.frm-overlay--wrapper { |
| 2 |
position: absolute; |
| 3 |
top: 0; |
| 4 |
left: 0; |
| 5 |
width: 100%; |
| 6 |
min-height: 100%; |
| 7 |
z-index: 1002; |
| 8 |
color: white; |
| 9 |
} |
| 10 |
|
| 11 |
.frm-overlay--wrapper::before { |
| 12 |
content: ""; |
| 13 |
display: block; |
| 14 |
position: absolute; |
| 15 |
top: 0; |
| 16 |
left: 0; |
| 17 |
width: 100%; |
| 18 |
height: 100%; |
| 19 |
background: rgba(16, 24, 40, 0.85); |
| 20 |
z-index: 1; |
| 21 |
} |
| 22 |
|
| 23 |
.frm-overlay--close { |
| 24 |
position: absolute; |
| 25 |
top: 32px; |
| 26 |
right: 32px; |
| 27 |
z-index: 10; |
| 28 |
display: block; |
| 29 |
width: 32px; |
| 30 |
height: 32px; |
| 31 |
background: url("../images/overlay/close-overlay.svg") no-repeat; |
| 32 |
cursor: pointer; |
| 33 |
} |
| 34 |
|
| 35 |
body.admin-bar:not(.frm-full-screen) .frm-overlay--close { |
| 36 |
top: 40px; |
| 37 |
} |
| 38 |
|
| 39 |
.frm-overlay--container { |
| 40 |
text-align: center; |
| 41 |
position: absolute; |
| 42 |
top: 0; |
| 43 |
left: 0; |
| 44 |
right: 0; |
| 45 |
bottom: 0; |
| 46 |
margin: auto; |
| 47 |
z-index: 8; |
| 48 |
max-width: 468px; |
| 49 |
height: 260px; |
| 50 |
} |
| 51 |
|
| 52 |
.frm-overlay--container .frm-overlay--heading { |
| 53 |
margin-bottom: var(--gap-xs); |
| 54 |
font-weight: 600; |
| 55 |
color: white; |
| 56 |
} |
| 57 |
|
| 58 |
.frm-overlay--container .frm-overlay--cta { |
| 59 |
margin-top: var(--gap-lg); |
| 60 |
justify-content: center; |
| 61 |
gap: var(--gap-sm); |
| 62 |
} |
| 63 |
|
| 64 |
.frm-overlay--container .frm-overlay--cta a:nth-child(2) { |
| 65 |
color: white; |
| 66 |
background: var(--primary-color); |
| 67 |
} |
| 68 |
|
| 69 |
.frm-overlay--hero-image, |
| 70 |
.frm-overlay--heading, |
| 71 |
.frm-overlay--copy, |
| 72 |
.frm-overlay--cta a { |
| 73 |
opacity: 0; |
| 74 |
} |
| 75 |
|