| 1 |
.nx-header-analytics-counter-wrapper { |
| 2 |
display: flex; |
| 3 |
margin-bottom: 20px; |
| 4 |
justify-content: space-between; |
| 5 |
margin-left: -15px; |
| 6 |
margin-right: -15px; |
| 7 |
} |
| 8 |
.nx-analytics-header-counter-wrapper.nx-analytics-widget .nx-header-analytics-counter-wrapper { |
| 9 |
flex-direction: column; |
| 10 |
margin-bottom: 0; |
| 11 |
} |
| 12 |
.nx-analytics-header-counter-wrapper.nx-analytics-widget .nx-header-analytics-counter-wrapper>div:not(:last-child) { |
| 13 |
border-bottom: 1px solid #f2f2f2; |
| 14 |
} |
| 15 |
.nx-header-analytics-counter-wrapper>div { |
| 16 |
flex: 1; |
| 17 |
flex-basis: 33.3333%; |
| 18 |
padding-left: 15px; |
| 19 |
padding-right: 15px; |
| 20 |
} |
| 21 |
.nx-header-analytics-counter { |
| 22 |
background-color: #FFF; |
| 23 |
color: #fff; |
| 24 |
border-radius: 5px; |
| 25 |
} |
| 26 |
|
| 27 |
.nx-header-analytics-counter>a { |
| 28 |
color: #4c4d57; |
| 29 |
padding: 45px; |
| 30 |
display: block; |
| 31 |
text-decoration: none; |
| 32 |
display: flex; |
| 33 |
align-items: center; |
| 34 |
} |
| 35 |
|
| 36 |
.nx-analytics-header-counter-wrapper.nx-analytics-widget .nx-header-analytics-counter>a { |
| 37 |
padding: 25px; |
| 38 |
} |
| 39 |
|
| 40 |
.nx-header-analytics-counter>a span.nx-counter-icon { |
| 41 |
margin-right: 20px; |
| 42 |
} |
| 43 |
|
| 44 |
.nx-analytics-header-counter-wrapper.nx-analytics-widget .nx-header-analytics-counter>a span.nx-counter-icon>img { |
| 45 |
width: 50px; |
| 46 |
} |
| 47 |
|
| 48 |
.nx-header-analytics-counter>a span.nx-counter-number { |
| 49 |
font-size: 50px; |
| 50 |
line-height: 1; |
| 51 |
letter-spacing: 2px; |
| 52 |
display: block; |
| 53 |
} |
| 54 |
|
| 55 |
.nx-analytics-header-counter-wrapper.nx-analytics-widget .nx-header-analytics-counter>a span.nx-counter-number { |
| 56 |
font-size: 30px; |
| 57 |
} |
| 58 |
.nx-analytics-header-counter-wrapper.nx-analytics-widget .nx-header-analytics-counter>a span.nx-counter-label { |
| 59 |
font-size: 14px; |
| 60 |
} |
| 61 |
/* NotificationX Milestone Notification Styles */ |
| 62 |
#notificationx-milestone-container { |
| 63 |
position: fixed; |
| 64 |
right: 0; |
| 65 |
width: 450px; |
| 66 |
height: auto; |
| 67 |
bottom: 0; |
| 68 |
z-index: 999999; |
| 69 |
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; |
| 70 |
} |
| 71 |
#notificationx-milestone-container .black-friday-notice img{ |
| 72 |
width: 100%; |
| 73 |
} |
| 74 |
|
| 75 |
#notificationx-milestone-container .milestone-notification { |
| 76 |
position: absolute; |
| 77 |
bottom: 20px; |
| 78 |
right: 20px; |
| 79 |
width: 420px; |
| 80 |
max-width: calc(100vw - 40px); |
| 81 |
background: #fff; |
| 82 |
border-radius: 12px; |
| 83 |
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); |
| 84 |
transform: translateY(100px); |
| 85 |
opacity: 0; |
| 86 |
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); |
| 87 |
overflow: hidden; |
| 88 |
} |
| 89 |
|
| 90 |
#notificationx-milestone-container .milestone-notification--visible { |
| 91 |
transform: translateY(0); |
| 92 |
opacity: 1; |
| 93 |
} |
| 94 |
|
| 95 |
#notificationx-milestone-container .milestone-header { |
| 96 |
display: flex; |
| 97 |
justify-content: space-between; |
| 98 |
align-items: center; |
| 99 |
padding: 14px 0 12px; |
| 100 |
border-bottom: 1px solid #e5e7eb; |
| 101 |
margin: 0 18px; |
| 102 |
} |
| 103 |
|
| 104 |
#notificationx-milestone-container .milestone-title { |
| 105 |
margin: 0; |
| 106 |
font-size: 14px; |
| 107 |
font-weight: 500; |
| 108 |
color: #1f2937; |
| 109 |
line-height: 0; |
| 110 |
display: flex; |
| 111 |
align-items: center; |
| 112 |
gap: 10px; |
| 113 |
} |
| 114 |
|
| 115 |
#notificationx-milestone-container .milestone-close { |
| 116 |
background: none; |
| 117 |
border: none; |
| 118 |
cursor: pointer; |
| 119 |
padding: 4px; |
| 120 |
border-radius: 6px; |
| 121 |
color: #64748b; |
| 122 |
transition: all 0.2s ease; |
| 123 |
} |
| 124 |
|
| 125 |
#notificationx-milestone-container .milestone-close:hover { |
| 126 |
background: #f1f5f9; |
| 127 |
color: #334155; |
| 128 |
} |
| 129 |
|
| 130 |
#notificationx-milestone-container .milestone-content { |
| 131 |
padding: 20px; |
| 132 |
} |
| 133 |
|
| 134 |
#notificationx-milestone-container .milestone-achievement { |
| 135 |
text-align: left; |
| 136 |
margin-bottom: 24px; |
| 137 |
} |
| 138 |
|
| 139 |
#notificationx-milestone-container .milestone-achievement-title { |
| 140 |
margin: 10px 0 6px; |
| 141 |
font-size: 18px; |
| 142 |
font-weight: 500; |
| 143 |
color: #707070; |
| 144 |
line-height: 1.5; |
| 145 |
font-family: DM Sans, sans-serif; |
| 146 |
} |
| 147 |
|
| 148 |
#notificationx-milestone-container .milestone-achievement-title strong { |
| 149 |
font-weight: 700; |
| 150 |
color: #25396f; |
| 151 |
} |
| 152 |
|
| 153 |
#notificationx-milestone-container .milestone-achievement-subtitle { |
| 154 |
font-size: 14px; |
| 155 |
color: #535D77; |
| 156 |
margin: 0 0 16px; |
| 157 |
line-height: 1.5; |
| 158 |
} |
| 159 |
|
| 160 |
#notificationx-milestone-container .milestone-link { |
| 161 |
display: inline-block; |
| 162 |
color: #6A4BFF; |
| 163 |
text-decoration: none; |
| 164 |
font-weight: 500; |
| 165 |
font-size: 14px; |
| 166 |
padding: 2px 0; |
| 167 |
border-bottom: 1px solid #6A4BFF; |
| 168 |
transition: border-color 0.2s ease; |
| 169 |
} |
| 170 |
|
| 171 |
#notificationx-milestone-container .milestone-link.pro-activated { |
| 172 |
background: #6A4BFF; |
| 173 |
color: #fff; |
| 174 |
padding: 8px 12px; |
| 175 |
border-radius: 8px; |
| 176 |
} |
| 177 |
|
| 178 |
#notificationx-milestone-container .milestone-link:hover { |
| 179 |
text-decoration: none; |
| 180 |
} |
| 181 |
|
| 182 |
#notificationx-milestone-container .milestone-stats { |
| 183 |
background: #00000099; |
| 184 |
border-radius: 8px; |
| 185 |
padding: 16px; |
| 186 |
} |
| 187 |
|
| 188 |
#notificationx-milestone-container .milestone-stats-inner-wrapper { |
| 189 |
display: flex; |
| 190 |
justify-content: space-between; |
| 191 |
align-items: center; |
| 192 |
flex-direction: column; |
| 193 |
gap: 16px; |
| 194 |
padding: 12px; |
| 195 |
background: #FFFFFF; |
| 196 |
border-radius: 8px; |
| 197 |
} |
| 198 |
|
| 199 |
#notificationx-milestone-container .milestone-stats-inner { |
| 200 |
display: flex; |
| 201 |
gap: 12px; |
| 202 |
justify-content: space-between; |
| 203 |
padding-bottom: 15px; |
| 204 |
border-bottom: 1px solid #E8EEFA; |
| 205 |
width: 100%; |
| 206 |
} |
| 207 |
|
| 208 |
#notificationx-milestone-container .milestone-stat-card { |
| 209 |
background: #fff; |
| 210 |
padding: 0 12px; |
| 211 |
text-align: left; |
| 212 |
} |
| 213 |
|
| 214 |
#notificationx-milestone-container .milestone-stat-label { |
| 215 |
font-size: 12px; |
| 216 |
color: #64748b; |
| 217 |
margin-bottom: 4px; |
| 218 |
font-weight: 500; |
| 219 |
} |
| 220 |
|
| 221 |
#notificationx-milestone-container .milestone-stat-value { |
| 222 |
font-size: 18px; |
| 223 |
font-weight: 700; |
| 224 |
color: #6A4BFF; |
| 225 |
} |
| 226 |
|
| 227 |
#notificationx-milestone-container .milestone-cta { |
| 228 |
display: block; |
| 229 |
background: #7152FF; |
| 230 |
color: #fff; |
| 231 |
text-decoration: none; |
| 232 |
padding: 8px 12px; |
| 233 |
border-radius: 6px; |
| 234 |
font-weight: 600; |
| 235 |
font-size: 12px; |
| 236 |
transition: all 0.2s ease; |
| 237 |
box-shadow: 0 2px 4px rgba(106, 75, 255, 0.2); |
| 238 |
max-width: 60%; |
| 239 |
text-align: center; |
| 240 |
align-items: center; |
| 241 |
} |
| 242 |
|
| 243 |
#notificationx-milestone-container .milestone-cta:hover { |
| 244 |
transform: translateY(-1px); |
| 245 |
box-shadow: 0 4px 8px rgba(106, 75, 255, 0.3); |
| 246 |
color: #fff; |
| 247 |
} |
| 248 |
|
| 249 |
/* Responsive Design */ |
| 250 |
@media (max-width: 460px) { |
| 251 |
#notificationx-milestone-container{ |
| 252 |
display: none !important; |
| 253 |
} |
| 254 |
} |
| 255 |
|