| 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 |
transform: matrix3d( 1,0,0,0,0,1,0,-0.00095,0,0,1,0,0,0,0,1 ) translateY( 15px ) scale3d( 0.92, 0.92, 1 ); |
| 67 |
} |
| 68 |
.frm-overlay--wrapper.frm-active .frm-overlay--hero-image, |
| 69 |
.frm-overlay--wrapper.frm-active .frm-overlay--heading, |
| 70 |
.frm-overlay--wrapper.frm-active .frm-overlay--copy, |
| 71 |
.frm-overlay--wrapper.frm-active .frm-overlay--cta a { |
| 72 |
opacity:1; |
| 73 |
transform: matrix3d( 1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1 ) translateY( 0px ) scale3d( 1, 1, 1 ); |
| 74 |
transition: 0.35s transform, 0.5s opacity linear; |
| 75 |
} |
| 76 |
.frm-overlay--wrapper.frm-active .frm-overlay--hero-image { |
| 77 |
transition-delay: 0.05s; |
| 78 |
} |
| 79 |
.frm-overlay--wrapper.frm-active .frm-overlay--heading { |
| 80 |
transition-delay: 0.05s; |
| 81 |
} |
| 82 |
.frm-overlay--wrapper.frm-active .frm-overlay--copy { |
| 83 |
transition-delay: 0.1s; |
| 84 |
} |
| 85 |
.frm-overlay--wrapper.frm-active .frm-overlay--cta a:nth-child(1) { |
| 86 |
transition-delay: 0.15s; |
| 87 |
} |
| 88 |
.frm-overlay--wrapper.frm-active .frm-overlay--cta a:nth-child(2) { |
| 89 |
transition-delay: 0.2s; |
| 90 |
} |
| 91 |
|