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