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