| 1 |
.king-addons-sticky-contact-bar { |
| 2 |
position: fixed; |
| 3 |
z-index: 9999; |
| 4 |
display: flex; |
| 5 |
flex-direction: column; |
| 6 |
gap: 10px; |
| 7 |
width: 240px; |
| 8 |
max-width: 90vw; |
| 9 |
padding: 14px; |
| 10 |
background-color: #ffffff; |
| 11 |
border: 1px solid #e2e8f0; |
| 12 |
border-radius: 14px; |
| 13 |
box-shadow: 0 14px 40px rgba(15, 23, 42, 0.16); |
| 14 |
transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; |
| 15 |
} |
| 16 |
|
| 17 |
.king-addons-sticky-contact-bar.is-offline { |
| 18 |
opacity: 0.96; |
| 19 |
} |
| 20 |
|
| 21 |
.king-addons-sticky-contact-bar__status { |
| 22 |
display: inline-flex; |
| 23 |
align-items: center; |
| 24 |
gap: 8px; |
| 25 |
font-weight: 700; |
| 26 |
font-size: 14px; |
| 27 |
color: #0f172a; |
| 28 |
} |
| 29 |
|
| 30 |
.king-addons-sticky-contact-bar__dot { |
| 31 |
width: 12px; |
| 32 |
height: 12px; |
| 33 |
border-radius: 50%; |
| 34 |
background-color: #22c55e; |
| 35 |
box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12); |
| 36 |
transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; |
| 37 |
} |
| 38 |
|
| 39 |
.king-addons-sticky-contact-bar.is-offline .king-addons-sticky-contact-bar__dot { |
| 40 |
background-color: #ef4444; |
| 41 |
box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12); |
| 42 |
} |
| 43 |
|
| 44 |
.king-addons-sticky-contact-bar__title { |
| 45 |
font-size: 15px; |
| 46 |
font-weight: 600; |
| 47 |
color: #0f172a; |
| 48 |
} |
| 49 |
|
| 50 |
.king-addons-sticky-contact-bar__note { |
| 51 |
display: none; |
| 52 |
font-size: 13px; |
| 53 |
color: #475569; |
| 54 |
line-height: 1.5; |
| 55 |
padding: 8px 10px; |
| 56 |
background-color: #f8fafc; |
| 57 |
border: 1px dashed #cbd5e1; |
| 58 |
border-radius: 10px; |
| 59 |
} |
| 60 |
|
| 61 |
.king-addons-sticky-contact-bar__note.is-visible { |
| 62 |
display: block; |
| 63 |
} |
| 64 |
|
| 65 |
.king-addons-sticky-contact-bar__list { |
| 66 |
display: flex; |
| 67 |
flex-direction: column; |
| 68 |
gap: 10px; |
| 69 |
} |
| 70 |
|
| 71 |
.king-addons-sticky-contact-bar__item { |
| 72 |
display: inline-flex; |
| 73 |
align-items: center; |
| 74 |
gap: 10px; |
| 75 |
width: 100%; |
| 76 |
padding: 10px 12px; |
| 77 |
background-color: #0f172a; |
| 78 |
color: #ffffff; |
| 79 |
border-radius: 10px; |
| 80 |
text-decoration: none; |
| 81 |
border: 1px solid #0f172a; |
| 82 |
transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; |
| 83 |
} |
| 84 |
|
| 85 |
.king-addons-sticky-contact-bar__item:hover { |
| 86 |
background-color: #0b1220; |
| 87 |
border-color: #0b1220; |
| 88 |
transform: translateY(-1px); |
| 89 |
} |
| 90 |
|
| 91 |
.king-addons-sticky-contact-bar__item.is-hidden { |
| 92 |
display: none; |
| 93 |
} |
| 94 |
|
| 95 |
.king-addons-sticky-contact-bar__icon { |
| 96 |
display: inline-flex; |
| 97 |
align-items: center; |
| 98 |
justify-content: center; |
| 99 |
width: 20px; |
| 100 |
height: 20px; |
| 101 |
font-size: 18px; |
| 102 |
} |
| 103 |
|
| 104 |
.king-addons-sticky-contact-bar__label { |
| 105 |
font-weight: 600; |
| 106 |
font-size: 14px; |
| 107 |
line-height: 1.2; |
| 108 |
} |
| 109 |
|
| 110 |
.king-addons-sticky-contact-bar.no-labels .king-addons-sticky-contact-bar__label { |
| 111 |
display: none; |
| 112 |
} |
| 113 |
|
| 114 |
@media (max-width: 767px) { |
| 115 |
.king-addons-sticky-contact-bar { |
| 116 |
width: 88vw; |
| 117 |
right: 6vw; |
| 118 |
left: 6vw; |
| 119 |
} |
| 120 |
} |
| 121 |
|
| 122 |
|
| 123 |
|
| 124 |
|
| 125 |
|