| @@ -1,21 +1,352 @@ | ||
| 1 | -:root { | |
| 2 | - --direction-multiplier: 1; | |
| 1 | +/*! elementor - v3.8.0 - 08-11-2022 */ | |
| 2 | +@charset "UTF-8"; | |
| 3 | +.dialog-widget-content { | |
| 4 | + background-color: #fff; | |
| 5 | + position: absolute; | |
| 6 | + border-radius: 3px; | |
| 7 | + box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2); | |
| 8 | + overflow: hidden; | |
| 3 | 9 | } |
| 4 | 10 | |
| 5 | -html[dir=rtl], | |
| 6 | -body.rtl { | |
| 7 | - --direction-multiplier: -1; | |
| 11 | +.dialog-message { | |
| 12 | + font-size: 12px; | |
| 13 | + line-height: 1.5; | |
| 14 | + box-sizing: border-box; | |
| 8 | 15 | } |
| 9 | 16 | |
| 10 | -.elementor-hidden { | |
| 17 | +.dialog-type-lightbox { | |
| 18 | + position: fixed; | |
| 19 | + height: 100%; | |
| 20 | + width: 100%; | |
| 21 | + bottom: 0; | |
| 22 | + left: 0; | |
| 23 | + background-color: rgba(0, 0, 0, 0.8); | |
| 24 | + z-index: 9999; | |
| 25 | + -webkit-user-select: none; | |
| 26 | + -moz-user-select: none; | |
| 27 | + user-select: none; | |
| 28 | +} | |
| 29 | +.dialog-type-lightbox .dialog-widget-content { | |
| 30 | + margin: auto; | |
| 31 | + width: 375px; | |
| 32 | +} | |
| 33 | +.dialog-type-lightbox .dialog-header { | |
| 34 | + font-size: 15px; | |
| 35 | + color: #495157; | |
| 36 | + padding: 30px 0 10px; | |
| 37 | + font-weight: 500; | |
| 38 | +} | |
| 39 | +.dialog-type-lightbox .dialog-message { | |
| 40 | + padding: 0 30px 30px; | |
| 41 | + min-height: 50px; | |
| 42 | +} | |
| 43 | +.dialog-type-lightbox:not(.elementor-popup-modal) .dialog-header, | |
| 44 | +.dialog-type-lightbox:not(.elementor-popup-modal) .dialog-message { | |
| 45 | + text-align: center; | |
| 46 | +} | |
| 47 | +.dialog-type-lightbox .dialog-buttons-wrapper { | |
| 48 | + border-top: 1px solid #e6e9ec; | |
| 49 | + text-align: center; | |
| 50 | +} | |
| 51 | +.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button { | |
| 52 | + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; | |
| 53 | + width: 50%; | |
| 54 | + border: none; | |
| 55 | + background: none; | |
| 56 | + color: #6d7882; | |
| 57 | + font-size: 15px; | |
| 58 | + cursor: pointer; | |
| 59 | + padding: 13px 0; | |
| 60 | + outline: 0; | |
| 61 | +} | |
| 62 | +.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:hover { | |
| 63 | + background-color: #f4f6f7; | |
| 64 | +} | |
| 65 | +.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-ok { | |
| 66 | + color: #b01b1b; | |
| 67 | +} | |
| 68 | +.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-take_over { | |
| 69 | + color: #39b54a; | |
| 70 | +} | |
| 71 | +.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:active { | |
| 72 | + background-color: rgba(230, 233, 236, 0.5); | |
| 73 | +} | |
| 74 | +.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button::-moz-focus-inner { | |
| 75 | + border: 0; | |
| 76 | +} | |
| 77 | + | |
| 78 | +.dialog-close-button { | |
| 79 | + cursor: pointer; | |
| 80 | + position: absolute; | |
| 81 | + margin-top: 15px; | |
| 82 | + right: 15px; | |
| 83 | + font-size: 15px; | |
| 84 | + line-height: 1; | |
| 85 | +} | |
| 86 | +.dialog-close-button:not(:hover) { | |
| 87 | + opacity: 0.4; | |
| 88 | +} | |
| 89 | + | |
| 90 | +.dialog-alert-widget .dialog-buttons-wrapper > button { | |
| 91 | + width: 100%; | |
| 92 | +} | |
| 93 | + | |
| 94 | +.dialog-confirm-widget .dialog-button:first-child { | |
| 95 | + border-right: 1px solid #e6e9ec; | |
| 96 | +} | |
| 97 | + | |
| 98 | +#elementor-change-exit-preference-dialog .dialog-message a { | |
| 99 | + cursor: pointer; | |
| 100 | +} | |
| 101 | +#elementor-change-exit-preference-dialog .dialog-message > div { | |
| 102 | + margin-bottom: 10px; | |
| 103 | +} | |
| 104 | +#elementor-change-exit-preference-dialog .dialog-ok { | |
| 105 | + color: #39b54a; | |
| 106 | +} | |
| 107 | + | |
| 108 | +#e-experiments-dependency-dialog .dialog-confirm-header { | |
| 109 | + font-weight: 600; | |
| 110 | +} | |
| 111 | +#e-experiments-dependency-dialog .dialog-ok { | |
| 112 | + color: #39b54a; | |
| 113 | +} | |
| 114 | + | |
| 115 | +#e-kit-elements-defaults-create-dialog .dialog-ok { | |
| 116 | + color: #39b54a; | |
| 117 | +} | |
| 118 | +#e-kit-elements-defaults-create-dialog label { | |
| 119 | + display: flex; | |
| 120 | + align-items: center; | |
| 121 | + justify-content: center; | |
| 122 | + gap: 10px; | |
| 123 | + margin-top: 20px; | |
| 124 | +} | |
| 125 | + | |
| 126 | +.dialog-prevent-scroll { | |
| 127 | + overflow: hidden; | |
| 128 | + max-height: 100vh; | |
| 129 | +} | |
| 130 | + | |
| 131 | +@media (min-width: 1024px) { | |
| 132 | + body.admin-bar .dialog-lightbox-widget { | |
| 133 | + height: calc(100vh - 32px); | |
| 134 | + } | |
| 135 | +} | |
| 136 | +@media (max-width: 1024px) { | |
| 137 | + body.admin-bar .dialog-type-lightbox { | |
| 138 | + position: sticky; | |
| 139 | + height: 100vh; | |
| 140 | + } | |
| 141 | +} | |
| 142 | +.elementor-aspect-ratio-219 .elementor-fit-aspect-ratio { | |
| 143 | + padding-bottom: 42.8571%; | |
| 144 | +} | |
| 145 | +.elementor-aspect-ratio-169 .elementor-fit-aspect-ratio { | |
| 146 | + padding-bottom: 56.25%; | |
| 147 | +} | |
| 148 | +.elementor-aspect-ratio-43 .elementor-fit-aspect-ratio { | |
| 149 | + padding-bottom: 75%; | |
| 150 | +} | |
| 151 | +.elementor-aspect-ratio-32 .elementor-fit-aspect-ratio { | |
| 152 | + padding-bottom: 66.6666%; | |
| 153 | +} | |
| 154 | +.elementor-aspect-ratio-11 .elementor-fit-aspect-ratio { | |
| 155 | + padding-bottom: 100%; | |
| 156 | +} | |
| 157 | +.elementor-aspect-ratio-916 .elementor-fit-aspect-ratio { | |
| 158 | + padding-bottom: 177.8%; | |
| 159 | +} | |
| 160 | + | |
| 161 | +.elementor-fit-aspect-ratio { | |
| 162 | + position: relative; | |
| 163 | + height: 0; | |
| 164 | +} | |
| 165 | +.elementor-fit-aspect-ratio iframe { | |
| 166 | + position: absolute; | |
| 167 | + top: 0; | |
| 168 | + left: 0; | |
| 169 | + height: 100%; | |
| 170 | + width: 100%; | |
| 171 | + border: 0; | |
| 172 | + background-color: #000; | |
| 173 | +} | |
| 174 | +.elementor-fit-aspect-ratio video { | |
| 175 | + width: 100%; | |
| 176 | +} | |
| 177 | + | |
| 178 | +.flatpickr-calendar { | |
| 179 | + width: 280px; | |
| 180 | +} | |
| 181 | +.flatpickr-calendar .flatpickr-current-month span.cur-month { | |
| 182 | + font-weight: 300; | |
| 183 | +} | |
| 184 | +.flatpickr-calendar .dayContainer { | |
| 185 | + width: 280px; | |
| 186 | + min-width: 280px; | |
| 187 | + max-width: 280px; | |
| 188 | +} | |
| 189 | +.flatpickr-calendar .flatpickr-days { | |
| 190 | + width: 280px; | |
| 191 | +} | |
| 192 | +.flatpickr-calendar .flatpickr-day { | |
| 193 | + max-width: 37px; | |
| 194 | + height: 37px; | |
| 195 | + line-height: 37px; | |
| 196 | +} | |
| 197 | + | |
| 198 | +.elementor-templates-modal .dialog-widget-content { | |
| 199 | + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; | |
| 200 | + background-color: #f1f3f5; | |
| 201 | + width: 100%; | |
| 202 | +} | |
| 203 | +@media (max-width: 1439px) { | |
| 204 | + .elementor-templates-modal .dialog-widget-content { | |
| 205 | + max-width: 990px; | |
| 206 | + } | |
| 207 | +} | |
| 208 | +@media (min-width: 1440px) { | |
| 209 | + .elementor-templates-modal .dialog-widget-content { | |
| 210 | + max-width: 1200px; | |
| 211 | + } | |
| 212 | +} | |
| 213 | +.elementor-templates-modal .dialog-header { | |
| 214 | + padding: 0; | |
| 215 | + background-color: #fff; | |
| 216 | + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); | |
| 217 | + position: relative; | |
| 218 | + z-index: 1; | |
| 219 | +} | |
| 220 | +.elementor-templates-modal .dialog-buttons-wrapper { | |
| 221 | + background-color: #fff; | |
| 222 | + border: none; | |
| 11 | 223 | display: none; |
| 224 | + justify-content: flex-end; | |
| 225 | + padding: 5px; | |
| 226 | + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); | |
| 227 | + position: relative; | |
| 12 | 228 | } |
| 229 | +.elementor-templates-modal .dialog-buttons-wrapper .elementor-button { | |
| 230 | + height: 40px; | |
| 231 | + margin-left: 5px; | |
| 232 | +} | |
| 233 | +.elementor-templates-modal .dialog-buttons-wrapper .elementor-button-success { | |
| 234 | + padding: 12px 36px; | |
| 235 | + color: #fff; | |
| 236 | + width: initial; | |
| 237 | + font-size: 15px; | |
| 238 | +} | |
| 239 | +.elementor-templates-modal .dialog-buttons-wrapper .elementor-button-success:hover { | |
| 240 | + background-color: #39b54a; | |
| 241 | +} | |
| 242 | +.elementor-templates-modal .dialog-message { | |
| 243 | + height: 750px; | |
| 244 | + max-height: 85vh; | |
| 245 | + overflow-y: scroll; | |
| 246 | + padding-top: 25px; | |
| 247 | +} | |
| 248 | +.elementor-templates-modal .dialog-content { | |
| 249 | + height: 100%; | |
| 250 | +} | |
| 251 | +.elementor-templates-modal .dialog-loading { | |
| 252 | + display: none; | |
| 253 | +} | |
| 254 | +.elementor-templates-modal__header { | |
| 255 | + display: flex; | |
| 256 | + align-items: center; | |
| 257 | + justify-content: space-between; | |
| 258 | + height: 50px; | |
| 259 | +} | |
| 260 | +.elementor-templates-modal__header__logo { | |
| 261 | + line-height: 1; | |
| 262 | + text-transform: uppercase; | |
| 263 | + font-weight: bold; | |
| 264 | + cursor: pointer; | |
| 265 | +} | |
| 266 | +.elementor-templates-modal__header__logo-area { | |
| 267 | + text-align: left; | |
| 268 | + padding-left: 15px; | |
| 269 | +} | |
| 270 | +.elementor-templates-modal__header__logo-area > * { | |
| 271 | + display: flex; | |
| 272 | + align-items: center; | |
| 273 | +} | |
| 274 | +.elementor-templates-modal__header__logo__icon-wrapper { | |
| 275 | + margin-right: 10px; | |
| 276 | + font-size: 12px; | |
| 277 | +} | |
| 278 | +.elementor-templates-modal__header__logo__title { | |
| 279 | + padding-top: 2px; | |
| 280 | +} | |
| 281 | +.elementor-templates-modal__header__items-area { | |
| 282 | + display: flex; | |
| 283 | + flex-direction: row-reverse; | |
| 284 | +} | |
| 285 | +.elementor-templates-modal__header__item { | |
| 286 | + position: relative; | |
| 287 | + display: flex; | |
| 288 | + align-items: center; | |
| 289 | + justify-content: center; | |
| 290 | + box-sizing: content-box; | |
| 291 | +} | |
| 292 | +.elementor-templates-modal__header__item > i { | |
| 293 | + font-size: 20px; | |
| 294 | + transition: all 0.3s; | |
| 295 | + cursor: pointer; | |
| 296 | +} | |
| 297 | +.elementor-templates-modal__header__item > i:not(:hover) { | |
| 298 | + color: #a4afb7; | |
| 299 | +} | |
| 300 | +.elementor-templates-modal__header__close--normal { | |
| 301 | + width: 47px; | |
| 302 | + border-left: 1px solid #e6e9ec; | |
| 303 | +} | |
| 304 | +.elementor-templates-modal__header__close--normal i { | |
| 305 | + font-size: 18px; | |
| 306 | +} | |
| 307 | +.elementor-templates-modal__header__close--skip { | |
| 308 | + padding: 10px; | |
| 309 | + padding-left: 20px; | |
| 310 | + margin-right: 10px; | |
| 311 | + color: #fff; | |
| 312 | + background-color: #a4afb7; | |
| 313 | + font-size: 11px; | |
| 314 | + font-weight: normal; | |
| 315 | + line-height: 1; | |
| 316 | + text-transform: uppercase; | |
| 317 | + border-radius: 2px; | |
| 318 | + cursor: pointer; | |
| 319 | +} | |
| 320 | +.elementor-templates-modal__header__close--skip > i { | |
| 321 | + font-size: inherit; | |
| 322 | + padding-left: 10px; | |
| 323 | + margin-left: 15px; | |
| 324 | + border-left: 1px solid; | |
| 325 | +} | |
| 326 | +.elementor-templates-modal__header__close--skip > i:not(:hover) { | |
| 327 | + color: #fff; | |
| 328 | +} | |
| 329 | +.elementor-templates-modal__sidebar { | |
| 330 | + flex-shrink: 0; | |
| 331 | + width: 25%; | |
| 332 | + background-color: rgba(255, 255, 255, 0.3); | |
| 333 | +} | |
| 334 | +.elementor-templates-modal__content { | |
| 335 | + flex-grow: 1; | |
| 336 | + box-shadow: 0 0 13px inset rgba(0, 0, 0, 0.05); | |
| 337 | +} | |
| 13 | 338 | |
| 14 | -.elementor-visibility-hidden { | |
| 15 | - visibility: hidden; | |
| 339 | +/* Will select next element after last '.elementor-general-section' */ | |
| 340 | +#wpadminbar #wp-admin-bar-elementor_edit_page .elementor-general-section + .elementor-second-section { | |
| 341 | + border-top: 1px solid #464b50; | |
| 342 | + margin-top: 6px; | |
| 16 | 343 | } |
| 17 | 344 | |
| 345 | +.elementor-hidden { | |
| 346 | + display: none; | |
| 347 | +} | |
| 348 | + | |
| 18 | 349 | .elementor-screen-only, |
| 19 | 350 | .screen-reader-text, |
| 20 | 351 | .screen-reader-text span, |
| 21 | 352 | .ui-helper-hidden-accessible { |
| @@ -38,16 +369,30 @@ | ||
| 38 | 369 | height: 0; |
| 39 | 370 | } |
| 40 | 371 | |
| 41 | 372 | .e-logo-wrapper { |
| 373 | + background: #93003c; | |
| 42 | 374 | display: inline-block; |
| 375 | + padding: 0.75em; | |
| 376 | + border-radius: 50%; | |
| 43 | 377 | line-height: 1; |
| 44 | 378 | } |
| 45 | 379 | .e-logo-wrapper i { |
| 46 | - color: var(--e-a-color-circle-logo); | |
| 47 | - font-size: 2.5em; | |
| 380 | + color: #fff; | |
| 381 | + font-size: 1em; | |
| 48 | 382 | } |
| 49 | 383 | |
| 384 | +#e-enable-unfiltered-files-dialog-import-template .dialog-confirm-ok { | |
| 385 | + color: #39b54a; | |
| 386 | +} | |
| 387 | +#e-enable-unfiltered-files-dialog-import-template .dialog-confirm-cancel { | |
| 388 | + color: #b01b1b; | |
| 389 | +} | |
| 390 | + | |
| 391 | +.elementor { | |
| 392 | + -webkit-hyphens: manual; | |
| 393 | + hyphens: manual; | |
| 394 | +} | |
| 50 | 395 | .elementor *, .elementor *:before, .elementor *:after { |
| 51 | 396 | box-sizing: border-box; |
| 52 | 397 | } |
| 53 | 398 | .elementor a { |
| @@ -77,12 +422,18 @@ | ||
| 77 | 422 | margin: 0; |
| 78 | 423 | line-height: 1; |
| 79 | 424 | border: none; |
| 80 | 425 | } |
| 426 | +.elementor .elementor-custom-embed { | |
| 427 | + line-height: 0; | |
| 428 | +} | |
| 81 | 429 | .elementor .elementor-background-video-container, |
| 82 | 430 | .elementor .elementor-background-holder, |
| 83 | 431 | .elementor .elementor-background { |
| 84 | - inset: 0; | |
| 432 | + height: 100%; | |
| 433 | + width: 100%; | |
| 434 | + top: 0; | |
| 435 | + left: 0; | |
| 85 | 436 | position: absolute; |
| 86 | 437 | overflow: hidden; |
| 87 | 438 | z-index: 0; |
| 88 | 439 | direction: ltr; |
| @@ -93,32 +444,42 @@ | ||
| 93 | 444 | } |
| 94 | 445 | .elementor .elementor-background-video-container.elementor-loading { |
| 95 | 446 | opacity: 0; |
| 96 | 447 | } |
| 97 | -.elementor .elementor-background-video, | |
| 98 | 448 | .elementor .elementor-background-video-embed { |
| 99 | 449 | max-width: none; |
| 100 | 450 | } |
| 101 | -.elementor .elementor-background-video, | |
| 102 | -.elementor .elementor-background-video-embed, | |
| 103 | -.elementor .elementor-background-video-hosted { | |
| 451 | +.elementor .elementor-background-video-embed, .elementor .elementor-background-video-hosted { | |
| 104 | 452 | position: absolute; |
| 105 | - inset-block-start: 50%; | |
| 106 | - inset-inline-start: 50%; | |
| 453 | + top: 50%; | |
| 454 | + left: 50%; | |
| 107 | 455 | transform: translate(-50%, -50%); |
| 108 | 456 | } |
| 109 | -.elementor .elementor-background-video-hosted { | |
| 457 | +.elementor .elementor-background-video { | |
| 458 | + max-width: none; | |
| 459 | + position: absolute; | |
| 460 | + top: 50%; | |
| 461 | + left: 50%; | |
| 462 | + transform: translate(-50%, -50%); | |
| 463 | +} | |
| 464 | +.elementor .elementor-html5-video { | |
| 110 | 465 | -o-object-fit: cover; |
| 111 | 466 | object-fit: cover; |
| 112 | 467 | } |
| 113 | 468 | .elementor .elementor-background-overlay { |
| 114 | - inset: 0; | |
| 469 | + height: 100%; | |
| 470 | + width: 100%; | |
| 471 | + top: 0; | |
| 472 | + left: 0; | |
| 115 | 473 | position: absolute; |
| 116 | 474 | } |
| 117 | 475 | .elementor .elementor-background-slideshow { |
| 118 | 476 | position: absolute; |
| 119 | - inset: 0; | |
| 477 | + width: 100%; | |
| 478 | + height: 100%; | |
| 120 | 479 | z-index: 0; |
| 480 | + top: 0; | |
| 481 | + left: 0; | |
| 121 | 482 | } |
| 122 | 483 | .elementor .elementor-background-slideshow__slide__image { |
| 123 | 484 | width: 100%; |
| 124 | 485 | height: 100%; |
| @@ -150,11 +511,8 @@ | ||
| 150 | 511 | max-width: 100%; |
| 151 | 512 | } |
| 152 | 513 | } |
| 153 | 514 | |
| 154 | -.elementor-element.elementor-absolute, .elementor-element.elementor-fixed { | |
| 155 | - z-index: 1; | |
| 156 | -} | |
| 157 | 515 | .elementor-element { |
| 158 | 516 | --flex-direction: initial; |
| 159 | 517 | --flex-wrap: initial; |
| 160 | 518 | --justify-content: initial; |
| @@ -171,8 +529,11 @@ | ||
| 171 | 529 | flex-shrink: var(--flex-shrink); |
| 172 | 530 | order: var(--order); |
| 173 | 531 | align-self: var(--align-self); |
| 174 | 532 | } |
| 533 | +.elementor-element.elementor-absolute, .elementor-element.elementor-fixed { | |
| 534 | + z-index: 1; | |
| 535 | +} | |
| 175 | 536 | .elementor-element:where(.e-con-full, .elementor-widget) { |
| 176 | 537 | flex-direction: var(--flex-direction); |
| 177 | 538 | flex-wrap: var(--flex-wrap); |
| 178 | 539 | justify-content: var(--justify-content); |
| @@ -177,9 +538,9 @@ | ||
| 177 | 538 | flex-wrap: var(--flex-wrap); |
| 178 | 539 | justify-content: var(--justify-content); |
| 179 | 540 | align-items: var(--align-items); |
| 180 | 541 | align-content: var(--align-content); |
| 181 | - gap: var(--row-gap) var(--column-gap); | |
| 542 | + gap: var(--gap); | |
| 182 | 543 | } |
| 183 | 544 | |
| 184 | 545 | .elementor-invisible { |
| 185 | 546 | visibility: hidden; |
| @@ -184,13 +545,35 @@ | ||
| 184 | 545 | .elementor-invisible { |
| 185 | 546 | visibility: hidden; |
| 186 | 547 | } |
| 187 | 548 | |
| 549 | +.elementor-align-center { | |
| 550 | + text-align: center; | |
| 551 | +} | |
| 552 | +.elementor-align-center .elementor-button { | |
| 553 | + width: auto; | |
| 554 | +} | |
| 555 | +.elementor-align-right { | |
| 556 | + text-align: right; | |
| 557 | +} | |
| 558 | +.elementor-align-right .elementor-button { | |
| 559 | + width: auto; | |
| 560 | +} | |
| 561 | +.elementor-align-left { | |
| 562 | + text-align: left; | |
| 563 | +} | |
| 564 | +.elementor-align-left .elementor-button { | |
| 565 | + width: auto; | |
| 566 | +} | |
| 567 | +.elementor-align-justify .elementor-button { | |
| 568 | + width: 100%; | |
| 569 | +} | |
| 570 | + | |
| 188 | 571 | .elementor-custom-embed-play { |
| 189 | 572 | position: absolute; |
| 190 | - inset-block-start: 50%; | |
| 191 | - inset-inline-start: 50%; | |
| 192 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 573 | + top: 50%; | |
| 574 | + left: 50%; | |
| 575 | + transform: translate(-50%, -50%); | |
| 193 | 576 | } |
| 194 | 577 | .elementor-custom-embed-play i { |
| 195 | 578 | font-size: 100px; |
| 196 | 579 | color: #fff; |
| @@ -239,35 +622,25 @@ | ||
| 239 | 622 | .elementor-ken-burns--active.elementor-ken-burns--in { |
| 240 | 623 | transform: scale(1.3); |
| 241 | 624 | } |
| 242 | 625 | |
| 243 | -.elementor-align-center { | |
| 244 | - text-align: center; | |
| 245 | -} | |
| 246 | -.elementor-align-right { | |
| 247 | - text-align: right; | |
| 248 | -} | |
| 249 | -.elementor-align-left { | |
| 250 | - text-align: left; | |
| 251 | -} | |
| 252 | -.elementor-align-center .elementor-button, .elementor-align-right .elementor-button, .elementor-align-left .elementor-button { | |
| 253 | - width: auto; | |
| 254 | -} | |
| 255 | -.elementor-align-justify .elementor-button { | |
| 256 | - width: 100%; | |
| 257 | -} | |
| 258 | - | |
| 259 | -@media (min-width: -1) { | |
| 626 | +@media (min-width: -1px) { | |
| 260 | 627 | .elementor-widescreen-align-center { |
| 261 | 628 | text-align: center; |
| 262 | 629 | } |
| 630 | + .elementor-widescreen-align-center .elementor-button { | |
| 631 | + width: auto; | |
| 632 | + } | |
| 263 | 633 | .elementor-widescreen-align-right { |
| 264 | 634 | text-align: right; |
| 265 | 635 | } |
| 636 | + .elementor-widescreen-align-right .elementor-button { | |
| 637 | + width: auto; | |
| 638 | + } | |
| 266 | 639 | .elementor-widescreen-align-left { |
| 267 | 640 | text-align: left; |
| 268 | 641 | } |
| 269 | - .elementor-widescreen-align-center .elementor-button, .elementor-widescreen-align-right .elementor-button, .elementor-widescreen-align-left .elementor-button { | |
| 642 | + .elementor-widescreen-align-left .elementor-button { | |
| 270 | 643 | width: auto; |
| 271 | 644 | } |
| 272 | 645 | .elementor-widescreen-align-justify .elementor-button { |
| 273 | 646 | width: 100%; |
| @@ -272,19 +645,25 @@ | ||
| 272 | 645 | .elementor-widescreen-align-justify .elementor-button { |
| 273 | 646 | width: 100%; |
| 274 | 647 | } |
| 275 | 648 | } |
| 276 | -@media (max-width: -1) { | |
| 649 | +@media (max-width: -1px) { | |
| 277 | 650 | .elementor-laptop-align-center { |
| 278 | 651 | text-align: center; |
| 279 | 652 | } |
| 653 | + .elementor-laptop-align-center .elementor-button { | |
| 654 | + width: auto; | |
| 655 | + } | |
| 280 | 656 | .elementor-laptop-align-right { |
| 281 | 657 | text-align: right; |
| 282 | 658 | } |
| 659 | + .elementor-laptop-align-right .elementor-button { | |
| 660 | + width: auto; | |
| 661 | + } | |
| 283 | 662 | .elementor-laptop-align-left { |
| 284 | 663 | text-align: left; |
| 285 | 664 | } |
| 286 | - .elementor-laptop-align-center .elementor-button, .elementor-laptop-align-right .elementor-button, .elementor-laptop-align-left .elementor-button { | |
| 665 | + .elementor-laptop-align-left .elementor-button { | |
| 287 | 666 | width: auto; |
| 288 | 667 | } |
| 289 | 668 | .elementor-laptop-align-justify .elementor-button { |
| 290 | 669 | width: 100%; |
| @@ -289,19 +668,25 @@ | ||
| 289 | 668 | .elementor-laptop-align-justify .elementor-button { |
| 290 | 669 | width: 100%; |
| 291 | 670 | } |
| 292 | 671 | } |
| 293 | -@media (max-width: -1) { | |
| 672 | +@media (max-width: -1px) { | |
| 294 | 673 | .elementor-tablet_extra-align-center { |
| 295 | 674 | text-align: center; |
| 296 | 675 | } |
| 676 | + .elementor-tablet_extra-align-center .elementor-button { | |
| 677 | + width: auto; | |
| 678 | + } | |
| 297 | 679 | .elementor-tablet_extra-align-right { |
| 298 | 680 | text-align: right; |
| 299 | 681 | } |
| 682 | + .elementor-tablet_extra-align-right .elementor-button { | |
| 683 | + width: auto; | |
| 684 | + } | |
| 300 | 685 | .elementor-tablet_extra-align-left { |
| 301 | 686 | text-align: left; |
| 302 | 687 | } |
| 303 | - .elementor-tablet_extra-align-center .elementor-button, .elementor-tablet_extra-align-right .elementor-button, .elementor-tablet_extra-align-left .elementor-button { | |
| 688 | + .elementor-tablet_extra-align-left .elementor-button { | |
| 304 | 689 | width: auto; |
| 305 | 690 | } |
| 306 | 691 | .elementor-tablet_extra-align-justify .elementor-button { |
| 307 | 692 | width: 100%; |
| @@ -310,15 +695,21 @@ | ||
| 310 | 695 | @media (max-width: 1024px) { |
| 311 | 696 | .elementor-tablet-align-center { |
| 312 | 697 | text-align: center; |
| 313 | 698 | } |
| 699 | + .elementor-tablet-align-center .elementor-button { | |
| 700 | + width: auto; | |
| 701 | + } | |
| 314 | 702 | .elementor-tablet-align-right { |
| 315 | 703 | text-align: right; |
| 316 | 704 | } |
| 705 | + .elementor-tablet-align-right .elementor-button { | |
| 706 | + width: auto; | |
| 707 | + } | |
| 317 | 708 | .elementor-tablet-align-left { |
| 318 | 709 | text-align: left; |
| 319 | 710 | } |
| 320 | - .elementor-tablet-align-center .elementor-button, .elementor-tablet-align-right .elementor-button, .elementor-tablet-align-left .elementor-button { | |
| 711 | + .elementor-tablet-align-left .elementor-button { | |
| 321 | 712 | width: auto; |
| 322 | 713 | } |
| 323 | 714 | .elementor-tablet-align-justify .elementor-button { |
| 324 | 715 | width: 100%; |
| @@ -323,19 +714,25 @@ | ||
| 323 | 714 | .elementor-tablet-align-justify .elementor-button { |
| 324 | 715 | width: 100%; |
| 325 | 716 | } |
| 326 | 717 | } |
| 327 | -@media (max-width: -1) { | |
| 718 | +@media (max-width: -1px) { | |
| 328 | 719 | .elementor-mobile_extra-align-center { |
| 329 | 720 | text-align: center; |
| 330 | 721 | } |
| 722 | + .elementor-mobile_extra-align-center .elementor-button { | |
| 723 | + width: auto; | |
| 724 | + } | |
| 331 | 725 | .elementor-mobile_extra-align-right { |
| 332 | 726 | text-align: right; |
| 333 | 727 | } |
| 728 | + .elementor-mobile_extra-align-right .elementor-button { | |
| 729 | + width: auto; | |
| 730 | + } | |
| 334 | 731 | .elementor-mobile_extra-align-left { |
| 335 | 732 | text-align: left; |
| 336 | 733 | } |
| 337 | - .elementor-mobile_extra-align-center .elementor-button, .elementor-mobile_extra-align-right .elementor-button, .elementor-mobile_extra-align-left .elementor-button { | |
| 734 | + .elementor-mobile_extra-align-left .elementor-button { | |
| 338 | 735 | width: auto; |
| 339 | 736 | } |
| 340 | 737 | .elementor-mobile_extra-align-justify .elementor-button { |
| 341 | 738 | width: 100%; |
| @@ -344,15 +741,21 @@ | ||
| 344 | 741 | @media (max-width: 767px) { |
| 345 | 742 | .elementor-mobile-align-center { |
| 346 | 743 | text-align: center; |
| 347 | 744 | } |
| 745 | + .elementor-mobile-align-center .elementor-button { | |
| 746 | + width: auto; | |
| 747 | + } | |
| 348 | 748 | .elementor-mobile-align-right { |
| 349 | 749 | text-align: right; |
| 350 | 750 | } |
| 751 | + .elementor-mobile-align-right .elementor-button { | |
| 752 | + width: auto; | |
| 753 | + } | |
| 351 | 754 | .elementor-mobile-align-left { |
| 352 | 755 | text-align: left; |
| 353 | 756 | } |
| 354 | - .elementor-mobile-align-center .elementor-button, .elementor-mobile-align-right .elementor-button, .elementor-mobile-align-left .elementor-button { | |
| 757 | + .elementor-mobile-align-left .elementor-button { | |
| 355 | 758 | width: auto; |
| 356 | 759 | } |
| 357 | 760 | .elementor-mobile-align-justify .elementor-button { |
| 358 | 761 | width: 100%; |
| @@ -382,9 +785,10 @@ | ||
| 382 | 785 | position: relative; |
| 383 | 786 | } |
| 384 | 787 | .elementor-section .elementor-container { |
| 385 | 788 | display: flex; |
| 386 | - margin-inline: auto; | |
| 789 | + margin-right: auto; | |
| 790 | + margin-left: auto; | |
| 387 | 791 | position: relative; |
| 388 | 792 | } |
| 389 | 793 | @media (max-width: 1024px) { |
| 390 | 794 | .elementor-section .elementor-container { |
| @@ -425,8 +829,18 @@ | ||
| 425 | 829 | .elementor-bc-flex-widget .elementor-section-content-bottom > .elementor-container > .elementor-column > .elementor-widget-wrap { |
| 426 | 830 | align-items: flex-end; |
| 427 | 831 | } |
| 428 | 832 | |
| 833 | +.elementor-row { | |
| 834 | + width: 100%; | |
| 835 | + display: flex; | |
| 836 | +} | |
| 837 | +@media (max-width: 1024px) { | |
| 838 | + .elementor-row { | |
| 839 | + flex-wrap: wrap; | |
| 840 | + } | |
| 841 | +} | |
| 842 | + | |
| 429 | 843 | .elementor-widget-wrap { |
| 430 | 844 | position: relative; |
| 431 | 845 | width: 100%; |
| 432 | 846 | flex-wrap: wrap; |
| @@ -445,12 +859,12 @@ | ||
| 445 | 859 | .elementor-widget { |
| 446 | 860 | position: relative; |
| 447 | 861 | } |
| 448 | 862 | .elementor-widget:not(:last-child) { |
| 449 | - margin-block-end: var(--kit-widget-spacing, 20px); | |
| 863 | + margin-bottom: 20px; | |
| 450 | 864 | } |
| 451 | 865 | .elementor-widget:not(:last-child).elementor-widget__width-auto, .elementor-widget:not(:last-child).elementor-widget__width-initial, .elementor-widget:not(:last-child).elementor-absolute { |
| 452 | - margin-block-end: 0; | |
| 866 | + margin-bottom: 0; | |
| 453 | 867 | } |
| 454 | 868 | |
| 455 | 869 | .elementor-column { |
| 456 | 870 | position: relative; |
| @@ -457,8 +871,14 @@ | ||
| 457 | 871 | min-height: 1px; |
| 458 | 872 | display: flex; |
| 459 | 873 | } |
| 460 | 874 | |
| 875 | +.elementor-column-wrap { | |
| 876 | + width: 100%; | |
| 877 | + position: relative; | |
| 878 | + display: flex; | |
| 879 | +} | |
| 880 | + | |
| 461 | 881 | .elementor-column-gap-narrow > .elementor-column > .elementor-element-populated { |
| 462 | 882 | padding: 5px; |
| 463 | 883 | } |
| 464 | 884 | .elementor-column-gap-default > .elementor-column > .elementor-element-populated { |
| @@ -714,9 +1134,9 @@ | ||
| 714 | 1134 | width: 100%; |
| 715 | 1135 | } |
| 716 | 1136 | } |
| 717 | 1137 | |
| 718 | -@media (min-width: -1) { | |
| 1138 | +@media (min-width: -1px) { | |
| 719 | 1139 | .elementor-reverse-widescreen > .elementor-container > :nth-child(1) { |
| 720 | 1140 | order: 10; |
| 721 | 1141 | } |
| 722 | 1142 | .elementor-reverse-widescreen > .elementor-container > :nth-child(2) { |
| @@ -746,9 +1166,9 @@ | ||
| 746 | 1166 | .elementor-reverse-widescreen > .elementor-container > :nth-child(10) { |
| 747 | 1167 | order: 1; |
| 748 | 1168 | } |
| 749 | 1169 | } |
| 750 | -@media (min-width: 1025px) and (max-width: -1) { | |
| 1170 | +@media (min-width: 1025px) and (max-width: -1px) { | |
| 751 | 1171 | .elementor-reverse-laptop > .elementor-container > :nth-child(1) { |
| 752 | 1172 | order: 10; |
| 753 | 1173 | } |
| 754 | 1174 | .elementor-reverse-laptop > .elementor-container > :nth-child(2) { |
| @@ -778,9 +1198,9 @@ | ||
| 778 | 1198 | .elementor-reverse-laptop > .elementor-container > :nth-child(10) { |
| 779 | 1199 | order: 1; |
| 780 | 1200 | } |
| 781 | 1201 | } |
| 782 | -@media (min-width: -1) and (max-width: -1) { | |
| 1202 | +@media (min-width: -1px) and (max-width: -1px) { | |
| 783 | 1203 | .elementor-reverse-laptop > .elementor-container > :nth-child(1) { |
| 784 | 1204 | order: 10; |
| 785 | 1205 | } |
| 786 | 1206 | .elementor-reverse-laptop > .elementor-container > :nth-child(2) { |
| @@ -810,9 +1230,9 @@ | ||
| 810 | 1230 | .elementor-reverse-laptop > .elementor-container > :nth-child(10) { |
| 811 | 1231 | order: 1; |
| 812 | 1232 | } |
| 813 | 1233 | } |
| 814 | -@media (min-width: 1025px) and (max-width: -1) { | |
| 1234 | +@media (min-width: 1025px) and (max-width: -1px) { | |
| 815 | 1235 | .elementor-reverse-laptop > .elementor-container > :nth-child(1) { |
| 816 | 1236 | order: initial; |
| 817 | 1237 | } |
| 818 | 1238 | .elementor-reverse-laptop > .elementor-container > :nth-child(2) { |
| @@ -904,9 +1324,9 @@ | ||
| 904 | 1324 | .elementor-reverse-tablet > .elementor-container > :nth-child(10) { |
| 905 | 1325 | order: 1; |
| 906 | 1326 | } |
| 907 | 1327 | } |
| 908 | -@media (min-width: -1) and (max-width: 1024px) { | |
| 1328 | +@media (min-width: -1px) and (max-width: 1024px) { | |
| 909 | 1329 | .elementor-reverse-tablet > .elementor-container > :nth-child(1) { |
| 910 | 1330 | order: 10; |
| 911 | 1331 | } |
| 912 | 1332 | .elementor-reverse-tablet > .elementor-container > :nth-child(2) { |
| @@ -936,9 +1356,9 @@ | ||
| 936 | 1356 | .elementor-reverse-tablet > .elementor-container > :nth-child(10) { |
| 937 | 1357 | order: 1; |
| 938 | 1358 | } |
| 939 | 1359 | } |
| 940 | -@media (min-width: 768px) and (max-width: -1) { | |
| 1360 | +@media (min-width: 768px) and (max-width: -1px) { | |
| 941 | 1361 | .elementor-reverse-tablet > .elementor-container > :nth-child(1) { |
| 942 | 1362 | order: initial; |
| 943 | 1363 | } |
| 944 | 1364 | .elementor-reverse-tablet > .elementor-container > :nth-child(2) { |
| @@ -1033,8 +1453,16 @@ | ||
| 1033 | 1453 | .elementor-column { |
| 1034 | 1454 | width: 100%; |
| 1035 | 1455 | } |
| 1036 | 1456 | } |
| 1457 | +ul.elementor-icon-list-items.elementor-inline-items { | |
| 1458 | + display: flex; | |
| 1459 | + flex-wrap: wrap; | |
| 1460 | +} | |
| 1461 | +ul.elementor-icon-list-items.elementor-inline-items .elementor-inline-item { | |
| 1462 | + word-break: break-word; | |
| 1463 | +} | |
| 1464 | + | |
| 1037 | 1465 | .elementor-grid { |
| 1038 | 1466 | display: grid; |
| 1039 | 1467 | grid-column-gap: var(--grid-column-gap); |
| 1040 | 1468 | grid-row-gap: var(--grid-row-gap); |
| @@ -1045,13 +1473,13 @@ | ||
| 1045 | 1473 | .elementor-grid-0 .elementor-grid { |
| 1046 | 1474 | display: inline-block; |
| 1047 | 1475 | width: 100%; |
| 1048 | 1476 | word-spacing: var(--grid-column-gap); |
| 1049 | - margin-block-end: calc(-1 * var(--grid-row-gap)); | |
| 1477 | + margin-bottom: calc(-1 * var(--grid-row-gap)); | |
| 1050 | 1478 | } |
| 1051 | 1479 | .elementor-grid-0 .elementor-grid .elementor-grid-item { |
| 1052 | 1480 | display: inline-block; |
| 1053 | - margin-block-end: var(--grid-row-gap); | |
| 1481 | + margin-bottom: var(--grid-row-gap); | |
| 1054 | 1482 | word-break: break-word; |
| 1055 | 1483 | } |
| 1056 | 1484 | .elementor-grid-1 .elementor-grid { |
| 1057 | 1485 | grid-template-columns: repeat(1, 1fr); |
| @@ -1088,18 +1516,18 @@ | ||
| 1088 | 1516 | } |
| 1089 | 1517 | .elementor-grid-12 .elementor-grid { |
| 1090 | 1518 | grid-template-columns: repeat(12, 1fr); |
| 1091 | 1519 | } |
| 1092 | -@media (min-width: -1) { | |
| 1520 | +@media (min-width: -1px) { | |
| 1093 | 1521 | .elementor-grid-widescreen-0 .elementor-grid { |
| 1094 | 1522 | display: inline-block; |
| 1095 | 1523 | width: 100%; |
| 1096 | 1524 | word-spacing: var(--grid-column-gap); |
| 1097 | - margin-block-end: calc(-1 * var(--grid-row-gap)); | |
| 1525 | + margin-bottom: calc(-1 * var(--grid-row-gap)); | |
| 1098 | 1526 | } |
| 1099 | 1527 | .elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item { |
| 1100 | 1528 | display: inline-block; |
| 1101 | - margin-block-end: var(--grid-row-gap); | |
| 1529 | + margin-bottom: var(--grid-row-gap); | |
| 1102 | 1530 | word-break: break-word; |
| 1103 | 1531 | } |
| 1104 | 1532 | .elementor-grid-widescreen-1 .elementor-grid { |
| 1105 | 1533 | grid-template-columns: repeat(1, 1fr); |
| @@ -1137,18 +1565,18 @@ | ||
| 1137 | 1565 | .elementor-grid-widescreen-12 .elementor-grid { |
| 1138 | 1566 | grid-template-columns: repeat(12, 1fr); |
| 1139 | 1567 | } |
| 1140 | 1568 | } |
| 1141 | -@media (max-width: -1) { | |
| 1569 | +@media (max-width: -1px) { | |
| 1142 | 1570 | .elementor-grid-laptop-0 .elementor-grid { |
| 1143 | 1571 | display: inline-block; |
| 1144 | 1572 | width: 100%; |
| 1145 | 1573 | word-spacing: var(--grid-column-gap); |
| 1146 | - margin-block-end: calc(-1 * var(--grid-row-gap)); | |
| 1574 | + margin-bottom: calc(-1 * var(--grid-row-gap)); | |
| 1147 | 1575 | } |
| 1148 | 1576 | .elementor-grid-laptop-0 .elementor-grid .elementor-grid-item { |
| 1149 | 1577 | display: inline-block; |
| 1150 | - margin-block-end: var(--grid-row-gap); | |
| 1578 | + margin-bottom: var(--grid-row-gap); | |
| 1151 | 1579 | word-break: break-word; |
| 1152 | 1580 | } |
| 1153 | 1581 | .elementor-grid-laptop-1 .elementor-grid { |
| 1154 | 1582 | grid-template-columns: repeat(1, 1fr); |
| @@ -1186,18 +1614,18 @@ | ||
| 1186 | 1614 | .elementor-grid-laptop-12 .elementor-grid { |
| 1187 | 1615 | grid-template-columns: repeat(12, 1fr); |
| 1188 | 1616 | } |
| 1189 | 1617 | } |
| 1190 | -@media (max-width: -1) { | |
| 1618 | +@media (max-width: -1px) { | |
| 1191 | 1619 | .elementor-grid-tablet_extra-0 .elementor-grid { |
| 1192 | 1620 | display: inline-block; |
| 1193 | 1621 | width: 100%; |
| 1194 | 1622 | word-spacing: var(--grid-column-gap); |
| 1195 | - margin-block-end: calc(-1 * var(--grid-row-gap)); | |
| 1623 | + margin-bottom: calc(-1 * var(--grid-row-gap)); | |
| 1196 | 1624 | } |
| 1197 | 1625 | .elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item { |
| 1198 | 1626 | display: inline-block; |
| 1199 | - margin-block-end: var(--grid-row-gap); | |
| 1627 | + margin-bottom: var(--grid-row-gap); | |
| 1200 | 1628 | word-break: break-word; |
| 1201 | 1629 | } |
| 1202 | 1630 | .elementor-grid-tablet_extra-1 .elementor-grid { |
| 1203 | 1631 | grid-template-columns: repeat(1, 1fr); |
| @@ -1240,13 +1668,13 @@ | ||
| 1240 | 1668 | .elementor-grid-tablet-0 .elementor-grid { |
| 1241 | 1669 | display: inline-block; |
| 1242 | 1670 | width: 100%; |
| 1243 | 1671 | word-spacing: var(--grid-column-gap); |
| 1244 | - margin-block-end: calc(-1 * var(--grid-row-gap)); | |
| 1672 | + margin-bottom: calc(-1 * var(--grid-row-gap)); | |
| 1245 | 1673 | } |
| 1246 | 1674 | .elementor-grid-tablet-0 .elementor-grid .elementor-grid-item { |
| 1247 | 1675 | display: inline-block; |
| 1248 | - margin-block-end: var(--grid-row-gap); | |
| 1676 | + margin-bottom: var(--grid-row-gap); | |
| 1249 | 1677 | word-break: break-word; |
| 1250 | 1678 | } |
| 1251 | 1679 | .elementor-grid-tablet-1 .elementor-grid { |
| 1252 | 1680 | grid-template-columns: repeat(1, 1fr); |
| @@ -1284,18 +1712,18 @@ | ||
| 1284 | 1712 | .elementor-grid-tablet-12 .elementor-grid { |
| 1285 | 1713 | grid-template-columns: repeat(12, 1fr); |
| 1286 | 1714 | } |
| 1287 | 1715 | } |
| 1288 | -@media (max-width: -1) { | |
| 1716 | +@media (max-width: -1px) { | |
| 1289 | 1717 | .elementor-grid-mobile_extra-0 .elementor-grid { |
| 1290 | 1718 | display: inline-block; |
| 1291 | 1719 | width: 100%; |
| 1292 | 1720 | word-spacing: var(--grid-column-gap); |
| 1293 | - margin-block-end: calc(-1 * var(--grid-row-gap)); | |
| 1721 | + margin-bottom: calc(-1 * var(--grid-row-gap)); | |
| 1294 | 1722 | } |
| 1295 | 1723 | .elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item { |
| 1296 | 1724 | display: inline-block; |
| 1297 | - margin-block-end: var(--grid-row-gap); | |
| 1725 | + margin-bottom: var(--grid-row-gap); | |
| 1298 | 1726 | word-break: break-word; |
| 1299 | 1727 | } |
| 1300 | 1728 | .elementor-grid-mobile_extra-1 .elementor-grid { |
| 1301 | 1729 | grid-template-columns: repeat(1, 1fr); |
| @@ -1338,13 +1766,13 @@ | ||
| 1338 | 1766 | .elementor-grid-mobile-0 .elementor-grid { |
| 1339 | 1767 | display: inline-block; |
| 1340 | 1768 | width: 100%; |
| 1341 | 1769 | word-spacing: var(--grid-column-gap); |
| 1342 | - margin-block-end: calc(-1 * var(--grid-row-gap)); | |
| 1770 | + margin-bottom: calc(-1 * var(--grid-row-gap)); | |
| 1343 | 1771 | } |
| 1344 | 1772 | .elementor-grid-mobile-0 .elementor-grid .elementor-grid-item { |
| 1345 | 1773 | display: inline-block; |
| 1346 | - margin-block-end: var(--grid-row-gap); | |
| 1774 | + margin-bottom: var(--grid-row-gap); | |
| 1347 | 1775 | word-break: break-word; |
| 1348 | 1776 | } |
| 1349 | 1777 | .elementor-grid-mobile-1 .elementor-grid { |
| 1350 | 1778 | grid-template-columns: repeat(1, 1fr); |
| @@ -1388,19 +1816,19 @@ | ||
| 1388 | 1816 | #elementor-device-mode:after { |
| 1389 | 1817 | content: "desktop"; |
| 1390 | 1818 | } |
| 1391 | 1819 | } |
| 1392 | -@media (min-width: -1) { | |
| 1820 | +@media (min-width: -1px) { | |
| 1393 | 1821 | #elementor-device-mode:after { |
| 1394 | 1822 | content: "widescreen"; |
| 1395 | 1823 | } |
| 1396 | 1824 | } |
| 1397 | -@media (max-width: -1) { | |
| 1825 | +@media (max-width: -1px) { | |
| 1398 | 1826 | #elementor-device-mode:after { |
| 1399 | 1827 | content: "laptop"; |
| 1400 | 1828 | } |
| 1401 | 1829 | } |
| 1402 | -@media (max-width: -1) { | |
| 1830 | +@media (max-width: -1px) { | |
| 1403 | 1831 | #elementor-device-mode:after { |
| 1404 | 1832 | content: "tablet_extra"; |
| 1405 | 1833 | } |
| 1406 | 1834 | } |
| @@ -1408,9 +1836,9 @@ | ||
| 1408 | 1836 | #elementor-device-mode:after { |
| 1409 | 1837 | content: "tablet"; |
| 1410 | 1838 | } |
| 1411 | 1839 | } |
| 1412 | -@media (max-width: -1) { | |
| 1840 | +@media (max-width: -1px) { | |
| 1413 | 1841 | #elementor-device-mode:after { |
| 1414 | 1842 | content: "mobile_extra"; |
| 1415 | 1843 | } |
| 1416 | 1844 | } |
| @@ -1419,221 +1847,115 @@ | ||
| 1419 | 1847 | content: "mobile"; |
| 1420 | 1848 | } |
| 1421 | 1849 | } |
| 1422 | 1850 | |
| 1423 | -@media (prefers-reduced-motion: no-preference) { | |
| 1424 | - html { | |
| 1425 | - scroll-behavior: smooth; | |
| 1426 | - } | |
| 1427 | -} | |
| 1428 | 1851 | .e-con { |
| 1429 | 1852 | --border-radius: 0; |
| 1430 | - --border-top-width: 0px; | |
| 1431 | - --border-right-width: 0px; | |
| 1432 | - --border-bottom-width: 0px; | |
| 1433 | - --border-left-width: 0px; | |
| 1434 | - --border-style: initial; | |
| 1435 | - --border-color: initial; | |
| 1436 | - --container-widget-width: 100%; | |
| 1437 | - --container-widget-height: initial; | |
| 1438 | - --container-widget-flex-grow: 0; | |
| 1439 | - --container-widget-align-self: initial; | |
| 1440 | - --content-width: min(100%, var(--container-max-width, 1140px)); | |
| 1853 | + --display: flex; | |
| 1854 | + --flex-direction: column; | |
| 1855 | + --flex-basis: auto; | |
| 1856 | + --flex-grow: 0; | |
| 1857 | + --flex-shrink: 1; | |
| 1858 | + --content-width: Min( 100%, var( --container-max-width, 1140px ) ); | |
| 1441 | 1859 | --width: 100%; |
| 1442 | 1860 | --min-height: initial; |
| 1443 | 1861 | --height: auto; |
| 1444 | 1862 | --text-align: initial; |
| 1445 | - --margin-top: 0px; | |
| 1446 | - --margin-right: 0px; | |
| 1447 | - --margin-bottom: 0px; | |
| 1448 | - --margin-left: 0px; | |
| 1449 | - --padding-top: var(--container-default-padding-top, 10px); | |
| 1450 | - --padding-right: var(--container-default-padding-right, 10px); | |
| 1451 | - --padding-bottom: var(--container-default-padding-bottom, 10px); | |
| 1452 | - --padding-left: var(--container-default-padding-left, 10px); | |
| 1863 | + --margin-top: 0; | |
| 1864 | + --margin-right: 0; | |
| 1865 | + --margin-bottom: 0; | |
| 1866 | + --margin-left: 0; | |
| 1867 | + --padding-top: var( --container-default-padding-top, 10px ); | |
| 1868 | + --padding-right: var( --container-default-padding-right, 10px ); | |
| 1869 | + --padding-bottom: var( --container-default-padding-bottom, 10px ); | |
| 1870 | + --padding-left: var( --container-default-padding-left, 10px ); | |
| 1453 | 1871 | --position: relative; |
| 1454 | 1872 | --z-index: revert; |
| 1455 | 1873 | --overflow: visible; |
| 1456 | - --gap: var(--widgets-spacing, 20px); | |
| 1457 | - --row-gap: var(--widgets-spacing-row, 20px); | |
| 1458 | - --column-gap: var(--widgets-spacing-column, 20px); | |
| 1874 | + --transition: 0; | |
| 1875 | + --gap: var( --widgets-spacing, 20px ); | |
| 1459 | 1876 | --overlay-mix-blend-mode: initial; |
| 1460 | 1877 | --overlay-opacity: 1; |
| 1461 | 1878 | --overlay-transition: 0.3s; |
| 1462 | - --e-con-grid-template-columns: repeat(3, 1fr); | |
| 1463 | - --e-con-grid-template-rows: repeat(2, 1fr); | |
| 1464 | 1879 | position: var(--position); |
| 1880 | + flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis); | |
| 1465 | 1881 | width: var(--width); |
| 1466 | 1882 | min-width: 0; |
| 1467 | 1883 | min-height: var(--min-height); |
| 1468 | 1884 | height: var(--height); |
| 1469 | 1885 | border-radius: var(--border-radius); |
| 1886 | + margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left); | |
| 1887 | + padding-left: var(--padding-left); | |
| 1888 | + padding-right: var(--padding-right); | |
| 1470 | 1889 | z-index: var(--z-index); |
| 1471 | 1890 | overflow: var(--overflow); |
| 1472 | - --flex-wrap-mobile: wrap; | |
| 1891 | + transition: var(--transition); | |
| 1473 | 1892 | } |
| 1474 | -.e-con:where(:not(.e-div-block-base)) { | |
| 1475 | - transition: background var(--background-transition, 0.3s), border var(--border-transition, 0.3s), box-shadow var(--border-transition, 0.3s), transform var(--e-con-transform-transition-duration, 0.4s); | |
| 1476 | -} | |
| 1477 | -.e-con { | |
| 1478 | - --margin-block-start: var(--margin-top); | |
| 1479 | - --margin-block-end: var(--margin-bottom); | |
| 1480 | - --margin-inline-start: var(--margin-left); | |
| 1481 | - --margin-inline-end: var(--margin-right); | |
| 1482 | - --padding-inline-start: var(--padding-left); | |
| 1483 | - --padding-inline-end: var(--padding-right); | |
| 1484 | - --padding-block-start: var(--padding-top); | |
| 1485 | - --padding-block-end: var(--padding-bottom); | |
| 1486 | - --border-block-start-width: var(--border-top-width); | |
| 1487 | - --border-block-end-width: var(--border-bottom-width); | |
| 1488 | - --border-inline-start-width: var(--border-left-width); | |
| 1489 | - --border-inline-end-width: var(--border-right-width); | |
| 1490 | -} | |
| 1491 | -body.rtl .e-con { | |
| 1492 | - --padding-inline-start: var(--padding-right); | |
| 1493 | - --padding-inline-end: var(--padding-left); | |
| 1494 | - --margin-inline-start: var(--margin-right); | |
| 1495 | - --margin-inline-end: var(--margin-left); | |
| 1496 | - --border-inline-start-width: var(--border-right-width); | |
| 1497 | - --border-inline-end-width: var(--border-left-width); | |
| 1498 | -} | |
| 1499 | -.e-con { | |
| 1500 | - margin-block-start: var(--margin-block-start); | |
| 1501 | - margin-inline-end: var(--margin-inline-end); | |
| 1502 | - margin-block-end: var(--margin-block-end); | |
| 1503 | - margin-inline-start: var(--margin-inline-start); | |
| 1504 | - padding-inline-start: var(--padding-inline-start); | |
| 1505 | - padding-inline-end: var(--padding-inline-end); | |
| 1506 | -} | |
| 1507 | -.e-con.e-flex { | |
| 1508 | - --flex-direction: column; | |
| 1509 | - --flex-basis: auto; | |
| 1510 | - --flex-grow: 0; | |
| 1511 | - --flex-shrink: 1; | |
| 1512 | - flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis); | |
| 1513 | -} | |
| 1514 | 1893 | .e-con-full, .e-con > .e-con-inner { |
| 1894 | + flex-direction: var(--flex-direction); | |
| 1515 | 1895 | text-align: var(--text-align); |
| 1516 | - padding-block-start: var(--padding-block-start); | |
| 1517 | - padding-block-end: var(--padding-block-end); | |
| 1896 | + padding-top: var(--padding-top); | |
| 1897 | + padding-bottom: var(--padding-bottom); | |
| 1518 | 1898 | } |
| 1519 | -.e-con-full.e-flex, .e-con.e-flex > .e-con-inner { | |
| 1520 | - flex-direction: var(--flex-direction); | |
| 1521 | -} | |
| 1522 | 1899 | .e-con, .e-con > .e-con-inner { |
| 1523 | 1900 | display: var(--display); |
| 1524 | 1901 | } |
| 1525 | -.e-con.e-grid { | |
| 1526 | - --grid-justify-content: start; | |
| 1527 | - --grid-align-content: start; | |
| 1528 | - --grid-auto-flow: row; | |
| 1529 | -} | |
| 1530 | -.e-con.e-grid, .e-con.e-grid > .e-con-inner { | |
| 1531 | - grid-template-columns: var(--e-con-grid-template-columns); | |
| 1532 | - grid-template-rows: var(--e-con-grid-template-rows); | |
| 1533 | - justify-content: var(--grid-justify-content); | |
| 1534 | - align-content: var(--grid-align-content); | |
| 1535 | - grid-auto-flow: var(--grid-auto-flow); | |
| 1536 | - justify-items: var(--justify-items); | |
| 1537 | - align-items: var(--align-items); | |
| 1538 | -} | |
| 1539 | -.e-con-boxed.e-flex { | |
| 1902 | +.e-con-boxed { | |
| 1540 | 1903 | flex-direction: column; |
| 1904 | + text-align: initial; | |
| 1541 | 1905 | flex-wrap: initial; |
| 1542 | 1906 | justify-content: initial; |
| 1543 | 1907 | align-items: initial; |
| 1544 | 1908 | align-content: initial; |
| 1545 | -} | |
| 1546 | -.e-con-boxed.e-grid { | |
| 1547 | - justify-items: initial; | |
| 1548 | - grid-template-columns: 1fr; | |
| 1549 | - grid-template-rows: 1fr; | |
| 1550 | -} | |
| 1551 | -.e-con-boxed { | |
| 1552 | - text-align: initial; | |
| 1553 | 1909 | gap: initial; |
| 1554 | 1910 | } |
| 1555 | -.e-con.e-flex > .e-con-inner { | |
| 1911 | +.e-con > .e-con-inner { | |
| 1556 | 1912 | flex-wrap: var(--flex-wrap); |
| 1557 | 1913 | justify-content: var(--justify-content); |
| 1558 | 1914 | align-items: var(--align-items); |
| 1559 | 1915 | align-content: var(--align-content); |
| 1916 | + gap: var(--gap); | |
| 1917 | + width: 100%; | |
| 1918 | + max-width: var(--content-width); | |
| 1919 | + margin: 0 auto; | |
| 1920 | + padding-inline: 0; | |
| 1921 | + height: 100%; | |
| 1560 | 1922 | flex-basis: initial; |
| 1561 | 1923 | flex-grow: 1; |
| 1562 | 1924 | flex-shrink: initial; |
| 1563 | 1925 | align-self: initial; |
| 1564 | 1926 | } |
| 1565 | -.e-con.e-grid > .e-con-inner { | |
| 1566 | - justify-items: var(--justify-items); | |
| 1567 | - align-items: var(--align-items); | |
| 1568 | -} | |
| 1569 | -.e-con > .e-con-inner { | |
| 1570 | - gap: var(--row-gap) var(--column-gap); | |
| 1571 | - width: 100%; | |
| 1572 | - max-width: var(--content-width); | |
| 1573 | - margin: 0 auto; | |
| 1574 | - padding-inline-start: 0; | |
| 1575 | - padding-inline-end: 0; | |
| 1576 | - height: 100%; | |
| 1577 | -} | |
| 1578 | 1927 | :is(.elementor-section-wrap, [data-elementor-id]) > .e-con { |
| 1928 | + --margin-right: auto; | |
| 1579 | 1929 | --margin-left: auto; |
| 1580 | - --margin-right: auto; | |
| 1581 | 1930 | max-width: min(100%, var(--width)); |
| 1582 | 1931 | } |
| 1583 | -:is([data-widget_type="e-component.default"], [data-widget_type="e-component.default"] > .elementor-section-wrap) > .e-con { | |
| 1584 | - --margin-right: 0px; | |
| 1585 | - --margin-left: 0px; | |
| 1586 | -} | |
| 1587 | 1932 | .e-con .elementor-widget.elementor-widget { |
| 1588 | - margin-block-end: 0; | |
| 1933 | + margin-bottom: 0; | |
| 1589 | 1934 | } |
| 1590 | -.e-con::before, :is(.e-con, .e-con > .e-con-inner) > .elementor-background-video-container::before, | |
| 1591 | -.e-con > .elementor-motion-effects-container > .elementor-motion-effects-layer::before, | |
| 1592 | -.e-con > .elementor-background-slideshow::before { | |
| 1935 | +.e-con::before, | |
| 1936 | +.e-con > .elementor-background-video-container::before, | |
| 1937 | +.e-con > .e-con-inner > .elementor-background-video-container::before, | |
| 1938 | +.e-con > .elementor-background-slideshow:before, | |
| 1939 | +.e-con > .e-con-inner > .elementor-background-slideshow:before { | |
| 1593 | 1940 | content: var(--background-overlay); |
| 1594 | 1941 | display: block; |
| 1595 | 1942 | position: absolute; |
| 1943 | + width: 100%; | |
| 1944 | + height: 100%; | |
| 1945 | + left: 0; | |
| 1946 | + top: 0; | |
| 1596 | 1947 | mix-blend-mode: var(--overlay-mix-blend-mode); |
| 1597 | 1948 | opacity: var(--overlay-opacity); |
| 1598 | - transition: var(--overlay-transition, 0.3s); | |
| 1949 | + transition: var(--overlay-transition); | |
| 1599 | 1950 | border-radius: var(--border-radius); |
| 1600 | - border-style: var(--border-style); | |
| 1601 | - border-color: var(--border-color); | |
| 1602 | - border-block-start-width: var(--border-block-start-width); | |
| 1603 | - border-inline-end-width: var(--border-inline-end-width); | |
| 1604 | - border-block-end-width: var(--border-block-end-width); | |
| 1605 | - border-inline-start-width: var(--border-inline-start-width); | |
| 1606 | - top: calc(0px - var(--border-top-width)); | |
| 1607 | - left: calc(0px - var(--border-left-width)); | |
| 1608 | - width: max(100% + var(--border-left-width) + var(--border-right-width), 100%); | |
| 1609 | - height: max(100% + var(--border-top-width) + var(--border-bottom-width), 100%); | |
| 1610 | 1951 | } |
| 1611 | -.e-con::before { | |
| 1612 | - transition: background var(--overlay-transition, 0.3s), border-radius var(--border-transition, 0.3s), opacity var(--overlay-transition, 0.3s); | |
| 1613 | -} | |
| 1614 | -.e-con > .elementor-background-slideshow, :is(.e-con, .e-con > .e-con-inner) > .elementor-background-video-container { | |
| 1615 | - border-radius: var(--border-radius); | |
| 1616 | - border-style: var(--border-style); | |
| 1617 | - border-color: var(--border-color); | |
| 1618 | - border-block-start-width: var(--border-block-start-width); | |
| 1619 | - border-inline-end-width: var(--border-inline-end-width); | |
| 1620 | - border-block-end-width: var(--border-block-end-width); | |
| 1621 | - border-inline-start-width: var(--border-inline-start-width); | |
| 1622 | - top: calc(0px - var(--border-top-width)); | |
| 1623 | - left: calc(0px - var(--border-left-width)); | |
| 1624 | - width: max(100% + var(--border-left-width) + var(--border-right-width), 100%); | |
| 1625 | - height: max(100% + var(--border-top-width) + var(--border-bottom-width), 100%); | |
| 1626 | -} | |
| 1627 | -@media (max-width: 767px) { | |
| 1628 | - :is(.e-con, .e-con > .e-con-inner) > .elementor-background-video-container.elementor-hidden-mobile { | |
| 1629 | - display: none; | |
| 1630 | - } | |
| 1631 | -} | |
| 1632 | -:is(.e-con, .e-con > .e-con-inner) > .elementor-background-video-container::before { | |
| 1952 | +.e-con > .elementor-background-video-container:before, | |
| 1953 | +.e-con > .e-con-inner > .elementor-background-video-container:before { | |
| 1633 | 1954 | z-index: 1; |
| 1634 | 1955 | } |
| 1635 | -:is(.e-con, .e-con > .e-con-inner) > .elementor-background-slideshow::before { | |
| 1956 | +.e-con > .elementor-background-slideshow:before, | |
| 1957 | +.e-con > .e-con-inner > .elementor-background-slideshow:before { | |
| 1636 | 1958 | z-index: 2; |
| 1637 | 1959 | } |
| 1638 | 1960 | .e-con .elementor-widget { |
| 1639 | 1961 | min-width: 0; |
| @@ -1649,20 +1971,14 @@ | ||
| 1649 | 1971 | } |
| 1650 | 1972 | .elementor.elementor .e-con > .elementor-widget, .e-con.e-con > .e-con-inner > .elementor-widget { |
| 1651 | 1973 | max-width: 100%; |
| 1652 | 1974 | } |
| 1653 | -.e-con .elementor-widget:not(:last-child) { | |
| 1654 | - --kit-widget-spacing: 0px; | |
| 1655 | -} | |
| 1656 | 1975 | |
| 1657 | 1976 | @media (max-width: 767px) { |
| 1658 | - .e-con.e-flex { | |
| 1977 | + .e-con { | |
| 1659 | 1978 | --width: 100%; |
| 1660 | - --flex-wrap: var(--flex-wrap-mobile); | |
| 1979 | + --flex-wrap: wrap; | |
| 1661 | 1980 | } |
| 1662 | - .e-con.e-flex .elementor-widget-archive-posts { | |
| 1663 | - width: 100%; | |
| 1664 | - } | |
| 1665 | 1981 | } |
| 1666 | 1982 | .elementor-form-fields-wrapper { |
| 1667 | 1983 | display: flex; |
| 1668 | 1984 | flex-wrap: wrap; |
| @@ -1684,11 +2000,11 @@ | ||
| 1684 | 2000 | } |
| 1685 | 2001 | .elementor-field-group .elementor-field-textual { |
| 1686 | 2002 | width: 100%; |
| 1687 | 2003 | max-width: 100%; |
| 1688 | - border: 1px solid #69727D; | |
| 2004 | + border: 1px solid #818a91; | |
| 1689 | 2005 | background-color: transparent; |
| 1690 | - color: #1f2124; | |
| 2006 | + color: #373a3c; | |
| 1691 | 2007 | vertical-align: middle; |
| 1692 | 2008 | flex-grow: 1; |
| 1693 | 2009 | } |
| 1694 | 2010 | .elementor-field-group .elementor-field-textual:focus { |
| @@ -1722,9 +2038,9 @@ | ||
| 1722 | 2038 | text-transform: inherit; |
| 1723 | 2039 | letter-spacing: inherit; |
| 1724 | 2040 | line-height: inherit; |
| 1725 | 2041 | flex-basis: 100%; |
| 1726 | - padding-inline-end: 20px; | |
| 2042 | + padding-right: 20px; | |
| 1727 | 2043 | } |
| 1728 | 2044 | .elementor-field-group .elementor-select-wrapper:before { |
| 1729 | 2045 | content: "\e92a"; |
| 1730 | 2046 | font-family: "eicons"; |
| @@ -1729,11 +2045,11 @@ | ||
| 1729 | 2045 | content: "\e92a"; |
| 1730 | 2046 | font-family: "eicons"; |
| 1731 | 2047 | font-size: 15px; |
| 1732 | 2048 | position: absolute; |
| 1733 | - inset-block-start: 50%; | |
| 1734 | - inset-inline-end: 10px; | |
| 2049 | + top: 50%; | |
| 1735 | 2050 | transform: translateY(-50%); |
| 2051 | + right: 10px; | |
| 1736 | 2052 | pointer-events: none; |
| 1737 | 2053 | text-shadow: 0 0 3px rgba(0, 0, 0, 0.3); |
| 1738 | 2054 | } |
| 1739 | 2055 | .elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before { |
| @@ -1747,9 +2063,9 @@ | ||
| 1747 | 2063 | .elementor-field-subgroup .elementor-field-option label { |
| 1748 | 2064 | display: inline-block; |
| 1749 | 2065 | } |
| 1750 | 2066 | .elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option { |
| 1751 | - padding-inline-end: 10px; | |
| 2067 | + padding-right: 10px; | |
| 1752 | 2068 | } |
| 1753 | 2069 | .elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option { |
| 1754 | 2070 | flex-basis: 100%; |
| 1755 | 2071 | } |
| @@ -1768,9 +2084,9 @@ | ||
| 1768 | 2084 | } |
| 1769 | 2085 | .elementor-mark-required .elementor-field-label:after { |
| 1770 | 2086 | content: "*"; |
| 1771 | 2087 | color: red; |
| 1772 | - padding-inline-start: 0.2em; | |
| 2088 | + padding-left: 0.2em; | |
| 1773 | 2089 | } |
| 1774 | 2090 | |
| 1775 | 2091 | .elementor-field-textual { |
| 1776 | 2092 | line-height: 1.4; |
| @@ -1821,20 +2137,12 @@ | ||
| 1821 | 2137 | .elementor-button-align-start .elementor-field-type-submit, |
| 1822 | 2138 | .elementor-button-align-start .e-form__buttons { |
| 1823 | 2139 | justify-content: flex-start; |
| 1824 | 2140 | } |
| 1825 | -[dir=rtl] .elementor-button-align-start .elementor-field-type-submit, | |
| 1826 | -[dir=rtl] .elementor-button-align-start .e-form__buttons { | |
| 1827 | - justify-content: flex-end; | |
| 1828 | -} | |
| 1829 | 2141 | .elementor-button-align-end .elementor-field-type-submit, |
| 1830 | 2142 | .elementor-button-align-end .e-form__buttons { |
| 1831 | 2143 | justify-content: flex-end; |
| 1832 | 2144 | } |
| 1833 | -[dir=rtl] .elementor-button-align-end .elementor-field-type-submit, | |
| 1834 | -[dir=rtl] .elementor-button-align-end .e-form__buttons { | |
| 1835 | - justify-content: flex-start; | |
| 1836 | -} | |
| 1837 | 2145 | .elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button { |
| 1838 | 2146 | flex-basis: initial; |
| 1839 | 2147 | } |
| 1840 | 2148 | .elementor-button-align-center .e-form__buttons__wrapper, .elementor-button-align-start .e-form__buttons__wrapper, .elementor-button-align-end .e-form__buttons__wrapper { |
| @@ -1862,20 +2170,12 @@ | ||
| 1862 | 2170 | .elementor-tablet-button-align-start .elementor-field-type-submit, |
| 1863 | 2171 | .elementor-tablet-button-align-start .e-form__buttons { |
| 1864 | 2172 | justify-content: flex-start; |
| 1865 | 2173 | } |
| 1866 | - [dir=rtl] .elementor-tablet-button-align-start .elementor-field-type-submit, | |
| 1867 | - [dir=rtl] .elementor-tablet-button-align-start .e-form__buttons { | |
| 1868 | - justify-content: flex-end; | |
| 1869 | - } | |
| 1870 | 2174 | .elementor-tablet-button-align-end .elementor-field-type-submit, |
| 1871 | 2175 | .elementor-tablet-button-align-end .e-form__buttons { |
| 1872 | 2176 | justify-content: flex-end; |
| 1873 | 2177 | } |
| 1874 | - [dir=rtl] .elementor-tablet-button-align-end .elementor-field-type-submit, | |
| 1875 | - [dir=rtl] .elementor-tablet-button-align-end .e-form__buttons { | |
| 1876 | - justify-content: flex-start; | |
| 1877 | - } | |
| 1878 | 2178 | .elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button { |
| 1879 | 2179 | flex-basis: initial; |
| 1880 | 2180 | } |
| 1881 | 2181 | .elementor-tablet-button-align-center .e-form__buttons__wrapper, .elementor-tablet-button-align-start .e-form__buttons__wrapper, .elementor-tablet-button-align-end .e-form__buttons__wrapper { |
| @@ -1903,20 +2203,12 @@ | ||
| 1903 | 2203 | .elementor-mobile-button-align-start .elementor-field-type-submit, |
| 1904 | 2204 | .elementor-mobile-button-align-start .e-form__buttons { |
| 1905 | 2205 | justify-content: flex-start; |
| 1906 | 2206 | } |
| 1907 | - [dir=rtl] .elementor-mobile-button-align-start .elementor-field-type-submit, | |
| 1908 | - [dir=rtl] .elementor-mobile-button-align-start .e-form__buttons { | |
| 1909 | - justify-content: flex-end; | |
| 1910 | - } | |
| 1911 | 2207 | .elementor-mobile-button-align-end .elementor-field-type-submit, |
| 1912 | 2208 | .elementor-mobile-button-align-end .e-form__buttons { |
| 1913 | 2209 | justify-content: flex-end; |
| 1914 | 2210 | } |
| 1915 | - [dir=rtl] .elementor-mobile-button-align-end .elementor-field-type-submit, | |
| 1916 | - [dir=rtl] .elementor-mobile-button-align-end .e-form__buttons { | |
| 1917 | - justify-content: flex-start; | |
| 1918 | - } | |
| 1919 | 2211 | .elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button { |
| 1920 | 2212 | flex-basis: initial; |
| 1921 | 2213 | } |
| 1922 | 2214 | .elementor-mobile-button-align-center .e-form__buttons__wrapper, .elementor-mobile-button-align-start .e-form__buttons__wrapper, .elementor-mobile-button-align-end .e-form__buttons__wrapper { |
| @@ -1945,9 +2237,9 @@ | ||
| 1945 | 2237 | font-family: eicons; |
| 1946 | 2238 | font-weight: normal; |
| 1947 | 2239 | font-style: normal; |
| 1948 | 2240 | vertical-align: middle; |
| 1949 | - margin-inline-end: 5px; | |
| 2241 | + margin-right: 5px; | |
| 1950 | 2242 | } |
| 1951 | 2243 | .elementor-message.elementor-message-danger { |
| 1952 | 2244 | color: #d9534f; |
| 1953 | 2245 | } |
| @@ -1958,17 +2250,15 @@ | ||
| 1958 | 2250 | color: #5cb85c; |
| 1959 | 2251 | } |
| 1960 | 2252 | |
| 1961 | 2253 | .elementor-form .elementor-button { |
| 1962 | - padding-block-start: 0; | |
| 1963 | - padding-block-end: 0; | |
| 2254 | + padding-top: 0; | |
| 2255 | + padding-bottom: 0; | |
| 1964 | 2256 | border: none; |
| 1965 | 2257 | } |
| 1966 | -.elementor-form .elementor-button > span, .elementor-form .elementor-button-content-wrapper { | |
| 2258 | +.elementor-form .elementor-button > span { | |
| 1967 | 2259 | display: flex; |
| 1968 | 2260 | justify-content: center; |
| 1969 | - flex-direction: row; | |
| 1970 | - gap: 5px; | |
| 1971 | 2261 | } |
| 1972 | 2262 | .elementor-form .elementor-button.elementor-size-xs { |
| 1973 | 2263 | min-height: 33px; |
| 1974 | 2264 | } |
| @@ -1984,22 +2274,16 @@ | ||
| 1984 | 2274 | .elementor-form .elementor-button.elementor-size-xl { |
| 1985 | 2275 | min-height: 72px; |
| 1986 | 2276 | } |
| 1987 | 2277 | |
| 1988 | -.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container, .elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)) { | |
| 1989 | - transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, transform var(--e-transform-transition-duration, 400ms); | |
| 2278 | +.elementor-element .elementor-widget-container { | |
| 2279 | + transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s; | |
| 1990 | 2280 | } |
| 1991 | 2281 | |
| 1992 | -.elementor-heading-title { | |
| 1993 | - padding: 0; | |
| 1994 | - margin: 0; | |
| 1995 | - line-height: 1; | |
| 1996 | -} | |
| 1997 | - | |
| 1998 | 2282 | .elementor-button { |
| 1999 | 2283 | display: inline-block; |
| 2000 | 2284 | line-height: 1; |
| 2001 | - background-color: #69727D; | |
| 2285 | + background-color: #818a91; | |
| 2002 | 2286 | font-size: 15px; |
| 2003 | 2287 | padding: 12px 24px; |
| 2004 | 2288 | border-radius: 3px; |
| 2005 | 2289 | color: #fff; |
| @@ -2012,14 +2296,12 @@ | ||
| 2012 | 2296 | } |
| 2013 | 2297 | .elementor-button-content-wrapper { |
| 2014 | 2298 | display: flex; |
| 2015 | 2299 | justify-content: center; |
| 2016 | - flex-direction: row; | |
| 2017 | - gap: 5px; | |
| 2018 | 2300 | } |
| 2019 | 2301 | .elementor-button-icon { |
| 2020 | - display: flex; | |
| 2021 | - align-items: center; | |
| 2302 | + flex-grow: 0; | |
| 2303 | + order: 5; | |
| 2022 | 2304 | } |
| 2023 | 2305 | .elementor-button-icon svg { |
| 2024 | 2306 | width: 1em; |
| 2025 | 2307 | height: auto; |
| @@ -2027,8 +2309,10 @@ | ||
| 2027 | 2309 | .elementor-button-icon .e-font-icon-svg { |
| 2028 | 2310 | height: 1em; |
| 2029 | 2311 | } |
| 2030 | 2312 | .elementor-button-text { |
| 2313 | + flex-grow: 1; | |
| 2314 | + order: 10; | |
| 2031 | 2315 | display: inline-block; |
| 2032 | 2316 | } |
| 2033 | 2317 | .elementor-button.elementor-size-xs { |
| 2034 | 2318 | font-size: 13px; |
| @@ -2049,8 +2333,16 @@ | ||
| 2049 | 2333 | font-size: 20px; |
| 2050 | 2334 | padding: 25px 50px; |
| 2051 | 2335 | border-radius: 6px; |
| 2052 | 2336 | } |
| 2337 | +.elementor-button .elementor-align-icon-right { | |
| 2338 | + margin-left: 5px; | |
| 2339 | + order: 15; | |
| 2340 | +} | |
| 2341 | +.elementor-button .elementor-align-icon-left { | |
| 2342 | + margin-right: 5px; | |
| 2343 | + order: 5; | |
| 2344 | +} | |
| 2053 | 2345 | .elementor-button span { |
| 2054 | 2346 | text-decoration: inherit; |
| 2055 | 2347 | } |
| 2056 | 2348 | |
| @@ -2079,11 +2371,15 @@ | ||
| 2079 | 2371 | .elementor-widget-button .elementor-button .elementor-button-danger { |
| 2080 | 2372 | background-color: #d9534f; |
| 2081 | 2373 | } |
| 2082 | 2374 | |
| 2375 | +.elementor-tab-title a { | |
| 2376 | + color: inherit; | |
| 2377 | +} | |
| 2378 | + | |
| 2083 | 2379 | .elementor-view-stacked .elementor-icon { |
| 2084 | 2380 | padding: 0.5em; |
| 2085 | - background-color: #69727D; | |
| 2381 | + background-color: #818a91; | |
| 2086 | 2382 | color: #fff; |
| 2087 | 2383 | fill: #fff; |
| 2088 | 2384 | } |
| 2089 | 2385 | |
| @@ -2088,10 +2384,10 @@ | ||
| 2088 | 2384 | } |
| 2089 | 2385 | |
| 2090 | 2386 | .elementor-view-framed .elementor-icon { |
| 2091 | 2387 | padding: 0.5em; |
| 2092 | - color: #69727D; | |
| 2093 | - border: 3px solid #69727D; | |
| 2388 | + color: #818a91; | |
| 2389 | + border: 3px solid #818a91; | |
| 2094 | 2390 | background-color: transparent; |
| 2095 | 2391 | } |
| 2096 | 2392 | |
| 2097 | 2393 | .elementor-icon { |
| @@ -2097,14 +2393,14 @@ | ||
| 2097 | 2393 | .elementor-icon { |
| 2098 | 2394 | display: inline-block; |
| 2099 | 2395 | line-height: 1; |
| 2100 | 2396 | transition: all 0.3s; |
| 2101 | - color: #69727D; | |
| 2397 | + color: #818a91; | |
| 2102 | 2398 | font-size: 50px; |
| 2103 | 2399 | text-align: center; |
| 2104 | 2400 | } |
| 2105 | 2401 | .elementor-icon:hover { |
| 2106 | - color: #69727D; | |
| 2402 | + color: #818a91; | |
| 2107 | 2403 | } |
| 2108 | 2404 | .elementor-icon i, .elementor-icon svg { |
| 2109 | 2405 | width: 1em; |
| 2110 | 2406 | height: 1em; |
| @@ -2119,28 +2415,858 @@ | ||
| 2119 | 2415 | .elementor-icon i.fad { |
| 2120 | 2416 | width: initial; |
| 2121 | 2417 | } |
| 2122 | 2418 | |
| 2123 | -.elementor-shape-square .elementor-icon { | |
| 2124 | - border-radius: 0; | |
| 2125 | -} | |
| 2126 | -.elementor-shape-rounded .elementor-icon { | |
| 2127 | - border-radius: 10%; | |
| 2128 | -} | |
| 2129 | 2419 | .elementor-shape-circle .elementor-icon { |
| 2130 | 2420 | border-radius: 50%; |
| 2131 | 2421 | } |
| 2132 | 2422 | |
| 2133 | -.e-transform .elementor-widget-container, .e-transform:not(:has(.elementor-widget-container)) { | |
| 2423 | +.e-transform .elementor-widget-container { | |
| 2134 | 2424 | transform: perspective(var(--e-transform-perspective, 0)) rotateZ(var(--e-transform-rotateZ, 0)) rotateX(var(--e-transform-rotateX, 0)) rotateY(var(--e-transform-rotateY, 0)) translate(var(--e-transform-translate, 0)) translateX(var(--e-transform-translateX, 0)) translateY(var(--e-transform-translateY, 0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX, 0)) skewY(var(--e-transform-skewY, 0)); |
| 2135 | 2425 | transform-origin: var(--e-transform-origin-y) var(--e-transform-origin-x); |
| 2426 | + transition: transform var(--e-transform-transition-duration, 400ms); | |
| 2136 | 2427 | } |
| 2137 | 2428 | |
| 2138 | -.e-con.e-transform { | |
| 2139 | - transform: perspective(var(--e-con-transform-perspective, 0)) rotateZ(var(--e-con-transform-rotateZ, 0)) rotateX(var(--e-con-transform-rotateX, 0)) rotateY(var(--e-con-transform-rotateY, 0)) translate(var(--e-con-transform-translate, 0)) translateX(var(--e-con-transform-translateX, 0)) translateY(var(--e-con-transform-translateY, 0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX, 0)) skewY(var(--e-con-transform-skewY, 0)); | |
| 2140 | - transform-origin: var(--e-con-transform-origin-y) var(--e-con-transform-origin-x); | |
| 2429 | +/** | |
| 2430 | + * Swiper 3.4.2 | |
| 2431 | + * Customized by Elementor team | |
| 2432 | + */ | |
| 2433 | +.swiper-container { | |
| 2434 | + margin-left: auto; | |
| 2435 | + margin-right: auto; | |
| 2436 | + position: relative; | |
| 2437 | + overflow: hidden; | |
| 2438 | + /* Fix of Webkit flickering */ | |
| 2439 | + z-index: 1; | |
| 2141 | 2440 | } |
| 2441 | +.swiper-container .swiper-slide figure { | |
| 2442 | + line-height: 0; | |
| 2443 | +} | |
| 2444 | +.swiper-container .elementor-lightbox-content-source { | |
| 2445 | + display: none; | |
| 2446 | +} | |
| 2142 | 2447 | |
| 2448 | +.swiper-container-no-flexbox .swiper-slide { | |
| 2449 | + float: left; | |
| 2450 | +} | |
| 2451 | + | |
| 2452 | +.swiper-container-vertical > .swiper-wrapper { | |
| 2453 | + flex-direction: column; | |
| 2454 | +} | |
| 2455 | + | |
| 2456 | +.swiper-wrapper { | |
| 2457 | + position: relative; | |
| 2458 | + width: 100%; | |
| 2459 | + height: 100%; | |
| 2460 | + z-index: 1; | |
| 2461 | + display: flex; | |
| 2462 | + transition-property: transform; | |
| 2463 | + box-sizing: content-box; | |
| 2464 | +} | |
| 2465 | + | |
| 2466 | +.swiper-container-android .swiper-slide, .swiper-wrapper { | |
| 2467 | + transform: translate3d(0px, 0, 0); | |
| 2468 | +} | |
| 2469 | + | |
| 2470 | +.swiper-container-multirow > .swiper-wrapper { | |
| 2471 | + flex-wrap: wrap; | |
| 2472 | +} | |
| 2473 | + | |
| 2474 | +.swiper-container-free-mode > .swiper-wrapper { | |
| 2475 | + transition-timing-function: ease-out; | |
| 2476 | + margin: 0 auto; | |
| 2477 | +} | |
| 2478 | + | |
| 2479 | +.swiper-slide { | |
| 2480 | + flex-shrink: 0; | |
| 2481 | + width: 100%; | |
| 2482 | + height: 100%; | |
| 2483 | + position: relative; | |
| 2484 | +} | |
| 2485 | + | |
| 2486 | +/* Auto Height */ | |
| 2487 | +.swiper-container-autoheight { | |
| 2488 | + height: auto; | |
| 2489 | +} | |
| 2490 | +.swiper-container-autoheight .swiper-slide { | |
| 2491 | + height: auto; | |
| 2492 | +} | |
| 2493 | +.swiper-container-autoheight .swiper-wrapper { | |
| 2494 | + align-items: flex-start; | |
| 2495 | + transition-property: transform, height; | |
| 2496 | +} | |
| 2497 | + | |
| 2498 | +/* a11y */ | |
| 2499 | +.swiper-container .swiper-notification { | |
| 2500 | + position: absolute; | |
| 2501 | + left: 0; | |
| 2502 | + top: 0; | |
| 2503 | + pointer-events: none; | |
| 2504 | + opacity: 0; | |
| 2505 | + z-index: -1000; | |
| 2506 | +} | |
| 2507 | + | |
| 2508 | +/* IE10 Windows Phone 8 Fixes */ | |
| 2509 | +.swiper-wp8-horizontal { | |
| 2510 | + touch-action: pan-y; | |
| 2511 | +} | |
| 2512 | + | |
| 2513 | +.swiper-wp8-vertical { | |
| 2514 | + touch-action: pan-x; | |
| 2515 | +} | |
| 2516 | + | |
| 2517 | +/* Arrows */ | |
| 2518 | +.swiper-button-prev, .swiper-button-next { | |
| 2519 | + position: absolute; | |
| 2520 | + top: 50%; | |
| 2521 | + width: 27px; | |
| 2522 | + height: 44px; | |
| 2523 | + margin-top: -22px; | |
| 2524 | + z-index: 10; | |
| 2525 | + cursor: pointer; | |
| 2526 | + background-size: 27px 44px; | |
| 2527 | + background: no-repeat center; | |
| 2528 | +} | |
| 2529 | + | |
| 2530 | +.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled { | |
| 2531 | + opacity: 0.35; | |
| 2532 | + cursor: auto; | |
| 2533 | + pointer-events: none; | |
| 2534 | +} | |
| 2535 | + | |
| 2536 | +.swiper-button-prev, .swiper-container-rtl .swiper-button-next { | |
| 2537 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); | |
| 2538 | + left: 10px; | |
| 2539 | + right: auto; | |
| 2540 | +} | |
| 2541 | + | |
| 2542 | +.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black { | |
| 2543 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); | |
| 2544 | +} | |
| 2545 | + | |
| 2546 | +.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white { | |
| 2547 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); | |
| 2548 | +} | |
| 2549 | + | |
| 2550 | +.swiper-button-next, .swiper-container-rtl .swiper-button-prev { | |
| 2551 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); | |
| 2552 | + right: 10px; | |
| 2553 | + left: auto; | |
| 2554 | +} | |
| 2555 | + | |
| 2556 | +.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black { | |
| 2557 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); | |
| 2558 | +} | |
| 2559 | + | |
| 2560 | +.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white { | |
| 2561 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); | |
| 2562 | +} | |
| 2563 | + | |
| 2564 | +/* Pagination Styles */ | |
| 2565 | +.swiper-pagination { | |
| 2566 | + position: absolute; | |
| 2567 | + text-align: center; | |
| 2568 | + transition: 300ms; | |
| 2569 | + transform: translate3d(0, 0, 0); | |
| 2570 | + z-index: 10; | |
| 2571 | +} | |
| 2572 | +.swiper-pagination.swiper-pagination-hidden { | |
| 2573 | + opacity: 0; | |
| 2574 | +} | |
| 2575 | + | |
| 2576 | +/* Common Styles */ | |
| 2577 | +.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets { | |
| 2578 | + bottom: 5px; | |
| 2579 | + left: 0; | |
| 2580 | + width: 100%; | |
| 2581 | +} | |
| 2582 | + | |
| 2583 | +/* Bullets */ | |
| 2584 | +.swiper-pagination-bullet { | |
| 2585 | + width: 6px; | |
| 2586 | + height: 6px; | |
| 2587 | + display: inline-block; | |
| 2588 | + border-radius: 50%; | |
| 2589 | + background: #000; | |
| 2590 | + opacity: 0.2; | |
| 2591 | +} | |
| 2592 | + | |
| 2593 | +.swiper-pagination-fraction { | |
| 2594 | + color: #000; | |
| 2595 | +} | |
| 2596 | + | |
| 2597 | +button.swiper-pagination-bullet { | |
| 2598 | + border: none; | |
| 2599 | + margin: 0; | |
| 2600 | + padding: 0; | |
| 2601 | + box-shadow: none; | |
| 2602 | + -webkit-appearance: none; | |
| 2603 | + -moz-appearance: none; | |
| 2604 | + appearance: none; | |
| 2605 | +} | |
| 2606 | + | |
| 2607 | +.swiper-pagination-clickable .swiper-pagination-bullet { | |
| 2608 | + cursor: pointer; | |
| 2609 | +} | |
| 2610 | + | |
| 2611 | +.swiper-pagination-white .swiper-pagination-bullet { | |
| 2612 | + background: #fff; | |
| 2613 | +} | |
| 2614 | + | |
| 2615 | +.swiper-pagination-bullet-active { | |
| 2616 | + opacity: 1; | |
| 2617 | +} | |
| 2618 | + | |
| 2619 | +.swiper-pagination-white .swiper-pagination-bullet-active { | |
| 2620 | + background: #fff; | |
| 2621 | +} | |
| 2622 | + | |
| 2623 | +.swiper-pagination-black .swiper-pagination-bullet-active { | |
| 2624 | + background: #000; | |
| 2625 | +} | |
| 2626 | + | |
| 2627 | +.swiper-container-vertical > .swiper-pagination-bullets { | |
| 2628 | + right: 10px; | |
| 2629 | + top: 50%; | |
| 2630 | + transform: translate3d(0px, -50%, 0); | |
| 2631 | +} | |
| 2632 | +.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet { | |
| 2633 | + margin: 5px 0; | |
| 2634 | + display: block; | |
| 2635 | +} | |
| 2636 | + | |
| 2637 | +.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet { | |
| 2638 | + margin: 0 6px; | |
| 2639 | +} | |
| 2640 | + | |
| 2641 | +/* Progressbar */ | |
| 2642 | +.swiper-pagination-progressbar { | |
| 2643 | + background: rgba(0, 0, 0, 0.25); | |
| 2644 | + position: absolute; | |
| 2645 | +} | |
| 2646 | +.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { | |
| 2647 | + background: #000; | |
| 2648 | + position: absolute; | |
| 2649 | + left: 0; | |
| 2650 | + top: 0; | |
| 2651 | + width: 100%; | |
| 2652 | + height: 100%; | |
| 2653 | + transform: scale(0); | |
| 2654 | + transform-origin: left top; | |
| 2655 | +} | |
| 2656 | + | |
| 2657 | +.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill { | |
| 2658 | + transform-origin: right top; | |
| 2659 | +} | |
| 2660 | + | |
| 2661 | +.swiper-container-horizontal > .swiper-pagination-progressbar { | |
| 2662 | + width: 100%; | |
| 2663 | + height: 4px; | |
| 2664 | + left: 0; | |
| 2665 | + top: 0; | |
| 2666 | +} | |
| 2667 | + | |
| 2668 | +.swiper-container-vertical > .swiper-pagination-progressbar { | |
| 2669 | + width: 4px; | |
| 2670 | + height: 100%; | |
| 2671 | + left: 0; | |
| 2672 | + top: 0; | |
| 2673 | +} | |
| 2674 | + | |
| 2675 | +.swiper-pagination-progressbar.swiper-pagination-white { | |
| 2676 | + background: rgba(255, 255, 255, 0.5); | |
| 2677 | +} | |
| 2678 | +.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill { | |
| 2679 | + background: #fff; | |
| 2680 | +} | |
| 2681 | +.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill { | |
| 2682 | + background: #000; | |
| 2683 | +} | |
| 2684 | + | |
| 2685 | +/* 3D Container */ | |
| 2686 | +.swiper-container-3d { | |
| 2687 | + perspective: 1200px; | |
| 2688 | +} | |
| 2689 | +.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow { | |
| 2690 | + transform-style: preserve-3d; | |
| 2691 | +} | |
| 2692 | +.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom { | |
| 2693 | + position: absolute; | |
| 2694 | + left: 0; | |
| 2695 | + top: 0; | |
| 2696 | + width: 100%; | |
| 2697 | + height: 100%; | |
| 2698 | + pointer-events: none; | |
| 2699 | + z-index: 10; | |
| 2700 | +} | |
| 2701 | +.swiper-container-3d .swiper-slide-shadow-left { | |
| 2702 | + background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
| 2703 | +} | |
| 2704 | +.swiper-container-3d .swiper-slide-shadow-right { | |
| 2705 | + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
| 2706 | +} | |
| 2707 | +.swiper-container-3d .swiper-slide-shadow-top { | |
| 2708 | + background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
| 2709 | +} | |
| 2710 | +.swiper-container-3d .swiper-slide-shadow-bottom { | |
| 2711 | + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
| 2712 | +} | |
| 2713 | + | |
| 2714 | +/* Coverflow */ | |
| 2715 | +.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper { | |
| 2716 | + /* Windows 8 IE 10 fix */ | |
| 2717 | + -ms-perspective: 1200px; | |
| 2718 | +} | |
| 2719 | + | |
| 2720 | +/* Cube + Flip */ | |
| 2721 | +.swiper-container-cube, .swiper-container-flip { | |
| 2722 | + overflow: visible; | |
| 2723 | +} | |
| 2724 | + | |
| 2725 | +.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide { | |
| 2726 | + pointer-events: none; | |
| 2727 | + z-index: 1; | |
| 2728 | +} | |
| 2729 | + | |
| 2730 | +.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide { | |
| 2731 | + pointer-events: none; | |
| 2732 | +} | |
| 2733 | + | |
| 2734 | +.swiper-container-cube .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active { | |
| 2735 | + pointer-events: auto; | |
| 2736 | +} | |
| 2737 | + | |
| 2738 | +.swiper-container-cube .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-top, .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-right { | |
| 2739 | + z-index: 0; | |
| 2740 | + backface-visibility: hidden; | |
| 2741 | +} | |
| 2742 | + | |
| 2743 | +/* Cube */ | |
| 2744 | +.swiper-container-cube .swiper-slide { | |
| 2745 | + visibility: hidden; | |
| 2746 | + transform-origin: 0 0; | |
| 2747 | + width: 100%; | |
| 2748 | + height: 100%; | |
| 2749 | +} | |
| 2750 | +.swiper-container-cube.swiper-container-rtl .swiper-slide { | |
| 2751 | + transform-origin: 100% 0; | |
| 2752 | +} | |
| 2753 | +.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide { | |
| 2754 | + pointer-events: auto; | |
| 2755 | + visibility: visible; | |
| 2756 | +} | |
| 2757 | +.swiper-container-cube .swiper-cube-shadow { | |
| 2758 | + position: absolute; | |
| 2759 | + left: 0; | |
| 2760 | + bottom: 0; | |
| 2761 | + width: 100%; | |
| 2762 | + height: 100%; | |
| 2763 | + background: #000; | |
| 2764 | + opacity: 0.6; | |
| 2765 | + filter: blur(50px); | |
| 2766 | + z-index: 0; | |
| 2767 | +} | |
| 2768 | + | |
| 2769 | +/* Fade */ | |
| 2770 | +.swiper-container-fade.swiper-container-free-mode .swiper-slide { | |
| 2771 | + transition-timing-function: ease-out; | |
| 2772 | +} | |
| 2773 | +.swiper-container-fade .swiper-slide { | |
| 2774 | + pointer-events: none; | |
| 2775 | + transition-property: opacity; | |
| 2776 | +} | |
| 2777 | +.swiper-container-fade .swiper-slide .swiper-slide { | |
| 2778 | + pointer-events: none; | |
| 2779 | +} | |
| 2780 | +.swiper-container-fade .swiper-slide-active { | |
| 2781 | + pointer-events: auto; | |
| 2782 | +} | |
| 2783 | +.swiper-container-fade .swiper-slide-active .swiper-slide-active { | |
| 2784 | + pointer-events: auto; | |
| 2785 | +} | |
| 2786 | + | |
| 2787 | +.swiper-zoom-container { | |
| 2788 | + width: 100%; | |
| 2789 | + height: 100%; | |
| 2790 | + display: flex; | |
| 2791 | + justify-content: center; | |
| 2792 | + align-items: center; | |
| 2793 | + text-align: center; | |
| 2794 | +} | |
| 2795 | +.swiper-zoom-container > img, .swiper-zoom-container > svg, .swiper-zoom-container > canvas { | |
| 2796 | + max-width: 100%; | |
| 2797 | + max-height: 100%; | |
| 2798 | + -o-object-fit: contain; | |
| 2799 | + object-fit: contain; | |
| 2800 | +} | |
| 2801 | + | |
| 2802 | +/* Scrollbar */ | |
| 2803 | +.swiper-scrollbar { | |
| 2804 | + border-radius: 10px; | |
| 2805 | + position: relative; | |
| 2806 | + -ms-touch-action: none; | |
| 2807 | + background: rgba(0, 0, 0, 0.1); | |
| 2808 | +} | |
| 2809 | + | |
| 2810 | +.swiper-container-horizontal > .swiper-scrollbar { | |
| 2811 | + position: absolute; | |
| 2812 | + left: 1%; | |
| 2813 | + bottom: 3px; | |
| 2814 | + z-index: 50; | |
| 2815 | + height: 5px; | |
| 2816 | + width: 98%; | |
| 2817 | +} | |
| 2818 | + | |
| 2819 | +.swiper-container-vertical > .swiper-scrollbar { | |
| 2820 | + position: absolute; | |
| 2821 | + right: 3px; | |
| 2822 | + top: 1%; | |
| 2823 | + z-index: 50; | |
| 2824 | + width: 5px; | |
| 2825 | + height: 98%; | |
| 2826 | +} | |
| 2827 | + | |
| 2828 | +.swiper-scrollbar-drag { | |
| 2829 | + height: 100%; | |
| 2830 | + width: 100%; | |
| 2831 | + position: relative; | |
| 2832 | + background: rgba(0, 0, 0, 0.5); | |
| 2833 | + border-radius: 10px; | |
| 2834 | + left: 0; | |
| 2835 | + top: 0; | |
| 2836 | +} | |
| 2837 | + | |
| 2838 | +.swiper-scrollbar-cursor-drag { | |
| 2839 | + cursor: move; | |
| 2840 | +} | |
| 2841 | + | |
| 2842 | +.elementor-pagination-position-outside .swiper-container { | |
| 2843 | + padding-bottom: 30px; | |
| 2844 | +} | |
| 2845 | +.elementor-pagination-position-outside .elementor-swiper-button { | |
| 2846 | + top: calc(50% - 30px / 2); | |
| 2847 | +} | |
| 2848 | + | |
| 2849 | +.elementor-swiper { | |
| 2850 | + position: relative; | |
| 2851 | +} | |
| 2852 | + | |
| 2853 | +.elementor-main-swiper { | |
| 2854 | + position: static; | |
| 2855 | +} | |
| 2856 | + | |
| 2857 | +.elementor-arrows-position-outside .swiper-container { | |
| 2858 | + width: calc(100% - 60px); | |
| 2859 | +} | |
| 2860 | +.elementor-arrows-position-outside .elementor-swiper-button-prev { | |
| 2861 | + left: 0; | |
| 2862 | +} | |
| 2863 | +.elementor-arrows-position-outside .elementor-swiper-button-next { | |
| 2864 | + right: 0; | |
| 2865 | +} | |
| 2866 | + | |
| 2867 | +.swiper-image-stretch .swiper-slide .swiper-slide-image { | |
| 2868 | + width: 100%; | |
| 2869 | +} | |
| 2870 | + | |
| 2871 | +.elementor-swiper-button { | |
| 2872 | + position: absolute; | |
| 2873 | + display: inline-flex; | |
| 2874 | + z-index: 1; | |
| 2875 | + cursor: pointer; | |
| 2876 | + font-size: 25px; | |
| 2877 | + color: rgba(238, 238, 238, 0.9); | |
| 2878 | + top: 50%; | |
| 2879 | + transform: translateY(-50%); | |
| 2880 | +} | |
| 2881 | +.elementor-swiper-button svg { | |
| 2882 | + fill: rgba(238, 238, 238, 0.9); | |
| 2883 | + height: 1em; | |
| 2884 | + width: 1em; | |
| 2885 | +} | |
| 2886 | +.elementor-swiper-button-prev { | |
| 2887 | + left: 10px; | |
| 2888 | +} | |
| 2889 | +.elementor-swiper-button-next { | |
| 2890 | + right: 10px; | |
| 2891 | +} | |
| 2892 | +.elementor-swiper-button.swiper-button-disabled { | |
| 2893 | + opacity: 0.3; | |
| 2894 | +} | |
| 2895 | + | |
| 2896 | +.swiper-container-cube .elementor-swiper-button { | |
| 2897 | + transform: translate3d(0, -50%, 1px); | |
| 2898 | +} | |
| 2899 | + | |
| 2900 | +/* Preloader */ | |
| 2901 | +.swiper-lazy-preloader { | |
| 2902 | + width: 42px; | |
| 2903 | + height: 42px; | |
| 2904 | + position: absolute; | |
| 2905 | + left: 50%; | |
| 2906 | + top: 50%; | |
| 2907 | + margin-left: -21px; | |
| 2908 | + margin-top: -21px; | |
| 2909 | + z-index: 10; | |
| 2910 | + transform-origin: 50%; | |
| 2911 | + animation: swiper-preloader-spin 1s steps(12, end) infinite; | |
| 2912 | +} | |
| 2913 | +.swiper-lazy-preloader:after { | |
| 2914 | + display: block; | |
| 2915 | + content: ""; | |
| 2916 | + width: 100%; | |
| 2917 | + height: 100%; | |
| 2918 | + background-size: 100%; | |
| 2919 | + background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat 50%; | |
| 2920 | +} | |
| 2921 | + | |
| 2922 | +.swiper-lazy-preloader-white:after { | |
| 2923 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); | |
| 2924 | +} | |
| 2925 | + | |
| 2926 | +@keyframes swiper-preloader-spin { | |
| 2927 | + 100% { | |
| 2928 | + transform: rotate(360deg); | |
| 2929 | + } | |
| 2930 | +} | |
| 2931 | +.elementor-lightbox { | |
| 2932 | + --lightbox-ui-color: rgba(238, 238, 238, 0.9); | |
| 2933 | + --lightbox-ui-color-hover: #fff; | |
| 2934 | + --lightbox-text-color: var(--lightbox-ui-color); | |
| 2935 | + --lightbox-header-icons-size: 20px; | |
| 2936 | + --lightbox-navigation-icons-size: 25px; | |
| 2937 | +} | |
| 2938 | +.elementor-lightbox .dialog-header { | |
| 2939 | + display: none; | |
| 2940 | +} | |
| 2941 | +.elementor-lightbox .dialog-widget-content { | |
| 2942 | + background: none; | |
| 2943 | + box-shadow: none; | |
| 2944 | + width: 100%; | |
| 2945 | + height: 100%; | |
| 2946 | +} | |
| 2947 | +.elementor-lightbox .dialog-message { | |
| 2948 | + animation-duration: 0.3s; | |
| 2949 | +} | |
| 2950 | +.elementor-lightbox .dialog-message:not(.elementor-fit-aspect-ratio) { | |
| 2951 | + height: 100%; | |
| 2952 | +} | |
| 2953 | +.elementor-lightbox .dialog-message.dialog-lightbox-message { | |
| 2954 | + padding: 0; | |
| 2955 | +} | |
| 2956 | +.elementor-lightbox .dialog-lightbox-close-button { | |
| 2957 | + cursor: pointer; | |
| 2958 | + position: absolute; | |
| 2959 | + font-size: var(--lightbox-header-icons-size); | |
| 2960 | + right: 0.75em; | |
| 2961 | + margin-top: 13px; | |
| 2962 | + padding: 0.25em; | |
| 2963 | + z-index: 2; | |
| 2964 | + line-height: 1; | |
| 2965 | + display: flex; | |
| 2966 | +} | |
| 2967 | +.elementor-lightbox .dialog-lightbox-close-button svg { | |
| 2968 | + height: 1em; | |
| 2969 | + width: 1em; | |
| 2970 | +} | |
| 2971 | +.elementor-lightbox .dialog-lightbox-close-button, | |
| 2972 | +.elementor-lightbox .elementor-swiper-button { | |
| 2973 | + color: var(--lightbox-ui-color); | |
| 2974 | + transition: all 0.3s; | |
| 2975 | + opacity: 1; | |
| 2976 | +} | |
| 2977 | +.elementor-lightbox .dialog-lightbox-close-button svg, | |
| 2978 | +.elementor-lightbox .elementor-swiper-button svg { | |
| 2979 | + fill: var(--lightbox-ui-color); | |
| 2980 | +} | |
| 2981 | +.elementor-lightbox .dialog-lightbox-close-button:hover, | |
| 2982 | +.elementor-lightbox .elementor-swiper-button:hover { | |
| 2983 | + color: var(--lightbox-ui-color-hover); | |
| 2984 | +} | |
| 2985 | +.elementor-lightbox .dialog-lightbox-close-button:hover svg, | |
| 2986 | +.elementor-lightbox .elementor-swiper-button:hover svg { | |
| 2987 | + fill: var(--lightbox-ui-color-hover); | |
| 2988 | +} | |
| 2989 | +.elementor-lightbox .swiper-container { | |
| 2990 | + height: 100%; | |
| 2991 | +} | |
| 2992 | +.elementor-lightbox .elementor-lightbox-item { | |
| 2993 | + display: flex; | |
| 2994 | + align-items: center; | |
| 2995 | + justify-content: center; | |
| 2996 | + position: relative; | |
| 2997 | + padding: 70px; | |
| 2998 | + box-sizing: border-box; | |
| 2999 | + height: 100%; | |
| 3000 | + margin: auto; | |
| 3001 | +} | |
| 3002 | +@media (max-width: 767px) { | |
| 3003 | + .elementor-lightbox .elementor-lightbox-item { | |
| 3004 | + padding: 70px 0; | |
| 3005 | + } | |
| 3006 | +} | |
| 3007 | +.elementor-lightbox .elementor-lightbox-image { | |
| 3008 | + max-height: 100%; | |
| 3009 | + -webkit-user-select: none; | |
| 3010 | + -moz-user-select: none; | |
| 3011 | + user-select: none; | |
| 3012 | +} | |
| 3013 | +.elementor-lightbox .elementor-lightbox-image, .elementor-lightbox .elementor-lightbox-image:hover { | |
| 3014 | + opacity: 1; | |
| 3015 | + filter: none; | |
| 3016 | + border: none; | |
| 3017 | +} | |
| 3018 | +.elementor-lightbox .elementor-lightbox-image, .elementor-lightbox .elementor-video-container { | |
| 3019 | + box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 8px -5px rgba(0, 0, 0, 0.3); | |
| 3020 | + border-radius: 2px; | |
| 3021 | +} | |
| 3022 | +.elementor-lightbox .elementor-video-container { | |
| 3023 | + position: absolute; | |
| 3024 | + top: 50%; | |
| 3025 | + left: 50%; | |
| 3026 | + transform: translate(-50%, -50%); | |
| 3027 | +} | |
| 3028 | +@media (min-width: 1025px) { | |
| 3029 | + .elementor-lightbox .elementor-video-container { | |
| 3030 | + width: 75%; | |
| 3031 | + } | |
| 3032 | +} | |
| 3033 | +@media (max-width: 1024px) { | |
| 3034 | + .elementor-lightbox .elementor-video-container { | |
| 3035 | + width: 100%; | |
| 3036 | + } | |
| 3037 | +} | |
| 3038 | +@media (min-width: 768px) and (max-width: 1024px) { | |
| 3039 | + .elementor-lightbox .elementor-aspect-ratio-916 .elementor-video-container { | |
| 3040 | + width: 70%; | |
| 3041 | + } | |
| 3042 | +} | |
| 3043 | +.elementor-lightbox .elementor-swiper-button:focus { | |
| 3044 | + outline-width: 1px; | |
| 3045 | +} | |
| 3046 | +.elementor-lightbox .elementor-swiper-button-prev, .elementor-lightbox .elementor-swiper-button-next { | |
| 3047 | + height: 100%; | |
| 3048 | + display: flex; | |
| 3049 | + align-items: center; | |
| 3050 | + width: 15%; | |
| 3051 | + justify-content: center; | |
| 3052 | + font-size: var(--lightbox-navigation-icons-size); | |
| 3053 | +} | |
| 3054 | +.elementor-lightbox .elementor-swiper-button-prev { | |
| 3055 | + left: 0; | |
| 3056 | +} | |
| 3057 | +.elementor-lightbox .elementor-swiper-button-next { | |
| 3058 | + right: 0; | |
| 3059 | +} | |
| 3060 | +@media (max-width: 767px) { | |
| 3061 | + .elementor-lightbox .elementor-swiper-button:focus { | |
| 3062 | + outline: none; | |
| 3063 | + } | |
| 3064 | + .elementor-lightbox .elementor-swiper-button-prev, .elementor-lightbox .elementor-swiper-button-next { | |
| 3065 | + width: 20%; | |
| 3066 | + } | |
| 3067 | + .elementor-lightbox .elementor-swiper-button-prev i, .elementor-lightbox .elementor-swiper-button-next i { | |
| 3068 | + padding: 10px; | |
| 3069 | + background-color: rgba(0, 0, 0, 0.5); | |
| 3070 | + } | |
| 3071 | + .elementor-lightbox .elementor-swiper-button-prev { | |
| 3072 | + left: 0; | |
| 3073 | + justify-content: flex-start; | |
| 3074 | + } | |
| 3075 | + .elementor-lightbox .elementor-swiper-button-next { | |
| 3076 | + right: 0; | |
| 3077 | + justify-content: flex-end; | |
| 3078 | + } | |
| 3079 | +} | |
| 3080 | + | |
| 3081 | +.elementor-slideshow__counter { | |
| 3082 | + color: currentColor; | |
| 3083 | + font-size: 0.75em; | |
| 3084 | + width: -moz-max-content; | |
| 3085 | + width: max-content; | |
| 3086 | +} | |
| 3087 | +.elementor-slideshow__header, .elementor-slideshow__footer { | |
| 3088 | + position: absolute; | |
| 3089 | + left: 0; | |
| 3090 | + width: 100%; | |
| 3091 | + padding: 15px 20px; | |
| 3092 | + transition: 0.3s; | |
| 3093 | +} | |
| 3094 | +.elementor-slideshow__footer { | |
| 3095 | + color: var(--lightbox-text-color); | |
| 3096 | +} | |
| 3097 | +.elementor-slideshow__header { | |
| 3098 | + color: var(--lightbox-ui-color); | |
| 3099 | + display: flex; | |
| 3100 | + flex-direction: row-reverse; | |
| 3101 | + font-size: var(--lightbox-header-icons-size); | |
| 3102 | + padding-left: 1em; | |
| 3103 | + padding-right: 2.6em; | |
| 3104 | + top: 0; | |
| 3105 | + align-items: center; | |
| 3106 | + z-index: 10; | |
| 3107 | +} | |
| 3108 | +.elementor-slideshow__header > i, | |
| 3109 | +.elementor-slideshow__header > svg { | |
| 3110 | + cursor: pointer; | |
| 3111 | + padding: 0.25em; | |
| 3112 | + margin: 0 0.35em; | |
| 3113 | +} | |
| 3114 | +.elementor-slideshow__header > i { | |
| 3115 | + font-size: inherit; | |
| 3116 | +} | |
| 3117 | +.elementor-slideshow__header > i:hover { | |
| 3118 | + color: var(--lightbox-ui-color-hover); | |
| 3119 | +} | |
| 3120 | +.elementor-slideshow__header > svg { | |
| 3121 | + box-sizing: content-box; | |
| 3122 | + fill: var(--lightbox-ui-color); | |
| 3123 | + height: 1em; | |
| 3124 | + width: 1em; | |
| 3125 | +} | |
| 3126 | +.elementor-slideshow__header > svg:hover { | |
| 3127 | + fill: var(--lightbox-ui-color-hover); | |
| 3128 | +} | |
| 3129 | +.elementor-slideshow__header .elementor-slideshow__counter { | |
| 3130 | + margin-right: auto; | |
| 3131 | +} | |
| 3132 | +.elementor-slideshow__header .elementor-icon-share { | |
| 3133 | + z-index: 5; | |
| 3134 | +} | |
| 3135 | +.elementor-slideshow__share-menu { | |
| 3136 | + background-color: rgba(0, 0, 0, 0); | |
| 3137 | + width: 0; | |
| 3138 | + height: 0; | |
| 3139 | + position: absolute; | |
| 3140 | + overflow: hidden; | |
| 3141 | + transition: background-color 400ms; | |
| 3142 | +} | |
| 3143 | +.elementor-slideshow__share-menu .elementor-slideshow__share-links a { | |
| 3144 | + color: #2C2C2C; | |
| 3145 | +} | |
| 3146 | +.elementor-slideshow__share-links { | |
| 3147 | + display: block; | |
| 3148 | + position: absolute; | |
| 3149 | + min-width: 200px; | |
| 3150 | + right: 2.8em; | |
| 3151 | + top: 3em; | |
| 3152 | + background-color: #fff; | |
| 3153 | + border-radius: 3px; | |
| 3154 | + padding: 14px 20px; | |
| 3155 | + transform: scale(0); | |
| 3156 | + opacity: 0; | |
| 3157 | + transform-origin: 90% 10%; | |
| 3158 | + transition: all 250ms 100ms; | |
| 3159 | + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); | |
| 3160 | +} | |
| 3161 | +.elementor-slideshow__share-links a { | |
| 3162 | + text-align: left; | |
| 3163 | + color: #55595c; | |
| 3164 | + font-size: 12px; | |
| 3165 | + line-height: 2.5; | |
| 3166 | + display: block; | |
| 3167 | + opacity: 0; | |
| 3168 | + transition: opacity 500ms 100ms; | |
| 3169 | +} | |
| 3170 | +.elementor-slideshow__share-links a:hover { | |
| 3171 | + color: #000; | |
| 3172 | +} | |
| 3173 | +.elementor-slideshow__share-links a i, | |
| 3174 | +.elementor-slideshow__share-links a svg { | |
| 3175 | + margin-right: 0.75em; | |
| 3176 | +} | |
| 3177 | +.elementor-slideshow__share-links a i { | |
| 3178 | + font-size: 1.25em; | |
| 3179 | +} | |
| 3180 | +.elementor-slideshow__share-links a svg { | |
| 3181 | + height: 1.25em; | |
| 3182 | + width: 1.25em; | |
| 3183 | +} | |
| 3184 | +.elementor-slideshow__share-links:before { | |
| 3185 | + content: ""; | |
| 3186 | + display: block; | |
| 3187 | + position: absolute; | |
| 3188 | + top: 1px; | |
| 3189 | + right: 0.5em; | |
| 3190 | + border: 0.45em solid; | |
| 3191 | + border-color: transparent transparent #fff transparent; | |
| 3192 | + transform: translateY(-100%) scaleX(0.7); | |
| 3193 | +} | |
| 3194 | +.elementor-slideshow__footer { | |
| 3195 | + bottom: 0; | |
| 3196 | + z-index: 5; | |
| 3197 | + position: fixed; | |
| 3198 | +} | |
| 3199 | +.elementor-slideshow__title, .elementor-slideshow__description { | |
| 3200 | + margin: 0; | |
| 3201 | +} | |
| 3202 | +.elementor-slideshow__title { | |
| 3203 | + font-size: 16px; | |
| 3204 | + font-weight: bold; | |
| 3205 | +} | |
| 3206 | +.elementor-slideshow__description { | |
| 3207 | + font-size: 14px; | |
| 3208 | +} | |
| 3209 | +.elementor-slideshow--ui-hidden .elementor-slideshow__header, .elementor-slideshow--ui-hidden .elementor-slideshow__footer { | |
| 3210 | + opacity: 0; | |
| 3211 | + pointer-events: none; | |
| 3212 | +} | |
| 3213 | +.elementor-slideshow--ui-hidden .elementor-swiper-button-prev, .elementor-slideshow--ui-hidden .elementor-swiper-button-next { | |
| 3214 | + opacity: 0; | |
| 3215 | +} | |
| 3216 | +.elementor-slideshow--fullscreen-mode .elementor-video-container { | |
| 3217 | + width: 100%; | |
| 3218 | +} | |
| 3219 | +.elementor-slideshow--zoom-mode .elementor-slideshow__header, .elementor-slideshow--zoom-mode .elementor-slideshow__footer { | |
| 3220 | + background-color: rgba(0, 0, 0, 0.5); | |
| 3221 | +} | |
| 3222 | +.elementor-slideshow--zoom-mode .elementor-swiper-button-prev, .elementor-slideshow--zoom-mode .elementor-swiper-button-next { | |
| 3223 | + opacity: 0; | |
| 3224 | + pointer-events: none; | |
| 3225 | +} | |
| 3226 | +.elementor-slideshow--share-mode .elementor-slideshow__share-menu { | |
| 3227 | + top: 0; | |
| 3228 | + left: 0; | |
| 3229 | + width: 100vw; | |
| 3230 | + height: 100vh; | |
| 3231 | + opacity: 1; | |
| 3232 | + cursor: default; | |
| 3233 | + background-color: rgba(0, 0, 0, 0.5); | |
| 3234 | +} | |
| 3235 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links { | |
| 3236 | + transform: scale(1); | |
| 3237 | +} | |
| 3238 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links, .elementor-slideshow--share-mode .elementor-slideshow__share-links a { | |
| 3239 | + opacity: 1; | |
| 3240 | +} | |
| 3241 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-twitter { | |
| 3242 | + color: #1DA1F2; | |
| 3243 | +} | |
| 3244 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-facebook { | |
| 3245 | + color: #3b5998; | |
| 3246 | +} | |
| 3247 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-pinterest { | |
| 3248 | + color: #bd081c; | |
| 3249 | +} | |
| 3250 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-download-bold { | |
| 3251 | + color: #a4afb7; | |
| 3252 | +} | |
| 3253 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-twitter { | |
| 3254 | + fill: #1DA1F2; | |
| 3255 | +} | |
| 3256 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-facebook { | |
| 3257 | + fill: #3b5998; | |
| 3258 | +} | |
| 3259 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-pinterest { | |
| 3260 | + fill: #bd081c; | |
| 3261 | +} | |
| 3262 | +.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-download-bold { | |
| 3263 | + fill: #a4afb7; | |
| 3264 | +} | |
| 3265 | +.elementor-slideshow--share-mode .eicon-share-arrow { | |
| 3266 | + z-index: 2; | |
| 3267 | +} | |
| 3268 | + | |
| 2143 | 3269 | .animated { |
| 2144 | 3270 | animation-duration: 1.25s; |
| 2145 | 3271 | } |
| 2146 | 3272 | .animated.animated-slow { |
| @@ -2158,22 +3284,200 @@ | ||
| 2158 | 3284 | } |
| 2159 | 3285 | |
| 2160 | 3286 | @media (prefers-reduced-motion: reduce) { |
| 2161 | 3287 | .animated { |
| 2162 | - animation: none !important; | |
| 3288 | + animation: none; | |
| 2163 | 3289 | } |
| 2164 | - html * { | |
| 2165 | - transition-duration: 0s !important; | |
| 2166 | - transition-delay: 0s !important; | |
| 3290 | +} | |
| 3291 | +.elementor-shape { | |
| 3292 | + overflow: hidden; | |
| 3293 | + position: absolute; | |
| 3294 | + left: 0; | |
| 3295 | + width: 100%; | |
| 3296 | + line-height: 0; | |
| 3297 | + direction: ltr; | |
| 3298 | + /* | |
| 3299 | + * @TODO: The `z-index: -1` rules below are temporary fixes for Chrome 85 issue. | |
| 3300 | + * It will be removed in a future version of Chrome. | |
| 3301 | + */ | |
| 3302 | +} | |
| 3303 | +.elementor-shape-top { | |
| 3304 | + top: -1px; | |
| 3305 | +} | |
| 3306 | +.elementor-shape-top:not([data-negative=false]) svg { | |
| 3307 | + z-index: -1; | |
| 3308 | +} | |
| 3309 | +.elementor-shape-bottom { | |
| 3310 | + bottom: -1px; | |
| 3311 | +} | |
| 3312 | +.elementor-shape-bottom:not([data-negative=true]) svg { | |
| 3313 | + z-index: -1; | |
| 3314 | +} | |
| 3315 | +.elementor-shape[data-negative=false].elementor-shape-bottom { | |
| 3316 | + transform: rotate(180deg); | |
| 3317 | +} | |
| 3318 | +.elementor-shape[data-negative=true].elementor-shape-top { | |
| 3319 | + transform: rotate(180deg); | |
| 3320 | +} | |
| 3321 | +.elementor-shape svg { | |
| 3322 | + display: block; | |
| 3323 | + width: calc(100% + 1.3px); | |
| 3324 | + position: relative; | |
| 3325 | + left: 50%; | |
| 3326 | + transform: translateX(-50%); | |
| 3327 | +} | |
| 3328 | +.elementor-shape .elementor-shape-fill { | |
| 3329 | + fill: #fff; | |
| 3330 | + transform-origin: center; | |
| 3331 | + transform: rotateY(0deg); | |
| 3332 | +} | |
| 3333 | + | |
| 3334 | +#wp-admin-bar-elementor_edit_page > .ab-item::before { | |
| 3335 | + content: "\e813"; | |
| 3336 | + font-family: eicons; | |
| 3337 | + top: 3px; | |
| 3338 | + font-size: 18px; | |
| 3339 | +} | |
| 3340 | +#wp-admin-bar-elementor_edit_page .ab-submenu .ab-item { | |
| 3341 | + display: flex; | |
| 3342 | + width: 200px; | |
| 3343 | +} | |
| 3344 | +#wp-admin-bar-elementor_edit_page .elementor-edit-link-title { | |
| 3345 | + white-space: nowrap; | |
| 3346 | + text-overflow: ellipsis; | |
| 3347 | + overflow: hidden; | |
| 3348 | + width: 100%; | |
| 3349 | +} | |
| 3350 | +#wp-admin-bar-elementor_edit_page .elementor-edit-link-type { | |
| 3351 | + background: #55595c; | |
| 3352 | + font-size: 11px; | |
| 3353 | + line-height: 9px; | |
| 3354 | + margin-top: 6px; | |
| 3355 | + padding: 4px 8px; | |
| 3356 | + border-radius: 3px; | |
| 3357 | +} | |
| 3358 | + | |
| 3359 | +#wp-admin-bar-elementor_inspector > .ab-item::before { | |
| 3360 | + content: "\f348"; | |
| 3361 | + top: 2px; | |
| 3362 | +} | |
| 3363 | + | |
| 3364 | +#wpadminbar * { | |
| 3365 | + font-style: normal; | |
| 3366 | +} | |
| 3367 | + | |
| 3368 | +.page-template-elementor_canvas.elementor-page:before { | |
| 3369 | + display: none; | |
| 3370 | +} | |
| 3371 | + | |
| 3372 | +.elementor-post__thumbnail__link { | |
| 3373 | + transition: none; | |
| 3374 | +} | |
| 3375 | + | |
| 3376 | +#left-area ul.elementor-icon-list-items, | |
| 3377 | +.elementor .elementor-element ul.elementor-icon-list-items, | |
| 3378 | +.elementor-edit-area .elementor-element ul.elementor-icon-list-items { | |
| 3379 | + padding: 0; | |
| 3380 | +} | |
| 3381 | + | |
| 3382 | +.e--ua-appleWebkit.rtl { | |
| 3383 | + --flex-right: flex-start; | |
| 3384 | +} | |
| 3385 | +.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-right, | |
| 3386 | +.e--ua-appleWebkit .elementor-share-buttons--align-right { | |
| 3387 | + --justify-content: var(--flex-right, flex-end); | |
| 3388 | +} | |
| 3389 | +.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-center, | |
| 3390 | +.e--ua-appleWebkit .elementor-share-buttons--align-center { | |
| 3391 | + --justify-content: center; | |
| 3392 | +} | |
| 3393 | +.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid { | |
| 3394 | + width: auto; | |
| 3395 | + display: flex; | |
| 3396 | + flex-wrap: wrap; | |
| 3397 | + justify-content: var(--justify-content, space-between); | |
| 3398 | + margin-left: calc(-0.5 * var(--grid-column-gap)); | |
| 3399 | + margin-right: calc(-0.5 * var(--grid-column-gap)); | |
| 3400 | +} | |
| 3401 | +.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid-item { | |
| 3402 | + margin-left: calc(0.5 * var(--grid-column-gap)); | |
| 3403 | + margin-right: calc(0.5 * var(--grid-column-gap)); | |
| 3404 | +} | |
| 3405 | +.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid { | |
| 3406 | + display: inline-block; | |
| 3407 | +} | |
| 3408 | +.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid-item { | |
| 3409 | + margin-left: 0; | |
| 3410 | + margin-right: 0; | |
| 3411 | +} | |
| 3412 | +@media (max-width: 1024px) { | |
| 3413 | + .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-right, | |
| 3414 | + .e--ua-appleWebkit .elementor-share-buttons-tablet--align-right { | |
| 3415 | + --justify-content: var(--flex-right, flex-end); | |
| 2167 | 3416 | } |
| 3417 | + .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-center, | |
| 3418 | + .e--ua-appleWebkit .elementor-share-buttons-tablet--align-center { | |
| 3419 | + --justify-content: center; | |
| 3420 | + } | |
| 3421 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid { | |
| 3422 | + width: auto; | |
| 3423 | + display: flex; | |
| 3424 | + flex-wrap: wrap; | |
| 3425 | + justify-content: var(--justify-content, space-between); | |
| 3426 | + margin-left: calc(-0.5 * var(--grid-column-gap)); | |
| 3427 | + margin-right: calc(-0.5 * var(--grid-column-gap)); | |
| 3428 | + } | |
| 3429 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid-item { | |
| 3430 | + margin-left: calc(0.5 * var(--grid-column-gap)); | |
| 3431 | + margin-right: calc(0.5 * var(--grid-column-gap)); | |
| 3432 | + } | |
| 3433 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid { | |
| 3434 | + display: inline-block; | |
| 3435 | + } | |
| 3436 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid-item { | |
| 3437 | + margin-left: 0; | |
| 3438 | + margin-right: 0; | |
| 3439 | + } | |
| 2168 | 3440 | } |
| 2169 | 3441 | @media (max-width: 767px) { |
| 2170 | - .elementor .elementor-hidden-phone, | |
| 3442 | + .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-right, | |
| 3443 | + .e--ua-appleWebkit .elementor-share-buttons-mobile--align-right { | |
| 3444 | + --justify-content: var(--flex-right, flex-end); | |
| 3445 | + } | |
| 3446 | + .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-center, | |
| 3447 | + .e--ua-appleWebkit .elementor-share-buttons-mobile--align-center { | |
| 3448 | + --justify-content: center; | |
| 3449 | + } | |
| 3450 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid { | |
| 3451 | + width: auto; | |
| 3452 | + display: flex; | |
| 3453 | + flex-wrap: wrap; | |
| 3454 | + justify-content: var(--justify-content, space-between); | |
| 3455 | + margin-left: calc(-0.5 * var(--grid-column-gap)); | |
| 3456 | + margin-right: calc(-0.5 * var(--grid-column-gap)); | |
| 3457 | + } | |
| 3458 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid-item { | |
| 3459 | + margin-left: calc(0.5 * var(--grid-column-gap)); | |
| 3460 | + margin-right: calc(0.5 * var(--grid-column-gap)); | |
| 3461 | + } | |
| 3462 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid { | |
| 3463 | + display: inline-block; | |
| 3464 | + } | |
| 3465 | + .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid-item { | |
| 3466 | + margin-left: 0; | |
| 3467 | + margin-right: 0; | |
| 3468 | + } | |
| 3469 | +} | |
| 3470 | + | |
| 3471 | +@media (max-width: 767px) { | |
| 2171 | 3472 | .elementor .elementor-hidden-mobile { |
| 2172 | 3473 | display: none; |
| 2173 | 3474 | } |
| 3475 | + .elementor .elementor-hidden-phone { | |
| 3476 | + display: none; | |
| 3477 | + } | |
| 2174 | 3478 | } |
| 2175 | -@media (min-width: -1) and (max-width: -1) { | |
| 3479 | +@media (min-width: -1px) and (max-width: -1px) { | |
| 2176 | 3480 | .elementor .elementor-hidden-mobile_extra { |
| 2177 | 3481 | display: none; |
| 2178 | 3482 | } |
| 2179 | 3483 | } |
| @@ -2181,14 +3485,14 @@ | ||
| 2181 | 3485 | .elementor .elementor-hidden-tablet { |
| 2182 | 3486 | display: none; |
| 2183 | 3487 | } |
| 2184 | 3488 | } |
| 2185 | -@media (min-width: -1) and (max-width: -1) { | |
| 3489 | +@media (min-width: -1px) and (max-width: -1px) { | |
| 2186 | 3490 | .elementor .elementor-hidden-tablet_extra { |
| 2187 | 3491 | display: none; |
| 2188 | 3492 | } |
| 2189 | 3493 | } |
| 2190 | -@media (min-width: -1) and (max-width: -1) { | |
| 3494 | +@media (min-width: -1px) and (max-width: -1px) { | |
| 2191 | 3495 | .elementor .elementor-hidden-laptop { |
| 2192 | 3496 | display: none; |
| 2193 | 3497 | } |
| 2194 | 3498 | } |
| @@ -2196,10 +3500,1797 @@ | ||
| 2196 | 3500 | .elementor .elementor-hidden-desktop { |
| 2197 | 3501 | display: none; |
| 2198 | 3502 | } |
| 2199 | 3503 | } |
| 2200 | -@media (min-width: -1) { | |
| 3504 | +@media (min-width: -1px) { | |
| 2201 | 3505 | .elementor .elementor-hidden-widescreen { |
| 2202 | 3506 | display: none; |
| 2203 | 3507 | } |
| 3508 | +} | |
| 3509 | + | |
| 3510 | +.elementor-widget-text-path { | |
| 3511 | + font-size: 20px; | |
| 3512 | + text-align: var(--alignment, left); | |
| 3513 | +} | |
| 3514 | +.elementor-widget-text-path svg { | |
| 3515 | + width: var(--width); | |
| 3516 | + max-width: 100%; | |
| 3517 | + height: auto; | |
| 3518 | + overflow: visible; | |
| 3519 | + word-spacing: var(--word-spacing); | |
| 3520 | + transform: rotate(var(--rotate, 0)) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1)); | |
| 3521 | +} | |
| 3522 | +.elementor-widget-text-path svg path { | |
| 3523 | + vector-effect: non-scaling-stroke; /* Prevent stroke size scaling when resizing the SVG. */ | |
| 3524 | + fill: var(--path-fill, transparent); | |
| 3525 | + stroke: var(--stroke-color, transparent); | |
| 3526 | + stroke-width: var(--stroke-width, 1px); | |
| 3527 | + transition: var(--stroke-transition) stroke, var(--stroke-transition) fill; | |
| 3528 | +} | |
| 3529 | +.elementor-widget-text-path svg:hover path { | |
| 3530 | + --path-fill: var( --path-fill-hover ); | |
| 3531 | + --stroke-color: var( --stroke-color-hover ); | |
| 3532 | + --stroke-width: var( --stroke-width-hover ); | |
| 3533 | +} | |
| 3534 | +.elementor-widget-text-path svg text { | |
| 3535 | + --fill: var( --text-color ); | |
| 3536 | + fill: var(--fill); | |
| 3537 | + direction: var(--direction, ltr); | |
| 3538 | + transition: var(--transition) stroke, var(--transition) stroke-width, var(--transition) fill; | |
| 3539 | +} | |
| 3540 | +.elementor-widget-text-path svg text:hover { | |
| 3541 | + --color: var( --text-color-hover, var( --text-color ) ); | |
| 3542 | + --fill: var( --color ); | |
| 3543 | + color: var(--color); | |
| 3544 | +} | |
| 3545 | + | |
| 3546 | +.elementor-accordion { | |
| 3547 | + text-align: left; | |
| 3548 | +} | |
| 3549 | +.elementor-accordion .elementor-accordion-item { | |
| 3550 | + border: 1px solid #D4D4D4; | |
| 3551 | +} | |
| 3552 | +.elementor-accordion .elementor-accordion-item + .elementor-accordion-item { | |
| 3553 | + border-top: none; | |
| 3554 | +} | |
| 3555 | +.elementor-accordion .elementor-tab-title { | |
| 3556 | + margin: 0; | |
| 3557 | + padding: 15px 20px; | |
| 3558 | + font-weight: bold; | |
| 3559 | + line-height: 1; | |
| 3560 | + cursor: pointer; | |
| 3561 | + outline: none; | |
| 3562 | +} | |
| 3563 | +.elementor-accordion .elementor-tab-title .elementor-accordion-icon { | |
| 3564 | + display: inline-block; | |
| 3565 | + width: 1.5em; | |
| 3566 | +} | |
| 3567 | +.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg { | |
| 3568 | + width: 1em; | |
| 3569 | + height: 1em; | |
| 3570 | +} | |
| 3571 | +.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right { | |
| 3572 | + float: right; | |
| 3573 | + text-align: right; | |
| 3574 | +} | |
| 3575 | +.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left { | |
| 3576 | + float: left; | |
| 3577 | + text-align: left; | |
| 3578 | +} | |
| 3579 | +.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed { | |
| 3580 | + display: block; | |
| 3581 | +} | |
| 3582 | +.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened { | |
| 3583 | + display: none; | |
| 3584 | +} | |
| 3585 | +.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed { | |
| 3586 | + display: none; | |
| 3587 | +} | |
| 3588 | +.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened { | |
| 3589 | + display: block; | |
| 3590 | +} | |
| 3591 | +.elementor-accordion .elementor-tab-content { | |
| 3592 | + display: none; | |
| 3593 | + padding: 15px 20px; | |
| 3594 | + border-top: 1px solid #D4D4D4; | |
| 3595 | +} | |
| 3596 | + | |
| 3597 | +@media (max-width: 767px) { | |
| 3598 | + .elementor-accordion .elementor-tab-title { | |
| 3599 | + padding: 12px 15px; | |
| 3600 | + } | |
| 3601 | + .elementor-accordion .elementor-tab-title .elementor-accordion-icon { | |
| 3602 | + width: 1.2em; | |
| 3603 | + } | |
| 3604 | + .elementor-accordion .elementor-tab-content { | |
| 3605 | + padding: 7px 15px; | |
| 3606 | + } | |
| 3607 | +} | |
| 3608 | +.e-con > .elementor-widget-accordion, | |
| 3609 | +.e-con-inner > .elementor-widget-accordion { | |
| 3610 | + width: var(--container-widget-width, 100%); | |
| 3611 | +} | |
| 3612 | + | |
| 3613 | +.elementor-alert { | |
| 3614 | + padding: 15px; | |
| 3615 | + border-left: 5px solid transparent; | |
| 3616 | + position: relative; | |
| 3617 | + text-align: left; | |
| 3618 | +} | |
| 3619 | +.elementor-alert .elementor-alert-title { | |
| 3620 | + display: block; | |
| 3621 | + font-weight: bold; | |
| 3622 | +} | |
| 3623 | +.elementor-alert .elementor-alert-description { | |
| 3624 | + font-size: 13px; | |
| 3625 | +} | |
| 3626 | +.elementor-alert button.elementor-alert-dismiss { | |
| 3627 | + position: absolute; | |
| 3628 | + right: var(--dismiss-icon-horizontal-position, 10px); | |
| 3629 | + top: var(--dismiss-icon-vertical-position, 10px); | |
| 3630 | + padding: 3px; | |
| 3631 | + font-size: var(--dismiss-icon-size, 20px); | |
| 3632 | + line-height: 1; | |
| 3633 | + background: transparent; | |
| 3634 | + color: var(--dismiss-icon-normal-color, inherit); | |
| 3635 | + border: none; | |
| 3636 | + cursor: pointer; | |
| 3637 | + transition-duration: var(--dismiss-icon-hover-transition-duration, 0.3s); | |
| 3638 | +} | |
| 3639 | +.elementor-alert button.elementor-alert-dismiss:hover { | |
| 3640 | + color: var(--dismiss-icon-hover-color, inherit); | |
| 3641 | +} | |
| 3642 | +.elementor-alert button.elementor-alert-dismiss svg { | |
| 3643 | + width: var(--dismiss-icon-size, 20px); | |
| 3644 | + height: var(--dismiss-icon-size, 20px); | |
| 3645 | + fill: var(--dismiss-icon-normal-color, currentColor); | |
| 3646 | + transition-duration: var(--dismiss-icon-hover-transition-duration, 0.3s); | |
| 3647 | +} | |
| 3648 | +.elementor-alert button.elementor-alert-dismiss svg:hover { | |
| 3649 | + fill: var(--dismiss-icon-hover-color, currentColor); | |
| 3650 | +} | |
| 3651 | +.elementor-alert.elementor-alert-info { | |
| 3652 | + color: #31708f; | |
| 3653 | + background-color: #d9edf7; | |
| 3654 | + border-color: #bcdff1; | |
| 3655 | +} | |
| 3656 | +.elementor-alert.elementor-alert-success { | |
| 3657 | + color: #3c763d; | |
| 3658 | + background-color: #dff0d8; | |
| 3659 | + border-color: #cae6be; | |
| 3660 | +} | |
| 3661 | +.elementor-alert.elementor-alert-warning { | |
| 3662 | + color: #8a6d3b; | |
| 3663 | + background-color: #fcf8e3; | |
| 3664 | + border-color: #f9f0c3; | |
| 3665 | +} | |
| 3666 | +.elementor-alert.elementor-alert-danger { | |
| 3667 | + color: #a94442; | |
| 3668 | + background-color: #f2dede; | |
| 3669 | + border-color: #e8c4c4; | |
| 3670 | +} | |
| 3671 | + | |
| 3672 | +@media (max-width: 767px) { | |
| 3673 | + .elementor-alert { | |
| 3674 | + padding: 10px; | |
| 3675 | + } | |
| 3676 | + .elementor-alert button.elementor-alert-dismiss { | |
| 3677 | + right: 7px; | |
| 3678 | + top: 7px; | |
| 3679 | + } | |
| 3680 | +} | |
| 3681 | +.elementor-counter .elementor-counter-number-wrapper { | |
| 3682 | + display: flex; | |
| 3683 | + font-size: 69px; | |
| 3684 | + font-weight: 600; | |
| 3685 | + line-height: 1; | |
| 3686 | +} | |
| 3687 | +.elementor-counter .elementor-counter-number-prefix, .elementor-counter .elementor-counter-number-suffix { | |
| 3688 | + flex-grow: 1; | |
| 3689 | + white-space: pre-wrap; | |
| 3690 | +} | |
| 3691 | +.elementor-counter .elementor-counter-number-prefix { | |
| 3692 | + text-align: right; | |
| 3693 | +} | |
| 3694 | +.elementor-counter .elementor-counter-number-suffix { | |
| 3695 | + text-align: left; | |
| 3696 | +} | |
| 3697 | +.elementor-counter .elementor-counter-title { | |
| 3698 | + text-align: center; | |
| 3699 | + font-size: 19px; | |
| 3700 | + font-weight: 400; | |
| 3701 | + line-height: 2.5; | |
| 3702 | +} | |
| 3703 | + | |
| 3704 | +.elementor-widget-divider { | |
| 3705 | + --divider-border-style: none; | |
| 3706 | + --divider-border-width: 1px; | |
| 3707 | + --divider-color: #2C2C2C; | |
| 3708 | + --divider-icon-size: 20px; | |
| 3709 | + --divider-element-spacing: 10px; | |
| 3710 | + --divider-pattern-height: 24px; | |
| 3711 | + --divider-pattern-size: 20px; | |
| 3712 | + --divider-pattern-url: none; | |
| 3713 | + --divider-pattern-repeat: repeat-x; | |
| 3714 | +} | |
| 3715 | +.elementor-widget-divider .elementor-divider { | |
| 3716 | + display: flex; | |
| 3717 | +} | |
| 3718 | +.elementor-widget-divider .elementor-divider__text { | |
| 3719 | + font-size: 15px; | |
| 3720 | + line-height: 1; | |
| 3721 | + max-width: 95%; | |
| 3722 | +} | |
| 3723 | +.elementor-widget-divider .elementor-divider__element { | |
| 3724 | + margin: 0 var(--divider-element-spacing); | |
| 3725 | + flex-shrink: 0; | |
| 3726 | +} | |
| 3727 | +.elementor-widget-divider .elementor-icon { | |
| 3728 | + font-size: var(--divider-icon-size); | |
| 3729 | +} | |
| 3730 | +.elementor-widget-divider .elementor-divider-separator { | |
| 3731 | + display: flex; | |
| 3732 | + margin: 0; | |
| 3733 | + direction: ltr; | |
| 3734 | +} | |
| 3735 | +.elementor-widget-divider--view-line_text .elementor-divider-separator, .elementor-widget-divider--view-line_icon .elementor-divider-separator { | |
| 3736 | + align-items: center; | |
| 3737 | +} | |
| 3738 | +.elementor-widget-divider--view-line_text .elementor-divider-separator:before, .elementor-widget-divider--view-line_text .elementor-divider-separator:after, .elementor-widget-divider--view-line_icon .elementor-divider-separator:before, .elementor-widget-divider--view-line_icon .elementor-divider-separator:after { | |
| 3739 | + display: block; | |
| 3740 | + content: ""; | |
| 3741 | + border-bottom: 0; | |
| 3742 | + flex-grow: 1; | |
| 3743 | + border-top: var(--divider-border-width) var(--divider-border-style) var(--divider-color); | |
| 3744 | +} | |
| 3745 | +.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator > .elementor-divider__svg:first-of-type { | |
| 3746 | + flex-grow: 0; | |
| 3747 | + flex-shrink: 100; | |
| 3748 | +} | |
| 3749 | +.elementor-widget-divider--element-align-left .elementor-divider-separator:before { | |
| 3750 | + content: none; | |
| 3751 | +} | |
| 3752 | +.elementor-widget-divider--element-align-left .elementor-divider__element { | |
| 3753 | + margin-left: 0; | |
| 3754 | +} | |
| 3755 | +.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator > .elementor-divider__svg:last-of-type { | |
| 3756 | + flex-grow: 0; | |
| 3757 | + flex-shrink: 100; | |
| 3758 | +} | |
| 3759 | +.elementor-widget-divider--element-align-right .elementor-divider-separator:after { | |
| 3760 | + content: none; | |
| 3761 | +} | |
| 3762 | +.elementor-widget-divider--element-align-right .elementor-divider__element { | |
| 3763 | + margin-right: 0; | |
| 3764 | +} | |
| 3765 | +.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator { | |
| 3766 | + border-top: var(--divider-border-width) var(--divider-border-style) var(--divider-color); | |
| 3767 | +} | |
| 3768 | +.elementor-widget-divider--separator-type-pattern { | |
| 3769 | + --divider-border-style: none; | |
| 3770 | +} | |
| 3771 | +.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator, .elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator, .elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before, .elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after { | |
| 3772 | + width: 100%; | |
| 3773 | + min-height: var(--divider-pattern-height); | |
| 3774 | + -webkit-mask-size: var(--divider-pattern-size) 100%; | |
| 3775 | + mask-size: var(--divider-pattern-size) 100%; | |
| 3776 | + -webkit-mask-repeat: var(--divider-pattern-repeat); | |
| 3777 | + mask-repeat: var(--divider-pattern-repeat); | |
| 3778 | + background-color: var(--divider-color); | |
| 3779 | + -webkit-mask-image: var(--divider-pattern-url); | |
| 3780 | + mask-image: var(--divider-pattern-url); | |
| 3781 | +} | |
| 3782 | +.elementor-widget-divider--no-spacing { | |
| 3783 | + --divider-pattern-size: auto; | |
| 3784 | +} | |
| 3785 | +.elementor-widget-divider--bg-round { | |
| 3786 | + --divider-pattern-repeat: round; | |
| 3787 | +} | |
| 3788 | + | |
| 3789 | +.rtl .elementor-widget-divider .elementor-divider__text { | |
| 3790 | + direction: rtl; | |
| 3791 | +} | |
| 3792 | + | |
| 3793 | +.e-con > .elementor-widget-divider, | |
| 3794 | +.e-con-inner > .elementor-widget-divider { | |
| 3795 | + width: var(--container-widget-width, 100%); | |
| 3796 | +} | |
| 3797 | + | |
| 3798 | +.elementor-image-gallery .gallery-item { | |
| 3799 | + display: inline-block; | |
| 3800 | + text-align: center; | |
| 3801 | + vertical-align: top; | |
| 3802 | + width: 100%; | |
| 3803 | + max-width: 100%; | |
| 3804 | + margin: 0 auto; | |
| 3805 | +} | |
| 3806 | +.elementor-image-gallery .gallery-item img { | |
| 3807 | + margin: 0 auto; | |
| 3808 | +} | |
| 3809 | +.elementor-image-gallery .gallery-item .gallery-caption { | |
| 3810 | + margin: 0; | |
| 3811 | +} | |
| 3812 | +.elementor-image-gallery figure img { | |
| 3813 | + display: block; | |
| 3814 | +} | |
| 3815 | +.elementor-image-gallery figure figcaption { | |
| 3816 | + width: 100%; | |
| 3817 | +} | |
| 3818 | +.gallery-spacing-custom .elementor-image-gallery .gallery-icon { | |
| 3819 | + padding: 0; | |
| 3820 | +} | |
| 3821 | +@media (min-width: 768px) { | |
| 3822 | + .elementor-image-gallery .gallery-columns-2 .gallery-item { | |
| 3823 | + max-width: 50%; | |
| 3824 | + } | |
| 3825 | + .elementor-image-gallery .gallery-columns-3 .gallery-item { | |
| 3826 | + max-width: 33.33%; | |
| 3827 | + } | |
| 3828 | + .elementor-image-gallery .gallery-columns-4 .gallery-item { | |
| 3829 | + max-width: 25%; | |
| 3830 | + } | |
| 3831 | + .elementor-image-gallery .gallery-columns-5 .gallery-item { | |
| 3832 | + max-width: 20%; | |
| 3833 | + } | |
| 3834 | + .elementor-image-gallery .gallery-columns-6 .gallery-item { | |
| 3835 | + max-width: 16.666%; | |
| 3836 | + } | |
| 3837 | + .elementor-image-gallery .gallery-columns-7 .gallery-item { | |
| 3838 | + max-width: 14.28%; | |
| 3839 | + } | |
| 3840 | + .elementor-image-gallery .gallery-columns-8 .gallery-item { | |
| 3841 | + max-width: 12.5%; | |
| 3842 | + } | |
| 3843 | + .elementor-image-gallery .gallery-columns-9 .gallery-item { | |
| 3844 | + max-width: 11.11%; | |
| 3845 | + } | |
| 3846 | + .elementor-image-gallery .gallery-columns-10 .gallery-item { | |
| 3847 | + max-width: 10%; | |
| 3848 | + } | |
| 3849 | +} | |
| 3850 | +@media (min-width: 480px) and (max-width: 767px) { | |
| 3851 | + .elementor-image-gallery .gallery.gallery-columns-2 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-3 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-4 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-5 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-6 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-7 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-8 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-9 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-10 .gallery-item { | |
| 3852 | + max-width: 50%; | |
| 3853 | + } | |
| 3854 | +} | |
| 3855 | +@media (max-width: 479px) { | |
| 3856 | + .elementor-image-gallery .gallery.gallery-columns-2 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-3 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-4 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-5 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-6 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-7 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-8 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-9 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-10 .gallery-item { | |
| 3857 | + max-width: 100%; | |
| 3858 | + } | |
| 3859 | +} | |
| 3860 | + | |
| 3861 | +.elementor-widget-google_maps .elementor-widget-container { | |
| 3862 | + overflow: hidden; | |
| 3863 | +} | |
| 3864 | +.elementor-widget-google_maps iframe { | |
| 3865 | + height: 300px; | |
| 3866 | +} | |
| 3867 | + | |
| 3868 | +.elementor-heading-title { | |
| 3869 | + padding: 0; | |
| 3870 | + margin: 0; | |
| 3871 | + line-height: 1; | |
| 3872 | +} | |
| 3873 | + | |
| 3874 | +.elementor-widget-heading .elementor-heading-title[class*=elementor-size-] > a { | |
| 3875 | + color: inherit; | |
| 3876 | + font-size: inherit; | |
| 3877 | + line-height: inherit; | |
| 3878 | +} | |
| 3879 | +.elementor-widget-heading .elementor-heading-title.elementor-size-small { | |
| 3880 | + font-size: 15px; | |
| 3881 | +} | |
| 3882 | +.elementor-widget-heading .elementor-heading-title.elementor-size-medium { | |
| 3883 | + font-size: 19px; | |
| 3884 | +} | |
| 3885 | +.elementor-widget-heading .elementor-heading-title.elementor-size-large { | |
| 3886 | + font-size: 29px; | |
| 3887 | +} | |
| 3888 | +.elementor-widget-heading .elementor-heading-title.elementor-size-xl { | |
| 3889 | + font-size: 39px; | |
| 3890 | +} | |
| 3891 | +.elementor-widget-heading .elementor-heading-title.elementor-size-xxl { | |
| 3892 | + font-size: 59px; | |
| 3893 | +} | |
| 3894 | + | |
| 3895 | +.elementor-widget-icon-box .elementor-icon-box-wrapper { | |
| 3896 | + display: block; | |
| 3897 | + text-align: center; | |
| 3898 | +} | |
| 3899 | +.elementor-widget-icon-box .elementor-icon-box-icon { | |
| 3900 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 3901 | + margin-right: auto; | |
| 3902 | + margin-left: auto; | |
| 3903 | +} | |
| 3904 | +@media (min-width: 768px) { | |
| 3905 | + .elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper { | |
| 3906 | + align-items: flex-start; | |
| 3907 | + } | |
| 3908 | + .elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper { | |
| 3909 | + align-items: center; | |
| 3910 | + } | |
| 3911 | + .elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper { | |
| 3912 | + align-items: flex-end; | |
| 3913 | + } | |
| 3914 | +} | |
| 3915 | +.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper { | |
| 3916 | + display: flex; | |
| 3917 | +} | |
| 3918 | +.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon { | |
| 3919 | + display: inline-flex; | |
| 3920 | + flex: 0 0 auto; | |
| 3921 | +} | |
| 3922 | +.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper { | |
| 3923 | + text-align: right; | |
| 3924 | + flex-direction: row-reverse; | |
| 3925 | +} | |
| 3926 | +.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon { | |
| 3927 | + margin-left: var(--icon-box-icon-margin, 15px); | |
| 3928 | + margin-right: 0; | |
| 3929 | + margin-bottom: unset; | |
| 3930 | +} | |
| 3931 | +.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper { | |
| 3932 | + text-align: left; | |
| 3933 | + flex-direction: row; | |
| 3934 | +} | |
| 3935 | +.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon { | |
| 3936 | + margin-right: var(--icon-box-icon-margin, 15px); | |
| 3937 | + margin-left: 0; | |
| 3938 | + margin-bottom: unset; | |
| 3939 | +} | |
| 3940 | +.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-wrapper { | |
| 3941 | + display: block; | |
| 3942 | + text-align: center; | |
| 3943 | + flex-direction: unset; | |
| 3944 | +} | |
| 3945 | +.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-icon { | |
| 3946 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 3947 | + margin-right: auto; | |
| 3948 | + margin-left: auto; | |
| 3949 | +} | |
| 3950 | +@media (min-width: -1px) { | |
| 3951 | + .elementor-widget-icon-box.elementor-widescreen-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-widescreen-position-right .elementor-icon-box-wrapper { | |
| 3952 | + display: flex; | |
| 3953 | + } | |
| 3954 | + .elementor-widget-icon-box.elementor-widescreen-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-widescreen-position-right .elementor-icon-box-icon { | |
| 3955 | + display: inline-flex; | |
| 3956 | + flex: 0 0 auto; | |
| 3957 | + } | |
| 3958 | + .elementor-widget-icon-box.elementor-widescreen-position-right .elementor-icon-box-wrapper { | |
| 3959 | + text-align: right; | |
| 3960 | + flex-direction: row-reverse; | |
| 3961 | + } | |
| 3962 | + .elementor-widget-icon-box.elementor-widescreen-position-right .elementor-icon-box-icon { | |
| 3963 | + margin-left: var(--icon-box-icon-margin, 15px); | |
| 3964 | + margin-right: 0; | |
| 3965 | + margin-bottom: unset; | |
| 3966 | + } | |
| 3967 | + .elementor-widget-icon-box.elementor-widescreen-position-left .elementor-icon-box-wrapper { | |
| 3968 | + text-align: left; | |
| 3969 | + flex-direction: row; | |
| 3970 | + } | |
| 3971 | + .elementor-widget-icon-box.elementor-widescreen-position-left .elementor-icon-box-icon { | |
| 3972 | + margin-right: var(--icon-box-icon-margin, 15px); | |
| 3973 | + margin-left: 0; | |
| 3974 | + margin-bottom: unset; | |
| 3975 | + } | |
| 3976 | + .elementor-widget-icon-box.elementor-widescreen-position-top .elementor-icon-box-wrapper { | |
| 3977 | + display: block; | |
| 3978 | + text-align: center; | |
| 3979 | + flex-direction: unset; | |
| 3980 | + } | |
| 3981 | + .elementor-widget-icon-box.elementor-widescreen-position-top .elementor-icon-box-icon { | |
| 3982 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 3983 | + margin-right: auto; | |
| 3984 | + margin-left: auto; | |
| 3985 | + } | |
| 3986 | +} | |
| 3987 | +@media (max-width: -1px) { | |
| 3988 | + .elementor-widget-icon-box.elementor-laptop-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-laptop-position-right .elementor-icon-box-wrapper { | |
| 3989 | + display: flex; | |
| 3990 | + } | |
| 3991 | + .elementor-widget-icon-box.elementor-laptop-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-laptop-position-right .elementor-icon-box-icon { | |
| 3992 | + display: inline-flex; | |
| 3993 | + flex: 0 0 auto; | |
| 3994 | + } | |
| 3995 | + .elementor-widget-icon-box.elementor-laptop-position-right .elementor-icon-box-wrapper { | |
| 3996 | + text-align: right; | |
| 3997 | + flex-direction: row-reverse; | |
| 3998 | + } | |
| 3999 | + .elementor-widget-icon-box.elementor-laptop-position-right .elementor-icon-box-icon { | |
| 4000 | + margin-left: var(--icon-box-icon-margin, 15px); | |
| 4001 | + margin-right: 0; | |
| 4002 | + margin-bottom: unset; | |
| 4003 | + } | |
| 4004 | + .elementor-widget-icon-box.elementor-laptop-position-left .elementor-icon-box-wrapper { | |
| 4005 | + text-align: left; | |
| 4006 | + flex-direction: row; | |
| 4007 | + } | |
| 4008 | + .elementor-widget-icon-box.elementor-laptop-position-left .elementor-icon-box-icon { | |
| 4009 | + margin-right: var(--icon-box-icon-margin, 15px); | |
| 4010 | + margin-left: 0; | |
| 4011 | + margin-bottom: unset; | |
| 4012 | + } | |
| 4013 | + .elementor-widget-icon-box.elementor-laptop-position-top .elementor-icon-box-wrapper { | |
| 4014 | + display: block; | |
| 4015 | + text-align: center; | |
| 4016 | + flex-direction: unset; | |
| 4017 | + } | |
| 4018 | + .elementor-widget-icon-box.elementor-laptop-position-top .elementor-icon-box-icon { | |
| 4019 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 4020 | + margin-right: auto; | |
| 4021 | + margin-left: auto; | |
| 4022 | + } | |
| 4023 | +} | |
| 4024 | +@media (max-width: -1px) { | |
| 4025 | + .elementor-widget-icon-box.elementor-tablet_extra-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-tablet_extra-position-right .elementor-icon-box-wrapper { | |
| 4026 | + display: flex; | |
| 4027 | + } | |
| 4028 | + .elementor-widget-icon-box.elementor-tablet_extra-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-tablet_extra-position-right .elementor-icon-box-icon { | |
| 4029 | + display: inline-flex; | |
| 4030 | + flex: 0 0 auto; | |
| 4031 | + } | |
| 4032 | + .elementor-widget-icon-box.elementor-tablet_extra-position-right .elementor-icon-box-wrapper { | |
| 4033 | + text-align: right; | |
| 4034 | + flex-direction: row-reverse; | |
| 4035 | + } | |
| 4036 | + .elementor-widget-icon-box.elementor-tablet_extra-position-right .elementor-icon-box-icon { | |
| 4037 | + margin-left: var(--icon-box-icon-margin, 15px); | |
| 4038 | + margin-right: 0; | |
| 4039 | + margin-bottom: unset; | |
| 4040 | + } | |
| 4041 | + .elementor-widget-icon-box.elementor-tablet_extra-position-left .elementor-icon-box-wrapper { | |
| 4042 | + text-align: left; | |
| 4043 | + flex-direction: row; | |
| 4044 | + } | |
| 4045 | + .elementor-widget-icon-box.elementor-tablet_extra-position-left .elementor-icon-box-icon { | |
| 4046 | + margin-right: var(--icon-box-icon-margin, 15px); | |
| 4047 | + margin-left: 0; | |
| 4048 | + margin-bottom: unset; | |
| 4049 | + } | |
| 4050 | + .elementor-widget-icon-box.elementor-tablet_extra-position-top .elementor-icon-box-wrapper { | |
| 4051 | + display: block; | |
| 4052 | + text-align: center; | |
| 4053 | + flex-direction: unset; | |
| 4054 | + } | |
| 4055 | + .elementor-widget-icon-box.elementor-tablet_extra-position-top .elementor-icon-box-icon { | |
| 4056 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 4057 | + margin-right: auto; | |
| 4058 | + margin-left: auto; | |
| 4059 | + } | |
| 4060 | +} | |
| 4061 | +@media (max-width: 1024px) { | |
| 4062 | + .elementor-widget-icon-box.elementor-tablet-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-tablet-position-right .elementor-icon-box-wrapper { | |
| 4063 | + display: flex; | |
| 4064 | + } | |
| 4065 | + .elementor-widget-icon-box.elementor-tablet-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-tablet-position-right .elementor-icon-box-icon { | |
| 4066 | + display: inline-flex; | |
| 4067 | + flex: 0 0 auto; | |
| 4068 | + } | |
| 4069 | + .elementor-widget-icon-box.elementor-tablet-position-right .elementor-icon-box-wrapper { | |
| 4070 | + text-align: right; | |
| 4071 | + flex-direction: row-reverse; | |
| 4072 | + } | |
| 4073 | + .elementor-widget-icon-box.elementor-tablet-position-right .elementor-icon-box-icon { | |
| 4074 | + margin-left: var(--icon-box-icon-margin, 15px); | |
| 4075 | + margin-right: 0; | |
| 4076 | + margin-bottom: unset; | |
| 4077 | + } | |
| 4078 | + .elementor-widget-icon-box.elementor-tablet-position-left .elementor-icon-box-wrapper { | |
| 4079 | + text-align: left; | |
| 4080 | + flex-direction: row; | |
| 4081 | + } | |
| 4082 | + .elementor-widget-icon-box.elementor-tablet-position-left .elementor-icon-box-icon { | |
| 4083 | + margin-right: var(--icon-box-icon-margin, 15px); | |
| 4084 | + margin-left: 0; | |
| 4085 | + margin-bottom: unset; | |
| 4086 | + } | |
| 4087 | + .elementor-widget-icon-box.elementor-tablet-position-top .elementor-icon-box-wrapper { | |
| 4088 | + display: block; | |
| 4089 | + text-align: center; | |
| 4090 | + flex-direction: unset; | |
| 4091 | + } | |
| 4092 | + .elementor-widget-icon-box.elementor-tablet-position-top .elementor-icon-box-icon { | |
| 4093 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 4094 | + margin-right: auto; | |
| 4095 | + margin-left: auto; | |
| 4096 | + } | |
| 4097 | +} | |
| 4098 | +@media (max-width: -1px) { | |
| 4099 | + .elementor-widget-icon-box.elementor-mobile_extra-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-mobile_extra-position-right .elementor-icon-box-wrapper { | |
| 4100 | + display: flex; | |
| 4101 | + } | |
| 4102 | + .elementor-widget-icon-box.elementor-mobile_extra-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-mobile_extra-position-right .elementor-icon-box-icon { | |
| 4103 | + display: inline-flex; | |
| 4104 | + flex: 0 0 auto; | |
| 4105 | + } | |
| 4106 | + .elementor-widget-icon-box.elementor-mobile_extra-position-right .elementor-icon-box-wrapper { | |
| 4107 | + text-align: right; | |
| 4108 | + flex-direction: row-reverse; | |
| 4109 | + } | |
| 4110 | + .elementor-widget-icon-box.elementor-mobile_extra-position-right .elementor-icon-box-icon { | |
| 4111 | + margin-left: var(--icon-box-icon-margin, 15px); | |
| 4112 | + margin-right: 0; | |
| 4113 | + margin-bottom: unset; | |
| 4114 | + } | |
| 4115 | + .elementor-widget-icon-box.elementor-mobile_extra-position-left .elementor-icon-box-wrapper { | |
| 4116 | + text-align: left; | |
| 4117 | + flex-direction: row; | |
| 4118 | + } | |
| 4119 | + .elementor-widget-icon-box.elementor-mobile_extra-position-left .elementor-icon-box-icon { | |
| 4120 | + margin-right: var(--icon-box-icon-margin, 15px); | |
| 4121 | + margin-left: 0; | |
| 4122 | + margin-bottom: unset; | |
| 4123 | + } | |
| 4124 | + .elementor-widget-icon-box.elementor-mobile_extra-position-top .elementor-icon-box-wrapper { | |
| 4125 | + display: block; | |
| 4126 | + text-align: center; | |
| 4127 | + flex-direction: unset; | |
| 4128 | + } | |
| 4129 | + .elementor-widget-icon-box.elementor-mobile_extra-position-top .elementor-icon-box-icon { | |
| 4130 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 4131 | + margin-right: auto; | |
| 4132 | + margin-left: auto; | |
| 4133 | + } | |
| 4134 | +} | |
| 4135 | +@media (max-width: 767px) { | |
| 4136 | + .elementor-widget-icon-box.elementor-mobile-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-mobile-position-right .elementor-icon-box-wrapper { | |
| 4137 | + display: flex; | |
| 4138 | + } | |
| 4139 | + .elementor-widget-icon-box.elementor-mobile-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-mobile-position-right .elementor-icon-box-icon { | |
| 4140 | + display: inline-flex; | |
| 4141 | + flex: 0 0 auto; | |
| 4142 | + } | |
| 4143 | + .elementor-widget-icon-box.elementor-mobile-position-right .elementor-icon-box-wrapper { | |
| 4144 | + text-align: right; | |
| 4145 | + flex-direction: row-reverse; | |
| 4146 | + } | |
| 4147 | + .elementor-widget-icon-box.elementor-mobile-position-right .elementor-icon-box-icon { | |
| 4148 | + margin-left: var(--icon-box-icon-margin, 15px); | |
| 4149 | + margin-right: 0; | |
| 4150 | + margin-bottom: unset; | |
| 4151 | + } | |
| 4152 | + .elementor-widget-icon-box.elementor-mobile-position-left .elementor-icon-box-wrapper { | |
| 4153 | + text-align: left; | |
| 4154 | + flex-direction: row; | |
| 4155 | + } | |
| 4156 | + .elementor-widget-icon-box.elementor-mobile-position-left .elementor-icon-box-icon { | |
| 4157 | + margin-right: var(--icon-box-icon-margin, 15px); | |
| 4158 | + margin-left: 0; | |
| 4159 | + margin-bottom: unset; | |
| 4160 | + } | |
| 4161 | + .elementor-widget-icon-box.elementor-mobile-position-top .elementor-icon-box-wrapper { | |
| 4162 | + display: block; | |
| 4163 | + text-align: center; | |
| 4164 | + flex-direction: unset; | |
| 4165 | + } | |
| 4166 | + .elementor-widget-icon-box.elementor-mobile-position-top .elementor-icon-box-icon { | |
| 4167 | + margin-bottom: var(--icon-box-icon-margin, 15px); | |
| 4168 | + margin-right: auto; | |
| 4169 | + margin-left: auto; | |
| 4170 | + } | |
| 4171 | + .elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon { | |
| 4172 | + display: block; | |
| 4173 | + flex: unset; | |
| 4174 | + } | |
| 4175 | +} | |
| 4176 | +.elementor-widget-icon-box .elementor-icon-box-title a { | |
| 4177 | + color: inherit; | |
| 4178 | +} | |
| 4179 | +.elementor-widget-icon-box .elementor-icon-box-content { | |
| 4180 | + flex-grow: 1; | |
| 4181 | +} | |
| 4182 | +.elementor-widget-icon-box .elementor-icon-box-description { | |
| 4183 | + margin: 0; | |
| 4184 | +} | |
| 4185 | + | |
| 4186 | +.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container { | |
| 4187 | + overflow: hidden; | |
| 4188 | +} | |
| 4189 | +.elementor-widget .elementor-icon-list-items.elementor-inline-items { | |
| 4190 | + margin-right: -8px; | |
| 4191 | + margin-left: -8px; | |
| 4192 | +} | |
| 4193 | +.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item { | |
| 4194 | + margin-right: 8px; | |
| 4195 | + margin-left: 8px; | |
| 4196 | +} | |
| 4197 | +.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after { | |
| 4198 | + width: auto; | |
| 4199 | + left: auto; | |
| 4200 | + right: auto; | |
| 4201 | + position: relative; | |
| 4202 | + height: 100%; | |
| 4203 | + border-top: 0; | |
| 4204 | + border-bottom: 0; | |
| 4205 | + border-right: 0; | |
| 4206 | + border-left-width: 1px; | |
| 4207 | + border-style: solid; | |
| 4208 | + right: -8px; | |
| 4209 | +} | |
| 4210 | +.elementor-widget .elementor-icon-list-items { | |
| 4211 | + list-style-type: none; | |
| 4212 | + margin: 0; | |
| 4213 | + padding: 0; | |
| 4214 | +} | |
| 4215 | +.elementor-widget .elementor-icon-list-item { | |
| 4216 | + margin: 0; | |
| 4217 | + padding: 0; | |
| 4218 | + position: relative; | |
| 4219 | +} | |
| 4220 | +.elementor-widget .elementor-icon-list-item:after { | |
| 4221 | + position: absolute; | |
| 4222 | + bottom: 0; | |
| 4223 | + width: 100%; | |
| 4224 | +} | |
| 4225 | +.elementor-widget .elementor-icon-list-item, .elementor-widget .elementor-icon-list-item a { | |
| 4226 | + display: flex; | |
| 4227 | + align-items: center; | |
| 4228 | + font-size: inherit; | |
| 4229 | +} | |
| 4230 | +.elementor-widget .elementor-icon-list-icon + .elementor-icon-list-text { | |
| 4231 | + align-self: center; | |
| 4232 | + padding-left: 5px; | |
| 4233 | +} | |
| 4234 | +.elementor-widget .elementor-icon-list-icon { | |
| 4235 | + display: flex; | |
| 4236 | +} | |
| 4237 | +.elementor-widget .elementor-icon-list-icon svg { | |
| 4238 | + width: var(--e-icon-list-icon-size, 1em); | |
| 4239 | + height: var(--e-icon-list-icon-size, 1em); | |
| 4240 | +} | |
| 4241 | +.elementor-widget .elementor-icon-list-icon i { | |
| 4242 | + width: 1.25em; | |
| 4243 | + font-size: var(--e-icon-list-icon-size); | |
| 4244 | +} | |
| 4245 | +.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon { | |
| 4246 | + text-align: var(--e-icon-list-icon-align); | |
| 4247 | +} | |
| 4248 | +.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg { | |
| 4249 | + margin: var(--e-icon-list-icon-margin, 0 calc(var(--e-icon-list-icon-size, 1em) * 0.25) 0 0); | |
| 4250 | +} | |
| 4251 | +.elementor-widget.elementor-list-item-link-full_width a { | |
| 4252 | + width: 100%; | |
| 4253 | +} | |
| 4254 | +.elementor-widget.elementor-align-center .elementor-icon-list-item, .elementor-widget.elementor-align-center .elementor-icon-list-item a { | |
| 4255 | + justify-content: center; | |
| 4256 | +} | |
| 4257 | +.elementor-widget.elementor-align-center .elementor-icon-list-item:after { | |
| 4258 | + margin: auto; | |
| 4259 | +} | |
| 4260 | +.elementor-widget.elementor-align-center .elementor-inline-items { | |
| 4261 | + justify-content: center; | |
| 4262 | +} | |
| 4263 | +.elementor-widget.elementor-align-left .elementor-icon-list-item, .elementor-widget.elementor-align-left .elementor-icon-list-item a { | |
| 4264 | + justify-content: flex-start; | |
| 4265 | + text-align: left; | |
| 4266 | +} | |
| 4267 | +.elementor-widget.elementor-align-left .elementor-inline-items { | |
| 4268 | + justify-content: flex-start; | |
| 4269 | +} | |
| 4270 | +.elementor-widget.elementor-align-right .elementor-icon-list-item, .elementor-widget.elementor-align-right .elementor-icon-list-item a { | |
| 4271 | + justify-content: flex-end; | |
| 4272 | + text-align: right; | |
| 4273 | +} | |
| 4274 | +.elementor-widget.elementor-align-right .elementor-icon-list-items { | |
| 4275 | + justify-content: flex-end; | |
| 4276 | +} | |
| 4277 | +.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after { | |
| 4278 | + left: 0; | |
| 4279 | +} | |
| 4280 | +.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after { | |
| 4281 | + right: 0; | |
| 4282 | +} | |
| 4283 | +@media (min-width: -1px) { | |
| 4284 | + .elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item, .elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a { | |
| 4285 | + justify-content: center; | |
| 4286 | + } | |
| 4287 | + .elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after { | |
| 4288 | + margin: auto; | |
| 4289 | + } | |
| 4290 | + .elementor-widget.elementor-widescreen-align-center .elementor-inline-items { | |
| 4291 | + justify-content: center; | |
| 4292 | + } | |
| 4293 | + .elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item, .elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item a { | |
| 4294 | + justify-content: flex-start; | |
| 4295 | + text-align: left; | |
| 4296 | + } | |
| 4297 | + .elementor-widget.elementor-widescreen-align-left .elementor-inline-items { | |
| 4298 | + justify-content: flex-start; | |
| 4299 | + } | |
| 4300 | + .elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item, .elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item a { | |
| 4301 | + justify-content: flex-end; | |
| 4302 | + text-align: right; | |
| 4303 | + } | |
| 4304 | + .elementor-widget.elementor-widescreen-align-right .elementor-icon-list-items { | |
| 4305 | + justify-content: flex-end; | |
| 4306 | + } | |
| 4307 | + .elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after { | |
| 4308 | + left: 0; | |
| 4309 | + } | |
| 4310 | + .elementor-widget:not(.elementor-widescreen-align-left) .elementor-icon-list-item:after { | |
| 4311 | + right: 0; | |
| 4312 | + } | |
| 4313 | +} | |
| 4314 | +@media (max-width: -1px) { | |
| 4315 | + .elementor-widget.elementor-laptop-align-center .elementor-icon-list-item, .elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a { | |
| 4316 | + justify-content: center; | |
| 4317 | + } | |
| 4318 | + .elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after { | |
| 4319 | + margin: auto; | |
| 4320 | + } | |
| 4321 | + .elementor-widget.elementor-laptop-align-center .elementor-inline-items { | |
| 4322 | + justify-content: center; | |
| 4323 | + } | |
| 4324 | + .elementor-widget.elementor-laptop-align-left .elementor-icon-list-item, .elementor-widget.elementor-laptop-align-left .elementor-icon-list-item a { | |
| 4325 | + justify-content: flex-start; | |
| 4326 | + text-align: left; | |
| 4327 | + } | |
| 4328 | + .elementor-widget.elementor-laptop-align-left .elementor-inline-items { | |
| 4329 | + justify-content: flex-start; | |
| 4330 | + } | |
| 4331 | + .elementor-widget.elementor-laptop-align-right .elementor-icon-list-item, .elementor-widget.elementor-laptop-align-right .elementor-icon-list-item a { | |
| 4332 | + justify-content: flex-end; | |
| 4333 | + text-align: right; | |
| 4334 | + } | |
| 4335 | + .elementor-widget.elementor-laptop-align-right .elementor-icon-list-items { | |
| 4336 | + justify-content: flex-end; | |
| 4337 | + } | |
| 4338 | + .elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after { | |
| 4339 | + left: 0; | |
| 4340 | + } | |
| 4341 | + .elementor-widget:not(.elementor-laptop-align-left) .elementor-icon-list-item:after { | |
| 4342 | + right: 0; | |
| 4343 | + } | |
| 4344 | +} | |
| 4345 | +@media (max-width: -1px) { | |
| 4346 | + .elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item, .elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a { | |
| 4347 | + justify-content: center; | |
| 4348 | + } | |
| 4349 | + .elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after { | |
| 4350 | + margin: auto; | |
| 4351 | + } | |
| 4352 | + .elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items { | |
| 4353 | + justify-content: center; | |
| 4354 | + } | |
| 4355 | + .elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item, .elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item a { | |
| 4356 | + justify-content: flex-start; | |
| 4357 | + text-align: left; | |
| 4358 | + } | |
| 4359 | + .elementor-widget.elementor-tablet_extra-align-left .elementor-inline-items { | |
| 4360 | + justify-content: flex-start; | |
| 4361 | + } | |
| 4362 | + .elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item, .elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item a { | |
| 4363 | + justify-content: flex-end; | |
| 4364 | + text-align: right; | |
| 4365 | + } | |
| 4366 | + .elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-items { | |
| 4367 | + justify-content: flex-end; | |
| 4368 | + } | |
| 4369 | + .elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after { | |
| 4370 | + left: 0; | |
| 4371 | + } | |
| 4372 | + .elementor-widget:not(.elementor-tablet_extra-align-left) .elementor-icon-list-item:after { | |
| 4373 | + right: 0; | |
| 4374 | + } | |
| 4375 | +} | |
| 4376 | +@media (max-width: 1024px) { | |
| 4377 | + .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item, .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a { | |
| 4378 | + justify-content: center; | |
| 4379 | + } | |
| 4380 | + .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after { | |
| 4381 | + margin: auto; | |
| 4382 | + } | |
| 4383 | + .elementor-widget.elementor-tablet-align-center .elementor-inline-items { | |
| 4384 | + justify-content: center; | |
| 4385 | + } | |
| 4386 | + .elementor-widget.elementor-tablet-align-left .elementor-icon-list-item, .elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a { | |
| 4387 | + justify-content: flex-start; | |
| 4388 | + text-align: left; | |
| 4389 | + } | |
| 4390 | + .elementor-widget.elementor-tablet-align-left .elementor-inline-items { | |
| 4391 | + justify-content: flex-start; | |
| 4392 | + } | |
| 4393 | + .elementor-widget.elementor-tablet-align-right .elementor-icon-list-item, .elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a { | |
| 4394 | + justify-content: flex-end; | |
| 4395 | + text-align: right; | |
| 4396 | + } | |
| 4397 | + .elementor-widget.elementor-tablet-align-right .elementor-icon-list-items { | |
| 4398 | + justify-content: flex-end; | |
| 4399 | + } | |
| 4400 | + .elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after { | |
| 4401 | + left: 0; | |
| 4402 | + } | |
| 4403 | + .elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after { | |
| 4404 | + right: 0; | |
| 4405 | + } | |
| 4406 | +} | |
| 4407 | +@media (max-width: -1px) { | |
| 4408 | + .elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item, .elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a { | |
| 4409 | + justify-content: center; | |
| 4410 | + } | |
| 4411 | + .elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after { | |
| 4412 | + margin: auto; | |
| 4413 | + } | |
| 4414 | + .elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items { | |
| 4415 | + justify-content: center; | |
| 4416 | + } | |
| 4417 | + .elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item, .elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item a { | |
| 4418 | + justify-content: flex-start; | |
| 4419 | + text-align: left; | |
| 4420 | + } | |
| 4421 | + .elementor-widget.elementor-mobile_extra-align-left .elementor-inline-items { | |
| 4422 | + justify-content: flex-start; | |
| 4423 | + } | |
| 4424 | + .elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item, .elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item a { | |
| 4425 | + justify-content: flex-end; | |
| 4426 | + text-align: right; | |
| 4427 | + } | |
| 4428 | + .elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-items { | |
| 4429 | + justify-content: flex-end; | |
| 4430 | + } | |
| 4431 | + .elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after { | |
| 4432 | + left: 0; | |
| 4433 | + } | |
| 4434 | + .elementor-widget:not(.elementor-mobile_extra-align-left) .elementor-icon-list-item:after { | |
| 4435 | + right: 0; | |
| 4436 | + } | |
| 4437 | +} | |
| 4438 | +@media (max-width: 767px) { | |
| 4439 | + .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item, .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a { | |
| 4440 | + justify-content: center; | |
| 4441 | + } | |
| 4442 | + .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after { | |
| 4443 | + margin: auto; | |
| 4444 | + } | |
| 4445 | + .elementor-widget.elementor-mobile-align-center .elementor-inline-items { | |
| 4446 | + justify-content: center; | |
| 4447 | + } | |
| 4448 | + .elementor-widget.elementor-mobile-align-left .elementor-icon-list-item, .elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a { | |
| 4449 | + justify-content: flex-start; | |
| 4450 | + text-align: left; | |
| 4451 | + } | |
| 4452 | + .elementor-widget.elementor-mobile-align-left .elementor-inline-items { | |
| 4453 | + justify-content: flex-start; | |
| 4454 | + } | |
| 4455 | + .elementor-widget.elementor-mobile-align-right .elementor-icon-list-item, .elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a { | |
| 4456 | + justify-content: flex-end; | |
| 4457 | + text-align: right; | |
| 4458 | + } | |
| 4459 | + .elementor-widget.elementor-mobile-align-right .elementor-icon-list-items { | |
| 4460 | + justify-content: flex-end; | |
| 4461 | + } | |
| 4462 | + .elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after { | |
| 4463 | + left: 0; | |
| 4464 | + } | |
| 4465 | + .elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after { | |
| 4466 | + right: 0; | |
| 4467 | + } | |
| 4468 | +} | |
| 4469 | + | |
| 4470 | +.elementor-widget-image { | |
| 4471 | + text-align: center; | |
| 4472 | +} | |
| 4473 | +.elementor-widget-image a { | |
| 4474 | + display: inline-block; | |
| 4475 | +} | |
| 4476 | +.elementor-widget-image a img[src$=".svg"] { | |
| 4477 | + width: 48px; | |
| 4478 | +} | |
| 4479 | +.elementor-widget-image img { | |
| 4480 | + vertical-align: middle; | |
| 4481 | + display: inline-block; | |
| 4482 | +} | |
| 4483 | + | |
| 4484 | +.elementor-widget-image-box .elementor-image-box-content { | |
| 4485 | + width: 100%; | |
| 4486 | +} | |
| 4487 | +@media (min-width: 768px) { | |
| 4488 | + .elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper, .elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper { | |
| 4489 | + display: flex; | |
| 4490 | + } | |
| 4491 | + .elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper { | |
| 4492 | + text-align: right; | |
| 4493 | + flex-direction: row-reverse; | |
| 4494 | + } | |
| 4495 | + .elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper { | |
| 4496 | + text-align: left; | |
| 4497 | + flex-direction: row; | |
| 4498 | + } | |
| 4499 | + .elementor-widget-image-box.elementor-position-top .elementor-image-box-img { | |
| 4500 | + margin: auto; | |
| 4501 | + } | |
| 4502 | + .elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper { | |
| 4503 | + align-items: flex-start; | |
| 4504 | + } | |
| 4505 | + .elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper { | |
| 4506 | + align-items: center; | |
| 4507 | + } | |
| 4508 | + .elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper { | |
| 4509 | + align-items: flex-end; | |
| 4510 | + } | |
| 4511 | +} | |
| 4512 | +@media (max-width: 767px) { | |
| 4513 | + .elementor-widget-image-box .elementor-image-box-img { | |
| 4514 | + margin-left: auto !important; | |
| 4515 | + margin-right: auto !important; | |
| 4516 | + margin-bottom: 15px; | |
| 4517 | + } | |
| 4518 | +} | |
| 4519 | +.elementor-widget-image-box .elementor-image-box-img { | |
| 4520 | + display: inline-block; | |
| 4521 | +} | |
| 4522 | +.elementor-widget-image-box .elementor-image-box-title a { | |
| 4523 | + color: inherit; | |
| 4524 | +} | |
| 4525 | +.elementor-widget-image-box .elementor-image-box-wrapper { | |
| 4526 | + text-align: center; | |
| 4527 | +} | |
| 4528 | +.elementor-widget-image-box .elementor-image-box-description { | |
| 4529 | + margin: 0; | |
| 4530 | +} | |
| 4531 | + | |
| 4532 | +.elementor-widget-image-carousel .swiper-container { | |
| 4533 | + position: static; | |
| 4534 | +} | |
| 4535 | +.elementor-widget-image-carousel .swiper-container .swiper-slide figure { | |
| 4536 | + line-height: inherit; | |
| 4537 | +} | |
| 4538 | +.elementor-widget-image-carousel .swiper-slide { | |
| 4539 | + text-align: center; | |
| 4540 | +} | |
| 4541 | + | |
| 4542 | +.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide { | |
| 4543 | + max-width: calc(100% / var(--e-image-carousel-slides-to-show, 3)); | |
| 4544 | +} | |
| 4545 | + | |
| 4546 | +body.elementor-page .elementor-widget-menu-anchor { | |
| 4547 | + margin-bottom: 0; | |
| 4548 | +} | |
| 4549 | + | |
| 4550 | +.elementor-widget-progress { | |
| 4551 | + text-align: left; | |
| 4552 | +} | |
| 4553 | + | |
| 4554 | +.elementor-progress-wrapper { | |
| 4555 | + position: relative; | |
| 4556 | + background-color: #eeeeee; | |
| 4557 | + color: #ffffff; | |
| 4558 | + height: 100%; | |
| 4559 | + border-radius: 2px; | |
| 4560 | +} | |
| 4561 | + | |
| 4562 | +.elementor-progress-bar { | |
| 4563 | + display: flex; | |
| 4564 | + background-color: #818a91; | |
| 4565 | + width: 0; | |
| 4566 | + font-size: 11px; | |
| 4567 | + height: 30px; | |
| 4568 | + line-height: 30px; | |
| 4569 | + border-radius: 2px; | |
| 4570 | + transition: width 1s ease-in-out; | |
| 4571 | +} | |
| 4572 | + | |
| 4573 | +.elementor-progress-text { | |
| 4574 | + flex-grow: 1; | |
| 4575 | + white-space: nowrap; | |
| 4576 | + text-overflow: ellipsis; | |
| 4577 | + overflow: hidden; | |
| 4578 | + padding-left: 15px; | |
| 4579 | +} | |
| 4580 | + | |
| 4581 | +.elementor-progress-percentage { | |
| 4582 | + padding-right: 15px; | |
| 4583 | +} | |
| 4584 | + | |
| 4585 | +.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar { | |
| 4586 | + background-color: #5bc0de; | |
| 4587 | +} | |
| 4588 | +.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar { | |
| 4589 | + background-color: #5cb85c; | |
| 4590 | +} | |
| 4591 | +.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar { | |
| 4592 | + background-color: #f0ad4e; | |
| 4593 | +} | |
| 4594 | +.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar { | |
| 4595 | + background-color: #d9534f; | |
| 4596 | +} | |
| 4597 | + | |
| 4598 | +.elementor-progress .elementor-title { | |
| 4599 | + display: block; | |
| 4600 | +} | |
| 4601 | + | |
| 4602 | +@media (max-width: 767px) { | |
| 4603 | + .elementor-progress-text { | |
| 4604 | + padding-left: 10px; | |
| 4605 | + } | |
| 4606 | +} | |
| 4607 | +.e-con .elementor-progress-wrapper, | |
| 4608 | +.e-con-inner .elementor-progress-wrapper { | |
| 4609 | + height: initial; | |
| 4610 | +} | |
| 4611 | + | |
| 4612 | +.elementor-widget-social-icons { | |
| 4613 | + /*TODO: This Grid-0 needs to be removed after PRO is Updated */ | |
| 4614 | +} | |
| 4615 | +.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container, .elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container, .elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container { | |
| 4616 | + line-height: 1; | |
| 4617 | + font-size: 0; | |
| 4618 | +} | |
| 4619 | +.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid { | |
| 4620 | + display: inline-grid; | |
| 4621 | +} | |
| 4622 | +.elementor-widget-social-icons .elementor-grid { | |
| 4623 | + grid-column-gap: var(--grid-column-gap, 5px); | |
| 4624 | + grid-row-gap: var(--grid-row-gap, 5px); | |
| 4625 | + grid-template-columns: var(--grid-template-columns); | |
| 4626 | + justify-content: var(--justify-content, center); | |
| 4627 | + justify-items: var(--justify-content, center); | |
| 4628 | +} | |
| 4629 | + | |
| 4630 | +.elementor-icon.elementor-social-icon { | |
| 4631 | + font-size: var(--icon-size, 25px); | |
| 4632 | + line-height: var(--icon-size, 25px); | |
| 4633 | + width: calc(var(--icon-size, 25px) + (2 * var(--icon-padding, 0.5em))); | |
| 4634 | + height: calc(var(--icon-size, 25px) + (2 * var(--icon-padding, 0.5em))); | |
| 4635 | +} | |
| 4636 | + | |
| 4637 | +.elementor-social-icon { | |
| 4638 | + --e-social-icon-icon-color: #fff; | |
| 4639 | + display: inline-flex; | |
| 4640 | + background-color: #818a91; | |
| 4641 | + align-items: center; | |
| 4642 | + justify-content: center; | |
| 4643 | + text-align: center; | |
| 4644 | + cursor: pointer; | |
| 4645 | +} | |
| 4646 | +.elementor-social-icon i { | |
| 4647 | + color: var(--e-social-icon-icon-color); | |
| 4648 | +} | |
| 4649 | +.elementor-social-icon svg { | |
| 4650 | + fill: var(--e-social-icon-icon-color); | |
| 4651 | +} | |
| 4652 | +.elementor-social-icon:last-child { | |
| 4653 | + margin: 0; | |
| 4654 | +} | |
| 4655 | +.elementor-social-icon:hover { | |
| 4656 | + opacity: 0.9; | |
| 4657 | + color: white; | |
| 4658 | +} | |
| 4659 | +.elementor-social-icon-android { | |
| 4660 | + background-color: #A4C639; | |
| 4661 | +} | |
| 4662 | +.elementor-social-icon-apple { | |
| 4663 | + background-color: #999999; | |
| 4664 | +} | |
| 4665 | +.elementor-social-icon-behance { | |
| 4666 | + background-color: #1769ff; | |
| 4667 | +} | |
| 4668 | +.elementor-social-icon-bitbucket { | |
| 4669 | + background-color: #205081; | |
| 4670 | +} | |
| 4671 | +.elementor-social-icon-codepen { | |
| 4672 | + background-color: #000000; | |
| 4673 | +} | |
| 4674 | +.elementor-social-icon-delicious { | |
| 4675 | + background-color: #3399ff; | |
| 4676 | +} | |
| 4677 | +.elementor-social-icon-deviantart { | |
| 4678 | + background-color: #05cc47; | |
| 4679 | +} | |
| 4680 | +.elementor-social-icon-digg { | |
| 4681 | + background-color: #005be2; | |
| 4682 | +} | |
| 4683 | +.elementor-social-icon-dribbble { | |
| 4684 | + background-color: #ea4c89; | |
| 4685 | +} | |
| 4686 | +.elementor-social-icon-elementor { | |
| 4687 | + background-color: #D30C5C; | |
| 4688 | +} | |
| 4689 | +.elementor-social-icon-envelope { | |
| 4690 | + background-color: #ea4335; | |
| 4691 | +} | |
| 4692 | +.elementor-social-icon-facebook, .elementor-social-icon-facebook-f { | |
| 4693 | + background-color: #3b5998; | |
| 4694 | +} | |
| 4695 | +.elementor-social-icon-flickr { | |
| 4696 | + background-color: #0063dc; | |
| 4697 | +} | |
| 4698 | +.elementor-social-icon-foursquare { | |
| 4699 | + background-color: #2d5be3; | |
| 4700 | +} | |
| 4701 | +.elementor-social-icon-freecodecamp, .elementor-social-icon-free-code-camp { | |
| 4702 | + background-color: #006400; | |
| 4703 | +} | |
| 4704 | +.elementor-social-icon-github { | |
| 4705 | + background-color: #333333; | |
| 4706 | +} | |
| 4707 | +.elementor-social-icon-gitlab { | |
| 4708 | + background-color: #e24329; | |
| 4709 | +} | |
| 4710 | +.elementor-social-icon-globe { | |
| 4711 | + background-color: #818a91; | |
| 4712 | +} | |
| 4713 | +.elementor-social-icon-google-plus, .elementor-social-icon-google-plus-g { | |
| 4714 | + background-color: #dd4b39; | |
| 4715 | +} | |
| 4716 | +.elementor-social-icon-houzz { | |
| 4717 | + background-color: #7ac142; | |
| 4718 | +} | |
| 4719 | +.elementor-social-icon-instagram { | |
| 4720 | + background-color: #262626; | |
| 4721 | +} | |
| 4722 | +.elementor-social-icon-jsfiddle { | |
| 4723 | + background-color: #487AA2; | |
| 4724 | +} | |
| 4725 | +.elementor-social-icon-link { | |
| 4726 | + background-color: #818a91; | |
| 4727 | +} | |
| 4728 | +.elementor-social-icon-linkedin, .elementor-social-icon-linkedin-in { | |
| 4729 | + background-color: #0077b5; | |
| 4730 | +} | |
| 4731 | +.elementor-social-icon-medium { | |
| 4732 | + background-color: #00ab6b; | |
| 4733 | +} | |
| 4734 | +.elementor-social-icon-meetup { | |
| 4735 | + background-color: #ec1c40; | |
| 4736 | +} | |
| 4737 | +.elementor-social-icon-mixcloud { | |
| 4738 | + background-color: #273a4b; | |
| 4739 | +} | |
| 4740 | +.elementor-social-icon-odnoklassniki { | |
| 4741 | + background-color: #F4731C; | |
| 4742 | +} | |
| 4743 | +.elementor-social-icon-pinterest { | |
| 4744 | + background-color: #bd081c; | |
| 4745 | +} | |
| 4746 | +.elementor-social-icon-product-hunt { | |
| 4747 | + background-color: #da552f; | |
| 4748 | +} | |
| 4749 | +.elementor-social-icon-reddit { | |
| 4750 | + background-color: #ff4500; | |
| 4751 | +} | |
| 4752 | +.elementor-social-icon-rss { | |
| 4753 | + background-color: #f26522; | |
| 4754 | +} | |
| 4755 | +.elementor-social-icon-shopping-cart { | |
| 4756 | + background-color: #4CAF50; | |
| 4757 | +} | |
| 4758 | +.elementor-social-icon-skype { | |
| 4759 | + background-color: #00AFF0; | |
| 4760 | +} | |
| 4761 | +.elementor-social-icon-slideshare { | |
| 4762 | + background-color: #0077b5; | |
| 4763 | +} | |
| 4764 | +.elementor-social-icon-snapchat { | |
| 4765 | + background-color: #fffc00; | |
| 4766 | +} | |
| 4767 | +.elementor-social-icon-soundcloud { | |
| 4768 | + background-color: #ff8800; | |
| 4769 | +} | |
| 4770 | +.elementor-social-icon-spotify { | |
| 4771 | + background-color: #2ebd59; | |
| 4772 | +} | |
| 4773 | +.elementor-social-icon-stack-overflow { | |
| 4774 | + background-color: #fe7a15; | |
| 4775 | +} | |
| 4776 | +.elementor-social-icon-steam { | |
| 4777 | + background-color: #00adee; | |
| 4778 | +} | |
| 4779 | +.elementor-social-icon-stumbleupon { | |
| 4780 | + background-color: #EB4924; | |
| 4781 | +} | |
| 4782 | +.elementor-social-icon-telegram { | |
| 4783 | + background-color: #2CA5E0; | |
| 4784 | +} | |
| 4785 | +.elementor-social-icon-thumb-tack { | |
| 4786 | + background-color: #1aa1d8; | |
| 4787 | +} | |
| 4788 | +.elementor-social-icon-tripadvisor { | |
| 4789 | + background-color: #589442; | |
| 4790 | +} | |
| 4791 | +.elementor-social-icon-tumblr { | |
| 4792 | + background-color: #35465c; | |
| 4793 | +} | |
| 4794 | +.elementor-social-icon-twitch { | |
| 4795 | + background-color: #6441A5; | |
| 4796 | +} | |
| 4797 | +.elementor-social-icon-twitter { | |
| 4798 | + background-color: #1DA1F2; | |
| 4799 | +} | |
| 4800 | +.elementor-social-icon-viber { | |
| 4801 | + background-color: #665cac; | |
| 4802 | +} | |
| 4803 | +.elementor-social-icon-vimeo { | |
| 4804 | + background-color: #1ab7ea; | |
| 4805 | +} | |
| 4806 | +.elementor-social-icon-vk { | |
| 4807 | + background-color: #45668e; | |
| 4808 | +} | |
| 4809 | +.elementor-social-icon-weibo { | |
| 4810 | + background-color: #DD2430; | |
| 4811 | +} | |
| 4812 | +.elementor-social-icon-weixin { | |
| 4813 | + background-color: #31A918; | |
| 4814 | +} | |
| 4815 | +.elementor-social-icon-whatsapp { | |
| 4816 | + background-color: #25d366; | |
| 4817 | +} | |
| 4818 | +.elementor-social-icon-wordpress { | |
| 4819 | + background-color: #21759b; | |
| 4820 | +} | |
| 4821 | +.elementor-social-icon-xing { | |
| 4822 | + background-color: #026466; | |
| 4823 | +} | |
| 4824 | +.elementor-social-icon-yelp { | |
| 4825 | + background-color: #af0606; | |
| 4826 | +} | |
| 4827 | +.elementor-social-icon-youtube { | |
| 4828 | + background-color: #cd201f; | |
| 4829 | +} | |
| 4830 | +.elementor-social-icon-500px { | |
| 4831 | + background-color: #0099e5; | |
| 4832 | +} | |
| 4833 | + | |
| 4834 | +.elementor-shape-rounded .elementor-icon.elementor-social-icon { | |
| 4835 | + border-radius: 10%; | |
| 4836 | +} | |
| 4837 | + | |
| 4838 | +.elementor-shape-circle .elementor-icon.elementor-social-icon { | |
| 4839 | + border-radius: 50%; | |
| 4840 | +} | |
| 4841 | + | |
| 4842 | +.elementor-column .elementor-spacer-inner { | |
| 4843 | + height: var(--spacer-size); | |
| 4844 | +} | |
| 4845 | + | |
| 4846 | +.e-con { | |
| 4847 | + --container-widget-width: 100%; | |
| 4848 | +} | |
| 4849 | + | |
| 4850 | +.e-con > .elementor-widget-spacer, | |
| 4851 | +.e-con-inner > .elementor-widget-spacer { | |
| 4852 | + width: var(--container-widget-width, var(--spacer-size)); | |
| 4853 | + align-self: stretch; | |
| 4854 | + flex-shrink: 0; | |
| 4855 | +} | |
| 4856 | +.e-con > .elementor-widget-spacer > .elementor-widget-container, | |
| 4857 | +.e-con-inner > .elementor-widget-spacer > .elementor-widget-container { | |
| 4858 | + height: 100%; | |
| 4859 | +} | |
| 4860 | +.e-con > .elementor-widget-spacer > .elementor-widget-container > .elementor-spacer, | |
| 4861 | +.e-con-inner > .elementor-widget-spacer > .elementor-widget-container > .elementor-spacer { | |
| 4862 | + height: 100%; | |
| 4863 | +} | |
| 4864 | +.e-con > .elementor-widget-spacer > .elementor-widget-container > .elementor-spacer > .elementor-spacer-inner, | |
| 4865 | +.e-con-inner > .elementor-widget-spacer > .elementor-widget-container > .elementor-spacer > .elementor-spacer-inner { | |
| 4866 | + height: var(--container-widget-height, var(--spacer-size)); | |
| 4867 | +} | |
| 4868 | + | |
| 4869 | +.elementor-star-rating { | |
| 4870 | + color: #CCD6DF; | |
| 4871 | + font-family: eicons; | |
| 4872 | + display: inline-block; | |
| 4873 | +} | |
| 4874 | +.elementor-star-rating i { | |
| 4875 | + display: inline-block; | |
| 4876 | + position: relative; | |
| 4877 | + font-style: normal; | |
| 4878 | + cursor: default; | |
| 4879 | +} | |
| 4880 | +.elementor-star-rating i:before { | |
| 4881 | + content: "\e934"; | |
| 4882 | + display: block; | |
| 4883 | + font-size: inherit; | |
| 4884 | + font-family: inherit; | |
| 4885 | + position: absolute; | |
| 4886 | + overflow: hidden; | |
| 4887 | + color: #f0ad4e; | |
| 4888 | + top: 0; | |
| 4889 | + left: 0; | |
| 4890 | +} | |
| 4891 | +.elementor-star-rating .elementor-star-empty:before { | |
| 4892 | + content: none; | |
| 4893 | +} | |
| 4894 | +.elementor-star-rating .elementor-star-1:before { | |
| 4895 | + width: 10%; | |
| 4896 | +} | |
| 4897 | +.elementor-star-rating .elementor-star-2:before { | |
| 4898 | + width: 20%; | |
| 4899 | +} | |
| 4900 | +.elementor-star-rating .elementor-star-3:before { | |
| 4901 | + width: 30%; | |
| 4902 | +} | |
| 4903 | +.elementor-star-rating .elementor-star-4:before { | |
| 4904 | + width: 40%; | |
| 4905 | +} | |
| 4906 | +.elementor-star-rating .elementor-star-5:before { | |
| 4907 | + width: 50%; | |
| 4908 | +} | |
| 4909 | +.elementor-star-rating .elementor-star-6:before { | |
| 4910 | + width: 60%; | |
| 4911 | +} | |
| 4912 | +.elementor-star-rating .elementor-star-7:before { | |
| 4913 | + width: 70%; | |
| 4914 | +} | |
| 4915 | +.elementor-star-rating .elementor-star-8:before { | |
| 4916 | + width: 80%; | |
| 4917 | +} | |
| 4918 | +.elementor-star-rating .elementor-star-9:before { | |
| 4919 | + width: 90%; | |
| 4920 | +} | |
| 4921 | +.elementor-star-rating__wrapper { | |
| 4922 | + display: flex; | |
| 4923 | + align-items: center; | |
| 4924 | +} | |
| 4925 | +.elementor-star-rating__title { | |
| 4926 | + margin-right: 10px; | |
| 4927 | +} | |
| 4928 | + | |
| 4929 | +.elementor-star-rating--align-right .elementor-star-rating__wrapper { | |
| 4930 | + text-align: right; | |
| 4931 | + justify-content: flex-end; | |
| 4932 | +} | |
| 4933 | +.elementor-star-rating--align-left .elementor-star-rating__wrapper { | |
| 4934 | + text-align: left; | |
| 4935 | + justify-content: flex-start; | |
| 4936 | +} | |
| 4937 | +.elementor-star-rating--align-center .elementor-star-rating__wrapper { | |
| 4938 | + text-align: center; | |
| 4939 | + justify-content: center; | |
| 4940 | +} | |
| 4941 | +.elementor-star-rating--align-justify .elementor-star-rating__title { | |
| 4942 | + margin-right: auto; | |
| 4943 | +} | |
| 4944 | + | |
| 4945 | +@media (max-width: 1024px) { | |
| 4946 | + .elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper { | |
| 4947 | + text-align: right; | |
| 4948 | + justify-content: flex-end; | |
| 4949 | + } | |
| 4950 | + .elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper { | |
| 4951 | + text-align: left; | |
| 4952 | + justify-content: flex-start; | |
| 4953 | + } | |
| 4954 | + .elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper { | |
| 4955 | + text-align: center; | |
| 4956 | + justify-content: center; | |
| 4957 | + } | |
| 4958 | + .elementor-star-rating-tablet--align-justify .elementor-star-rating__title { | |
| 4959 | + margin-right: auto; | |
| 4960 | + } | |
| 4961 | +} | |
| 4962 | +@media (max-width: 767px) { | |
| 4963 | + .elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper { | |
| 4964 | + text-align: right; | |
| 4965 | + justify-content: flex-end; | |
| 4966 | + } | |
| 4967 | + .elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper { | |
| 4968 | + text-align: left; | |
| 4969 | + justify-content: flex-start; | |
| 4970 | + } | |
| 4971 | + .elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper { | |
| 4972 | + text-align: center; | |
| 4973 | + justify-content: center; | |
| 4974 | + } | |
| 4975 | + .elementor-star-rating-mobile--align-justify .elementor-star-rating__title { | |
| 4976 | + margin-right: auto; | |
| 4977 | + } | |
| 4978 | +} | |
| 4979 | +.last-star { | |
| 4980 | + letter-spacing: 0; | |
| 4981 | +} | |
| 4982 | + | |
| 4983 | +.elementor--star-style-star_unicode .elementor-star-rating { | |
| 4984 | + font-family: "Arial", "Helvetica", sans-serif; | |
| 4985 | +} | |
| 4986 | +.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before { | |
| 4987 | + content: "★"; | |
| 4988 | +} | |
| 4989 | + | |
| 4990 | +.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs-wrapper { | |
| 4991 | + width: 25%; | |
| 4992 | + flex-shrink: 0; | |
| 4993 | +} | |
| 4994 | +.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active { | |
| 4995 | + border-right-style: none; | |
| 4996 | +} | |
| 4997 | +.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:before, .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:after { | |
| 4998 | + height: 999em; | |
| 4999 | + width: 0; | |
| 5000 | + right: 0; | |
| 5001 | + border-right-style: solid; | |
| 5002 | +} | |
| 5003 | +.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:before { | |
| 5004 | + top: 0; | |
| 5005 | + transform: translateY(-100%); | |
| 5006 | +} | |
| 5007 | +.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:after { | |
| 5008 | + top: 100%; | |
| 5009 | +} | |
| 5010 | +.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title { | |
| 5011 | + display: table-cell; | |
| 5012 | +} | |
| 5013 | +.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active { | |
| 5014 | + border-bottom-style: none; | |
| 5015 | +} | |
| 5016 | +.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:before, .elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:after { | |
| 5017 | + bottom: 0; | |
| 5018 | + height: 0; | |
| 5019 | + width: 999em; | |
| 5020 | + border-bottom-style: solid; | |
| 5021 | +} | |
| 5022 | +.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:before { | |
| 5023 | + right: 100%; | |
| 5024 | +} | |
| 5025 | +.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:after { | |
| 5026 | + left: 100%; | |
| 5027 | +} | |
| 5028 | +.elementor-widget-tabs .elementor-tab-title, | |
| 5029 | +.elementor-widget-tabs .elementor-tab-title:before, | |
| 5030 | +.elementor-widget-tabs .elementor-tab-title:after, | |
| 5031 | +.elementor-widget-tabs .elementor-tab-content, | |
| 5032 | +.elementor-widget-tabs .elementor-tabs-content-wrapper { | |
| 5033 | + border: 1px none #D4D4D4; | |
| 5034 | +} | |
| 5035 | +.elementor-widget-tabs .elementor-tabs { | |
| 5036 | + text-align: left; | |
| 5037 | +} | |
| 5038 | +.elementor-widget-tabs .elementor-tabs-wrapper { | |
| 5039 | + overflow: hidden; | |
| 5040 | +} | |
| 5041 | +.elementor-widget-tabs .elementor-tab-title { | |
| 5042 | + cursor: pointer; | |
| 5043 | + outline: var(--focus-outline, none); | |
| 5044 | +} | |
| 5045 | +.elementor-widget-tabs .elementor-tab-desktop-title { | |
| 5046 | + position: relative; | |
| 5047 | + padding: 20px 25px; | |
| 5048 | + font-weight: bold; | |
| 5049 | + line-height: 1; | |
| 5050 | + border: solid transparent; | |
| 5051 | +} | |
| 5052 | +.elementor-widget-tabs .elementor-tab-desktop-title.elementor-active { | |
| 5053 | + border-color: #D4D4D4; | |
| 5054 | +} | |
| 5055 | +.elementor-widget-tabs .elementor-tab-desktop-title.elementor-active:before, .elementor-widget-tabs .elementor-tab-desktop-title.elementor-active:after { | |
| 5056 | + display: block; | |
| 5057 | + content: ""; | |
| 5058 | + position: absolute; | |
| 5059 | +} | |
| 5060 | +.elementor-widget-tabs .elementor-tab-desktop-title:focus-visible { | |
| 5061 | + border: 1px solid #000000; | |
| 5062 | +} | |
| 5063 | +.elementor-widget-tabs .elementor-tab-mobile-title { | |
| 5064 | + padding: 10px 10px; | |
| 5065 | + cursor: pointer; | |
| 5066 | +} | |
| 5067 | +.elementor-widget-tabs .elementor-tab-content { | |
| 5068 | + padding: 20px; | |
| 5069 | + display: none; | |
| 5070 | +} | |
| 5071 | + | |
| 5072 | +@media (max-width: 767px) { | |
| 5073 | + .elementor-tabs .elementor-tab-title, | |
| 5074 | + .elementor-tabs .elementor-tab-content { | |
| 5075 | + border-style: solid; | |
| 5076 | + border-bottom-style: none; | |
| 5077 | + } | |
| 5078 | + .elementor-tabs .elementor-tabs-wrapper { | |
| 5079 | + display: none; | |
| 5080 | + } | |
| 5081 | + .elementor-tabs .elementor-tabs-content-wrapper { | |
| 5082 | + border-bottom-style: solid; | |
| 5083 | + } | |
| 5084 | + .elementor-tabs .elementor-tab-content { | |
| 5085 | + padding: 10px; | |
| 5086 | + } | |
| 5087 | +} | |
| 5088 | +@media (min-width: 768px) { | |
| 5089 | + .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs { | |
| 5090 | + display: flex; | |
| 5091 | + } | |
| 5092 | + .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs-wrapper { | |
| 5093 | + flex-direction: column; | |
| 5094 | + } | |
| 5095 | + .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs-content-wrapper { | |
| 5096 | + flex-grow: 1; | |
| 5097 | + border-style: solid; | |
| 5098 | + border-left-style: none; | |
| 5099 | + } | |
| 5100 | + .elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-content { | |
| 5101 | + border-style: solid; | |
| 5102 | + border-top-style: none; | |
| 5103 | + } | |
| 5104 | + .elementor-widget-tabs.elementor-tabs-alignment-center .elementor-tabs-wrapper, .elementor-widget-tabs.elementor-tabs-alignment-end .elementor-tabs-wrapper, .elementor-widget-tabs.elementor-tabs-alignment-stretch .elementor-tabs-wrapper { | |
| 5105 | + display: flex; | |
| 5106 | + } | |
| 5107 | + .elementor-widget-tabs.elementor-tabs-alignment-center .elementor-tabs-wrapper { | |
| 5108 | + justify-content: center; | |
| 5109 | + } | |
| 5110 | + .elementor-widget-tabs.elementor-tabs-alignment-end .elementor-tabs-wrapper { | |
| 5111 | + justify-content: flex-end; | |
| 5112 | + } | |
| 5113 | + .elementor-widget-tabs.elementor-tabs-alignment-stretch.elementor-tabs-view-horizontal .elementor-tab-title { | |
| 5114 | + width: 100%; | |
| 5115 | + } | |
| 5116 | + .elementor-widget-tabs.elementor-tabs-alignment-stretch.elementor-tabs-view-vertical .elementor-tab-title { | |
| 5117 | + height: 100%; | |
| 5118 | + } | |
| 5119 | + .elementor-tabs .elementor-tab-mobile-title { | |
| 5120 | + display: none; | |
| 5121 | + } | |
| 5122 | +} | |
| 5123 | +.elementor-testimonial-wrapper { | |
| 5124 | + overflow: hidden; | |
| 5125 | + text-align: center; | |
| 5126 | +} | |
| 5127 | +.elementor-testimonial-wrapper .elementor-testimonial-content { | |
| 5128 | + font-size: 1.3em; | |
| 5129 | + margin-bottom: 20px; | |
| 5130 | +} | |
| 5131 | +.elementor-testimonial-wrapper .elementor-testimonial-name { | |
| 5132 | + line-height: 1.5; | |
| 5133 | + display: block; | |
| 5134 | +} | |
| 5135 | +.elementor-testimonial-wrapper .elementor-testimonial-job { | |
| 5136 | + font-size: 0.85em; | |
| 5137 | + display: block; | |
| 5138 | +} | |
| 5139 | +.elementor-testimonial-wrapper .elementor-testimonial-meta { | |
| 5140 | + width: 100%; | |
| 5141 | + line-height: 1; | |
| 5142 | +} | |
| 5143 | +.elementor-testimonial-wrapper .elementor-testimonial-meta-inner { | |
| 5144 | + display: inline-block; | |
| 5145 | +} | |
| 5146 | +.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details, | |
| 5147 | +.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image { | |
| 5148 | + display: table-cell; | |
| 5149 | + vertical-align: middle; | |
| 5150 | +} | |
| 5151 | +.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img { | |
| 5152 | + width: 60px; | |
| 5153 | + height: 60px; | |
| 5154 | + border-radius: 50%; | |
| 5155 | + -o-object-fit: cover; | |
| 5156 | + object-fit: cover; | |
| 5157 | + max-width: none; | |
| 5158 | +} | |
| 5159 | +.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image { | |
| 5160 | + padding-right: 15px; | |
| 5161 | +} | |
| 5162 | +.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details { | |
| 5163 | + text-align: left; | |
| 5164 | +} | |
| 5165 | +.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details, | |
| 5166 | +.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image { | |
| 5167 | + display: block; | |
| 5168 | +} | |
| 5169 | +.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image { | |
| 5170 | + margin-bottom: 20px; | |
| 5171 | +} | |
| 5172 | + | |
| 5173 | +.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap { | |
| 5174 | + background-color: #818a91; | |
| 5175 | + color: #fff; | |
| 5176 | +} | |
| 5177 | +.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap { | |
| 5178 | + color: #818a91; | |
| 5179 | + border: 3px solid; | |
| 5180 | + background-color: transparent; | |
| 5181 | +} | |
| 5182 | +.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap { | |
| 5183 | + margin-top: 8px; | |
| 5184 | +} | |
| 5185 | +.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter { | |
| 5186 | + width: 1em; | |
| 5187 | + height: 1em; | |
| 5188 | +} | |
| 5189 | +.elementor-widget-text-editor .elementor-drop-cap { | |
| 5190 | + float: left; | |
| 5191 | + text-align: center; | |
| 5192 | + line-height: 1; | |
| 5193 | + font-size: 50px; | |
| 5194 | +} | |
| 5195 | +.elementor-widget-text-editor .elementor-drop-cap-letter { | |
| 5196 | + display: inline-block; | |
| 5197 | +} | |
| 5198 | + | |
| 5199 | +.elementor-toggle { | |
| 5200 | + text-align: left; | |
| 5201 | +} | |
| 5202 | +.elementor-toggle .elementor-tab-title { | |
| 5203 | + font-weight: bold; | |
| 5204 | + line-height: 1; | |
| 5205 | + margin: 0; | |
| 5206 | + padding: 15px; | |
| 5207 | + border-bottom: 1px solid #D4D4D4; | |
| 5208 | + cursor: pointer; | |
| 5209 | + outline: none; | |
| 5210 | +} | |
| 5211 | +.elementor-toggle .elementor-tab-title .elementor-toggle-icon { | |
| 5212 | + display: inline-block; | |
| 5213 | + width: 1em; | |
| 5214 | +} | |
| 5215 | +.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg { | |
| 5216 | + -webkit-margin-start: -5px; | |
| 5217 | + margin-inline-start: -5px; | |
| 5218 | + width: 1em; | |
| 5219 | + height: 1em; | |
| 5220 | +} | |
| 5221 | +.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right { | |
| 5222 | + float: right; | |
| 5223 | + text-align: right; | |
| 5224 | +} | |
| 5225 | +.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left { | |
| 5226 | + float: left; | |
| 5227 | + text-align: left; | |
| 5228 | +} | |
| 5229 | +.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed { | |
| 5230 | + display: block; | |
| 5231 | +} | |
| 5232 | +.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened { | |
| 5233 | + display: none; | |
| 5234 | +} | |
| 5235 | +.elementor-toggle .elementor-tab-title.elementor-active { | |
| 5236 | + border-bottom: none; | |
| 5237 | +} | |
| 5238 | +.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed { | |
| 5239 | + display: none; | |
| 5240 | +} | |
| 5241 | +.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened { | |
| 5242 | + display: block; | |
| 5243 | +} | |
| 5244 | +.elementor-toggle .elementor-tab-content { | |
| 5245 | + padding: 15px; | |
| 5246 | + border-bottom: 1px solid #D4D4D4; | |
| 5247 | + display: none; | |
| 5248 | +} | |
| 5249 | + | |
| 5250 | +@media (max-width: 767px) { | |
| 5251 | + .elementor-toggle .elementor-tab-title { | |
| 5252 | + padding: 12px; | |
| 5253 | + } | |
| 5254 | + .elementor-toggle .elementor-tab-content { | |
| 5255 | + padding: 12px 10px; | |
| 5256 | + } | |
| 5257 | +} | |
| 5258 | +.e-con > .elementor-widget-toggle, | |
| 5259 | +.e-con-inner > .elementor-widget-toggle { | |
| 5260 | + width: var(--container-widget-width, 100%); | |
| 5261 | +} | |
| 5262 | + | |
| 5263 | +.elementor-widget-video .elementor-widget-container { | |
| 5264 | + overflow: hidden; | |
| 5265 | + transform: translate3d(0, 0, 0); | |
| 5266 | +} | |
| 5267 | +.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay { | |
| 5268 | + position: absolute; | |
| 5269 | + top: 0; | |
| 5270 | + left: 0; | |
| 5271 | + width: 100%; | |
| 5272 | + height: 100%; | |
| 5273 | + background-size: cover; | |
| 5274 | + background-position: 50%; | |
| 5275 | +} | |
| 5276 | +.elementor-widget-video .elementor-custom-embed-image-overlay { | |
| 5277 | + cursor: pointer; | |
| 5278 | + text-align: center; | |
| 5279 | +} | |
| 5280 | +.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i { | |
| 5281 | + opacity: 1; | |
| 5282 | +} | |
| 5283 | +.elementor-widget-video .elementor-custom-embed-image-overlay img { | |
| 5284 | + display: block; | |
| 5285 | + width: 100%; | |
| 5286 | +} | |
| 5287 | +.elementor-widget-video .e-hosted-video .elementor-video { | |
| 5288 | + -o-object-fit: cover; | |
| 5289 | + object-fit: cover; | |
| 5290 | +} | |
| 5291 | + | |
| 5292 | +.e-con > .elementor-widget-video, | |
| 5293 | +.e-con-inner > .elementor-widget-video { | |
| 5294 | + width: var(--container-widget-width, 100%); | |
| 2204 | 5295 | } |
| 2205 | 5296 | /*# sourceMappingURL=frontend.css.map */ |