| 1 |
.king-addons-cookie-button { |
| 2 |
display: flex; |
| 3 |
justify-content: flex-start; |
| 4 |
} |
| 5 |
|
| 6 |
.king-addons-cookie-button__trigger { |
| 7 |
font-family: inherit; |
| 8 |
font-size: 15px; |
| 9 |
line-height: 1.4; |
| 10 |
padding: 12px 18px; |
| 11 |
border-radius: 8px; |
| 12 |
border: 1px solid #cbd5e1; |
| 13 |
background: #2563eb; |
| 14 |
color: #ffffff; |
| 15 |
cursor: pointer; |
| 16 |
transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; |
| 17 |
} |
| 18 |
|
| 19 |
.king-addons-cookie-button__trigger:hover { |
| 20 |
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25); |
| 21 |
transform: translateY(-1px); |
| 22 |
} |
| 23 |
|
| 24 |
.king-addons-cookie-button__icon { |
| 25 |
display: inline-flex; |
| 26 |
align-items: center; |
| 27 |
justify-content: center; |
| 28 |
gap: 6px; |
| 29 |
margin-right: 8px; |
| 30 |
} |
| 31 |
|
| 32 |
.king-addons-cookie-button--pro .king-addons-cookie-button__icon:last-child { |
| 33 |
margin-right: 0; |
| 34 |
margin-left: 8px; |
| 35 |
} |
| 36 |
|
| 37 |
|
| 38 |
|
| 39 |
|