| 1 |
:root { |
| 2 |
--e-global-color-primary: #FFD012; |
| 3 |
--e-global-color-secondary: #0B3665; |
| 4 |
} |
| 5 |
|
| 6 |
.eel-faq-accordion{ |
| 7 |
display: inline-grid; |
| 8 |
gap: 16px; |
| 9 |
width: 100%; |
| 10 |
} |
| 11 |
|
| 12 |
.eel-faq-item{ |
| 13 |
background: #fbfbfb; |
| 14 |
border-radius: 16px; |
| 15 |
border: 1px solid rgba(255, 255, 255, 0.15); |
| 16 |
box-shadow: 0px 4px 6px -6px rgba(0, 0, 0, 0.25); |
| 17 |
padding: 32px; |
| 18 |
} |
| 19 |
|
| 20 |
.eel-faq-sticky .eel-faq-item{ |
| 21 |
position: sticky; |
| 22 |
top: 70px; |
| 23 |
} |
| 24 |
|
| 25 |
.sticky-enabled-overlap-faq{ |
| 26 |
overflow-x: visible !important; |
| 27 |
} |
| 28 |
|
| 29 |
.eel-faq-item.active .eel-faq-question{ |
| 30 |
padding-bottom: 15px; |
| 31 |
} |
| 32 |
|
| 33 |
.eel-faq-open-all .eel-faq-item .eel-faq-question { |
| 34 |
padding-bottom: 12px; |
| 35 |
} |
| 36 |
.eel-faq-question { |
| 37 |
cursor: pointer; |
| 38 |
display: flex; |
| 39 |
justify-content: space-between; |
| 40 |
gap: 10px; |
| 41 |
border-radius: 16px; |
| 42 |
transition: all .2s ease; |
| 43 |
align-items: center; |
| 44 |
} |
| 45 |
.eel-faq-icon { |
| 46 |
font-size: 24px; |
| 47 |
line-height: 0; |
| 48 |
transform: translateY(3px); |
| 49 |
text-align: center; |
| 50 |
svg{ |
| 51 |
height: .7em; |
| 52 |
fill:#000; |
| 53 |
} |
| 54 |
} |
| 55 |
.eel-faq-icon-close { |
| 56 |
display: inline-block; |
| 57 |
} |
| 58 |
.eel-faq-icon-open { |
| 59 |
display: none; |
| 60 |
} |
| 61 |
|
| 62 |
.eel-faq-item.active .eel-faq-icon-close { |
| 63 |
display: none; |
| 64 |
} |
| 65 |
.eel-faq-item.active .eel-faq-icon-open { |
| 66 |
display: inline-block; |
| 67 |
} |
| 68 |
|
| 69 |
.eel-faq-answer { |
| 70 |
overflow: hidden; |
| 71 |
display: none; |
| 72 |
} |
| 73 |
.eel-faq-title{ |
| 74 |
margin: 0; |
| 75 |
width: 100%; |
| 76 |
} |
| 77 |
|
| 78 |
.eel-faq-open-all .eel-faq-answer { |
| 79 |
display: block !important; |
| 80 |
} |
| 81 |
|
| 82 |
.eel-faq-open-all .eel-faq-icon { |
| 83 |
display: none !important; |
| 84 |
} |
| 85 |
|
| 86 |
@media screen and (max-width: 1024px) { |
| 87 |
body.sticky-enabled-overlap-faq{ |
| 88 |
overflow-x: hidden !important; |
| 89 |
} |
| 90 |
.eel-faq-sticky .eel-faq-item{ |
| 91 |
position: unset; |
| 92 |
top: 0px; |
| 93 |
} |
| 94 |
} |