| 1 |
.eel-single-nav-list { |
| 2 |
list-style: none; |
| 3 |
margin: 0; |
| 4 |
padding: 0; |
| 5 |
display: flex; |
| 6 |
flex-wrap: wrap; |
| 7 |
} |
| 8 |
|
| 9 |
.eel-single-nav-list .eel-nav-item { |
| 10 |
margin: 4px; |
| 11 |
} |
| 12 |
|
| 13 |
.eel-single-nav-list li a { |
| 14 |
text-decoration: none; |
| 15 |
color: #121212; |
| 16 |
padding: 12px 20px; |
| 17 |
display: block; |
| 18 |
} |
| 19 |
|
| 20 |
.eel-single-nav-list li:hover a, |
| 21 |
.eel-single-nav-list li.active a { |
| 22 |
color: #c30645; |
| 23 |
} |
| 24 |
|
| 25 |
.eel-sticky-header-on.eel--fixed-top-sticky .eel-sticky-logo, |
| 26 |
.eel-sticky-header-on.eel-up-scroll .eel-sticky-logo { |
| 27 |
display: inline-block !important; |
| 28 |
} |
| 29 |
.eel-sticky-header-on.eel--fixed-top-sticky .eel-main-logo:not(.eel-no-sticky), |
| 30 |
.eel-sticky-header-on.eel-up-scroll .eel-main-logo:not(.eel-no-sticky) { |
| 31 |
display: none !important; |
| 32 |
} |
| 33 |
|
| 34 |
@media (min-width: 992px) { |
| 35 |
body.logged-in:not(.elementor-editor-active) header.eel-sticky-header-on { |
| 36 |
top: 32px; |
| 37 |
} |
| 38 |
} |
| 39 |
header.eel-sticky-header-on { |
| 40 |
position: fixed !important; |
| 41 |
top: 0; |
| 42 |
z-index: 9999 !important; |
| 43 |
width: 100% !important; |
| 44 |
transition: all 0.3s ease !important; |
| 45 |
margin: 0 auto; |
| 46 |
left: 0; |
| 47 |
right: 0; |
| 48 |
will-change: transform, top; |
| 49 |
} |
| 50 |
|
| 51 |
header.eel-sticky-header { |
| 52 |
position: fixed; |
| 53 |
top: 0; |
| 54 |
left: 0; |
| 55 |
right: 0; |
| 56 |
z-index: 999; |
| 57 |
transition: transform 0.4s ease, top 0.4s ease; |
| 58 |
} |
| 59 |
|
| 60 |
body.admin-bar header.eel-sticky-header { |
| 61 |
top: 32px; |
| 62 |
} |
| 63 |
|
| 64 |
@media screen and (max-width: 782px) { |
| 65 |
body.admin-bar header.eel-sticky-header { |
| 66 |
top: 46px; |
| 67 |
} |
| 68 |
} |
| 69 |
header.eel-down-scroll { |
| 70 |
transform: translateY(-100%); |
| 71 |
} |
| 72 |
|
| 73 |
header.eel-up-scroll { |
| 74 |
transform: translateY(0); |
| 75 |
} |