| 1 |
:root { |
| 2 |
--e-global-color-primary: #FFD012; |
| 3 |
--e-global-color-secondary: #0B3665; |
| 4 |
} |
| 5 |
|
| 6 |
.ee-tabs-wrapper[data-tab-direction=right], |
| 7 |
.ee-tabs-wrapper[data-tab-direction=left] { |
| 8 |
display: flex; |
| 9 |
gap: 46px; |
| 10 |
} |
| 11 |
|
| 12 |
.ee-tabs-wrapper[data-tab-direction=right] { |
| 13 |
flex-direction: row-reverse; |
| 14 |
} |
| 15 |
|
| 16 |
.ee-tabs-wrapper[data-tab-direction=right] .eel-tab-titles, |
| 17 |
.ee-tabs-wrapper[data-tab-direction=left] .eel-tab-titles { |
| 18 |
min-width: 37%; |
| 19 |
display: grid; |
| 20 |
} |
| 21 |
|
| 22 |
.ee-tabs-wrapper[data-tab-direction=left] .ee-tab-contents .ee-content-title, |
| 23 |
.ee-tabs-wrapper[data-tab-direction=right] .ee-tab-contents .ee-content-title { |
| 24 |
margin-top: 0; |
| 25 |
} |
| 26 |
|
| 27 |
.eel-tab-titles { |
| 28 |
display: flex; |
| 29 |
list-style: none; |
| 30 |
gap: 20px; |
| 31 |
cursor: pointer; |
| 32 |
margin: 0; |
| 33 |
padding: 0; |
| 34 |
} |
| 35 |
|
| 36 |
.elementor-widget-eel-tab .ee-tabs-wrapper[data-tab-direction=top] .eel-tab-titles { |
| 37 |
border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843); |
| 38 |
padding: 0 0 36px; |
| 39 |
} |
| 40 |
|
| 41 |
.eel-tab-titles li { |
| 42 |
align-items: center; |
| 43 |
gap: 16px; |
| 44 |
background: rgba(246, 244, 240, 0.368627451); |
| 45 |
border-radius: 16px; |
| 46 |
padding: 16px; |
| 47 |
transition: all 0.5s ease; |
| 48 |
} |
| 49 |
|
| 50 |
.elementor-widget-eel-tab .eel-tab-titles li.active, |
| 51 |
.elementor-widget-eel-tab .eel-tab-titles li:hover { |
| 52 |
background: var(--e-global-color-primary); |
| 53 |
} |
| 54 |
|
| 55 |
.ee-tabs-wrapper[data-icon-position=right] .eel-tab-titles li, |
| 56 |
.ee-tabs-wrapper[data-icon-position=left] .eel-tab-titles li { |
| 57 |
display: flex; |
| 58 |
flex: 1; |
| 59 |
} |
| 60 |
|
| 61 |
.ee-tabs-wrapper[data-icon-position=top] .eel-tab-titles li { |
| 62 |
display: grid; |
| 63 |
place-items: center; |
| 64 |
flex: 1; |
| 65 |
} |
| 66 |
|
| 67 |
.ee-tabs-wrapper[data-icon-position=right] .eel-tab-titles li { |
| 68 |
flex-direction: row-reverse; |
| 69 |
text-align: right; |
| 70 |
} |
| 71 |
|
| 72 |
.ee-tab-title-text { |
| 73 |
font-size: 20px; |
| 74 |
font-weight: 700; |
| 75 |
color: var(--e-global-color-secondary); |
| 76 |
line-height: 130%; |
| 77 |
} |
| 78 |
|
| 79 |
.eel-tab-titles i, |
| 80 |
.eel-tab-titles svg { |
| 81 |
height: 1.2em; |
| 82 |
display: block; |
| 83 |
font-size: 15px; |
| 84 |
} |
| 85 |
|
| 86 |
.eel-tab-titles > img { |
| 87 |
height: 26px; |
| 88 |
display: block; |
| 89 |
} |
| 90 |
|
| 91 |
.ee-tab-image, |
| 92 |
.ee-tab-icon { |
| 93 |
display: grid; |
| 94 |
height: 56px; |
| 95 |
background: #EFEFF9; |
| 96 |
padding: 14px; |
| 97 |
border-radius: 16px; |
| 98 |
min-width: 56px; |
| 99 |
place-items: center; |
| 100 |
} |
| 101 |
|
| 102 |
.ee-tab-contents .ee-tab-content { |
| 103 |
display: none; |
| 104 |
} |
| 105 |
|
| 106 |
.ee-tabs-wrapper[data-tab-direction=top] .ee-tab-contents .ee-tab-content { |
| 107 |
margin-top: 30px; |
| 108 |
} |
| 109 |
|
| 110 |
.ee-tab-contents .ee-tab-content.active { |
| 111 |
display: block; |
| 112 |
} |
| 113 |
|
| 114 |
.ee-tab-content { |
| 115 |
display: none; |
| 116 |
opacity: 0; |
| 117 |
transition: opacity 0.3s ease; |
| 118 |
} |
| 119 |
|
| 120 |
.ee-tab-content.active { |
| 121 |
display: block; |
| 122 |
opacity: 1; |
| 123 |
} |
| 124 |
|
| 125 |
.ee-tab-contents .ee-content-title { |
| 126 |
font-size: 32px; |
| 127 |
font-weight: 700; |
| 128 |
color: var(--e-global-color-secondary); |
| 129 |
margin: 35px 0 30px; |
| 130 |
} |
| 131 |
|
| 132 |
.ee-tab-contents .ee-read-more { |
| 133 |
font-size: 16px; |
| 134 |
font-weight: 700; |
| 135 |
color: var(--e-global-color-secondary); |
| 136 |
border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275); |
| 137 |
line-height: 24px; |
| 138 |
display: inline-block; |
| 139 |
} |
| 140 |
|
| 141 |
.ee-tab-contents .ee-read-more i { |
| 142 |
font-size: 18px; |
| 143 |
top: 3px; |
| 144 |
position: relative; |
| 145 |
transition: all 0.3s ease; |
| 146 |
margin-left: -5px; |
| 147 |
left: 5px; |
| 148 |
} |
| 149 |
|
| 150 |
.ee-tab-contents .ee-read-more:hover { |
| 151 |
border-bottom-color: var(--e-global-color-primary); |
| 152 |
} |
| 153 |
|
| 154 |
.ee-tab-contents .ee-read-more:hover i { |
| 155 |
left: 3px; |
| 156 |
} |