| 1 |
.easy-elements-pro-badge { |
| 2 |
display: flex; |
| 3 |
flex-direction: column; |
| 4 |
align-items: center; |
| 5 |
justify-content: center; |
| 6 |
background: #fffcfc; |
| 7 |
border: 1px solid #fff7f7; |
| 8 |
border-radius: 6px; |
| 9 |
padding: 20px; |
| 10 |
margin: 0 auto; |
| 11 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02); |
| 12 |
text-align: center; |
| 13 |
} |
| 14 |
|
| 15 |
.easy-elements-pro-icon { |
| 16 |
width: 60px; |
| 17 |
height: 60px; |
| 18 |
border-radius: 50%; |
| 19 |
background: linear-gradient(135deg, #ff5e62, #ff9966); |
| 20 |
display: flex; |
| 21 |
align-items: center; |
| 22 |
justify-content: center; |
| 23 |
margin-bottom: 12px; |
| 24 |
} |
| 25 |
|
| 26 |
.easy-elements-pro-icon svg { |
| 27 |
width: 28px; |
| 28 |
height: 28px; |
| 29 |
} |
| 30 |
|
| 31 |
.easy-elements-pro-text { |
| 32 |
font-size: 14px; |
| 33 |
color: #333; |
| 34 |
margin: 0 0 12px 0; |
| 35 |
line-height: 20px; |
| 36 |
} |
| 37 |
|
| 38 |
.easy-elements-pro-btn { |
| 39 |
text-decoration: none; |
| 40 |
background: #ff5e62; |
| 41 |
color: #fff; |
| 42 |
font-size: 13px; |
| 43 |
font-weight: 600; |
| 44 |
padding: 8px 20px; |
| 45 |
border-radius: 20px; |
| 46 |
transition: all 0.3s ease; |
| 47 |
} |
| 48 |
|
| 49 |
.easy-elements-pro-btn:hover { |
| 50 |
color: #fff; |
| 51 |
} |
| 52 |
|