| 1 |
@charset "UTF-8"; |
| 2 |
|
| 3 |
/* For sprocket icon on WordPress admin menu */ |
| 4 |
@font-face { |
| 5 |
font-family: 'hs-font'; |
| 6 |
src: url('fonts/hs-font.woff') format('woff'), |
| 7 |
url('fonts/hs-font.svg#hs-font') format('svg'); |
| 8 |
font-weight: normal; |
| 9 |
font-style: normal; |
| 10 |
} |
| 11 |
|
| 12 |
@font-face { |
| 13 |
font-family: 'Lexend Deca'; |
| 14 |
src: url('fonts/LexendDeca-Light.woff2') format('woff2'), |
| 15 |
url('fonts/LexendDeca-Medium.woff2') format('woff2'), |
| 16 |
url('fonts/LexendDeca-SemiBold.woff2') format('woff2'), |
| 17 |
url('fonts/LexendDeca-Bold.woff2') format('woff2'); |
| 18 |
} |
| 19 |
|
| 20 |
#wp-admin-bar-leadin-admin-menu .ab-icon:before, |
| 21 |
.dashicons-sprocket:before { |
| 22 |
font-family: 'hs-font' !important; |
| 23 |
content: attr(data-icon); |
| 24 |
font-style: normal !important; |
| 25 |
font-weight: normal !important; |
| 26 |
font-variant: normal !important; |
| 27 |
text-transform: none !important; |
| 28 |
speak: none; |
| 29 |
line-height: 1; |
| 30 |
-webkit-font-smoothing: antialiased; |
| 31 |
-moz-osx-font-smoothing: grayscale; |
| 32 |
} |
| 33 |
|
| 34 |
#wp-admin-bar-leadin-admin-menu .ab-icon:before, |
| 35 |
.dashicons-sprocket:before { |
| 36 |
content: '\61'; |
| 37 |
} |
| 38 |
|
| 39 |
/* Button */ |
| 40 |
.leadin-button { |
| 41 |
font-size: 14px; |
| 42 |
line-height: 14px; |
| 43 |
padding: 12px 24px; |
| 44 |
font-weight: 500; |
| 45 |
border: 1px solid #ff7a59; |
| 46 |
border-radius: 3px; |
| 47 |
transition: all 0.15s; |
| 48 |
transition-timing-function: ease-out; |
| 49 |
text-decoration: none; |
| 50 |
} |
| 51 |
|
| 52 |
.leadin-loader-button { |
| 53 |
position: relative; |
| 54 |
} |
| 55 |
|
| 56 |
.leadin-button.loading { |
| 57 |
background-color: #fff; |
| 58 |
color: #ff7a59; |
| 59 |
transition-timing-function: ease-out; |
| 60 |
} |
| 61 |
|
| 62 |
.leadin-button.loading:hover { |
| 63 |
background-color: #fff8f6; |
| 64 |
} |
| 65 |
|
| 66 |
.leadin-button.loading:active { |
| 67 |
background-color: #ffebe6; |
| 68 |
} |
| 69 |
|
| 70 |
.leadin-primary-button { |
| 71 |
background-color: #ff7a59; |
| 72 |
color: #fff; |
| 73 |
} |
| 74 |
|
| 75 |
.leadin-primary-button:hover { |
| 76 |
background-color: #ff8f73; |
| 77 |
border-color: #ff8f73; |
| 78 |
color: #fff; |
| 79 |
} |
| 80 |
|
| 81 |
.leadin-primary-button:active { |
| 82 |
background-color: #e66e50; |
| 83 |
border-color: #e66e50; |
| 84 |
} |
| 85 |
|
| 86 |
.leadin-secondary-button { |
| 87 |
background-color: #fff; |
| 88 |
color: #ff7a53; |
| 89 |
} |
| 90 |
|
| 91 |
.leadin-secondary-button:hover { |
| 92 |
background-color: #fff8f6; |
| 93 |
} |
| 94 |
|
| 95 |
.leadin-secondary-button:active { |
| 96 |
background-color: #ffebe6; |
| 97 |
} |
| 98 |
|
| 99 |
/* Notice */ |
| 100 |
.leadin-notice { |
| 101 |
height: fit-content; |
| 102 |
padding-top: 27px; |
| 103 |
padding-bottom: 27px; |
| 104 |
} |
| 105 |
|
| 106 |
.leadin-notice__logo { |
| 107 |
float: left; |
| 108 |
padding-left: 20px; |
| 109 |
margin-top: -10px; |
| 110 |
} |
| 111 |
|
| 112 |
.leadin-notice__logo > img { |
| 113 |
height: 30px; |
| 114 |
} |
| 115 |
|
| 116 |
.leadin-notice__title, |
| 117 |
.leadin-notice__content { |
| 118 |
margin-left: 25px; |
| 119 |
} |
| 120 |
|
| 121 |
.leadin-notice__title { |
| 122 |
font-weight: bold; |
| 123 |
font-size: 18px; |
| 124 |
} |
| 125 |
|
| 126 |
.leadin-notice__content { |
| 127 |
margin-top: 10px; |
| 128 |
} |
| 129 |
|
| 130 |
.leadin-notice__options { |
| 131 |
display: flex; |
| 132 |
flex-direction: column; |
| 133 |
margin-top: 15px; |
| 134 |
} |
| 135 |
|
| 136 |
.leadin-notice__footer { |
| 137 |
display: flex; |
| 138 |
margin-top: 15px; |
| 139 |
} |
| 140 |
|
| 141 |
.leadin-notice__footer-text { |
| 142 |
display: flex; |
| 143 |
flex-direction: column; |
| 144 |
margin-left: 10px; |
| 145 |
} |
| 146 |
|
| 147 |
.leadin-notice__footer-image { |
| 148 |
margin-top: auto; |
| 149 |
margin-bottom: auto; |
| 150 |
} |
| 151 |
|
| 152 |
.leadin-notice__cta { |
| 153 |
padding: 6px 14px; |
| 154 |
font-size: 13px; |
| 155 |
font-weight: normal; |
| 156 |
} |
| 157 |
|
| 158 |
.leadin-banner.notice-warning { |
| 159 |
border-left-color: #ff7a59; |
| 160 |
} |
| 161 |
|
| 162 |
.leadin-banner__link { |
| 163 |
font-weight: 500; |
| 164 |
} |
| 165 |
|
| 166 |
.leadin-review-banner { |
| 167 |
position: relative; |
| 168 |
padding: 20px 28px 26px 28px; |
| 169 |
color: #5f5f5f; |
| 170 |
} |
| 171 |
|
| 172 |
.leadin-review-banner--hide { |
| 173 |
display: none; |
| 174 |
} |
| 175 |
|
| 176 |
.leadin-review-banner__dismiss { |
| 177 |
position: absolute; |
| 178 |
top: 0; |
| 179 |
right: 0; |
| 180 |
padding: 22px; |
| 181 |
} |
| 182 |
|
| 183 |
.leadin-review-banner__content { |
| 184 |
min-height: 74px; |
| 185 |
} |
| 186 |
|
| 187 |
.leadin-review-banner__content-body { |
| 188 |
margin-top: 8px; |
| 189 |
} |
| 190 |
|
| 191 |
.leadin-review-banner__text { |
| 192 |
margin: 0 !important; |
| 193 |
padding: 0 !important; |
| 194 |
|
| 195 |
font-size: 14px; |
| 196 |
font-weight: 400; |
| 197 |
line-height: 19px; |
| 198 |
} |
| 199 |
|
| 200 |
.leadin-review-banner__author { |
| 201 |
display: flex; |
| 202 |
align-items: center; |
| 203 |
flex-direction: row; |
| 204 |
gap: 8px; |
| 205 |
margin-top: 6px; |
| 206 |
} |
| 207 |
|
| 208 |
.leadin-review-banner__profile { |
| 209 |
margin-right: 8px; |
| 210 |
} |
| 211 |
|
| 212 |
#toplevel_page_leadin a[href*='leadin_settings'], |
| 213 |
#toplevel_page_leadin a[href*='leadin_user_guide'], |
| 214 |
#toplevel_page_leadin a[href*='leadin_forms'], |
| 215 |
#toplevel_page_leadin a[href*='leadin_chatflows'], |
| 216 |
#toplevel_page_leadin a.leadin_lists_link, |
| 217 |
#toplevel_page_leadin a.leadin_reporting_link, |
| 218 |
#toplevel_page_leadin a.leadin_contacts_link, |
| 219 |
#toplevel_page_leadin a.leadin_email_link, |
| 220 |
#toplevel_page_leadin a.leadin_pricing_link { |
| 221 |
display: inherit; |
| 222 |
} |
| 223 |
|
| 224 |
#toplevel_page_leadin a[href*='leadin_lists'], |
| 225 |
#toplevel_page_leadin a[href*='leadin_reporting'], |
| 226 |
#toplevel_page_leadin a[href*='leadin_pricing'], |
| 227 |
#toplevel_page_leadin a[href*='leadin_contacts'], |
| 228 |
#toplevel_page_leadin a[href*='leadin_email'] { |
| 229 |
display: none !important; |
| 230 |
} |
| 231 |
|
| 232 |
#toplevel_page_leadin a[href*='leadin_pricing'] + .external_link { |
| 233 |
color: #ff7a59 !important; |
| 234 |
} |
| 235 |
|
| 236 |
#toplevel_page_leadin a[href*='leadin_pricing'] + .external_link:hover { |
| 237 |
color: #ffbcac !important; |
| 238 |
} |
| 239 |
|
| 240 |
#toplevel_page_leadin a[href*='leadin_pricing'] + .external_link::after { |
| 241 |
background-color: #ff7a59; |
| 242 |
} |
| 243 |
|
| 244 |
#toplevel_page_leadin a[href*='leadin_pricing'] + .external_link:hover::after { |
| 245 |
background-color: #ffbcac; |
| 246 |
} |
| 247 |
|
| 248 |
#toplevel_page_leadin .external_link:hover::after { |
| 249 |
background-color: #72aee6; |
| 250 |
} |
| 251 |
|
| 252 |
#toplevel_page_leadin .external_link::after { |
| 253 |
content: ''; |
| 254 |
-webkit-mask: url('../images/external_link.svg') no-repeat 50% 50%; |
| 255 |
mask: url('../images/external_link.svg') no-repeat 50% 50%; |
| 256 |
-webkit-mask-size: cover; |
| 257 |
mask-size: cover; |
| 258 |
position: absolute; |
| 259 |
height: 12px; |
| 260 |
width: 12px; |
| 261 |
background-size: contain; |
| 262 |
margin: 4px 2px; |
| 263 |
background-color: rgba(240, 246, 252, 0.7); |
| 264 |
} |
| 265 |
|
| 266 |
/* Needed to prevent the notice banners being shown briefly under the iframe */ |
| 267 |
#leadin-iframe-container { |
| 268 |
position: absolute; |
| 269 |
top: 0; |
| 270 |
height: 100% !important; |
| 271 |
width: 100% !important; |
| 272 |
left: 0; |
| 273 |
z-index: 2; |
| 274 |
} |
| 275 |
|
| 276 |
#leadin-iframe-fallback-container { |
| 277 |
position: absolute; |
| 278 |
top: 0; |
| 279 |
height: 100% !important; |
| 280 |
width: 100% !important; |
| 281 |
left: 0; |
| 282 |
background: white; |
| 283 |
z-index: 1; |
| 284 |
} |
| 285 |
|
| 286 |
.elementor-element-editable .hubspot-form-edit-mode + .hubspot-widget-empty, |
| 287 |
.elementor-element-editable .hubspot-meeting-edit-mode + .hubspot-widget-empty { |
| 288 |
display: none; |
| 289 |
} |
| 290 |
|
| 291 |
.hubspot-form-edit-mode ~ .hbspt-form, |
| 292 |
.hubspot-meeting-edit-mode ~ .meetings-iframe-container { |
| 293 |
pointer-events: none; |
| 294 |
} |
| 295 |
|
| 296 |
.hubspot-widget-empty { |
| 297 |
background-image: url('../images/hubspot.svg'); |
| 298 |
background-color: #f5f8fa; |
| 299 |
background-repeat: no-repeat; |
| 300 |
background-position: center 25px; |
| 301 |
background-size: 120px; |
| 302 |
color: #33475b; |
| 303 |
font-family: 'Lexend Deca', Helvetica, Arial, sans-serif; |
| 304 |
font-size: 14px; |
| 305 |
padding: 90px 20% 25px; |
| 306 |
} |
| 307 |
|
| 308 |
.hubspot-widget-empty p { |
| 309 |
font-size: inherit !important; |
| 310 |
line-height: 24px; |
| 311 |
margin: 4px 0; |
| 312 |
} |
| 313 |
|