| 1 |
#fs_pricing_app .fs-package .fs-plan-description { |
| 2 |
padding: 20px; |
| 3 |
} |
| 4 |
|
| 5 |
section.fs-section.fs-section--custom-implementation { |
| 6 |
display: none !important; |
| 7 |
} |
| 8 |
|
| 9 |
|
| 10 |
/* Premium Upgrade Button */ |
| 11 |
#fs_pricing_app .fs-upgrade-button-container { |
| 12 |
/* margin: 2.5rem 0 !important; */ |
| 13 |
padding: 0 10% 30px !important; |
| 14 |
} |
| 15 |
|
| 16 |
#fs_pricing_app .fs-upgrade-button { |
| 17 |
background: linear-gradient(135deg, #667eea, #764ba2) !important; |
| 18 |
color: white !important; |
| 19 |
border: none !important; |
| 20 |
padding: 1.3rem 3rem !important; |
| 21 |
border-radius: 60px !important; |
| 22 |
font-size: 1.0rem !important; |
| 23 |
font-weight: 700 !important; |
| 24 |
cursor: pointer !important; |
| 25 |
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; |
| 26 |
text-transform: uppercase !important; |
| 27 |
letter-spacing: 2px !important; |
| 28 |
box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4) !important; |
| 29 |
width: 100% !important; |
| 30 |
position: relative !important; |
| 31 |
overflow: hidden !important; |
| 32 |
margin-top: 10px !important; |
| 33 |
} |
| 34 |
|
| 35 |
#fs_pricing_app .fs-upgrade-button::before { |
| 36 |
content: '' !important; |
| 37 |
position: absolute !important; |
| 38 |
top: 0 !important; |
| 39 |
left: -100% !important; |
| 40 |
width: 100% !important; |
| 41 |
height: 100% !important; |
| 42 |
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important; |
| 43 |
transition: left 0.6s !important; |
| 44 |
} |
| 45 |
|
| 46 |
#fs_pricing_app .fs-upgrade-button:hover::before { |
| 47 |
left: 100% !important; |
| 48 |
} |
| 49 |
|
| 50 |
#fs_pricing_app .fs-upgrade-button:hover { |
| 51 |
transform: translateY(-3px) !important; |
| 52 |
box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5) !important; |
| 53 |
background: linear-gradient(135deg, #5a67d8, #6b46c1) !important; |
| 54 |
} |
| 55 |
|
| 56 |
#fs_pricing_app .fs-upgrade-button:active { |
| 57 |
transform: translateY(-1px) !important; |
| 58 |
} |
| 59 |
|
| 60 |
|
| 61 |
/* Enhanced Features List */ |
| 62 |
#fs_pricing_app .fs-plan-features { |
| 63 |
list-style: none !important; |
| 64 |
padding: 0 !important; |
| 65 |
margin: 0 !important; |
| 66 |
text-align: left !important; |
| 67 |
} |
| 68 |
|
| 69 |
#fs_pricing_app .fs-plan-features li { |
| 70 |
display: flex !important; |
| 71 |
align-items: center !important; |
| 72 |
gap: 1rem !important; |
| 73 |
margin: 1.2rem 10% !important; |
| 74 |
padding: 0.8rem 0 !important; |
| 75 |
background: rgba(102, 126, 234, 0.05) !important; |
| 76 |
border-radius: 12px !important; |
| 77 |
padding-left: 1rem !important; |
| 78 |
transition: all 0.3s ease !important; |
| 79 |
} |
| 80 |
|
| 81 |
#fs_pricing_app .fs-plan-features li:hover { |
| 82 |
background: rgba(102, 126, 234, 0.1) !important; |
| 83 |
transform: translateX(5px) !important; |
| 84 |
} |
| 85 |
|
| 86 |
#fs_pricing_app .fs-plan-features .fs-icon { |
| 87 |
color: #38a169 !important; |
| 88 |
flex-shrink: 0 !important; |
| 89 |
width: 24px !important; |
| 90 |
height: 24px !important; |
| 91 |
margin-top: 0.2rem !important; |
| 92 |
background: rgba(56, 161, 105, 0.1) !important; |
| 93 |
border-radius: 50% !important; |
| 94 |
padding: 2px !important; |
| 95 |
display: flex !important; |
| 96 |
align-items: center; |
| 97 |
justify-content: center; |
| 98 |
} |
| 99 |
|
| 100 |
#fs_pricing_app .fs-plan-features .fs-feature-title { |
| 101 |
color: #2d3748 !important; |
| 102 |
font-weight: 600 !important; |
| 103 |
flex: 1 !important; |
| 104 |
font-size: 1.05rem !important; |
| 105 |
} |
| 106 |
|
| 107 |
/* ================================ */ |
| 108 |
|
| 109 |
/* Enhanced Money Back Guarantee */ |
| 110 |
#fs_pricing_app .fs-section--money-back-guarantee { |
| 111 |
background: rgba(255, 255, 255, 0.98) !important; |
| 112 |
backdrop-filter: blur(20px) !important; |
| 113 |
-webkit-backdrop-filter: blur(20px) !important; |
| 114 |
border-radius: 24px !important; |
| 115 |
padding: 4rem 3rem !important; |
| 116 |
text-align: center !important; |
| 117 |
margin: 4rem auto !important; |
| 118 |
/* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important; */ |
| 119 |
position: relative !important; |
| 120 |
overflow: hidden !important; |
| 121 |
border: 1px solid rgba(255, 255, 255, 0.3) !important; |
| 122 |
max-width: 768px; |
| 123 |
} |
| 124 |
|
| 125 |
#fs_pricing_app .fs-section--money-back-guarantee::before { |
| 126 |
content: '' !important; |
| 127 |
position: absolute !important; |
| 128 |
top: 0 !important; |
| 129 |
left: 0 !important; |
| 130 |
right: 0 !important; |
| 131 |
height: 6px !important; |
| 132 |
background: linear-gradient(90deg, #667eea, #764ba2, #667eea) !important; |
| 133 |
} |
| 134 |
|
| 135 |
#fs_pricing_app .fs-money-back-guarantee-title { |
| 136 |
font-size: 2.5rem !important; |
| 137 |
color: #2d3748 !important; |
| 138 |
margin: 0 0 2rem 0 !important; |
| 139 |
font-weight: 800 !important; |
| 140 |
} |
| 141 |
|
| 142 |
#fs_pricing_app .fs-money-back-guarantee-message { |
| 143 |
font-size: 1.3rem !important; |
| 144 |
color: #718096 !important; |
| 145 |
margin: 0 0 3rem 0 !important; |
| 146 |
line-height: 1.7 !important; |
| 147 |
max-width: 700px !important; |
| 148 |
margin-left: auto !important; |
| 149 |
margin-right: auto !important; |
| 150 |
font-weight: 400 !important; |
| 151 |
} |
| 152 |
|
| 153 |
#fs_pricing_app .fs-section--money-back-guarantee .fs-button { |
| 154 |
background: linear-gradient(135deg, #38a169, #48bb78) !important; |
| 155 |
color: white !important; |
| 156 |
border: none !important; |
| 157 |
padding: 1rem 2.5rem !important; |
| 158 |
border-radius: 30px !important; |
| 159 |
font-weight: 700 !important; |
| 160 |
cursor: pointer !important; |
| 161 |
transition: all 0.4s ease !important; |
| 162 |
margin-bottom: 2rem !important; |
| 163 |
font-size: 1.1rem !important; |
| 164 |
text-transform: uppercase !important; |
| 165 |
letter-spacing: 1px !important; |
| 166 |
display: none; |
| 167 |
} |
| 168 |
|
| 169 |
#fs_pricing_app .fs-section--money-back-guarantee .fs-button:hover { |
| 170 |
transform: translateY(-3px) !important; |
| 171 |
box-shadow: 0 12px 35px rgba(56, 161, 105, 0.4) !important; |
| 172 |
} |
| 173 |
|
| 174 |
#fs_pricing_app .fs-section--money-back-guarantee img { |
| 175 |
max-width: 140px !important; |
| 176 |
opacity: 0.9 !important; |
| 177 |
} |
| 178 |
|
| 179 |
|
| 180 |
/* ================================ */ |
| 181 |
|
| 182 |
|
| 183 |
li.fs-package { |
| 184 |
width: auto !important; |
| 185 |
border: none !important; |
| 186 |
border-radius: 24px !important; |
| 187 |
} |
| 188 |
|
| 189 |
ul.fs-packages { |
| 190 |
width: auto !important; |
| 191 |
justify-content: center; |
| 192 |
max-width: 450px; |
| 193 |
} |
| 194 |
|
| 195 |
#fs_pricing_app .fs-package .fs-plan-title { |
| 196 |
border: 1px solid var(--fs-ds-theme-divider-color); |
| 197 |
} |
| 198 |
|
| 199 |
#fs_pricing_app .fs-package .fs-plan-features li .fs-tooltip { |
| 200 |
margin-right: 10px !important; |
| 201 |
} |