| 1 |
:root { |
| 2 |
--e-global-color-primary: #FFD012; |
| 3 |
--e-global-color-secondary: #0B3665; |
| 4 |
} |
| 5 |
|
| 6 |
.elementor-widget-eel-pricing > .elementor-widget-container{ |
| 7 |
position: relative; |
| 8 |
border: 1px solid #eeeeeeb8; |
| 9 |
padding: 30px; |
| 10 |
border-radius: 16px; |
| 11 |
overflow: hidden; |
| 12 |
box-shadow: 0 5px 16px #00000005; |
| 13 |
background: #fff; |
| 14 |
} |
| 15 |
|
| 16 |
.eel-price-title { |
| 17 |
margin-bottom: 15px; |
| 18 |
} |
| 19 |
|
| 20 |
.elementor-widget-eel-pricing .eel-price-title { |
| 21 |
display: inline-block; |
| 22 |
} |
| 23 |
.eel-price { |
| 24 |
font-size: 36px; |
| 25 |
margin-bottom: 20px; |
| 26 |
} |
| 27 |
|
| 28 |
.eel-price .eel-period { |
| 29 |
font-size: 14px; |
| 30 |
margin-left: 5px; |
| 31 |
} |
| 32 |
|
| 33 |
.eel-features { |
| 34 |
list-style: none; |
| 35 |
padding: 0; |
| 36 |
margin: 0 0 20px 0; |
| 37 |
} |
| 38 |
|
| 39 |
.eel-features li { |
| 40 |
padding: 10px 0; |
| 41 |
display: flex; |
| 42 |
align-items: center; |
| 43 |
} |
| 44 |
|
| 45 |
.eel-features li+li { |
| 46 |
border-top: 1px solid #eeeeeed9; |
| 47 |
} |
| 48 |
.eel-btn-part .eel-button { |
| 49 |
display: inline-flex; |
| 50 |
align-items: center; |
| 51 |
justify-content: center; |
| 52 |
text-decoration: none; |
| 53 |
padding: 10px 26px; |
| 54 |
background-color: var(--e-global-color-primary); |
| 55 |
color: #fff; |
| 56 |
border-radius: 6px; |
| 57 |
transition: all 0.3s ease; |
| 58 |
&.eel--full-btn{ |
| 59 |
display: block; |
| 60 |
} |
| 61 |
} |
| 62 |
.eel-button svg{ |
| 63 |
width: 16px; |
| 64 |
height: 16px; |
| 65 |
} |
| 66 |
|
| 67 |
/* Ribbon styles */ |
| 68 |
.eel-ribbon { |
| 69 |
position: absolute; |
| 70 |
top: 0; |
| 71 |
padding: 3px 15px; |
| 72 |
background: var(--e-global-color-secondary); |
| 73 |
color: #fff; |
| 74 |
width: 100%; |
| 75 |
left: 0; |
| 76 |
border-radius: 16px 16px 0 0; |
| 77 |
text-align: center; |
| 78 |
} |
| 79 |
|
| 80 |
.eel-old-price { |
| 81 |
text-decoration: line-through; |
| 82 |
margin-right: 8px; |
| 83 |
font-size: 22px; |
| 84 |
font-weight: 400; |
| 85 |
} |
| 86 |
|
| 87 |
.eel-sale-price { |
| 88 |
color: var(--e-global-color-primary); |
| 89 |
font-size: 36px; |
| 90 |
} |
| 91 |
|
| 92 |
.eel-features li svg.feature-icon, |
| 93 |
.eel-features li .feature-icon i { |
| 94 |
margin-right: 10px; |
| 95 |
color: var(--e-global-color-primary); |
| 96 |
font-size: 18px; |
| 97 |
width: 22px; |
| 98 |
height: 22px; |
| 99 |
text-align: center; |
| 100 |
vertical-align: middle; |
| 101 |
} |
| 102 |
|
| 103 |
|
| 104 |
.eel-features svg.feature-icon.icon-bg, |
| 105 |
.eel-features svg.feature-icon.icon-border{ |
| 106 |
width: 36px; |
| 107 |
height: 36px; |
| 108 |
} |
| 109 |
|
| 110 |
|
| 111 |
.eel-button-subtext { |
| 112 |
margin-top: 8px; |
| 113 |
font-size: 14px; |
| 114 |
} |
| 115 |
|
| 116 |
|
| 117 |
.eel-features .feature-icon { |
| 118 |
font-size: 16px; |
| 119 |
display: inline-flex; |
| 120 |
align-items: center; |
| 121 |
justify-content: center; |
| 122 |
margin-right: 8px; |
| 123 |
line-height: 1; |
| 124 |
} |
| 125 |
|
| 126 |
|
| 127 |
.feature-icon.icon-bg { |
| 128 |
background-color: #f1f1f1; |
| 129 |
color: var(--e-global-color-secondary); |
| 130 |
padding: 5px; |
| 131 |
border-radius: 50%; |
| 132 |
} |
| 133 |
|
| 134 |
li.icon-bg svg{ |
| 135 |
width: 16px; |
| 136 |
height: 16px; |
| 137 |
margin-right: 10px; |
| 138 |
} |
| 139 |
|
| 140 |
.feature-icon.icon-border { |
| 141 |
border: 1px solid #ccc; |
| 142 |
padding: 5px; |
| 143 |
border-radius: 50%; |
| 144 |
} |
| 145 |
|
| 146 |
|
| 147 |
.featured.style2{ |
| 148 |
.eel-ribbon{ |
| 149 |
position: absolute; |
| 150 |
background: var(--e-global-color-secondary); |
| 151 |
color: #fff; |
| 152 |
top: 22px; |
| 153 |
right: -60px; |
| 154 |
z-index: 10; |
| 155 |
-webkit-transform: rotate(45deg); |
| 156 |
-ms-transform: rotate(45deg); |
| 157 |
transform: rotate(45deg); |
| 158 |
width: 200px; |
| 159 |
padding: 4px 0; |
| 160 |
white-space: nowrap; |
| 161 |
left: auto; |
| 162 |
&.eel-left{ |
| 163 |
left: -60px; |
| 164 |
-webkit-transform: rotate(-45deg); |
| 165 |
-ms-transform: rotate(-45deg); |
| 166 |
transform: rotate(-45deg); |
| 167 |
right: auto; |
| 168 |
} |
| 169 |
} |
| 170 |
} |