Version Description
November 5th 2020 = * fixed : [Image module] custom width not taken into account if > 100% of the parent element. * fixed : [link picker][customizer] list of links not visible (opacity set to 0) due to "clearfix" class styled by other plugins
Download this release
Release Info
Developer | nikeo |
Plugin | Nimble Page Builder |
Version | 2.1.21 |
Comparing to | |
See all releases |
Code changes from version 2.1.14 to 2.1.21
- assets/czr/sek/css/sek-preview.css +6 -5
- assets/czr/sek/css/sek-preview.min.css +1 -1
- assets/czr/sek/js/ccat-sek-preview.js +6 -2
- assets/czr/sek/js/ccat-sek-preview.min.js +1 -1
- assets/front/css/modules/accordion-module.css +3 -0
- assets/front/css/modules/button-module.css +39 -0
- assets/front/css/modules/button-module.min.css +1 -0
- assets/front/css/modules/heading-module.css +42 -0
- assets/front/css/modules/heading-module.min.css +1 -0
- assets/front/css/modules/icon-module.css +3 -0
- assets/front/css/modules/image-module.css +3 -0
- assets/front/css/modules/img-slider-module-with-swiper.css +3 -0
- assets/front/css/modules/img-slider-module.css +3 -0
- assets/front/css/modules/menu-module.css +5 -2
- assets/front/css/modules/menu-module.min.css +1 -1
- assets/front/css/modules/post-grid-module.css +3 -0
- assets/front/css/modules/quote-module.css +3 -0
- assets/front/css/modules/simple-form-module.css +3 -0
- assets/front/css/modules/social-icons-module.css +33 -0
- assets/front/css/modules/social-icons-module.min.css +1 -0
- assets/front/css/modules/special-image-module.css +127 -0
- assets/front/css/modules/special-image-module.min.css +1 -0
- assets/front/css/sek-base-light-rtl.css +20 -115
- assets/front/css/sek-base-light-rtl.css.map +1 -4
- assets/front/css/sek-base-light-rtl.min.css +1 -1
- assets/front/css/sek-base-light.css +20 -115
- assets/front/css/sek-base-light.css.map +1 -4
- assets/front/css/sek-base-light.min.css +1 -1
- assets/front/css/sek-base-rtl.css +68 -19
- assets/front/css/sek-base-rtl.css.map +1 -1
- assets/front/css/sek-base-rtl.min.css +1 -1
- assets/front/css/sek-base.css +68 -19
- assets/front/css/sek-base.min.css +1 -1
- assets/front/js/ccat-nimble-front.js +3 -1146
- assets/front/js/ccat-nimble-front.min.js +1 -1
- assets/front/js/partials/accordion-module.js +69 -0
- assets/front/js/partials/accordion-module.min.js +1 -0
- assets/front/js/partials/front-parallax.js +160 -0
- assets/front/js/partials/front-parallax.min.js +1 -0
- assets/front/js/partials/menu-module.js +387 -0
- assets/front/js/partials/menu-module.min.js +1 -0
- assets/front/js/partials/slider-module.js +528 -0
- assets/front/js/partials/slider-module.min.js +1 -0
- inc/admin/system-info.php +8 -1
- inc/czr-base-fmk/assets/js/_0_ccat_czr-base-fmk.js +1 -1
- inc/czr-base-fmk/assets/js/_0_ccat_czr-base-fmk.min.js +0 -1
assets/czr/sek/css/sek-preview.css
CHANGED
@@ -916,10 +916,10 @@
|
|
916 |
.sek-mouse-is-close .sek-add-content-button-wrapper {
|
917 |
border: 1px dashed #333;
|
918 |
}
|
919 |
-
.sek-mouse-is-close .sek-add-content-button-wrapper .sek-add-content-btn {
|
920 |
opacity: 1;
|
921 |
}
|
922 |
-
.sek-add-content-button-wrapper .sek-add-content-btn {
|
923 |
text-decoration: none;
|
924 |
margin: auto;
|
925 |
padding: 0;
|
@@ -953,19 +953,20 @@
|
|
953 |
opacity: 0;
|
954 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
955 |
}
|
956 |
-
.sek-add-content-btn.sek-mouse-is-close {
|
957 |
z-index: 10000;
|
958 |
}
|
959 |
|
960 |
|
961 |
|
962 |
-
.sek-add-content-btn:hover {
|
963 |
width: 26px;
|
964 |
height: 26px;
|
965 |
--sek-add-content-btn-width: 65px;
|
966 |
width: calc(var(--sek-add-content-btn-width) + 70px);
|
967 |
/*transition: all .35s ease;*/
|
968 |
background-color: #000;
|
|
|
969 |
/*transition: opacity,background-color 0.35s ease-in-out;*/
|
970 |
opacity: 1;
|
971 |
left: calc(50% - var(--sek-add-content-btn-width));
|
@@ -1356,7 +1357,7 @@ https://github.com/presscustomizr/nimble-builder/issues/317 */
|
|
1356 |
animation: sek-target-highlight 3s infinite;
|
1357 |
background-color: #eee;
|
1358 |
}
|
1359 |
-
.sek-injection-instructions {
|
1360 |
display: none;
|
1361 |
font-size: 13px;
|
1362 |
line-height: 1.5em;
|
916 |
.sek-mouse-is-close .sek-add-content-button-wrapper {
|
917 |
border: 1px dashed #333;
|
918 |
}
|
919 |
+
.sektion-wrapper .sek-mouse-is-close .sek-add-content-button-wrapper .sek-add-content-btn {
|
920 |
opacity: 1;
|
921 |
}
|
922 |
+
.sektion-wrapper .sek-add-content-button-wrapper .sek-add-content-btn {
|
923 |
text-decoration: none;
|
924 |
margin: auto;
|
925 |
padding: 0;
|
953 |
opacity: 0;
|
954 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
955 |
}
|
956 |
+
.sektion-wrapper .sek-add-content-btn.sek-mouse-is-close {
|
957 |
z-index: 10000;
|
958 |
}
|
959 |
|
960 |
|
961 |
|
962 |
+
.sektion-wrapper .sek-add-content-button-wrapper .sek-add-content-btn:hover {
|
963 |
width: 26px;
|
964 |
height: 26px;
|
965 |
--sek-add-content-btn-width: 65px;
|
966 |
width: calc(var(--sek-add-content-btn-width) + 70px);
|
967 |
/*transition: all .35s ease;*/
|
968 |
background-color: #000;
|
969 |
+
color: #fff;
|
970 |
/*transition: opacity,background-color 0.35s ease-in-out;*/
|
971 |
opacity: 1;
|
972 |
left: calc(50% - var(--sek-add-content-btn-width));
|
1357 |
animation: sek-target-highlight 3s infinite;
|
1358 |
background-color: #eee;
|
1359 |
}
|
1360 |
+
.sektion-wrapper .sek-injection-instructions {
|
1361 |
display: none;
|
1362 |
font-size: 13px;
|
1363 |
line-height: 1.5em;
|
assets/czr/sek/css/sek-preview.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sektion-wrapper{min-height:50px;margin-top:21px}.sek-section{position:relative}.sek-column{position:relative}.sek-column-inner.sek-empty-col{min-height:130px;height:100%}.sek-has-modules .sek-column-inner.sek-empty-col{min-height:auto;height:auto}.sek-module{position:relative}.sek-module-inner{position:relative;-webkit-transition:all .25s ease-in-out;-moz-transition:all,.25s ease-in-out;-ms-transition:all,.25s ease-in-out;-o-transition:all,.25s ease-in-out;transition:all .25s ease-in-out}[data-sek-level]:not([data-sek-bg-parallax]){-webkit-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out}.sek-duplicate [data-sek-level],.sek-refresh-stylesheet [data-sek-level],.sek-remove [data-sek-level]{-webkit-transition:inherit!important;-o-transition:inherit!important;transition:inherit!important}.sek-module [data-sek-input-type=detached_tinymce_editor]:hover{outline:1px solid #1d85bb}.sek-module [data-sek-input-type=detached_tinymce_editor],[data-sek-module-type=czr_simple_html_module]{min-height:30px}.sek-dyn-ui-wrapper{display:none;position:absolute;bottom:0;left:0;top:0;right:0;color:#fff;background:rgba(190,239,255,0);border-radius:4px;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important}.sek-dyn-ui-wrapper,.sek-dyn-ui-wrapper *{text-shadow:none;-webkit-touch-callout:none}.sek-dyn-ui-inner{position:absolute;-webkit-transition:opacity .25s ease;-o-transition:opacity .25s ease;transition:opacity .25s ease}.sek-dyn-ui-inner.sek-is-expanded{display:block!important;z-index:2000!important}.sek-dyn-left-icons{left:0}.sek-dyn-right-icons{right:0}.sek-dyn-ui-inner:hover{opacity:1}.sek-dyn-ui-wrapper-active{position:relative}.sek-dyn-ui-icons{background:#00a0d2;float:left;min-height:18px;padding:0 4px;text-shadow:none;font-size:1em}.sek-dyn-ui-icons>span{display:block;float:left}.sek-dyn-ui-icons i{color:#fff!important;cursor:pointer;float:left;font-size:1em;height:1.4em;line-height:1.4em;opacity:.8;text-align:center;width:1em}.sek-dyn-left-icons .sek-dyn-ui-icons i,.sek-dyn-right-icons .sek-dyn-ui-icons i{margin:0 .3em}.sek-dyn-ui-icons i:hover{opacity:1}.sek-dyn-ui-icons .fa-arrows-alt{cursor:move}.sek-dyn-ui-icons [data-sek-click-on=remove]{padding-left:.42em;margin-left:0;width:1.6em!important;border-left:1px dotted #fff}.sek-dyn-ui-wrapper .sek-dyn-ui-icons [data-sek-click-on=toggle-save-section-ui]{padding-left:.42em;margin-left:0;width:1.6em!important;border-left:1px dotted #fff;color:#ff0!important}.sek-dyn-ui-location-type{position:absolute;z-index:2;bottom:0;padding:0 .5em;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:11px;line-height:16px;font-style:normal;letter-spacing:0;text-align:center;text-indent:0;text-shadow:none;text-decoration:none;text-transform:none;right:0;cursor:pointer;opacity:.75}.sek-dyn-ui-location-type:hover{opacity:1}.sek-dyn-ui-location-inner{padding:3px 0}.sek-minimize-ui{float:left;text-align:center;width:16px;padding:3px}.sek-column-dyn-ui,.sek-module-dyn-ui,.sek-section-dyn-ui{font-size:16px}.sek-shrink-my-ui .sek-module-dyn-ui,.sek-shrink-my-ui>.sek-column-dyn-ui,.sek-shrink-my-ui>.sek-section-dyn-ui{font-size:11px}.sek-shrink-my-ui>.sek-column-dyn-ui .sek-ham__toggler-spn-wrapper,.sek-shrink-my-ui>.sek-module-dyn-ui .sek-ham__toggler-spn-wrapper,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-ham__toggler-spn-wrapper{height:8px;width:16px}.sek-shrink-my-ui .sek-module-dyn-ui .sek-ham__toggler-spn-wrapper .line,.sek-shrink-my-ui>.sek-column-dyn-ui .sek-ham__toggler-spn-wrapper .line,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-ham__toggler-spn-wrapper .line{width:15px;height:1px}.sek-shrink-my-ui .sek-module-dyn-ui .sek-dyn-ui-location-type:hover .line,.sek-shrink-my-ui>.sek-column-dyn-ui .sek-dyn-ui-location-type:hover .line,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-dyn-ui-location-type:hover .line{width:16px;-webkit-transform:translate(-1px,0);transform:translate(-1px,0)}.sek-shrink-my-ui .sek-module-dyn-ui .sek-dyn-ui-location-type,.sek-shrink-my-ui>.sek-column-dyn-ui .sek-dyn-ui-location-type,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-dyn-ui-location-type{font-size:10px;line-height:11px}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:#000;opacity:.75}.sek-section>.sek-section-dyn-ui .sek-dyn-ui-inner{z-index:1001;display:none}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-icons:hover{opacity:1}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{z-index:1000;position:relative;float:left}.sek-section[data-sek-is-nested=true]>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{z-index:1002}.sek-section-dyn-ui{border:2px dotted #000}.sek-section>.sek-section-dyn-ui .sek-dyn-ui-inner{top:-1px;z-index:1000}.sek-section[data-sek-is-nested=true]>.sek-section-dyn-ui .sek-dyn-ui-inner{top:18px}.sek-section.sek-highlight-active-ui{-webkit-box-shadow:0 0 2px rgba(0,0,0,.8);box-shadow:0 0 2px rgba(0,0,0,.8)}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-inner{float:left}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-hamb-menu-wrapper,.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{float:left}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{padding-left:.5em}.sek-column>.sek-column-dyn-ui .sek-dyn-ui-inner{bottom:0;z-index:1002;display:none}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:#00b846}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{z-index:1001;bottom:3px}.sek-column>.sek-dyn-ui-wrapper.sek-col-has-nested-section .sek-dyn-ui-location-type{top:0;bottom:auto}.sek-column>.sek-column-dyn-ui.sek-col-has-nested-section .sek-dyn-ui-inner{top:0;bottom:auto;z-index:1002;display:none}.sek-column-dyn-ui{border:2px dotted #00b846;font-size:16px}.sek-column-dyn-ui .dev-level-data{background:#0085ba}.sek-column.sek-highlight-active-ui{-webkit-box-shadow:0 0 2px rgba(0,184,70,.8);box-shadow:0 0 2px rgba(0,184,70,.8)}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-hamb-menu-wrapper,.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{float:right}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{padding-right:.5em}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-location-inner{float:left}.sek-module:hover{cursor:pointer}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-inner{bottom:0;z-index:1006;display:none}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:#0085ba}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{left:0;top:auto;bottom:0;right:auto;z-index:1005}.sek-module-dyn-ui{border:2px dotted #0085ba;font-size:16px}.dev-level-data{position:absolute;bottom:0;left:0;background:#000;padding:1px 12px;font-size:11px}.sek-module-dyn-ui .dev-level-data{background:#c68f00;right:0;left:unset}.sek-module.sek-highlight-active-ui{-webkit-box-shadow:0 0 2px rgba(0,133,186,.8);box-shadow:0 0 2px rgba(0,133,186,.8)}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-hamb-menu-wrapper,.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{float:left}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{padding-left:.5em}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-location-inner{float:left}.sek-ham__toggler-spn-wrapper{height:10px;position:relative;width:16px;display:block}.sek-ham__toggler-spn-wrapper .line.line-1{top:10%}.sek-ham__toggler-spn-wrapper .line.line-2{top:60%}.sek-ham__toggler-spn-wrapper .line.line-3{top:110%}.sek-ham__toggler-spn-wrapper .line{background:#fff;display:block;width:16px;height:2px;position:absolute;-webkit-border-radius:5px;-webkit-background-clip:padding-box;-moz-border-radius:5px;-moz-background-clip:padding;border-radius:5px;background-clip:padding-box;-webkit-transition:all ease .2s;-o-transition:all ease .2s;transition:all ease .2s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sek-dyn-ui-location-type:hover .line{-webkit-transform:translate(-2px,0);transform:translate(-2px,0);width:20px}.sek-wp-content-wrapper{cursor:pointer;position:relative}.sek-wp-content-wrapper:after{content:'';display:block;clear:both}.sek-wp-content-wrapper:hover{outline:2px dashed #036697}.sek-wp-content-wrapper>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{left:auto;right:0;z-index:1005;background:#036697}.sek-wp-content-wrapper .sek-dyn-ui-icons{background-color:#036697}.sek-wp-content-wrapper .sek-dyn-ui-inner{top:0;z-index:1005}.sek-wp-content-dyn-ui{bottom:0;left:0;top:0;right:0;font-size:16px}.sek-empty-location-placeholder{position:relative;min-height:50px;margin:20px 0;border-radius:5px;text-align:center}[data-sek-is-footer-location=true]>.sek-empty-location-placeholder,[data-sek-is-header-location=true]>.sek-empty-location-placeholder{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;background:#eee;line-height:45px;font-size:20px}.sek-header-footer-location-placeholder{opacity:1;-webkit-transition:opacity ease .4s;-o-transition:opacity ease .4s;transition:opacity ease .4s}.sek-header-footer-location-placeholder .sek-nimble-icon img{width:30px;height:30px;position:relative;top:-2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;display:inline}.sek-empty-location-placeholder:hover .sek-nimble-icon img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}.sek-empty-location-placeholder:hover .sek-header-footer-location-placeholder{opacity:.6}.sek-empty-location-placeholder:hover{outline:2px dotted #000}.sek-add-button-wrapper{text-align:center;width:100%;margin:16px 0;position:relative}.sek-no-modules-column{position:relative;height:100%;bottom:0;left:0;right:0;z-index:1}.sek-module-drop-zone-for-first-module{text-align:center;border:1px dotted #ccc;background:#eee;background:rgba(0,0,0,.1);height:100%;min-height:40px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-ms-flexbox;display:-webkit-box;display:flex}.sek-module-drop-zone-for-first-module:hover{background:rgba(0,0,0,.5)}.sek-module-drop-zone-for-first-module:hover [data-sek-click-on=pick-content]{color:#fff}.sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]{cursor:pointer;width:50px;height:50px;line-height:50px;font-size:22px;color:#535353;border-radius:30px;-webkit-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]:hover{-webkit-box-shadow:0 2px 6px rgba(0,0,0,.2);box-shadow:0 2px 6px rgba(0,0,0,.2);color:#fff}.sek-col-10 [data-sek-click-on=pick-content],.sek-col-11 [data-sek-click-on=pick-content],.sek-col-12 [data-sek-click-on=pick-content],.sek-col-14 [data-sek-click-on=pick-content],.sek-col-16 [data-sek-click-on=pick-content],.sek-col-20 [data-sek-click-on=pick-content],.sek-col-25 [data-sek-click-on=pick-content],.sek-col-8 [data-sek-click-on=pick-content],.sek-col-9 [data-sek-click-on=pick-content]{font-size:14px}.sek-sortable-overing>.sek-no-modules-column{display:none}.sek-drop-zone{-webkit-transition:opacity,height,background .4s ease;-o-transition:opacity,height,background .4s ease;transition:opacity,height,background .4s ease;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;flex:0 0 100%;max-width:100%;text-align:center}.sek-no-drop-possible-message{margin:auto;padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#004085;background-color:#cce5ff;border:1px solid #b8daff;border-radius:.25rem;font-size:16px;line-height:1.5em;max-width:80%}.sek-active-drop-zone.sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]{display:none}.sek-dynamic-drop-zone{opacity:0}.sek-active-drop-zone.sek-dynamic-drop-zone{height:auto!important;min-height:50px}.sek-dragging .sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]{display:none}.sek-dragging .sek-drop-zone .sek-injection-instructions{display:none!important}.sek-dragging [data-sek-location=between-sections].sek-dynamic-drop-zone{height:15px}.sek-dragging .sek-dynamic-drop-zone{height:5px;-webkit-transition:all 3s ease;-o-transition:all 3s ease;transition:all 3s ease;border:2px dotted #72777c;background:#ddd;border-radius:5px}.sek-dragging .sek-drop-zone{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease}.sek-dragging [data-sek-location=between-sections],.sek-dragging [data-sek-location=in-empty-location]{background:#ddd;border:2px dotted #72777c}.sek-dragging .sek-drag-is-approaching.sek-dynamic-drop-zone{height:20px}.sek-dragging .sek-drag-is-close.sek-dynamic-drop-zone{height:55px;-webkit-transition:all 1.5s ease;-o-transition:all 1.5s ease;transition:all 1.5s ease}.sek-dragging .sek-drag-is-very-close.sek-dynamic-drop-zone{height:55px;-webkit-transition:all 1.5s ease;-o-transition:all 1.5s ease;transition:all 1.5s ease}.sek-dragging .sek-drag-is-in.sek-dynamic-drop-zone{height:100px;-webkit-transition:all .75s ease;-o-transition:all .75s ease;transition:all .75s ease}.sek-dragging .sek-feed-me-seymore{-moz-box-shadow:inset 0 0 30px #000;-webkit-box-shadow:inset 0 0 30px #000;box-shadow:inset 0 0 30px #000}.sek-dragging .sek-module-drop-zone-for-first-module,.sek-dragging [data-sek-location=between-modules-and-nested-sections]{background:#dcefff;background:rgba(220,239,255,.84);border:2px dotted #1d85bb;border-radius:5px}.sek-dragging-element .sek-column-inner,.sek-dragging-element .sek-sektion-inner{min-height:50px}.sek-module-placeholder-content{text-align:center;text-transform:uppercase}.sek-module-placeholder-content>p{padding:35px 10px;font-size:16px!important}.sek-add-content-button{position:absolute;top:0;width:100%;z-index:1001;display:none}.sek-empty-location-placeholder .sek-add-content-button{top:50%}.sek-add-content-button.is_last{bottom:0;top:unset}.sek-add-content-button-wrapper{position:relative;top:-5px;width:100%;border:1px dashed #ccc;height:10px;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:.35s ease-in-out;-o-transition:.35s ease-in-out;transition:.35s ease-in-out}.is_last .sek-add-content-button-wrapper{top:10px}.sek-mouse-is-close .sek-add-content-button-wrapper{border:1px dashed #333}.sek-mouse-is-close .sek-add-content-button-wrapper .sek-add-content-btn{opacity:1}.sek-add-content-button-wrapper .sek-add-content-btn{text-decoration:none;margin:auto;padding:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:1000px;width:18px;height:18px;font-size:13px;line-height:18px;background-color:#000;color:#fff;border:none;outline:0;overflow:hidden;-webkit-transition:width .5s ease,background-color .5s ease;-o-transition:width .5s ease,background-color .5s ease;transition:width .5s ease,background-color .5s ease;font-weight:400;font-style:normal;cursor:pointer;position:absolute;left:calc(50% - 12px);-webkit-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;opacity:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.sek-add-content-btn.sek-mouse-is-close{z-index:10000}.sek-add-content-btn:hover{width:26px;height:26px;--sek-add-content-btn-width:65px;width:calc(var(--sek-add-content-btn-width) + 70px);background-color:#000;opacity:1;left:calc(50% - var(--sek-add-content-btn-width));-webkit-box-shadow:0 2px 6px rgba(0,0,0,.2);box-shadow:0 2px 6px rgba(0,0,0,.2)}.sek-click-on-button-icon{line-height:18px;width:18px}.sek-add-content-btn:hover .sek-click-on-button-icon{padding-left:6px;font-size:13px;line-height:26px}.action-button-text{visibility:hidden;display:none;white-space:nowrap;padding-left:5px;padding-bottom:2px;text-transform:none;letter-spacing:0;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.sek-add-content-btn:not(.disabled):hover .action-button-text{visibility:visible;display:inline-block}.sortable-placeholder{max-width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;background:#00a2d7;border-radius:4px;color:#fff!important;display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:400;font-size:12px;letter-spacing:1px;line-height:14px;margin:10px;padding:6px 8px 5px;position:relative;text-align:left;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-shadow:none;text-transform:none;white-space:nowrap;overflow:hidden;z-index:10}.in-new-sektion.sortable-placeholder{background:#72777c}.sek-moving-section [data-sek-level=location]{background:#ddd;border:2px dotted #72777c;border-radius:5px}.sek-moving-section .sek-empty-location-placeholder{display:none}.sek-sortable-section-over .sortable-placeholder{background:#72777c}.ui-resizable-helper{border:2px dotted #00b846}[data-sek-level=column] .ui-resizable-e{cursor:e-resize;width:7px;right:-4px;font-size:.55em}[data-sek-level=column] .ui-resizable-e i{background:#00b846;border-radius:12px;color:#fff;padding:2px;width:auto;display:none}[data-sek-level=section]:hover .ui-resizable-e{background:#d5d5d573;background:rgba(213,213,213,.42)}[data-sek-level=section]:hover .ui-resizable-e i{display:block}[data-sek-level=column] .ui-resizable-handle{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-blur,.sek-refreshing{-webkit-filter:blur(3px);filter:blur(3px);-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out}.sek-level-clone{position:absolute!important;z-index:10000}.sek-level-clone::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background-color:#fff;opacity:.5}#nimble-full-page-loader-wrapper{height:100vh;position:absolute;text-align:center;right:0;left:0;z-index:20;color:#fff;display:block;-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out;opacity:.3;top:0;background:rgba(0,0,0,.8);padding:2px;z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;flex:0 0 100%;max-width:100%;display:none}@-webkit-keyframes sek-mr-loader{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}@keyframes sek-mr-loader{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}.sek-css-loader{display:none;width:50px;height:50px;position:absolute;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);top:50%;left:50%}.csstransforms3d .sek-css-loader{display:block}.sek-mr-loader>div:nth-child(0){-webkit-animation-delay:-.8s;animation-delay:-.8s}.sek-mr-loader>div:nth-child(1){-webkit-animation-delay:-.6s;animation-delay:-.6s}.sek-mr-loader>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.sek-mr-loader>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.sek-mr-loader>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:100%;border:2px solid #777;-webkit-animation:sek-mr-loader 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:sek-mr-loader 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8)}.white-loader>.sek-mr-loader>div{border:2px solid #fff}.nimble-unclickable{cursor:not-allowed!important}.nimble-shift-clickable{cursor:alias!important}[data-sek-is-global-location=true] .sek-empty-location-placeholder:hover{outline:2px dotted red}[data-sek-is-global-location=true] .sek-add-content-button-wrapper{border:1px dashed #ff7878}[data-sek-is-global-location=true] .sek-mouse-is-close .sek-add-content-button-wrapper{border:1px dashed red}[data-sek-is-global-location=true] .sek-add-content-button-wrapper .sek-add-content-btn{background-color:red}[data-sek-is-global-location=true] .sek-module-drop-zone-for-first-module{border:1px dotted red}[data-sek-is-global-location=true] .sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,[data-sek-is-global-location=true] .sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:red;opacity:.75}[data-sek-is-footer-location=true]{margin-bottom:40px}[data-sek-is-header-location=true]{margin-top:0}@keyframes sek-target-highlight{0%{background-color:#0085ba}50%{background-color:#00a0d2}100%{background-color:#0085ba}}.sek-target-for-double-click-insertion .sek-drop-zone{animation:sek-target-highlight 3s infinite;background-color:#eee}.sek-injection-instructions{display:none;font-size:13px;line-height:1.5em;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#fff;padding:4px;overflow:hidden;max-width:80%;max-height:100%;min-height:50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute}.sek-shrink-my-ui .sek-injection-instructions{font-size:10px}.sek-target-for-double-click-insertion .sek-drop-zone .sek-injection-instructions{display:-webkit-box;display:-ms-flexbox;display:flex}.sek-target-for-double-click-insertion .sek-drop-zone [data-sek-click-on=pick-content]{visibility:hidden}.sek-tiny-mce-module-placeholder-text{padding:10px;border:1px dotted;background:rgba(0,0,0,.35);color:#fff;font-size:1rem;line-height:1.5rem}.sek-module-placeholder.sek-post-grid{font-size:150px}[data-sek-module-type] .sek-mod-preview-placeholder{height:150px;background:#eee}[data-sek-module-type] .sek-mod-preview-placeholder .sek-preview-ph-text{font-size:25px;position:relative;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:flex-end;align-items:flex-end}[data-sek-module-type] .sek-mod-preview-placeholder .sek-preview-ph-text>p{padding:10px;position:relative;margin:0;color:#767676}[data-sek-module-type] .sek-mod-preview-placeholder .sek-preview-ph-text::before{content:'';left:0;right:0;bottom:0;top:0;position:absolute;background-color:#fff;opacity:.6}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(../fonts/material-icons/MaterialIcons-Regular.eot);src:local('Material Icons'),local('MaterialIcons-Regular'),url(../fonts/material-icons/MaterialIcons-Regular.woff2) format('woff2'),url(../fonts/material-icons/MaterialIcons-Regular.woff) format('woff'),url(../fonts/material-icons/MaterialIcons-Regular.ttf) format('truetype')}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga'}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.nimble-shortcode-notice-in-preview{font-size:16px;line-height:1.5em;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",sans-serif;padding:10px 20px;margin:5px 0 15px;position:relative;background:#fff;border:1px solid #ccd0d4;border-left-color:#00a0d2;border-left-width:4px;box-shadow:0 1px 1px rgba(0,0,0,.04)}.nimble-shortcode-notice-in-preview>i{color:#00a0d2}@media(max-width:768px){.nimble-shortcode-notice-in-preview{font-size:14px}}
|
1 |
+
.sektion-wrapper{min-height:50px;margin-top:21px}.sek-section{position:relative}.sek-column{position:relative}.sek-column-inner.sek-empty-col{min-height:130px;height:100%}.sek-has-modules .sek-column-inner.sek-empty-col{min-height:auto;height:auto}.sek-module{position:relative}.sek-module-inner{position:relative;-webkit-transition:all .25s ease-in-out;-moz-transition:all,.25s ease-in-out;-ms-transition:all,.25s ease-in-out;-o-transition:all,.25s ease-in-out;transition:all .25s ease-in-out}[data-sek-level]:not([data-sek-bg-parallax]){-webkit-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out}.sek-duplicate [data-sek-level],.sek-refresh-stylesheet [data-sek-level],.sek-remove [data-sek-level]{-webkit-transition:inherit!important;-o-transition:inherit!important;transition:inherit!important}.sek-module [data-sek-input-type=detached_tinymce_editor]:hover{outline:1px solid #1d85bb}.sek-module [data-sek-input-type=detached_tinymce_editor],[data-sek-module-type=czr_simple_html_module]{min-height:30px}.sek-dyn-ui-wrapper{display:none;position:absolute;bottom:0;left:0;top:0;right:0;color:#fff;background:rgba(190,239,255,0);border-radius:4px;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important}.sek-dyn-ui-wrapper,.sek-dyn-ui-wrapper *{text-shadow:none;-webkit-touch-callout:none}.sek-dyn-ui-inner{position:absolute;-webkit-transition:opacity .25s ease;-o-transition:opacity .25s ease;transition:opacity .25s ease}.sek-dyn-ui-inner.sek-is-expanded{display:block!important;z-index:2000!important}.sek-dyn-left-icons{left:0}.sek-dyn-right-icons{right:0}.sek-dyn-ui-inner:hover{opacity:1}.sek-dyn-ui-wrapper-active{position:relative}.sek-dyn-ui-icons{background:#00a0d2;float:left;min-height:18px;padding:0 4px;text-shadow:none;font-size:1em}.sek-dyn-ui-icons>span{display:block;float:left}.sek-dyn-ui-icons i{color:#fff!important;cursor:pointer;float:left;font-size:1em;height:1.4em;line-height:1.4em;opacity:.8;text-align:center;width:1em}.sek-dyn-left-icons .sek-dyn-ui-icons i,.sek-dyn-right-icons .sek-dyn-ui-icons i{margin:0 .3em}.sek-dyn-ui-icons i:hover{opacity:1}.sek-dyn-ui-icons .fa-arrows-alt{cursor:move}.sek-dyn-ui-icons [data-sek-click-on=remove]{padding-left:.42em;margin-left:0;width:1.6em!important;border-left:1px dotted #fff}.sek-dyn-ui-wrapper .sek-dyn-ui-icons [data-sek-click-on=toggle-save-section-ui]{padding-left:.42em;margin-left:0;width:1.6em!important;border-left:1px dotted #fff;color:#ff0!important}.sek-dyn-ui-location-type{position:absolute;z-index:2;bottom:0;padding:0 .5em;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:11px;line-height:16px;font-style:normal;letter-spacing:0;text-align:center;text-indent:0;text-shadow:none;text-decoration:none;text-transform:none;right:0;cursor:pointer;opacity:.75}.sek-dyn-ui-location-type:hover{opacity:1}.sek-dyn-ui-location-inner{padding:3px 0}.sek-minimize-ui{float:left;text-align:center;width:16px;padding:3px}.sek-column-dyn-ui,.sek-module-dyn-ui,.sek-section-dyn-ui{font-size:16px}.sek-shrink-my-ui .sek-module-dyn-ui,.sek-shrink-my-ui>.sek-column-dyn-ui,.sek-shrink-my-ui>.sek-section-dyn-ui{font-size:11px}.sek-shrink-my-ui>.sek-column-dyn-ui .sek-ham__toggler-spn-wrapper,.sek-shrink-my-ui>.sek-module-dyn-ui .sek-ham__toggler-spn-wrapper,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-ham__toggler-spn-wrapper{height:8px;width:16px}.sek-shrink-my-ui .sek-module-dyn-ui .sek-ham__toggler-spn-wrapper .line,.sek-shrink-my-ui>.sek-column-dyn-ui .sek-ham__toggler-spn-wrapper .line,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-ham__toggler-spn-wrapper .line{width:15px;height:1px}.sek-shrink-my-ui .sek-module-dyn-ui .sek-dyn-ui-location-type:hover .line,.sek-shrink-my-ui>.sek-column-dyn-ui .sek-dyn-ui-location-type:hover .line,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-dyn-ui-location-type:hover .line{width:16px;-webkit-transform:translate(-1px,0);transform:translate(-1px,0)}.sek-shrink-my-ui .sek-module-dyn-ui .sek-dyn-ui-location-type,.sek-shrink-my-ui>.sek-column-dyn-ui .sek-dyn-ui-location-type,.sek-shrink-my-ui>.sek-section-dyn-ui .sek-dyn-ui-location-type{font-size:10px;line-height:11px}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:#000;opacity:.75}.sek-section>.sek-section-dyn-ui .sek-dyn-ui-inner{z-index:1001;display:none}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-icons:hover{opacity:1}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{z-index:1000;position:relative;float:left}.sek-section[data-sek-is-nested=true]>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{z-index:1002}.sek-section-dyn-ui{border:2px dotted #000}.sek-section>.sek-section-dyn-ui .sek-dyn-ui-inner{top:-1px;z-index:1000}.sek-section[data-sek-is-nested=true]>.sek-section-dyn-ui .sek-dyn-ui-inner{top:18px}.sek-section.sek-highlight-active-ui{-webkit-box-shadow:0 0 2px rgba(0,0,0,.8);box-shadow:0 0 2px rgba(0,0,0,.8)}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-inner{float:left}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-hamb-menu-wrapper,.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{float:left}.sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{padding-left:.5em}.sek-column>.sek-column-dyn-ui .sek-dyn-ui-inner{bottom:0;z-index:1002;display:none}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:#00b846}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{z-index:1001;bottom:3px}.sek-column>.sek-dyn-ui-wrapper.sek-col-has-nested-section .sek-dyn-ui-location-type{top:0;bottom:auto}.sek-column>.sek-column-dyn-ui.sek-col-has-nested-section .sek-dyn-ui-inner{top:0;bottom:auto;z-index:1002;display:none}.sek-column-dyn-ui{border:2px dotted #00b846;font-size:16px}.sek-column-dyn-ui .dev-level-data{background:#0085ba}.sek-column.sek-highlight-active-ui{-webkit-box-shadow:0 0 2px rgba(0,184,70,.8);box-shadow:0 0 2px rgba(0,184,70,.8)}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-hamb-menu-wrapper,.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{float:right}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{padding-right:.5em}.sek-column>.sek-dyn-ui-wrapper .sek-dyn-ui-location-inner{float:left}.sek-module:hover{cursor:pointer}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-inner{bottom:0;z-index:1006;display:none}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:#0085ba}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{left:0;top:auto;bottom:0;right:auto;z-index:1005}.sek-module-dyn-ui{border:2px dotted #0085ba;font-size:16px}.dev-level-data{position:absolute;bottom:0;left:0;background:#000;padding:1px 12px;font-size:11px}.sek-module-dyn-ui .dev-level-data{background:#c68f00;right:0;left:unset}.sek-module.sek-highlight-active-ui{-webkit-box-shadow:0 0 2px rgba(0,133,186,.8);box-shadow:0 0 2px rgba(0,133,186,.8)}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-hamb-menu-wrapper,.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{float:left}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-level-type{padding-left:.5em}.sek-module>.sek-dyn-ui-wrapper .sek-dyn-ui-location-inner{float:left}.sek-ham__toggler-spn-wrapper{height:10px;position:relative;width:16px;display:block}.sek-ham__toggler-spn-wrapper .line.line-1{top:10%}.sek-ham__toggler-spn-wrapper .line.line-2{top:60%}.sek-ham__toggler-spn-wrapper .line.line-3{top:110%}.sek-ham__toggler-spn-wrapper .line{background:#fff;display:block;width:16px;height:2px;position:absolute;-webkit-border-radius:5px;-webkit-background-clip:padding-box;-moz-border-radius:5px;-moz-background-clip:padding;border-radius:5px;background-clip:padding-box;-webkit-transition:all ease .2s;-o-transition:all ease .2s;transition:all ease .2s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sek-dyn-ui-location-type:hover .line{-webkit-transform:translate(-2px,0);transform:translate(-2px,0);width:20px}.sek-wp-content-wrapper{cursor:pointer;position:relative}.sek-wp-content-wrapper:after{content:'';display:block;clear:both}.sek-wp-content-wrapper:hover{outline:2px dashed #036697}.sek-wp-content-wrapper>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{left:auto;right:0;z-index:1005;background:#036697}.sek-wp-content-wrapper .sek-dyn-ui-icons{background-color:#036697}.sek-wp-content-wrapper .sek-dyn-ui-inner{top:0;z-index:1005}.sek-wp-content-dyn-ui{bottom:0;left:0;top:0;right:0;font-size:16px}.sek-empty-location-placeholder{position:relative;min-height:50px;margin:20px 0;border-radius:5px;text-align:center}[data-sek-is-footer-location=true]>.sek-empty-location-placeholder,[data-sek-is-header-location=true]>.sek-empty-location-placeholder{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;background:#eee;line-height:45px;font-size:20px}.sek-header-footer-location-placeholder{opacity:1;-webkit-transition:opacity ease .4s;-o-transition:opacity ease .4s;transition:opacity ease .4s}.sek-header-footer-location-placeholder .sek-nimble-icon img{width:30px;height:30px;position:relative;top:-2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;display:inline}.sek-empty-location-placeholder:hover .sek-nimble-icon img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}.sek-empty-location-placeholder:hover .sek-header-footer-location-placeholder{opacity:.6}.sek-empty-location-placeholder:hover{outline:2px dotted #000}.sek-add-button-wrapper{text-align:center;width:100%;margin:16px 0;position:relative}.sek-no-modules-column{position:relative;height:100%;bottom:0;left:0;right:0;z-index:1}.sek-module-drop-zone-for-first-module{text-align:center;border:1px dotted #ccc;background:#eee;background:rgba(0,0,0,.1);height:100%;min-height:40px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-ms-flexbox;display:-webkit-box;display:flex}.sek-module-drop-zone-for-first-module:hover{background:rgba(0,0,0,.5)}.sek-module-drop-zone-for-first-module:hover [data-sek-click-on=pick-content]{color:#fff}.sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]{cursor:pointer;width:50px;height:50px;line-height:50px;font-size:22px;color:#535353;border-radius:30px;-webkit-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]:hover{-webkit-box-shadow:0 2px 6px rgba(0,0,0,.2);box-shadow:0 2px 6px rgba(0,0,0,.2);color:#fff}.sek-col-10 [data-sek-click-on=pick-content],.sek-col-11 [data-sek-click-on=pick-content],.sek-col-12 [data-sek-click-on=pick-content],.sek-col-14 [data-sek-click-on=pick-content],.sek-col-16 [data-sek-click-on=pick-content],.sek-col-20 [data-sek-click-on=pick-content],.sek-col-25 [data-sek-click-on=pick-content],.sek-col-8 [data-sek-click-on=pick-content],.sek-col-9 [data-sek-click-on=pick-content]{font-size:14px}.sek-sortable-overing>.sek-no-modules-column{display:none}.sek-drop-zone{-webkit-transition:opacity,height,background .4s ease;-o-transition:opacity,height,background .4s ease;transition:opacity,height,background .4s ease;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;flex:0 0 100%;max-width:100%;text-align:center}.sek-no-drop-possible-message{margin:auto;padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#004085;background-color:#cce5ff;border:1px solid #b8daff;border-radius:.25rem;font-size:16px;line-height:1.5em;max-width:80%}.sek-active-drop-zone.sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]{display:none}.sek-dynamic-drop-zone{opacity:0}.sek-active-drop-zone.sek-dynamic-drop-zone{height:auto!important;min-height:50px}.sek-dragging .sek-module-drop-zone-for-first-module [data-sek-click-on=pick-content]{display:none}.sek-dragging .sek-drop-zone .sek-injection-instructions{display:none!important}.sek-dragging [data-sek-location=between-sections].sek-dynamic-drop-zone{height:15px}.sek-dragging .sek-dynamic-drop-zone{height:5px;-webkit-transition:all 3s ease;-o-transition:all 3s ease;transition:all 3s ease;border:2px dotted #72777c;background:#ddd;border-radius:5px}.sek-dragging .sek-drop-zone{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease}.sek-dragging [data-sek-location=between-sections],.sek-dragging [data-sek-location=in-empty-location]{background:#ddd;border:2px dotted #72777c}.sek-dragging .sek-drag-is-approaching.sek-dynamic-drop-zone{height:20px}.sek-dragging .sek-drag-is-close.sek-dynamic-drop-zone{height:55px;-webkit-transition:all 1.5s ease;-o-transition:all 1.5s ease;transition:all 1.5s ease}.sek-dragging .sek-drag-is-very-close.sek-dynamic-drop-zone{height:55px;-webkit-transition:all 1.5s ease;-o-transition:all 1.5s ease;transition:all 1.5s ease}.sek-dragging .sek-drag-is-in.sek-dynamic-drop-zone{height:100px;-webkit-transition:all .75s ease;-o-transition:all .75s ease;transition:all .75s ease}.sek-dragging .sek-feed-me-seymore{-moz-box-shadow:inset 0 0 30px #000;-webkit-box-shadow:inset 0 0 30px #000;box-shadow:inset 0 0 30px #000}.sek-dragging .sek-module-drop-zone-for-first-module,.sek-dragging [data-sek-location=between-modules-and-nested-sections]{background:#dcefff;background:rgba(220,239,255,.84);border:2px dotted #1d85bb;border-radius:5px}.sek-dragging-element .sek-column-inner,.sek-dragging-element .sek-sektion-inner{min-height:50px}.sek-module-placeholder-content{text-align:center;text-transform:uppercase}.sek-module-placeholder-content>p{padding:35px 10px;font-size:16px!important}.sek-add-content-button{position:absolute;top:0;width:100%;z-index:1001;display:none}.sek-empty-location-placeholder .sek-add-content-button{top:50%}.sek-add-content-button.is_last{bottom:0;top:unset}.sek-add-content-button-wrapper{position:relative;top:-5px;width:100%;border:1px dashed #ccc;height:10px;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:.35s ease-in-out;-o-transition:.35s ease-in-out;transition:.35s ease-in-out}.is_last .sek-add-content-button-wrapper{top:10px}.sek-mouse-is-close .sek-add-content-button-wrapper{border:1px dashed #333}.sektion-wrapper .sek-mouse-is-close .sek-add-content-button-wrapper .sek-add-content-btn{opacity:1}.sektion-wrapper .sek-add-content-button-wrapper .sek-add-content-btn{text-decoration:none;margin:auto;padding:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:1000px;width:18px;height:18px;font-size:13px;line-height:18px;background-color:#000;color:#fff;border:none;outline:0;overflow:hidden;-webkit-transition:width .5s ease,background-color .5s ease;-o-transition:width .5s ease,background-color .5s ease;transition:width .5s ease,background-color .5s ease;font-weight:400;font-style:normal;cursor:pointer;position:absolute;left:calc(50% - 12px);-webkit-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;opacity:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.sektion-wrapper .sek-add-content-btn.sek-mouse-is-close{z-index:10000}.sektion-wrapper .sek-add-content-button-wrapper .sek-add-content-btn:hover{width:26px;height:26px;--sek-add-content-btn-width:65px;width:calc(var(--sek-add-content-btn-width) + 70px);background-color:#000;color:#fff;opacity:1;left:calc(50% - var(--sek-add-content-btn-width));-webkit-box-shadow:0 2px 6px rgba(0,0,0,.2);box-shadow:0 2px 6px rgba(0,0,0,.2)}.sek-click-on-button-icon{line-height:18px;width:18px}.sek-add-content-btn:hover .sek-click-on-button-icon{padding-left:6px;font-size:13px;line-height:26px}.action-button-text{visibility:hidden;display:none;white-space:nowrap;padding-left:5px;padding-bottom:2px;text-transform:none;letter-spacing:0;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.sek-add-content-btn:not(.disabled):hover .action-button-text{visibility:visible;display:inline-block}.sortable-placeholder{max-width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;background:#00a2d7;border-radius:4px;color:#fff!important;display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:400;font-size:12px;letter-spacing:1px;line-height:14px;margin:10px;padding:6px 8px 5px;position:relative;text-align:left;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-shadow:none;text-transform:none;white-space:nowrap;overflow:hidden;z-index:10}.in-new-sektion.sortable-placeholder{background:#72777c}.sek-moving-section [data-sek-level=location]{background:#ddd;border:2px dotted #72777c;border-radius:5px}.sek-moving-section .sek-empty-location-placeholder{display:none}.sek-sortable-section-over .sortable-placeholder{background:#72777c}.ui-resizable-helper{border:2px dotted #00b846}[data-sek-level=column] .ui-resizable-e{cursor:e-resize;width:7px;right:-4px;font-size:.55em}[data-sek-level=column] .ui-resizable-e i{background:#00b846;border-radius:12px;color:#fff;padding:2px;width:auto;display:none}[data-sek-level=section]:hover .ui-resizable-e{background:#d5d5d573;background:rgba(213,213,213,.42)}[data-sek-level=section]:hover .ui-resizable-e i{display:block}[data-sek-level=column] .ui-resizable-handle{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-blur,.sek-refreshing{-webkit-filter:blur(3px);filter:blur(3px);-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out}.sek-level-clone{position:absolute!important;z-index:10000}.sek-level-clone::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background-color:#fff;opacity:.5}#nimble-full-page-loader-wrapper{height:100vh;position:absolute;text-align:center;right:0;left:0;z-index:20;color:#fff;display:block;-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out;opacity:.3;top:0;background:rgba(0,0,0,.8);padding:2px;z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;flex:0 0 100%;max-width:100%;display:none}@-webkit-keyframes sek-mr-loader{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}@keyframes sek-mr-loader{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}.sek-css-loader{display:none;width:50px;height:50px;position:absolute;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);top:50%;left:50%}.csstransforms3d .sek-css-loader{display:block}.sek-mr-loader>div:nth-child(0){-webkit-animation-delay:-.8s;animation-delay:-.8s}.sek-mr-loader>div:nth-child(1){-webkit-animation-delay:-.6s;animation-delay:-.6s}.sek-mr-loader>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.sek-mr-loader>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.sek-mr-loader>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:100%;border:2px solid #777;-webkit-animation:sek-mr-loader 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:sek-mr-loader 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8)}.white-loader>.sek-mr-loader>div{border:2px solid #fff}.nimble-unclickable{cursor:not-allowed!important}.nimble-shift-clickable{cursor:alias!important}[data-sek-is-global-location=true] .sek-empty-location-placeholder:hover{outline:2px dotted red}[data-sek-is-global-location=true] .sek-add-content-button-wrapper{border:1px dashed #ff7878}[data-sek-is-global-location=true] .sek-mouse-is-close .sek-add-content-button-wrapper{border:1px dashed red}[data-sek-is-global-location=true] .sek-add-content-button-wrapper .sek-add-content-btn{background-color:red}[data-sek-is-global-location=true] .sek-module-drop-zone-for-first-module{border:1px dotted red}[data-sek-is-global-location=true] .sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-icons,[data-sek-is-global-location=true] .sek-section>.sek-dyn-ui-wrapper .sek-dyn-ui-location-type{background:red;opacity:.75}[data-sek-is-footer-location=true]{margin-bottom:40px}[data-sek-is-header-location=true]{margin-top:0}@keyframes sek-target-highlight{0%{background-color:#0085ba}50%{background-color:#00a0d2}100%{background-color:#0085ba}}.sek-target-for-double-click-insertion .sek-drop-zone{animation:sek-target-highlight 3s infinite;background-color:#eee}.sektion-wrapper .sek-injection-instructions{display:none;font-size:13px;line-height:1.5em;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#fff;padding:4px;overflow:hidden;max-width:80%;max-height:100%;min-height:50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute}.sek-shrink-my-ui .sek-injection-instructions{font-size:10px}.sek-target-for-double-click-insertion .sek-drop-zone .sek-injection-instructions{display:-webkit-box;display:-ms-flexbox;display:flex}.sek-target-for-double-click-insertion .sek-drop-zone [data-sek-click-on=pick-content]{visibility:hidden}.sek-tiny-mce-module-placeholder-text{padding:10px;border:1px dotted;background:rgba(0,0,0,.35);color:#fff;font-size:1rem;line-height:1.5rem}.sek-module-placeholder.sek-post-grid{font-size:150px}[data-sek-module-type] .sek-mod-preview-placeholder{height:150px;background:#eee}[data-sek-module-type] .sek-mod-preview-placeholder .sek-preview-ph-text{font-size:25px;position:relative;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:flex-end;align-items:flex-end}[data-sek-module-type] .sek-mod-preview-placeholder .sek-preview-ph-text>p{padding:10px;position:relative;margin:0;color:#767676}[data-sek-module-type] .sek-mod-preview-placeholder .sek-preview-ph-text::before{content:'';left:0;right:0;bottom:0;top:0;position:absolute;background-color:#fff;opacity:.6}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(../fonts/material-icons/MaterialIcons-Regular.eot);src:local('Material Icons'),local('MaterialIcons-Regular'),url(../fonts/material-icons/MaterialIcons-Regular.woff2) format('woff2'),url(../fonts/material-icons/MaterialIcons-Regular.woff) format('woff'),url(../fonts/material-icons/MaterialIcons-Regular.ttf) format('truetype')}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga'}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.nimble-shortcode-notice-in-preview{font-size:16px;line-height:1.5em;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",sans-serif;padding:10px 20px;margin:5px 0 15px;position:relative;background:#fff;border:1px solid #ccd0d4;border-left-color:#00a0d2;border-left-width:4px;box-shadow:0 1px 1px rgba(0,0,0,.04)}.nimble-shortcode-notice-in-preview>i{color:#00a0d2}@media(max-width:768px){.nimble-shortcode-notice-in-preview{font-size:14px}}
|
assets/czr/sek/js/ccat-sek-preview.js
CHANGED
@@ -2558,7 +2558,8 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
|
|
2558 |
|
2559 |
appendDynStyleSheet : function( location_skope_id, styleMarkup ) {
|
2560 |
var _stylesheet_id_ = '#sek-' + location_skope_id,//@see php Sek_Dyn_CSS_Handler
|
2561 |
-
_gfonts_id_ = '#
|
|
|
2562 |
|
2563 |
// Remove a dynamic inline stylesheet if already printed
|
2564 |
if ( 0 < $('head').find( _stylesheet_id_ ).length ) {
|
@@ -2567,12 +2568,15 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
|
|
2567 |
if ( 0 < $('head').find( _gfonts_id_ ).length ) {
|
2568 |
$('head').find( _gfonts_id_ ).remove();
|
2569 |
}
|
|
|
|
|
|
|
2570 |
if ( !_.isEmpty( styleMarkup ) ) {
|
2571 |
$('head').append( styleMarkup );
|
2572 |
}
|
2573 |
// Has it be printed ?
|
2574 |
// if we have something to print ( styleMarkup not empty ), there should be a dom element
|
2575 |
-
if ( !
|
2576 |
this.errare( 'sek-preview => problem when printing the dynamic inline style for : '+ _stylesheet_id_, styleMarkup );
|
2577 |
} else {
|
2578 |
$('head').find( _stylesheet_id_ ).attr('sek-data-origin', 'customizer' );
|
2558 |
|
2559 |
appendDynStyleSheet : function( location_skope_id, styleMarkup ) {
|
2560 |
var _stylesheet_id_ = '#sek-' + location_skope_id,//@see php Sek_Dyn_CSS_Handler
|
2561 |
+
_gfonts_id_ = '#' + sekPreviewLocalized.googleFontsStyleId,//@see php Sek_Dyn_CSS_Handler
|
2562 |
+
_global_option_inline_style_id_ = '#' + sekPreviewLocalized.globalOptionsStyleId;
|
2563 |
|
2564 |
// Remove a dynamic inline stylesheet if already printed
|
2565 |
if ( 0 < $('head').find( _stylesheet_id_ ).length ) {
|
2568 |
if ( 0 < $('head').find( _gfonts_id_ ).length ) {
|
2569 |
$('head').find( _gfonts_id_ ).remove();
|
2570 |
}
|
2571 |
+
if ( 0 < $('head').find( _global_option_inline_style_id_ ).length ) {
|
2572 |
+
$('head').find( _global_option_inline_style_id_ ).remove();
|
2573 |
+
}
|
2574 |
if ( !_.isEmpty( styleMarkup ) ) {
|
2575 |
$('head').append( styleMarkup );
|
2576 |
}
|
2577 |
// Has it be printed ?
|
2578 |
// if we have something to print ( styleMarkup not empty ), there should be a dom element
|
2579 |
+
if ( !_.isEmpty( styleMarkup ) && 1 > $('head').find( _stylesheet_id_ ).length && 1 > $('head').find( _gfonts_id_ ).length && 1 > $('head').find( _global_option_inline_style_id_ ).length ) {
|
2580 |
this.errare( 'sek-preview => problem when printing the dynamic inline style for : '+ _stylesheet_id_, styleMarkup );
|
2581 |
} else {
|
2582 |
$('head').find( _stylesheet_id_ ).attr('sek-data-origin', 'customizer' );
|
assets/czr/sek/js/ccat-sek-preview.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var SekPreviewPrototype=SekPreviewPrototype||{};!function(a,s,i){s.extend(SekPreviewPrototype,{cachedElements:{$body:s("body"),$window:s(window)},initialize:function(){var t=this;try{this.skope_id=i.findWhere(_wpCustomizeSettings.czr_new_skopes,{skope:"local"}).skope_id}catch(e){return void this.errare("Preview => error when storing the skope_id",e)}this.scheduleHighlightActiveLevel(),t.setupLoader(),s(function(){t.setupSortable(),t.setupResizable(),t.setupUiHoverVisibility(),t.scheduleUiClickReactions(),t.schedulePanelMsgReactions()}),t.cachedElements.$body.on("sek-columns-refreshed sek-modules-refreshed",function(e,t){if(!i.isUndefined(t)&&!i.isUndefined(t.in_sektion)&&0<s('[data-sek-id="'+t.in_sektion+'"]').length){var a=s('[data-sek-id="'+t.in_sektion+'"]');a.toggleClass("sek-has-modules",0<a.find('[data-sek-level="module"]').length)}}),t.deactivateLinks(),t.cachedElements.$body.on(["sek-modules-refreshed","sek-columns-refreshed","sek-section-added","sek-level-refreshed","sek-edit-module"].join(" "),function(e){t.deactivateLinks(e)});var e=function(){var e=[],t=[];s('[data-sek-level="location"]').each(function(){e.push(s(this).data("sek-id")),t.push({id:s(this).data("sek-id"),is_global:!0===s(this).data("sek-is-global-location"),is_header_footer:!0===s(this).data("sek-is-header-location")||!0===s(this).data("sek-is-footer-location"),is_header:!0===s(this).data("sek-is-header-location"),is_footer:!0===s(this).data("sek-is-footer-location")})}),a.preview.send("sek-active-locations-in-preview",{active_locations:e,active_locs_info:t})};a.preview.bind("sek-request-active-locations",e),e()},deactivateLinks:function(e){e=e||{};this.cachedElements.$body.find('[data-sek-level="module"]').each(function(){s(this).find("a").each(function(){try{(function(){if("yes"!==s(this).data("sek-unlinked")){var e=i.isString(s(this)[0].protocol)&&-1!==s(this)[0].protocol.indexOf("javascript");!e&&a.isLinkPreviewable(s(this)[0])?(s(this).addClass("nimble-shift-clickable"),s(this).data("sek-unlinked","yes").attr("data-nimble-href",s(this).attr("href")).attr("href","javascript:void(0)"),s(this).removeAttr("target"),s(this).hover(function(){s(this).attr("title",sekPreviewLocalized.i18n["Shift-click to visit the link"])},function(){s(this).removeAttr("title")}),s(this).on("click",function(e){e.shiftKey&&(e.preventDefault(),window.location.href=s(this).attr("data-nimble-href"))})):(s(this).addClass("nimble-unclickable"),s(this).data("sek-unlinked","yes").attr("data-nimble-href",s(this).attr("href")).attr("href","javascript:void(0)"),s(this).hover(function(){s(this).attr("title",e?sekPreviewLocalized.i18n["Link deactivated while previewing"]:sekPreviewLocalized.i18n["External links are disabled when customizing"])},function(){s(this).removeAttr("title")}),s(this).on("click",function(e){e.preventDefault()}))}}).call(s(this))}catch(e){a.errare("::deactivateLinks => error ",e)}})})},scheduleHighlightActiveLevel:function(){var n=this;this.activeLevelUI=new a.Value(""),this.activeLevelEl=new a.Value(null),this.activeUIChangedRecently=new a.Value(!1),this.activeLevelUI.bind(function(e,t){var a=s('[data-sek-id="'+e+'"]'),i=s('[data-sek-id="'+t+'"]');0<a.length&&(a.addClass("sek-active-ui sek-highlight-active-ui"),n.activeLevelEl(a)),0<i.length&&i.removeClass("sek-active-ui sek-highlight-active-ui"),n.activeUIChangedRecently(Date.now())}),n.activeLevelEl.bind(function(e){if(i.isObject(e)&&0<e.length&&!nb_.isInScreen(e[0]))try{e[0].scrollIntoView()}catch(e){n.errare("activeLevelEl error",e)}}),i.each(["sek-refresh-stylesheet","sek-refresh-level"],function(e){a.preview.bind(e,function(e){n.activeUIChangedRecently(Date.now())})}),this.activeUIChangedRecently.bind(function(e){var t=s('[data-sek-id="'+n.activeLevelUI()+'"]');s(".sek-highlight-active-ui").length&&s(".sek-highlight-active-ui").removeClass("sek-highlight-active-ui"),0<t.length&&t.toggleClass("sek-highlight-active-ui",!1!==e),clearTimeout(s.data(this,"_ui_change_timer_")),s.data(this,"_ui_change_timer_",setTimeout(function(){n.activeUIChangedRecently(!1)},3e3))})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(m,h,p){h.extend(SekPreviewPrototype,{setupSortable:function(){var a=this;return this.sortableDefaultParams={placeholder:"sortable-placeholder",over:function(e,t){},cursorAt:{top:0,left:0},tolerance:"pointer"},h('[data-sek-level="location"]').each(function(){a.makeSektionsSortableInLocation(h(this).data("sek-id"))}),a.cachedElements.$body.on("sek-section-added sek-level-refreshed sek-location-refreshed",'[data-sek-level="location"]',function(e,t){a.makeSektionsSortableInLocation(h(this).data("sek-id"))}),h('[data-sek-level="location"]').each(function(){h(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-columns-refreshed sek-section-added",'[data-sek-level="section"]',function(e){a.makeColumnsSortableInSektion(h(this).data("sek-id"))}),a.cachedElements.$body.on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(h(this).data("sek-id"))})}),h('[data-sek-level="location"]').each(function(){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-modules-refreshed",'[data-sek-level="column"]',function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))}),a.cachedElements.$body.on("sek-columns-refreshed",'[data-sek-level="section"]',function(){h(this).find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-section-added",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-location-refreshed",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),this},printAllLevelsUi:function(){var e=this;e.cachedElements.$body.find("[data-sek-level]").each(function(){e.printLevelUI(h(this)),h(this).find(".sek-dyn-ui-wrapper").stop(!0,!0).show()})},makeSektionsSortableInLocation:function(e){var a,i,t,n=this,s=[];!0!==h('[data-sek-id="'+e+'"]').data("sek-is-global-location")&&(t=h.extend(!0,{},n.sortableDefaultParams),h('[data-sek-id="'+e+'"]').sortable(p.extend(t,{items:'[data-sek-level="section"]',handle:".sek-move-section",connectWith:'[data-sek-is-global-location="false"]',placeholder:{element:function(e){return h('<div class="sortable-placeholder"><div class="sek-module-placeholder-content"><p>'+sekPreviewLocalized.i18n["Insert here"]+"</p></div></div>")[0]},update:function(e,t){}},start:function(e,t){n.cachedElements.$body.addClass("sek-moving-section"),n.isDraggingElement=!0,$sourceLocation=t.item.closest('[data-sek-level="location"]'),a=$sourceLocation.data("sek-id"),n.printAllLevelsUi()},stop:function(e,t){n.cachedElements.$body.removeClass("sek-moving-section"),n.isDraggingElement=!1,s=[],$targetLocation=t.item.closest('[data-sek-level="location"]'),i=$targetLocation.data("sek-id"),$targetLocation.children('[data-sek-level="section"]').each(function(){s.push(h(this).data("sek-id"))}),m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"section",newOrder:s,from_location:a,to_location:i})},over:function(e,t){t.placeholder.addClass("sek-sortable-section-over")},out:function(e,t){t.placeholder.removeClass("sek-sortable-section-over")}})))},makeColumnsSortableInSektion:function(e){var a,i,n,s,o=this,t=h.extend(!0,{},o.sortableDefaultParams),d=[],r=[],l=h('[data-sek-id="'+e+'"]').find(".sek-sektion-inner").first(),c=function(e){if(e=h.extend({forTarget:!0},e||{}),!p.isEmpty(h(this).data("_sortable_columns_css_classes_")))return h(this).data("_sortable_columns_css_classes_");var t,a=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]').length,i=Math.floor(100/a);t=!0===e.forTarget?12<a+1?12:a+1:a-1<1?1:a-1;var n={current:"sek-col-"+i,next:"sek-col-"+Math.floor(100/t)};return h(this).data("_sortable_columns_css_classes_",n),n};l.sortable(p.extend(t,{handle:".sek-move-column",connectWith:".sek-sektion-inner",over:function(e,t){var a,i=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==h(this).data("sek-is-sender")?(a=c.call(h(this)),p.isEmpty(a)||i.each(function(){h(this).removeClass(a.current).addClass(a.next)})):(a=c.call(h(this),{forTarget:!1}),p.isEmpty(a)||i.each(function(){h(this).addClass(a.current).removeClass(a.next)}))},out:function(e,t){var a,i=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==h(this).data("sek-is-sender")?(a=c.call(h(this)),p.isEmpty(a)||i.each(function(){h(this).addClass(a.current).removeClass(a.next)})):(a=c.call(h(this),{forTarget:!1}),p.isEmpty(a)||i.each(function(){h(this).removeClass(a.current).addClass(a.next)}))},remove:function(e,t){n=t.item.closest('[data-sek-level="location"]'),to_location=n.data("sek-id"),s=!0===n.data("sek-is-global-location");var a=to_location!=from_location;return i!==s||!0===i&&!0===s&&a?(m.preview.send("sek-notify",{message:sekPreviewLocalized.i18n["Moving elements between global and local sections is not allowed."]}),!1):($targetSektionCandidate=t.item.closest('[data-sek-level="section"]'),!(0<$targetSektionCandidate.length&&12<$targetSektionCandidate.find(".sek-sektion-inner").first().children('[data-sek-level="column"]').length)||(m.preview.send("sek-notify",{message:sekPreviewLocalized.i18n["You've reached the maximum number of columns allowed in this section."]}),!1))},start:function(e,t){a=t.item.closest('[data-sek-level="location"]'),from_location=a.data("sek-id"),i=!0===a.data("sek-is-global-location"),d=[],r=[],from_sektion=t.item.closest('[data-sek-level="section"]').data("sek-id"),t.item.closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){d.push(h(this).data("sek-id"))}),h(this).data("sek-is-sender",!0),p.isEmpty(d)?o.errare("column sortable => startOrder should not be empty"):o.printAllLevelsUi()},stop:function(e,t){$targetSektion=t.item.closest('[data-sek-level="section"]'),to_sektion=$targetSektion.data("sek-id"),$targetSektion.find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){r.push(h(this).data("sek-id"))});var a,i=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==h(this).data("sek-is-sender")?(a=c.call(h(this)),p.isEmpty(a)||i.each(function(){h(this).removeClass(a.current).addClass(a.next)})):(a=c.call(h(this),{forTarget:!1}),p.isEmpty(a)||i.each(function(){h(this).addClass(a.current).removeClass(a.next)})),h('[data-sek-level="section"]').find(".sek-sektion-inner").each(function(){h(this).data("sek-is-sender",null).data("_sortable_columns_css_classes_",null)}),p.isEmpty(r)?o.errare("column sortable => newOrder should not be empty"):p.isEqual(r,d)&&to_sektion===from_sektion?sekPreviewLocalized.isDevMode&&o.errare("preview => makeModulesSortableInColumn => start and stop positions are identical"):(m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"column",newOrder:r,from_sektion:from_sektion,to_sektion:to_sektion}),h('div[data-sek-id="'+from_sektion+'"]').trigger("sek-level-refreshed"),from_sektion!==to_sektion&&h('div[data-sek-id="'+to_sektion+'"]').trigger("sek-level-refreshed"))}}))},makeModulesSortableInColumn:function(e){var a,i,n,s,t,o,d,r,l,c=[],k=[],u=this;t=h.extend(!0,{},u.sortableDefaultParams),h('[data-sek-id="'+e+'"]').find(".sek-column-inner").first().sortable(p.extend(t,{handle:".sek-move-module",connectWith:".sek-column-inner",over:function(e,t){h('[data-sek-level="location"]').find(".sek-sortable-overing").each(function(){h(this).removeClass("sek-sortable-overing")}),h(e.target).addClass("sek-sortable-overing")},remove:function(e,t){r=t.item.closest('[data-sek-level="location"]'),to_location=r.data("sek-id"),l=!0===r.data("sek-is-global-location");var a=to_location!=from_location;return!(d!==l||!0===d&&!0===l&&a)||(m.preview.send("sek-notify",{message:sekPreviewLocalized.i18n["Moving elements between global and local sections is not allowed."]}),!1)},start:function(e,t){o=t.item.closest('[data-sek-level="location"]'),from_location=o.data("sek-id"),d=!0===o.data("sek-is-global-location"),c=[],k=[],u.cachedElements.$body.addClass("sek-dragging-element"),i=t.item.closest('[data-sek-level="column"]').data("sek-id"),a=t.item.closest('[data-sek-level="section"]').data("sek-id"),t.item.closest('[data-sek-level="column"]').find(".sek-column-inner").first().children('[data-sek-level="module"]').each(function(){c.push(h(this).data("sek-id"))}),p.isEmpty(c)?u.errare("makeModulesSortableInColumn => startOrder should not be empty"):u.printAllLevelsUi()},stop:function(e,t){s=t.item.closest('[data-sek-level="column"]'),n=s.data("sek-id"),s.find(".sek-column-inner").first().children("[data-sek-id]").each(function(){k.push(h(this).data("sek-id"))}),p.isEmpty(k)?u.errare("makeModulesSortableInColumn => newOrder should not be empty"):p.isEqual(k,c)&&n===i?u.errare("preview => makeModulesSortableInColumn => start and stop positions are identical"):(m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"module",newOrder:k,from_column:i,to_column:n,from_sektion:a,to_sektion:t.item.closest('[data-sek-level="section"]').data("sek-id")}),u.cachedElements.$body.removeClass("sek-dragging-element"))}})),h('[data-sek-id="'+e+'"]').addClass("sek-module-sortable-setup")}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(l,c,k){c.extend(SekPreviewPrototype,{setupResizable:function(){var t=this;return c(".sektion-wrapper").find('div[data-sek-level="section"]').each(function(){t.maybeMakeColumnResizableInSektion.call(this)}),t.cachedElements.$body.on("sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added sek-location-refreshed",'[data-sek-level="location"]',function(e){c(this).find('[data-sek-level="section"]').each(function(){t.maybeMakeColumnResizableInSektion.call(this)})}),this},maybeMakeColumnResizableInSektion:function(){var a,i,n,s,o,d,r,e=c(this).find(".sek-sektion-inner").first().children('div[data-sek-level="column"]');if(!(e.length<2)){var t=c(this).find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').last();e.not(t).each(function(){c(this).resizable({resize:function(e,t){c(".sektion-wrapper").data("sek-resizing-columns",!0)},start:function(e,t){if(a=t.element.closest('div[data-sek-level="section"]'),a.data("sek-id"),i=a.find(".sek-sektion-inner")[0].getBoundingClientRect().width,!((o=a.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length)<2)){if((n=t.element.closest('div[data-sek-level="column"]')).length<1)throw new Error("ERROR => resizable => No valid level dom element found");r=n.index()+1==o,d=r?n.prev():n.next(),c(".sektion-wrapper").data("sek-resizing-columns",!0),k.delay(function(){c(".sektion-wrapper").data("sek-resizing-columns",!1)},3e3)}},stop:function(e,t){if(!(o<2)){if(n.length<1)throw new Error("ERROR => resizable => No valid level dom element found");n.css({width:"",height:""}),s=(parseFloat(t.size.width)/parseFloat(i)*100).toFixed(3),l.preview.send("sek-resize-columns",{action:"sek-resize-columns",level:n.data("sek-level"),in_sektion:a.data("sek-id"),id:n.data("sek-id"),resized_column:n.data("sek-id"),sister_column:d.data("sek-id"),resizedColumnWidthInPercent:s,col_number:o}),c(".sektion-wrapper").data("sek-resizing-columns",!1)}},helper:"ui-resizable-helper",handles:"e"});var e=c(this);k.delay(function(){e.find(".ui-resizable-handle").find(".fa-arrows-alt-h").length<1&&e.find(".ui-resizable-handle").append('<i class="fas fa-arrows-alt-h"></i>')},500)})}}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(c,h,p){h.extend(SekPreviewPrototype,{printLevelUI:function(e){var t,a,i,n;if((p.isUndefined(e)||e.length<1)&&this.errare("sekPreview::printeLevelUI => invalid level element => ",e),"location"!=(a=e.data("sek-level"))&&!(0<(n=e).children(".sek-dyn-ui-wrapper").length)){var s=n[0].getBoundingClientRect(),o=n.data("sek-level");switch(n.toggleClass("sek-shrink-my-ui",s.width&&s.width<("section"===o?350:"column"===o?300:200)),i={id:n.data("sek-id"),level:o},a){case"section":var d,r,l=n.closest('div[data-sek-level="location"]'),c=n.closest('div[data-sek-level="column"]'),k=!0===n.data("sek-is-nested");k?0<c.length&&(d=c.find(".sek-column-inner").first().children("div[data-sek-level]").length==n.index()+1,r=0===n.index()):0<l.length&&(d=l.children('div[data-sek-level="section"]').length==n.index()+1,r=0===n.index()),i=p.extend(i,{is_nested:k,can_have_more_columns:n.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length<12,is_global_location:!0===l.data("sek-is-global-location"),is_last_section_in_parent:d,is_first_section_in_parent:r,is_header_location:!0===l.data("sek-is-header-location"),is_footer_location:!0===l.data("sek-is-footer-location")});break;case"column":var u=n.closest('div[data-sek-level="section"]');i=p.extend(i,{parent_can_have_more_columns:u.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length<12,parent_is_single_column:u.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length<2,parent_is_last_allowed_nested:!0===u.data("sek-is-nested"),has_nested_section:0<n.find('[data-sek-is-nested="true"]').length});break;case"module":var m=this.getRegisteredModuleProperty(n.data("sek-module-type"),"name");i=p.extend(i,{module_name:"not_set"!=m?m:""})}!0===h(".sektion-wrapper").data("sek-resizing-columns")&&p.contains(["column","module"],a)||(t=this.parseTemplate("#sek-dyn-ui-tmpl-"+a),h.when(n.prepend(t(i))).done(function(){n.find(".sek-dyn-ui-wrapper").stop(!0,!0).fadeIn({duration:150,complete:function(){}})}))}},setupUiHoverVisibility:function(){var i,e,d=this,r=function(){(e=h(this)).children(".sek-dyn-ui-wrapper").length<1||sekPreviewLocalized.isPreviewUIDebugMode||d.isDraggingElement||(e.data("UIisFadingOut",!0),e.children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){h(this).remove(),e.data("UIisFadingOut",!1)}}))},n=function(){d.cachedElements.$body.stop(!0,!0).find(".sek-add-content-button").each(function(){h(this).fadeOut({duration:200,complete:function(){h(this).remove()}})})};d.cachedElements.$body.on("sek-location-refreshed sek-section-added sek-level-refreshed",'[data-sek-level="location"]',function(e,t){n()});var t,a=function(){var e=h(this);clearTimeout(e.data("_toggle_ui_menu_")),e.data("_toggle_ui_menu_",setTimeout(function(){s.call(e)},1e4))},s=function(e){var t=h(this),a=h(this).closest(".sek-dyn-ui-location-type"),i=t.closest(".sek-dyn-ui-wrapper").find(".sek-dyn-ui-inner");!0===e?(t.removeClass("sek-collapsed"),i.addClass("sek-is-expanded"),a.hide()):(t.addClass("sek-collapsed"),i.removeClass("sek-is-expanded"),a.show())};d.cachedElements.$body.on("click",".sek-dyn-ui-location-inner",function(e){var t=h(this).find(".sek-dyn-ui-hamb-menu-wrapper");h(this).closest('[data-sek-level="section"]').find(".sek-dyn-ui-hamb-menu-wrapper").each(function(){s.call(h(this))}),s.call(t,!0),a.call(t)}),d.cachedElements.$body.on("mouseenter mouseover mouseleave",".sek-dyn-ui-wrapper",p.throttle(function(e){var t=h(this).find(".sek-dyn-ui-hamb-menu-wrapper");p.isUndefined(t.data("_toggle_ui_menu_"))||t.hasClass("sek-collapsed")||0<t.length&&a.call(t)},50)),d.cachedElements.$body.on("click",".sek-minimize-ui",function(e){h(this).closest(".sek-dyn-ui-location-type").slideToggle("fast")}),d.cachedElements.$body.on("mouseenter",".sek-wp-content-wrapper",function(e){0<(t=h(this)).children(".sek-dyn-ui-wrapper").length&&!0!==t.data("UIisFadingOut")||(i=d.parseTemplate("#sek-dyn-ui-tmpl-wp-content"),h.when(t.prepend(i({}))).done(function(){t.find(".sek-dyn-ui-wrapper").stop(!0,!0).fadeIn({duration:150,complete:function(){}})}))}).on("mouseleave",".sek-wp-content-wrapper",function(e){h(this).data("UIisFadingOut",!0),t=h(this),h(this).children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){h(this).remove(),t.data("UIisFadingOut",!1)}})});var l=function(s,e){var o,t=[];o=p.isUndefined(e)||e.length<1?(d.cachedElements.$body.find('[data-sek-level][data-sek-preview-level-guid="'+sekPreviewLocalized.previewLevelGuid+'"]').each(function(){t.push(h(this))}),"printOrScheduleRemoval"):(t.push(e),"mayBeRemove"),p.each(t,function(e){var t=e[0].getBoundingClientRect(),a=s.x<=t.right&&t.left<=s.x,i=s.y>=t.top&&t.bottom>=s.y,n=e;switch(o){case"mayBeRemove":n.data("sek-ui-removal-scheduled",!1),a&&i||r.call(n);break;case"printOrScheduleRemoval":a&&i?(n.data("sek-ui-removal-scheduled",!1),d.printLevelUI(n)):!0!==n.data("sek-ui-removal-scheduled")&&(n.data("sek-ui-removal-scheduled",!0),n.children(".sek-dyn-ui-wrapper").find(".sek-is-expanded").length<1?l(s,n):p.delay(function(){!0===n.data("sek-ui-removal-scheduled")&&l(d.mouseMovedRecently(),n)},3500))}})};d.mouseMovedRecently=new c.Value({}),d.mouseMovedRecently.bind(function(e){var k,t,a;p.isEmpty(e)?sekPreviewLocalized.isPreviewUIDebugMode||(n(),d.cachedElements.$body.stop(!0,!0).find("[data-sek-level]").each(function(){h(this).children(".sek-dyn-ui-wrapper").find(".sek-is-expanded").length<1&&r.call(h(this))})):(d.cachedElements.$body.find('div[data-sek-level="location"]').each(function(){var e;$sectionCollection=h(this).children('div[data-sek-level="section"]'),i=d.parseTemplate("#sek-tmpl-add-content-button"),t=h(this).data("sek-id"),a=!0===h(this).data("sek-is-global-location"),$sectionCollection.each(function(){0<h(this).find(".sek-add-content-button").length||(h.when(h(this).prepend(i({location:t,is_global_location:a}))).done(function(){e=h(this).find(".sek-add-content-button"),h(this).data("sek-id")&&e.attr("data-sek-before-section",h(this).data("sek-id")),e.fadeIn(300)}),$sectionCollection.length==h(this).index()+1&&h.when(h(this).append(i({is_last:!0,location:t,is_global_location:a}))).done(function(){e=h(this).find(".sek-add-content-button").last(),h(this).data("sek-id")&&e.attr("data-sek-after-section",h(this).data("sek-id")),e.fadeIn(300)}))})}),h(".sek-empty-location-placeholder").each(function(){0<h(this).find(".sek-add-content-button").length||(t=h(this).closest('div[data-sek-level="location"]').data("sek-id"),a=!0===h(this).closest('div[data-sek-level="location"]').data("sek-is-global-location"),h.when(h(this).append(i({location:t,is_global_location:a}))).done(function(){$btn_el=h(this).find(".sek-add-content-button"),$btn_el.attr("data-sek-is-first-section",!0),$btn_el.fadeIn(300)}))}),k=e,d.cachedElements.$body.find(".sek-add-content-button").each(function(){var e=h(this)[0].getBoundingClientRect(),t=k.y,a=k.x,i=Math.abs(t-e.bottom),n=Math.abs(e.top-t),s=a-e.right,o=e.left-a,d=i<40||n<40,r=0<s&&s<40||0<o&&o<40,l=a<=e.right&&e.left<=a,c=t>=e.top&&e.bottom>=t;h(this).toggleClass("sek-mouse-is-close",(d||c)&&(r||l))}),l(e))});var o=function(){clearTimeout(d.cachedElements.$window.data("_scroll_move_timer_")),d.mouseMovedRecently.set({})};return d.cachedElements.$window.on("mousemove scroll",p.throttle(function(e){d.mouseMovedRecently({x:e.clientX,y:e.clientY}),clearTimeout(d.cachedElements.$window.data("_scroll_move_timer_")),d.cachedElements.$window.data("_scroll_move_timer_",setTimeout(function(){d.mouseMovedRecently.set({})},4e3))},50)),c.preview.bind("sek-drag-start",function(){o()}),d.cachedElements.$body.on("sek-section-added",'[data-sek-level="location"]',function(e,t){o()}),this}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(m,h,p){h.extend(SekPreviewPrototype,{scheduleUiClickReactions:function(){var u=this;u.cachedElements.$body.on("click",function(e){m.preview.send("sek-clean-target-drop-zone");var t,a="inactiveZone",i=h(e.target),n=i.closest('[data-sek-level="location"][data-sek-preview-level-guid="'+sekPreviewLocalized.previewLevelGuid+'"]'),s=i.closest('[data-sek-preview-level-guid="'+sekPreviewLocalized.previewLevelGuid+'"]'),o=i.closest("[data-sek-click-on]"),d=n.data("sek-id"),r=s.data("sek-level"),l=s.data("sek-id");switch(a="add-content"==i.data("sek-click-on")||0<i.closest("[data-sek-click-on]").length&&"add-content"==i.closest("[data-sek-click-on]").data("sek-click-on")?"addContentButton":!p.isEmpty(i.data("sek-click-on"))||0<o.length?"UIIcon":"module"==s.data("sek-level")?"moduleWrapper":"column"==s.data("sek-level")&&!0===s.data("sek-no-modules")?"noModulesColumn":i.hasClass("sek-to-json")?"sekToJson":"column"==s.data("sek-level")?"columnOutsideModules":"section"==s.data("sek-level")?"sectionOutsideColumns":p.isEmpty(i.data("sek-add"))?i.hasClass("sek-wp-content-wrapper")||i.hasClass("sek-wp-content-dyn-ui")?"wpContent":i.hasClass("sek-edit-wp-content")?"editWpContent":"inactiveZone":"addSektion",p.isEmpty(d)&&u.errare("::scheduleUiClickReactions => error location id can not be empty"),a){case"addContentButton":var c=!0===i.closest("[data-sek-is-first-section]").data("sek-is-first-section");m.preview.send("sek-add-section",{location:d,level:"section",before_section:i.closest("[data-sek-before-section]").data("sek-before-section"),after_section:i.closest("[data-sek-after-section]").data("sek-after-section"),is_first_section:c,send_to_preview:!c});break;case"UIIcon":if(s.length<1)throw new Error("ERROR => sek-front-preview => No valid level dom element found");if(t=i.closest("[data-sek-click-on]").data("sek-click-on"),p.isEmpty(t))throw new Error("Invalid action");if(p.isEmpty(r)||p.isEmpty(l))throw new Error("ERROR => sek-front-preview => No valid level id found");u._send_(i,{action:t,location:d,level:r,id:l,was_triggered:!1});break;case"moduleWrapper":if(0<i.parent(".sek-dyn-ui-icons").length)return;u._send_(i,{action:"edit-module",level:r,id:l});break;case"noModulesColumn":if(0<i.parent(".sek-dyn-ui-icons").length)return;u._send_(i,{action:"pick-content",content_type:"module",level:r,id:l});break;case"columnOutsideModules":case"sectionOutsideColumns":u._send_(i,{action:"edit-options",location:d,level:r,id:l});break;case"addSektion":m.preview.send("sek-add-section",{location:d,level:i.data("sek-add")});break;case"sekToJson":m.preview.send("sek-to-json",{id:l});break;case"wpContent":m.preview.send("sek-notify",{type:"info",duration:8e3,message:sekPreviewLocalized.i18n["This content has been created with the WordPress editor."]});break;case"editWpContent":var k=i.closest("[data-sek-wp-edit-link]").data("sek-wp-edit-link");p.isEmpty(k)||window.open(k,"_blank");break;case"inactiveZone":m.preview.send("sek-click-on-inactive-zone")}})},_send_:function(e,t){var a=h.extend(!0,{},t),i="",n=e.closest('div[data-sek-level="module"]'),s="module"===t.level?n.data("sek-module-type"):"";"module"===t.level&&"czr_tiny_mce_editor_module"===s&&(i=0<n.find("div[data-sek-input-id]").length?n.find("div[data-sek-input-id]").data("sek-input-id"):""),m.preview.send("sek-"+t.action,p.extend({location:t.location,level:t.level,id:t.id,content_type:e.data("sek-content-type"),module_type:s,in_column:0<e.closest('div[data-sek-level="column"]').length?e.closest('div[data-sek-level="column"]').data("sek-id"):"",in_sektion:0<e.closest('div[data-sek-level="section"]').length?e.closest('div[data-sek-level="section"]').data("sek-id"):"",clicked_input_type:0<e.closest("div[data-sek-input-type]").length?e.closest("div[data-sek-input-type]").data("sek-input-type"):"",clicked_input_id:0<e.closest("div[data-sek-input-id]").length?e.closest("div[data-sek-input-id]").data("sek-input-id"):"",was_triggered:t.was_triggered,syncedTinyMceInputId:i},a))}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,s,o){s.extend(SekPreviewPrototype,{setupLoader:function(){var t=this;this._css_loader_html='<div class="sek-css-loader sek-mr-loader" style="display:none"><div></div><div></div><div></div></div>',t.cachedElements.$body.on(["sek-modules-refreshed","sek-columns-refreshed","sek-section-added","sek-level-refreshed","sek-stylesheet-refreshed","sek-ajax-error"].join(" "),function(e){t.cleanLoader()})},mayBePrintLoader:function(e){e=o.isObject(e)?e:{};var t=this,a=e.loader_located_in_level_id;if(!o.isEmpty(a)){var i=s('[data-sek-id="'+a+'"]');0<i.length&&s(".sek-level-clone ").length<1&&($levelClone=s("<div>",{class:"sek-level-clone"}),i.find("[data-sek-level]").each(function(){s(this).addClass("sek-refreshing")}),i.prepend($levelClone),$levelClone.css({width:i.outerWidth()+"px",height:i.outerHeight()+"px"}).append(t._css_loader_html).find(".sek-css-loader").fadeIn("fast"),clearTimeout(s.data(this,"_nimble_loader_active_timer_")),s.data(this,"_nimble_loader_active_timer_",setTimeout(function(){t.cleanLoader()},e.duration||4e3)))}if(!0===e.fullPageLoader){var n=s("<div>",{id:"nimble-full-page-loader-wrapper",class:"white-loader"});t.cachedElements.$body.append(n),n.fadeIn("fast").append(t._css_loader_html).find(".sek-css-loader").fadeIn("fast"),s('[data-sek-level="location"]').each(function(){s(this).addClass("sek-blur")}),clearTimeout(s.data(this,"_nimble_full_page_loader_active_timer_")),s.data(this,"_nimble_full_page_loader_active_timer_",setTimeout(function(){t.cleanLoader({cleanFullPageLoader:!0})},e.duration||6e3))}},cleanLoader:function(e){s(".sek-level-clone").remove(),s("[data-sek-level]").each(function(){s(this).removeClass("sek-refreshing")}),!0===(e=e||{}).cleanFullPageLoader&&(s('[data-sek-level="location"]').each(function(){s(this).removeClass("sek-blur")}),s("#nimble-full-page-loader-wrapper").remove())}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(o,r,l){r.extend(SekPreviewPrototype,{schedulePanelMsgReactions:function(){var t,d=this,e={"sek-add-section":"ajaxAddSektion","sek-add-content-in-new-sektion":"ajaxAddSektion","sek-add-content-in-new-nested-sektion":"ajaxAddSektion","sek-add-column":"ajaxRefreshColumns","sek-add-module":"ajaxRefreshModulesAndNestedSections","sek-refresh-stylesheet":"ajaxRefreshStylesheet","sek-resize-columns":"ajaxResizeColumns","sek-maybe-print-loader":function(e){try{d.mayBePrintLoader(e)}catch(e){o.errare("sek-clean-loader => error",e)}},"sek-clean-loader":function(e){try{d.cleanLoader(e)}catch(e){o.errare("sek-clean-loader => error",e)}},"sek-remove":function(e){var t,a=e.apiParams.id,i=r('div[data-sek-id="'+a+'"]');switch(e.apiParams.action){case"sek-remove-section":d.mayBePrintLoader({loader_located_in_level_id:e.apiParams.location}),!0===e.apiParams.is_nested?t=d.ajaxRefreshModulesAndNestedSections(e):((l.isEmpty(a)||i.length<1)&&d.errare("reactToPanelMsg => sek-remove => invalid candidate id => ",a),d.cachedElements.$body.find(i).remove(),r('[data-sek-id="'+e.apiParams.location+'"]').trigger("sek-level-refreshed"));break;case"sek-remove-column":t=d.ajaxRefreshColumns(e);break;case"sek-remove-module":t=d.ajaxRefreshModulesAndNestedSections(e)}return l.isEmpty(t)?r.Deferred(function(){this.resolve()}):t},"sek-duplicate":function(e){var t;switch(e.apiParams.action){case"sek-duplicate-section":e.apiParams.id=e.cloneId,t=d.ajaxAddSektion(e);break;case"sek-duplicate-column":e.apiParams.id=e.cloneId,t=d.ajaxRefreshColumns(e);break;case"sek-duplicate-module":e.apiParams.id=e.cloneId,t=d.ajaxRefreshModulesAndNestedSections(e)}return t},"sek-refresh-level":function(s){return d.mayBePrintLoader({loader_located_in_level_id:s.apiParams.id}),d.doAjax({location_skope_id:s.location_skope_id,local_skope_id:s.local_skope_id,action:"sek_get_content",id:s.apiParams.id,level:s.apiParams.level,sek_action:s.apiParams.action}).fail(function(e){d.errare("ERROR reactToPanelMsg => sek-refresh-level => ",e),r('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-ajax-error")}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(d.errare("SekPreviewPrototype::sek-refresh-level => ajax_response.data.contents is undefined ",e),d.errare("params ?",s));var a='<span class="sek-placeholder" data-sek-placeholder-for="'+s.apiParams.id+'"></span>',i=r('div[data-sek-id="'+s.apiParams.id+'"]');if(i.length<1)d.errare("reactToPanelMsg => sek-refresh-level ajax done => the level to refresh is not rendered in the page",e);else{i.before(a);var n=r('[data-sek-placeholder-for="'+s.apiParams.id+'"]');i.remove(),l.isUndefined(t)?d.errare("reactToPanelMsg => sek-refresh-level ajax done => missing html_content",e):n.after(t),n.remove(),r('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-level-refreshed",{level:s.apiParams.level,id:s.apiParams.id}),s.apiParams.moved_level_id&&o.preview.trigger("sek-animate-to-level",{id:s.apiParams.moved_level_id})}})},"sek-move":function(e){switch(e.apiParams.action){case"sek-move-column":if(e.apiParams.from_sektion!=e.apiParams.to_sektion){var t=r.extend(!0,{},e),a=r.extend(!0,{},e);r('[data-sek-id="'+e.apiParams.from_sektion+'"]',".sektion-wrapper").find('div[data-sek-level="column"]').length<1?o.preview.send("sek-add-column",{in_sektion:e.apiParams.from_sektion,autofocus:!1}):(t.apiParams=l.extend(t.apiParams,{in_sektion:e.apiParams.from_sektion,action:"sek-refresh-columns-in-sektion"}),d.ajaxRefreshColumns(t)),a.apiParams=l.extend(a.apiParams,{in_sektion:e.apiParams.to_sektion,action:"sek-refresh-columns-in-sektion"}),d.ajaxRefreshColumns(a)}break;case"sek-move-module":var i=r.extend(!0,{},e),n=r.extend(!0,{},e);i.apiParams.from_column!=i.apiParams.to_column&&(i.apiParams=l.extend(i.apiParams,{in_column:i.apiParams.from_column,in_sektion:i.apiParams.from_sektion,action:"sek-refresh-modules-in-column"}),d.ajaxRefreshModulesAndNestedSections(i)),e.apiParams=l.extend(n.apiParams,{in_column:n.apiParams.to_column,in_sektion:n.apiParams.to_sektion,action:"sek-refresh-modules-in-column"}),d.ajaxRefreshModulesAndNestedSections(n),r('[data-sek-id="'+e.apiParams.to_column+'"]',".sektion-wrapper").find(".sek-column-inner").sortable("refresh")}},"sek-edit-options":function(e){d.activeLevelUI(e.uiParams.id)},"sek-edit-module":function(e){d.activeLevelUI(e.uiParams.id)},"sek-drag-start":function(n){var s=1,o=!1;r('[data-sek-level="location"]').children('[data-sek-level="section"]').each(function(){var e=r(this).data("sek-id"),t=r(this).find('[data-sek-level="column"]').length,a=r(this).find('[data-sek-level="module"]').length,i=t<2&&a<1;!o&&!i&&r('[data-drop-zone-before-section="'+e+'"]').length<1&&r(this).before('<div class="sek-content-'+n.content_type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-sections" data-drop-zone-before-section="'+e+'"></div>'),i||s!=r(".sektion-wrapper").children('[data-sek-level="section"]').length||r(this).after('<div class="sek-content-'+n.content_type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-sections" data-drop-zone-after-section="'+e+'"></div>'),s++,o=i}),r(".sek-empty-location-placeholder").each(function(){r.when(r(this).append('<div class="sek-content-'+n.content_type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="in-empty-location"></div>'))}),("module"==n.content_type||"preset_section"==n.content_type&&!0===n.eligible_for_module_dropzones)&&r('[data-sek-level="column"]').each(function(){var e=r(this).children(".sek-column-inner").children('[data-sek-level="module"]'),t=r(this).children(".sek-column-inner").children('[data-sek-is-nested="true"]');e=e.add(t);var a=1;e.each(function(){r('[data-drop-zone-before-module-or-nested-section="'+r(this).data("sek-id")+'"]').length<1&&r(this).before('<div class="sek-content-module-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-modules-and-nested-sections" data-drop-zone-before-module-or-nested-section="'+r(this).data("sek-id")+'"></div>'),a==e.length&&r('[data-drop-zone-after-module-or-nested-section="'+r(this).data("sek-id")+'"]').length<1&&r(this).after('<div class="sek-content-module-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-modules-and-nested-sections" data-drop-zone-after-module-or-nested-section="'+r(this).data("sek-id")+'"></div>'),a++})}),d.cachedElements.$body.addClass("sek-dragging"),l.delay(function(){r(".sek-dynamic-drop-zone").css({opacity:1})},100)},"sek-drag-stop":function(e){d.cachedElements.$body.removeClass("sek-dragging"),r(".sortable-placeholder").remove(),r(".sek-dynamic-drop-zone").remove()},"sek-animate-to-level":function(e){var t=r('[data-sek-id="'+e.id+'"]');0<t.length&&r("html, body").animate({scrollTop:t.offset().top-100},200)},"sek-clean-level-uis":function(e){r(".sek-dyn-ui-wrapper").each(function(){r(this).remove()})},"sek-display-level-ui":function(e){var t=r('[data-sek-id="'+e.id+'"]');0<t.length&&d.printLevelUI(t)},"sek-set-double-click-target":function(e){if(r(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion"),l.isObject(e)&&e.id){var t=r('[data-sek-id="'+e.id+'"]');1===t.length&&t.addClass("sek-target-for-double-click-insertion")}},"sek-reset-double-click-target":function(e){r(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion")},"sek-update-html-in-selector":function(e){var t,a=r('[data-sek-id="'+e.id+'"]');t=l.isEmpty(e.changed_item_id)?r(e.selector,a):r('[data-sek-item-id="'+e.changed_item_id+'"] '+e.selector,a),0<a.length&&0<t.length?t.html(e.html):d.errare("reactToPanelMsg => sek-update-html-in-selector => missing level or target dom element",e)},"sek-print-confettis":function(e){if(window.confetti&&window.requestAnimationFrame){var t=(e=e||{}).duration||Date.now()+1e3,a=["#f18700","#684F2F","#eea236"];!function e(){confetti({particleCount:2,angle:60,spread:55,origin:{x:0,y:.8},colors:a}),confetti({particleCount:4,angle:120,spread:55,origin:{x:1,y:.8},colors:a}),Date.now()<t&&window.requestAnimationFrame(e)}()}}},i=function(a,e,i){a=l.extend({location_skope_id:"",apiParams:{},uiParams:{}},a||{});d.cachedElements.$body.addClass(i);try{r.when(l.isFunction(e)?e(a):d[e].call(d,a)).done(function(e){var t;t=e,o.preview.send([i,"done"].join("_"),a),a.apiParams.is_multi_items&&"sek-refresh-level"===a.apiParams.action&&o.preview.send("multi-items-module-refreshed",a),l.isUndefined(t)||t.data&&t.data.setting_validities&&o.preview.send("selective-refresh-setting-validities",t.data.setting_validities)}).fail(function(){o.preview.send("sek-notify",{type:"error",duration:1e4,message:sekPreviewLocalized.i18n["Something went wrong, please refresh this page."]})}).always(function(e){d.cachedElements.$body.removeClass(i)}).then(function(){o.preview.trigger("control-panel-requested-action-done",{action:i,args:a})})}catch(e){d.errare("reactToPanelMsg => Error when firing the callback of "+i,e),d.cachedElements.$body.removeClass(i)}a.apiParams.id&&((!(t=d.activeLevelEl())||!l.isObject(t)||t.length<1||d.activeLevelUI()!==a.apiParams.id)&&(d.activeLevelEl(r('[data-sek-id="'+a.apiParams.id+'"]')),t=d.activeLevelEl()),0<t.length&&!nb_.isInScreen(t[0])&&t[0].scrollIntoView())};l.each(e,function(t,a){"sek-refresh-stylesheet"===a?(o.preview.bind(a,function(e){i(e,t,a)}),o.preview.bind(a,l.debounce(function(e){i(e,t,a),e&&e.apiParams&&e.apiParams.id&&o.preview.trigger("sek-animate-to-level",{id:e.apiParams.id})},1e3))):o.preview.bind(a,function(e){i(e,t,a)})})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,d){o.extend(SekPreviewPrototype,{ajaxAddSektion:function(n){var s=this;return s.mayBePrintLoader({loader_located_in_level_id:n.apiParams.location}),s.doAjax({action:"sek_get_content",id:n.apiParams.id,in_sektion:n.apiParams.in_sektion,in_column:n.apiParams.in_column,location_skope_id:n.location_skope_id,local_skope_id:n.local_skope_id,sek_action:n.apiParams.action,is_nested:n.apiParams.is_nested,content_type:n.all_params&&n.all_params.content_type?n.all_params.content_type:null,collection_of_preset_section_id:n.all_params&&n.all_params.collection_of_preset_section_id?n.all_params.collection_of_preset_section_id:[]}).done(function(e){var t,a="";if(e.data&&e.data.contents?a=e.data.contents:(s.errare("SekPreviewPrototype::ajaxAddSektion => ajax_response.data.contents is undefined ",e),s.errare("params ?",n)),n.apiParams.is_nested){(t=o(".sektion-wrapper").find('div[data-sek-id="'+n.apiParams.in_column+'"]')).length<1&&s.errare("preview => reactToPanelMsg => sek-add-column => no DOM node for parent column => ",n.apiParams.in_column);var i='<span class="sek-placeholder" data-sek-placeholder-for="'+n.apiParams.in_column+'"></span>';t.before(i),t.remove(),o(".sektion-wrapper").find(".sek-placeholder").after(a),o(".sektion-wrapper").find(".sek-placeholder").remove()}else"sek-duplicate-section"!=n.apiParams.action||d.isEmpty(n.cloneId)?($beforeCandidate=o('.sektion-wrapper[data-sek-id="'+n.apiParams.location+'"]').find('div[data-sek-id="'+n.apiParams.before_section+'"]'),$afterCandidate=o('.sektion-wrapper[data-sek-id="'+n.apiParams.location+'"]').find('div[data-sek-id="'+n.apiParams.after_section+'"]'),!d.isEmpty(n.apiParams.before_section)&&0<$beforeCandidate.length?$beforeCandidate.before(a):!d.isEmpty(n.apiParams.after_section)&&0<$afterCandidate.length?$afterCandidate.after(a):o('[data-sek-id="'+n.apiParams.location+'"]').append(a)):o(".sektion-wrapper").find('div[data-sek-id="'+n.apiParams.in_sektion+'"]').after(a);"sek-duplicate-section"==n.apiParams.action&&o('div[data-sek-id="'+n.cloneId+'"]',".sektion-wrapper").each(function(){o(this).trigger("sek-columns-refreshed")}),n.apiParams.is_nested&&(s.makeModulesSortableInColumn(n.apiParams.in_column),o(".sektion-wrapper").find('div[data-sek-id="'+n.apiParams.in_sektion+'"]').each(function(){s.maybeMakeColumnResizableInSektion.call(this)})),n.cloneId&&o('div[data-sek-id="'+n.cloneId+'"]').trigger("sek-section-added",n),o('div[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-section-added",n),o('div[data-sek-id="'+n.apiParams.location+'"]').trigger("sek-location-refreshed",n)}).fail(function(e){s.errare("ERROR in sek_get_html_for_injection ? ",e),o('[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-ajax-error")})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(o,d,e){d.extend(SekPreviewPrototype,{ajaxRefreshColumns:function(n){var s=this;return s.mayBePrintLoader({loader_located_in_level_id:n.apiParams.in_sektion}),s.doAjax({action:"sek_get_content",id:n.apiParams.id,in_sektion:n.apiParams.in_sektion,location_skope_id:n.location_skope_id,local_skope_id:n.local_skope_id,sek_action:n.apiParams.action}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(s.errare("SekPreviewPrototype::ajaxRefreshColumns => ajax_response.data.contents is undefined ",e),s.errare("params ?",n));var a=d('div[data-sek-id="'+n.apiParams.in_sektion+'"]');a.length<1&&s.errare("reactToPanelMsg => "+n.apiParams.action+" => no DOM node for parent sektion => ",n.apiParams.in_sektion);var i='<span class="sek-placeholder" data-sek-placeholder-for="'+n.apiParams.in_sektion+'"></span>';a.before(i),a.remove(),d(".sektion-wrapper").find(".sek-placeholder").after(t),d(".sektion-wrapper").find(".sek-placeholder").remove(),o.preview.trigger("sek-refresh-stylesheet",n),d('div[data-sek-id="'+n.apiParams.in_sektion+'"]').trigger("sek-columns-refreshed",{in_sektion:n.apiParams.in_sektion})}).fail(function(e){s.errare("ERROR reactToPanelMsg => sek-add-column => ",e),d('[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-ajax-error")})},ajaxResizeColumns:function(a){var i=this;return i.mayBePrintLoader({loader_located_in_level_id:a.apiParams.in_sektion}),i.doAjax({action:"sek_get_content",resized_column:a.apiParams.resized_column,sister_column:a.apiParams.sister_column,location_skope_id:a.location_skope_id,local_skope_id:a.local_skope_id,sek_action:"sek-resize-columns"}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(i.errare("SekPreviewPrototype::ajaxResizeColumns => ajax_response.data.contents is undefined ",e),i.errare("params ?",a)),d('[data-sek-id="'+a.apiParams.resized_column+'"]').css({width:"",height:""}),i.appendDynStyleSheet(a.location_skope_id,t),d('div[data-sek-id="'+a.apiParams.in_sektion+'"]').trigger("sek-columns-refreshed")}).fail(function(e){i.errare("ERROR reactToPanelMsg => sek-resize-columns => ",e),d('[data-sek-id="'+a.apiParams.in_sektion+'"]').trigger("sek-ajax-error")})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,t){o.extend(SekPreviewPrototype,{ajaxRefreshModulesAndNestedSections:function(n){var s=this;return s.mayBePrintLoader({loader_located_in_level_id:n.apiParams.in_column}),s.doAjax({action:"sek_get_content",id:n.apiParams.id,in_sektion:n.apiParams.in_sektion,in_column:n.apiParams.in_column,location_skope_id:n.location_skope_id,local_skope_id:n.local_skope_id,sek_action:n.apiParams.action,is_nested:n.apiParams.is_nested}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(s.errare("SekPreviewPrototype::ajaxRefreshModulesAndNestedSections => ajax_response.data.contents is undefined ",e),s.errare("params ?",n));var a=o('[data-sek-id="'+n.apiParams.in_column+'"]');a.length<1&&s.errare("reactToPanelMsg => ajaxRefreshModulesAndNestedSections => no DOM node for parent column => ",n.apiParams.in_column);var i='<span class="sek-placeholder" data-sek-placeholder-for="'+n.apiParams.in_column+'"></span>';a.before(i),a.remove(),o('[data-sek-placeholder-for="'+n.apiParams.in_column+'"]').after(t),o('[data-sek-placeholder-for="'+n.apiParams.in_column+'"]').remove(),o('[data-sek-id="'+n.apiParams.in_column+'"]').trigger("sek-modules-refreshed",{in_column:n.apiParams.in_column,in_sektion:n.apiParams.in_sektion})}).fail(function(e){s.errare("ERROR reactToPanelMsg => sek-add-module => ",e),o('[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-ajax-error")})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,n,s){n.extend(SekPreviewPrototype,{ajaxRefreshStylesheet:function(a){var i=this;return i.mayBePrintLoader({loader_located_in_level_id:a.apiParams.id}),i.doAjax({action:"sek_get_content",location_skope_id:a.location_skope_id,local_skope_id:a.local_skope_id,sek_action:"sek-refresh-stylesheet"}).done(function(e){var t="";e.data&&e.data.contents&&(t=e.data.contents),i.appendDynStyleSheet(a.location_skope_id,t),n('[data-sek-id="'+a.apiParams.id+'"]').trigger("sek-stylesheet-refreshed",{level:a.apiParams.level,id:a.apiParams.id})}).fail(function(e){i.errare("sek-refresh-stylesheet fail !"),n('[data-sek-id="'+a.apiParams.id+'"]').trigger("sek-ajax-error")})},appendDynStyleSheet:function(e,t){var a="#sek-"+e,i="#sek-gfonts-local-and-global";0<n("head").find(a).length&&n("head").find(a).remove(),0<n("head").find(i).length&&n("head").find(i).remove(),s.isEmpty(t)||n("head").append(t),!s.isEmpty(t)&&n("head").find(a).length<1&&n("head").find(i).length<1?this.errare("sek-preview => problem when printing the dynamic inline style for : "+a,t):n("head").find(a).attr("sek-data-origin","customizer")}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,d){o.extend(SekPreviewPrototype,{parseTemplate:d.memoize(function(t){var a,i=this,n={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"};return function(e){if(o(t).length<1)return i.errare("preview => parseTemplate => the requested tmpl does not exist =>"+t),"";try{a=a||d.template(o(t).html(),n)}catch(e){i.errare("preview => parseTemplate => problem when parsing tmpl =>"+t,e)}return a(e)}}),_prettyPrintLog:function(e){e=d.extend({bgCol:"#5ed1f5",textCol:"#000",consoleArguments:[]},e);var t,a=Array.from(e.consoleArguments);return a=d.isEmpty(d.filter(a,function(e){return!d.isString(e)}))?a.join(" "):JSON.stringify(a.join(" ")),["%c "+(t=a,d.isString(t)?300<t.length?t.substr(0,299)+"...":t:""),["background:"+e.bgCol,"color:"+e.textCol,"display: block;"].join(";")]},_wrapLogInsideTags:function(e,t,a){d.isUndefined(console)&&"function"!=typeof window.console.log||(sekPreviewLocalized.isDevMode?d.isUndefined(t)?console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:["<"+e+">"]})):(console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:["<"+e+">"]})),console.log(t),console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:["</"+e+">"]}))):console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:[e]})))},errare:function(e,t){this._wrapLogInsideTags(e,t,"#ffd5a0")},infoLog:function(e,t){this._wrapLogInsideTags(e,t,"#5ed1f5")},doAjax:function(e){var t=this,a=(e=e||(d.isObject(e)?e:{})).ajaxUrl||sekPreviewLocalized.ajaxUrl,i=sekPreviewLocalized.frontNonce,n=o.Deferred(),s=d.extend({action:"",withNonce:!1},e);return"https:"==document.location.protocol&&(a=a.replace("http://","https://")),d.isEmpty(s.action)||!d.isString(s.action)?(t.errare("self.doAjax : unproper action provided"),n.resolve().promise()):(s[i.id]=i.handle,!d.isObject(i)||d.isUndefined(i.id)||d.isUndefined(i.handle)?(t.errare("self.doAjax : unproper nonce"),n.resolve().promise()):(s["preview-level-guid"]=sekPreviewLocalized.previewLevelGuid,s.czr_query_params=JSON.stringify(d.isObject(_wpCustomizeSettings.czr_query_params)?_wpCustomizeSettings.czr_query_params:[]),o.post(a,s).done(function(e){"0"!==e&&"-1"!==e&&!1!==e.success||(t.errare("self.doAjax : done ajax error for action : "+s.action,e),n.reject(e)),n.resolve(e)}).fail(function(e){t.errare("self.doAjax : failed ajax error for : "+s.action,e),n.reject(e)}),n.promise()))},isModuleRegistered:function(e){return sekPreviewLocalized.registeredModules&&!d.isUndefined(sekPreviewLocalized.registeredModules[e])},getRegisteredModuleProperty:function(e,t){return this.isModuleRegistered(e)?sekPreviewLocalized.registeredModules[e][t]:"not_set"},getLevelModel:function(t,e){var a=this,i="no_match";return d.isUndefined(e)&&a.errare("getLevelModel => a collection must be provided"),d.each(e,function(e){"no_match"==i&&(t===e.id?i=e:d.isArray(e.collection)&&(i=a.getLevelModel(t,e.collection)))}),i}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,t,a){t.extend(SekPreviewPrototype,e.Events);var i=e.Class.extend(SekPreviewPrototype);e.bind("preview-ready",function(){e.preview.bind("active",function(){try{e.sekPreview=new i}catch(e){SekPreviewPrototype.errare("SekPreviewConstructor => problem on instantiation",e)}})})}(wp.customize,jQuery,_);
|
1 |
+
var SekPreviewPrototype=SekPreviewPrototype||{};!function(a,s,i){s.extend(SekPreviewPrototype,{cachedElements:{$body:s("body"),$window:s(window)},initialize:function(){var t=this;try{this.skope_id=i.findWhere(_wpCustomizeSettings.czr_new_skopes,{skope:"local"}).skope_id}catch(e){return void this.errare("Preview => error when storing the skope_id",e)}this.scheduleHighlightActiveLevel(),t.setupLoader(),s(function(){t.setupSortable(),t.setupResizable(),t.setupUiHoverVisibility(),t.scheduleUiClickReactions(),t.schedulePanelMsgReactions()}),t.cachedElements.$body.on("sek-columns-refreshed sek-modules-refreshed",function(e,t){if(!i.isUndefined(t)&&!i.isUndefined(t.in_sektion)&&0<s('[data-sek-id="'+t.in_sektion+'"]').length){var a=s('[data-sek-id="'+t.in_sektion+'"]');a.toggleClass("sek-has-modules",0<a.find('[data-sek-level="module"]').length)}}),t.deactivateLinks(),t.cachedElements.$body.on(["sek-modules-refreshed","sek-columns-refreshed","sek-section-added","sek-level-refreshed","sek-edit-module"].join(" "),function(e){t.deactivateLinks(e)});var e=function(){var e=[],t=[];s('[data-sek-level="location"]').each(function(){e.push(s(this).data("sek-id")),t.push({id:s(this).data("sek-id"),is_global:!0===s(this).data("sek-is-global-location"),is_header_footer:!0===s(this).data("sek-is-header-location")||!0===s(this).data("sek-is-footer-location"),is_header:!0===s(this).data("sek-is-header-location"),is_footer:!0===s(this).data("sek-is-footer-location")})}),a.preview.send("sek-active-locations-in-preview",{active_locations:e,active_locs_info:t})};a.preview.bind("sek-request-active-locations",e),e()},deactivateLinks:function(e){e=e||{};this.cachedElements.$body.find('[data-sek-level="module"]').each(function(){s(this).find("a").each(function(){try{(function(){if("yes"!==s(this).data("sek-unlinked")){var e=i.isString(s(this)[0].protocol)&&-1!==s(this)[0].protocol.indexOf("javascript");!e&&a.isLinkPreviewable(s(this)[0])?(s(this).addClass("nimble-shift-clickable"),s(this).data("sek-unlinked","yes").attr("data-nimble-href",s(this).attr("href")).attr("href","javascript:void(0)"),s(this).removeAttr("target"),s(this).hover(function(){s(this).attr("title",sekPreviewLocalized.i18n["Shift-click to visit the link"])},function(){s(this).removeAttr("title")}),s(this).on("click",function(e){e.shiftKey&&(e.preventDefault(),window.location.href=s(this).attr("data-nimble-href"))})):(s(this).addClass("nimble-unclickable"),s(this).data("sek-unlinked","yes").attr("data-nimble-href",s(this).attr("href")).attr("href","javascript:void(0)"),s(this).hover(function(){s(this).attr("title",e?sekPreviewLocalized.i18n["Link deactivated while previewing"]:sekPreviewLocalized.i18n["External links are disabled when customizing"])},function(){s(this).removeAttr("title")}),s(this).on("click",function(e){e.preventDefault()}))}}).call(s(this))}catch(e){a.errare("::deactivateLinks => error ",e)}})})},scheduleHighlightActiveLevel:function(){var n=this;this.activeLevelUI=new a.Value(""),this.activeLevelEl=new a.Value(null),this.activeUIChangedRecently=new a.Value(!1),this.activeLevelUI.bind(function(e,t){var a=s('[data-sek-id="'+e+'"]'),i=s('[data-sek-id="'+t+'"]');0<a.length&&(a.addClass("sek-active-ui sek-highlight-active-ui"),n.activeLevelEl(a)),0<i.length&&i.removeClass("sek-active-ui sek-highlight-active-ui"),n.activeUIChangedRecently(Date.now())}),n.activeLevelEl.bind(function(e){if(i.isObject(e)&&0<e.length&&!nb_.isInScreen(e[0]))try{e[0].scrollIntoView()}catch(e){n.errare("activeLevelEl error",e)}}),i.each(["sek-refresh-stylesheet","sek-refresh-level"],function(e){a.preview.bind(e,function(e){n.activeUIChangedRecently(Date.now())})}),this.activeUIChangedRecently.bind(function(e){var t=s('[data-sek-id="'+n.activeLevelUI()+'"]');s(".sek-highlight-active-ui").length&&s(".sek-highlight-active-ui").removeClass("sek-highlight-active-ui"),0<t.length&&t.toggleClass("sek-highlight-active-ui",!1!==e),clearTimeout(s.data(this,"_ui_change_timer_")),s.data(this,"_ui_change_timer_",setTimeout(function(){n.activeUIChangedRecently(!1)},3e3))})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(m,h,p){h.extend(SekPreviewPrototype,{setupSortable:function(){var a=this;return this.sortableDefaultParams={placeholder:"sortable-placeholder",over:function(e,t){},cursorAt:{top:0,left:0},tolerance:"pointer"},h('[data-sek-level="location"]').each(function(){a.makeSektionsSortableInLocation(h(this).data("sek-id"))}),a.cachedElements.$body.on("sek-section-added sek-level-refreshed sek-location-refreshed",'[data-sek-level="location"]',function(e,t){a.makeSektionsSortableInLocation(h(this).data("sek-id"))}),h('[data-sek-level="location"]').each(function(){h(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-columns-refreshed sek-section-added",'[data-sek-level="section"]',function(e){a.makeColumnsSortableInSektion(h(this).data("sek-id"))}),a.cachedElements.$body.on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(h(this).data("sek-id"))})}),h('[data-sek-level="location"]').each(function(){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-modules-refreshed",'[data-sek-level="column"]',function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))}),a.cachedElements.$body.on("sek-columns-refreshed",'[data-sek-level="section"]',function(){h(this).find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-section-added",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),a.cachedElements.$body.on("sek-location-refreshed",'[data-sek-level="location"]',function(e,t){h(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(h(this).data("sek-id"))})}),this},printAllLevelsUi:function(){var e=this;e.cachedElements.$body.find("[data-sek-level]").each(function(){e.printLevelUI(h(this)),h(this).find(".sek-dyn-ui-wrapper").stop(!0,!0).show()})},makeSektionsSortableInLocation:function(e){var a,i,t,n=this,s=[];!0!==h('[data-sek-id="'+e+'"]').data("sek-is-global-location")&&(t=h.extend(!0,{},n.sortableDefaultParams),h('[data-sek-id="'+e+'"]').sortable(p.extend(t,{items:'[data-sek-level="section"]',handle:".sek-move-section",connectWith:'[data-sek-is-global-location="false"]',placeholder:{element:function(e){return h('<div class="sortable-placeholder"><div class="sek-module-placeholder-content"><p>'+sekPreviewLocalized.i18n["Insert here"]+"</p></div></div>")[0]},update:function(e,t){}},start:function(e,t){n.cachedElements.$body.addClass("sek-moving-section"),n.isDraggingElement=!0,$sourceLocation=t.item.closest('[data-sek-level="location"]'),a=$sourceLocation.data("sek-id"),n.printAllLevelsUi()},stop:function(e,t){n.cachedElements.$body.removeClass("sek-moving-section"),n.isDraggingElement=!1,s=[],$targetLocation=t.item.closest('[data-sek-level="location"]'),i=$targetLocation.data("sek-id"),$targetLocation.children('[data-sek-level="section"]').each(function(){s.push(h(this).data("sek-id"))}),m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"section",newOrder:s,from_location:a,to_location:i})},over:function(e,t){t.placeholder.addClass("sek-sortable-section-over")},out:function(e,t){t.placeholder.removeClass("sek-sortable-section-over")}})))},makeColumnsSortableInSektion:function(e){var a,i,n,s,o=this,t=h.extend(!0,{},o.sortableDefaultParams),d=[],r=[],l=h('[data-sek-id="'+e+'"]').find(".sek-sektion-inner").first(),c=function(e){if(e=h.extend({forTarget:!0},e||{}),!p.isEmpty(h(this).data("_sortable_columns_css_classes_")))return h(this).data("_sortable_columns_css_classes_");var t,a=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]').length,i=Math.floor(100/a);t=!0===e.forTarget?12<a+1?12:a+1:a-1<1?1:a-1;var n={current:"sek-col-"+i,next:"sek-col-"+Math.floor(100/t)};return h(this).data("_sortable_columns_css_classes_",n),n};l.sortable(p.extend(t,{handle:".sek-move-column",connectWith:".sek-sektion-inner",over:function(e,t){var a,i=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==h(this).data("sek-is-sender")?(a=c.call(h(this)),p.isEmpty(a)||i.each(function(){h(this).removeClass(a.current).addClass(a.next)})):(a=c.call(h(this),{forTarget:!1}),p.isEmpty(a)||i.each(function(){h(this).addClass(a.current).removeClass(a.next)}))},out:function(e,t){var a,i=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==h(this).data("sek-is-sender")?(a=c.call(h(this)),p.isEmpty(a)||i.each(function(){h(this).addClass(a.current).removeClass(a.next)})):(a=c.call(h(this),{forTarget:!1}),p.isEmpty(a)||i.each(function(){h(this).removeClass(a.current).addClass(a.next)}))},remove:function(e,t){n=t.item.closest('[data-sek-level="location"]'),to_location=n.data("sek-id"),s=!0===n.data("sek-is-global-location");var a=to_location!=from_location;return i!==s||!0===i&&!0===s&&a?(m.preview.send("sek-notify",{message:sekPreviewLocalized.i18n["Moving elements between global and local sections is not allowed."]}),!1):($targetSektionCandidate=t.item.closest('[data-sek-level="section"]'),!(0<$targetSektionCandidate.length&&12<$targetSektionCandidate.find(".sek-sektion-inner").first().children('[data-sek-level="column"]').length)||(m.preview.send("sek-notify",{message:sekPreviewLocalized.i18n["You've reached the maximum number of columns allowed in this section."]}),!1))},start:function(e,t){a=t.item.closest('[data-sek-level="location"]'),from_location=a.data("sek-id"),i=!0===a.data("sek-is-global-location"),d=[],r=[],from_sektion=t.item.closest('[data-sek-level="section"]').data("sek-id"),t.item.closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){d.push(h(this).data("sek-id"))}),h(this).data("sek-is-sender",!0),p.isEmpty(d)?o.errare("column sortable => startOrder should not be empty"):o.printAllLevelsUi()},stop:function(e,t){$targetSektion=t.item.closest('[data-sek-level="section"]'),to_sektion=$targetSektion.data("sek-id"),$targetSektion.find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){r.push(h(this).data("sek-id"))});var a,i=h(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==h(this).data("sek-is-sender")?(a=c.call(h(this)),p.isEmpty(a)||i.each(function(){h(this).removeClass(a.current).addClass(a.next)})):(a=c.call(h(this),{forTarget:!1}),p.isEmpty(a)||i.each(function(){h(this).addClass(a.current).removeClass(a.next)})),h('[data-sek-level="section"]').find(".sek-sektion-inner").each(function(){h(this).data("sek-is-sender",null).data("_sortable_columns_css_classes_",null)}),p.isEmpty(r)?o.errare("column sortable => newOrder should not be empty"):p.isEqual(r,d)&&to_sektion===from_sektion?sekPreviewLocalized.isDevMode&&o.errare("preview => makeModulesSortableInColumn => start and stop positions are identical"):(m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"column",newOrder:r,from_sektion:from_sektion,to_sektion:to_sektion}),h('div[data-sek-id="'+from_sektion+'"]').trigger("sek-level-refreshed"),from_sektion!==to_sektion&&h('div[data-sek-id="'+to_sektion+'"]').trigger("sek-level-refreshed"))}}))},makeModulesSortableInColumn:function(e){var a,i,n,s,t,o,d,r,l,c=[],k=[],u=this;t=h.extend(!0,{},u.sortableDefaultParams),h('[data-sek-id="'+e+'"]').find(".sek-column-inner").first().sortable(p.extend(t,{handle:".sek-move-module",connectWith:".sek-column-inner",over:function(e,t){h('[data-sek-level="location"]').find(".sek-sortable-overing").each(function(){h(this).removeClass("sek-sortable-overing")}),h(e.target).addClass("sek-sortable-overing")},remove:function(e,t){r=t.item.closest('[data-sek-level="location"]'),to_location=r.data("sek-id"),l=!0===r.data("sek-is-global-location");var a=to_location!=from_location;return!(d!==l||!0===d&&!0===l&&a)||(m.preview.send("sek-notify",{message:sekPreviewLocalized.i18n["Moving elements between global and local sections is not allowed."]}),!1)},start:function(e,t){o=t.item.closest('[data-sek-level="location"]'),from_location=o.data("sek-id"),d=!0===o.data("sek-is-global-location"),c=[],k=[],u.cachedElements.$body.addClass("sek-dragging-element"),i=t.item.closest('[data-sek-level="column"]').data("sek-id"),a=t.item.closest('[data-sek-level="section"]').data("sek-id"),t.item.closest('[data-sek-level="column"]').find(".sek-column-inner").first().children('[data-sek-level="module"]').each(function(){c.push(h(this).data("sek-id"))}),p.isEmpty(c)?u.errare("makeModulesSortableInColumn => startOrder should not be empty"):u.printAllLevelsUi()},stop:function(e,t){s=t.item.closest('[data-sek-level="column"]'),n=s.data("sek-id"),s.find(".sek-column-inner").first().children("[data-sek-id]").each(function(){k.push(h(this).data("sek-id"))}),p.isEmpty(k)?u.errare("makeModulesSortableInColumn => newOrder should not be empty"):p.isEqual(k,c)&&n===i?u.errare("preview => makeModulesSortableInColumn => start and stop positions are identical"):(m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"module",newOrder:k,from_column:i,to_column:n,from_sektion:a,to_sektion:t.item.closest('[data-sek-level="section"]').data("sek-id")}),u.cachedElements.$body.removeClass("sek-dragging-element"))}})),h('[data-sek-id="'+e+'"]').addClass("sek-module-sortable-setup")}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(l,c,k){c.extend(SekPreviewPrototype,{setupResizable:function(){var t=this;return c(".sektion-wrapper").find('div[data-sek-level="section"]').each(function(){t.maybeMakeColumnResizableInSektion.call(this)}),t.cachedElements.$body.on("sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added sek-location-refreshed",'[data-sek-level="location"]',function(e){c(this).find('[data-sek-level="section"]').each(function(){t.maybeMakeColumnResizableInSektion.call(this)})}),this},maybeMakeColumnResizableInSektion:function(){var a,i,n,s,o,d,r,e=c(this).find(".sek-sektion-inner").first().children('div[data-sek-level="column"]');if(!(e.length<2)){var t=c(this).find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').last();e.not(t).each(function(){c(this).resizable({resize:function(e,t){c(".sektion-wrapper").data("sek-resizing-columns",!0)},start:function(e,t){if(a=t.element.closest('div[data-sek-level="section"]'),a.data("sek-id"),i=a.find(".sek-sektion-inner")[0].getBoundingClientRect().width,!((o=a.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length)<2)){if((n=t.element.closest('div[data-sek-level="column"]')).length<1)throw new Error("ERROR => resizable => No valid level dom element found");r=n.index()+1==o,d=r?n.prev():n.next(),c(".sektion-wrapper").data("sek-resizing-columns",!0),k.delay(function(){c(".sektion-wrapper").data("sek-resizing-columns",!1)},3e3)}},stop:function(e,t){if(!(o<2)){if(n.length<1)throw new Error("ERROR => resizable => No valid level dom element found");n.css({width:"",height:""}),s=(parseFloat(t.size.width)/parseFloat(i)*100).toFixed(3),l.preview.send("sek-resize-columns",{action:"sek-resize-columns",level:n.data("sek-level"),in_sektion:a.data("sek-id"),id:n.data("sek-id"),resized_column:n.data("sek-id"),sister_column:d.data("sek-id"),resizedColumnWidthInPercent:s,col_number:o}),c(".sektion-wrapper").data("sek-resizing-columns",!1)}},helper:"ui-resizable-helper",handles:"e"});var e=c(this);k.delay(function(){e.find(".ui-resizable-handle").find(".fa-arrows-alt-h").length<1&&e.find(".ui-resizable-handle").append('<i class="fas fa-arrows-alt-h"></i>')},500)})}}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(c,h,p){h.extend(SekPreviewPrototype,{printLevelUI:function(e){var t,a,i,n;if((p.isUndefined(e)||e.length<1)&&this.errare("sekPreview::printeLevelUI => invalid level element => ",e),"location"!=(a=e.data("sek-level"))&&!(0<(n=e).children(".sek-dyn-ui-wrapper").length)){var s=n[0].getBoundingClientRect(),o=n.data("sek-level");switch(n.toggleClass("sek-shrink-my-ui",s.width&&s.width<("section"===o?350:"column"===o?300:200)),i={id:n.data("sek-id"),level:o},a){case"section":var d,r,l=n.closest('div[data-sek-level="location"]'),c=n.closest('div[data-sek-level="column"]'),k=!0===n.data("sek-is-nested");k?0<c.length&&(d=c.find(".sek-column-inner").first().children("div[data-sek-level]").length==n.index()+1,r=0===n.index()):0<l.length&&(d=l.children('div[data-sek-level="section"]').length==n.index()+1,r=0===n.index()),i=p.extend(i,{is_nested:k,can_have_more_columns:n.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length<12,is_global_location:!0===l.data("sek-is-global-location"),is_last_section_in_parent:d,is_first_section_in_parent:r,is_header_location:!0===l.data("sek-is-header-location"),is_footer_location:!0===l.data("sek-is-footer-location")});break;case"column":var u=n.closest('div[data-sek-level="section"]');i=p.extend(i,{parent_can_have_more_columns:u.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length<12,parent_is_single_column:u.find(".sek-sektion-inner").first().children('div[data-sek-level="column"]').length<2,parent_is_last_allowed_nested:!0===u.data("sek-is-nested"),has_nested_section:0<n.find('[data-sek-is-nested="true"]').length});break;case"module":var m=this.getRegisteredModuleProperty(n.data("sek-module-type"),"name");i=p.extend(i,{module_name:"not_set"!=m?m:""})}!0===h(".sektion-wrapper").data("sek-resizing-columns")&&p.contains(["column","module"],a)||(t=this.parseTemplate("#sek-dyn-ui-tmpl-"+a),h.when(n.prepend(t(i))).done(function(){n.find(".sek-dyn-ui-wrapper").stop(!0,!0).fadeIn({duration:150,complete:function(){}})}))}},setupUiHoverVisibility:function(){var i,e,d=this,r=function(){(e=h(this)).children(".sek-dyn-ui-wrapper").length<1||sekPreviewLocalized.isPreviewUIDebugMode||d.isDraggingElement||(e.data("UIisFadingOut",!0),e.children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){h(this).remove(),e.data("UIisFadingOut",!1)}}))},n=function(){d.cachedElements.$body.stop(!0,!0).find(".sek-add-content-button").each(function(){h(this).fadeOut({duration:200,complete:function(){h(this).remove()}})})};d.cachedElements.$body.on("sek-location-refreshed sek-section-added sek-level-refreshed",'[data-sek-level="location"]',function(e,t){n()});var t,a=function(){var e=h(this);clearTimeout(e.data("_toggle_ui_menu_")),e.data("_toggle_ui_menu_",setTimeout(function(){s.call(e)},1e4))},s=function(e){var t=h(this),a=h(this).closest(".sek-dyn-ui-location-type"),i=t.closest(".sek-dyn-ui-wrapper").find(".sek-dyn-ui-inner");!0===e?(t.removeClass("sek-collapsed"),i.addClass("sek-is-expanded"),a.hide()):(t.addClass("sek-collapsed"),i.removeClass("sek-is-expanded"),a.show())};d.cachedElements.$body.on("click",".sek-dyn-ui-location-inner",function(e){var t=h(this).find(".sek-dyn-ui-hamb-menu-wrapper");h(this).closest('[data-sek-level="section"]').find(".sek-dyn-ui-hamb-menu-wrapper").each(function(){s.call(h(this))}),s.call(t,!0),a.call(t)}),d.cachedElements.$body.on("mouseenter mouseover mouseleave",".sek-dyn-ui-wrapper",p.throttle(function(e){var t=h(this).find(".sek-dyn-ui-hamb-menu-wrapper");p.isUndefined(t.data("_toggle_ui_menu_"))||t.hasClass("sek-collapsed")||0<t.length&&a.call(t)},50)),d.cachedElements.$body.on("click",".sek-minimize-ui",function(e){h(this).closest(".sek-dyn-ui-location-type").slideToggle("fast")}),d.cachedElements.$body.on("mouseenter",".sek-wp-content-wrapper",function(e){0<(t=h(this)).children(".sek-dyn-ui-wrapper").length&&!0!==t.data("UIisFadingOut")||(i=d.parseTemplate("#sek-dyn-ui-tmpl-wp-content"),h.when(t.prepend(i({}))).done(function(){t.find(".sek-dyn-ui-wrapper").stop(!0,!0).fadeIn({duration:150,complete:function(){}})}))}).on("mouseleave",".sek-wp-content-wrapper",function(e){h(this).data("UIisFadingOut",!0),t=h(this),h(this).children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){h(this).remove(),t.data("UIisFadingOut",!1)}})});var l=function(s,e){var o,t=[];o=p.isUndefined(e)||e.length<1?(d.cachedElements.$body.find('[data-sek-level][data-sek-preview-level-guid="'+sekPreviewLocalized.previewLevelGuid+'"]').each(function(){t.push(h(this))}),"printOrScheduleRemoval"):(t.push(e),"mayBeRemove"),p.each(t,function(e){var t=e[0].getBoundingClientRect(),a=s.x<=t.right&&t.left<=s.x,i=s.y>=t.top&&t.bottom>=s.y,n=e;switch(o){case"mayBeRemove":n.data("sek-ui-removal-scheduled",!1),a&&i||r.call(n);break;case"printOrScheduleRemoval":a&&i?(n.data("sek-ui-removal-scheduled",!1),d.printLevelUI(n)):!0!==n.data("sek-ui-removal-scheduled")&&(n.data("sek-ui-removal-scheduled",!0),n.children(".sek-dyn-ui-wrapper").find(".sek-is-expanded").length<1?l(s,n):p.delay(function(){!0===n.data("sek-ui-removal-scheduled")&&l(d.mouseMovedRecently(),n)},3500))}})};d.mouseMovedRecently=new c.Value({}),d.mouseMovedRecently.bind(function(e){var k,t,a;p.isEmpty(e)?sekPreviewLocalized.isPreviewUIDebugMode||(n(),d.cachedElements.$body.stop(!0,!0).find("[data-sek-level]").each(function(){h(this).children(".sek-dyn-ui-wrapper").find(".sek-is-expanded").length<1&&r.call(h(this))})):(d.cachedElements.$body.find('div[data-sek-level="location"]').each(function(){var e;$sectionCollection=h(this).children('div[data-sek-level="section"]'),i=d.parseTemplate("#sek-tmpl-add-content-button"),t=h(this).data("sek-id"),a=!0===h(this).data("sek-is-global-location"),$sectionCollection.each(function(){0<h(this).find(".sek-add-content-button").length||(h.when(h(this).prepend(i({location:t,is_global_location:a}))).done(function(){e=h(this).find(".sek-add-content-button"),h(this).data("sek-id")&&e.attr("data-sek-before-section",h(this).data("sek-id")),e.fadeIn(300)}),$sectionCollection.length==h(this).index()+1&&h.when(h(this).append(i({is_last:!0,location:t,is_global_location:a}))).done(function(){e=h(this).find(".sek-add-content-button").last(),h(this).data("sek-id")&&e.attr("data-sek-after-section",h(this).data("sek-id")),e.fadeIn(300)}))})}),h(".sek-empty-location-placeholder").each(function(){0<h(this).find(".sek-add-content-button").length||(t=h(this).closest('div[data-sek-level="location"]').data("sek-id"),a=!0===h(this).closest('div[data-sek-level="location"]').data("sek-is-global-location"),h.when(h(this).append(i({location:t,is_global_location:a}))).done(function(){$btn_el=h(this).find(".sek-add-content-button"),$btn_el.attr("data-sek-is-first-section",!0),$btn_el.fadeIn(300)}))}),k=e,d.cachedElements.$body.find(".sek-add-content-button").each(function(){var e=h(this)[0].getBoundingClientRect(),t=k.y,a=k.x,i=Math.abs(t-e.bottom),n=Math.abs(e.top-t),s=a-e.right,o=e.left-a,d=i<40||n<40,r=0<s&&s<40||0<o&&o<40,l=a<=e.right&&e.left<=a,c=t>=e.top&&e.bottom>=t;h(this).toggleClass("sek-mouse-is-close",(d||c)&&(r||l))}),l(e))});var o=function(){clearTimeout(d.cachedElements.$window.data("_scroll_move_timer_")),d.mouseMovedRecently.set({})};return d.cachedElements.$window.on("mousemove scroll",p.throttle(function(e){d.mouseMovedRecently({x:e.clientX,y:e.clientY}),clearTimeout(d.cachedElements.$window.data("_scroll_move_timer_")),d.cachedElements.$window.data("_scroll_move_timer_",setTimeout(function(){d.mouseMovedRecently.set({})},4e3))},50)),c.preview.bind("sek-drag-start",function(){o()}),d.cachedElements.$body.on("sek-section-added",'[data-sek-level="location"]',function(e,t){o()}),this}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(m,h,p){h.extend(SekPreviewPrototype,{scheduleUiClickReactions:function(){var u=this;u.cachedElements.$body.on("click",function(e){m.preview.send("sek-clean-target-drop-zone");var t,a="inactiveZone",i=h(e.target),n=i.closest('[data-sek-level="location"][data-sek-preview-level-guid="'+sekPreviewLocalized.previewLevelGuid+'"]'),s=i.closest('[data-sek-preview-level-guid="'+sekPreviewLocalized.previewLevelGuid+'"]'),o=i.closest("[data-sek-click-on]"),d=n.data("sek-id"),r=s.data("sek-level"),l=s.data("sek-id");switch(a="add-content"==i.data("sek-click-on")||0<i.closest("[data-sek-click-on]").length&&"add-content"==i.closest("[data-sek-click-on]").data("sek-click-on")?"addContentButton":!p.isEmpty(i.data("sek-click-on"))||0<o.length?"UIIcon":"module"==s.data("sek-level")?"moduleWrapper":"column"==s.data("sek-level")&&!0===s.data("sek-no-modules")?"noModulesColumn":i.hasClass("sek-to-json")?"sekToJson":"column"==s.data("sek-level")?"columnOutsideModules":"section"==s.data("sek-level")?"sectionOutsideColumns":p.isEmpty(i.data("sek-add"))?i.hasClass("sek-wp-content-wrapper")||i.hasClass("sek-wp-content-dyn-ui")?"wpContent":i.hasClass("sek-edit-wp-content")?"editWpContent":"inactiveZone":"addSektion",p.isEmpty(d)&&u.errare("::scheduleUiClickReactions => error location id can not be empty"),a){case"addContentButton":var c=!0===i.closest("[data-sek-is-first-section]").data("sek-is-first-section");m.preview.send("sek-add-section",{location:d,level:"section",before_section:i.closest("[data-sek-before-section]").data("sek-before-section"),after_section:i.closest("[data-sek-after-section]").data("sek-after-section"),is_first_section:c,send_to_preview:!c});break;case"UIIcon":if(s.length<1)throw new Error("ERROR => sek-front-preview => No valid level dom element found");if(t=i.closest("[data-sek-click-on]").data("sek-click-on"),p.isEmpty(t))throw new Error("Invalid action");if(p.isEmpty(r)||p.isEmpty(l))throw new Error("ERROR => sek-front-preview => No valid level id found");u._send_(i,{action:t,location:d,level:r,id:l,was_triggered:!1});break;case"moduleWrapper":if(0<i.parent(".sek-dyn-ui-icons").length)return;u._send_(i,{action:"edit-module",level:r,id:l});break;case"noModulesColumn":if(0<i.parent(".sek-dyn-ui-icons").length)return;u._send_(i,{action:"pick-content",content_type:"module",level:r,id:l});break;case"columnOutsideModules":case"sectionOutsideColumns":u._send_(i,{action:"edit-options",location:d,level:r,id:l});break;case"addSektion":m.preview.send("sek-add-section",{location:d,level:i.data("sek-add")});break;case"sekToJson":m.preview.send("sek-to-json",{id:l});break;case"wpContent":m.preview.send("sek-notify",{type:"info",duration:8e3,message:sekPreviewLocalized.i18n["This content has been created with the WordPress editor."]});break;case"editWpContent":var k=i.closest("[data-sek-wp-edit-link]").data("sek-wp-edit-link");p.isEmpty(k)||window.open(k,"_blank");break;case"inactiveZone":m.preview.send("sek-click-on-inactive-zone")}})},_send_:function(e,t){var a=h.extend(!0,{},t),i="",n=e.closest('div[data-sek-level="module"]'),s="module"===t.level?n.data("sek-module-type"):"";"module"===t.level&&"czr_tiny_mce_editor_module"===s&&(i=0<n.find("div[data-sek-input-id]").length?n.find("div[data-sek-input-id]").data("sek-input-id"):""),m.preview.send("sek-"+t.action,p.extend({location:t.location,level:t.level,id:t.id,content_type:e.data("sek-content-type"),module_type:s,in_column:0<e.closest('div[data-sek-level="column"]').length?e.closest('div[data-sek-level="column"]').data("sek-id"):"",in_sektion:0<e.closest('div[data-sek-level="section"]').length?e.closest('div[data-sek-level="section"]').data("sek-id"):"",clicked_input_type:0<e.closest("div[data-sek-input-type]").length?e.closest("div[data-sek-input-type]").data("sek-input-type"):"",clicked_input_id:0<e.closest("div[data-sek-input-id]").length?e.closest("div[data-sek-input-id]").data("sek-input-id"):"",was_triggered:t.was_triggered,syncedTinyMceInputId:i},a))}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,s,o){s.extend(SekPreviewPrototype,{setupLoader:function(){var t=this;this._css_loader_html='<div class="sek-css-loader sek-mr-loader" style="display:none"><div></div><div></div><div></div></div>',t.cachedElements.$body.on(["sek-modules-refreshed","sek-columns-refreshed","sek-section-added","sek-level-refreshed","sek-stylesheet-refreshed","sek-ajax-error"].join(" "),function(e){t.cleanLoader()})},mayBePrintLoader:function(e){e=o.isObject(e)?e:{};var t=this,a=e.loader_located_in_level_id;if(!o.isEmpty(a)){var i=s('[data-sek-id="'+a+'"]');0<i.length&&s(".sek-level-clone ").length<1&&($levelClone=s("<div>",{class:"sek-level-clone"}),i.find("[data-sek-level]").each(function(){s(this).addClass("sek-refreshing")}),i.prepend($levelClone),$levelClone.css({width:i.outerWidth()+"px",height:i.outerHeight()+"px"}).append(t._css_loader_html).find(".sek-css-loader").fadeIn("fast"),clearTimeout(s.data(this,"_nimble_loader_active_timer_")),s.data(this,"_nimble_loader_active_timer_",setTimeout(function(){t.cleanLoader()},e.duration||4e3)))}if(!0===e.fullPageLoader){var n=s("<div>",{id:"nimble-full-page-loader-wrapper",class:"white-loader"});t.cachedElements.$body.append(n),n.fadeIn("fast").append(t._css_loader_html).find(".sek-css-loader").fadeIn("fast"),s('[data-sek-level="location"]').each(function(){s(this).addClass("sek-blur")}),clearTimeout(s.data(this,"_nimble_full_page_loader_active_timer_")),s.data(this,"_nimble_full_page_loader_active_timer_",setTimeout(function(){t.cleanLoader({cleanFullPageLoader:!0})},e.duration||6e3))}},cleanLoader:function(e){s(".sek-level-clone").remove(),s("[data-sek-level]").each(function(){s(this).removeClass("sek-refreshing")}),!0===(e=e||{}).cleanFullPageLoader&&(s('[data-sek-level="location"]').each(function(){s(this).removeClass("sek-blur")}),s("#nimble-full-page-loader-wrapper").remove())}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(o,r,l){r.extend(SekPreviewPrototype,{schedulePanelMsgReactions:function(){var t,d=this,e={"sek-add-section":"ajaxAddSektion","sek-add-content-in-new-sektion":"ajaxAddSektion","sek-add-content-in-new-nested-sektion":"ajaxAddSektion","sek-add-column":"ajaxRefreshColumns","sek-add-module":"ajaxRefreshModulesAndNestedSections","sek-refresh-stylesheet":"ajaxRefreshStylesheet","sek-resize-columns":"ajaxResizeColumns","sek-maybe-print-loader":function(e){try{d.mayBePrintLoader(e)}catch(e){o.errare("sek-clean-loader => error",e)}},"sek-clean-loader":function(e){try{d.cleanLoader(e)}catch(e){o.errare("sek-clean-loader => error",e)}},"sek-remove":function(e){var t,a=e.apiParams.id,i=r('div[data-sek-id="'+a+'"]');switch(e.apiParams.action){case"sek-remove-section":d.mayBePrintLoader({loader_located_in_level_id:e.apiParams.location}),!0===e.apiParams.is_nested?t=d.ajaxRefreshModulesAndNestedSections(e):((l.isEmpty(a)||i.length<1)&&d.errare("reactToPanelMsg => sek-remove => invalid candidate id => ",a),d.cachedElements.$body.find(i).remove(),r('[data-sek-id="'+e.apiParams.location+'"]').trigger("sek-level-refreshed"));break;case"sek-remove-column":t=d.ajaxRefreshColumns(e);break;case"sek-remove-module":t=d.ajaxRefreshModulesAndNestedSections(e)}return l.isEmpty(t)?r.Deferred(function(){this.resolve()}):t},"sek-duplicate":function(e){var t;switch(e.apiParams.action){case"sek-duplicate-section":e.apiParams.id=e.cloneId,t=d.ajaxAddSektion(e);break;case"sek-duplicate-column":e.apiParams.id=e.cloneId,t=d.ajaxRefreshColumns(e);break;case"sek-duplicate-module":e.apiParams.id=e.cloneId,t=d.ajaxRefreshModulesAndNestedSections(e)}return t},"sek-refresh-level":function(s){return d.mayBePrintLoader({loader_located_in_level_id:s.apiParams.id}),d.doAjax({location_skope_id:s.location_skope_id,local_skope_id:s.local_skope_id,action:"sek_get_content",id:s.apiParams.id,level:s.apiParams.level,sek_action:s.apiParams.action}).fail(function(e){d.errare("ERROR reactToPanelMsg => sek-refresh-level => ",e),r('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-ajax-error")}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(d.errare("SekPreviewPrototype::sek-refresh-level => ajax_response.data.contents is undefined ",e),d.errare("params ?",s));var a='<span class="sek-placeholder" data-sek-placeholder-for="'+s.apiParams.id+'"></span>',i=r('div[data-sek-id="'+s.apiParams.id+'"]');if(i.length<1)d.errare("reactToPanelMsg => sek-refresh-level ajax done => the level to refresh is not rendered in the page",e);else{i.before(a);var n=r('[data-sek-placeholder-for="'+s.apiParams.id+'"]');i.remove(),l.isUndefined(t)?d.errare("reactToPanelMsg => sek-refresh-level ajax done => missing html_content",e):n.after(t),n.remove(),r('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-level-refreshed",{level:s.apiParams.level,id:s.apiParams.id}),s.apiParams.moved_level_id&&o.preview.trigger("sek-animate-to-level",{id:s.apiParams.moved_level_id})}})},"sek-move":function(e){switch(e.apiParams.action){case"sek-move-column":if(e.apiParams.from_sektion!=e.apiParams.to_sektion){var t=r.extend(!0,{},e),a=r.extend(!0,{},e);r('[data-sek-id="'+e.apiParams.from_sektion+'"]',".sektion-wrapper").find('div[data-sek-level="column"]').length<1?o.preview.send("sek-add-column",{in_sektion:e.apiParams.from_sektion,autofocus:!1}):(t.apiParams=l.extend(t.apiParams,{in_sektion:e.apiParams.from_sektion,action:"sek-refresh-columns-in-sektion"}),d.ajaxRefreshColumns(t)),a.apiParams=l.extend(a.apiParams,{in_sektion:e.apiParams.to_sektion,action:"sek-refresh-columns-in-sektion"}),d.ajaxRefreshColumns(a)}break;case"sek-move-module":var i=r.extend(!0,{},e),n=r.extend(!0,{},e);i.apiParams.from_column!=i.apiParams.to_column&&(i.apiParams=l.extend(i.apiParams,{in_column:i.apiParams.from_column,in_sektion:i.apiParams.from_sektion,action:"sek-refresh-modules-in-column"}),d.ajaxRefreshModulesAndNestedSections(i)),e.apiParams=l.extend(n.apiParams,{in_column:n.apiParams.to_column,in_sektion:n.apiParams.to_sektion,action:"sek-refresh-modules-in-column"}),d.ajaxRefreshModulesAndNestedSections(n),r('[data-sek-id="'+e.apiParams.to_column+'"]',".sektion-wrapper").find(".sek-column-inner").sortable("refresh")}},"sek-edit-options":function(e){d.activeLevelUI(e.uiParams.id)},"sek-edit-module":function(e){d.activeLevelUI(e.uiParams.id)},"sek-drag-start":function(n){var s=1,o=!1;r('[data-sek-level="location"]').children('[data-sek-level="section"]').each(function(){var e=r(this).data("sek-id"),t=r(this).find('[data-sek-level="column"]').length,a=r(this).find('[data-sek-level="module"]').length,i=t<2&&a<1;!o&&!i&&r('[data-drop-zone-before-section="'+e+'"]').length<1&&r(this).before('<div class="sek-content-'+n.content_type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-sections" data-drop-zone-before-section="'+e+'"></div>'),i||s!=r(".sektion-wrapper").children('[data-sek-level="section"]').length||r(this).after('<div class="sek-content-'+n.content_type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-sections" data-drop-zone-after-section="'+e+'"></div>'),s++,o=i}),r(".sek-empty-location-placeholder").each(function(){r.when(r(this).append('<div class="sek-content-'+n.content_type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="in-empty-location"></div>'))}),("module"==n.content_type||"preset_section"==n.content_type&&!0===n.eligible_for_module_dropzones)&&r('[data-sek-level="column"]').each(function(){var e=r(this).children(".sek-column-inner").children('[data-sek-level="module"]'),t=r(this).children(".sek-column-inner").children('[data-sek-is-nested="true"]');e=e.add(t);var a=1;e.each(function(){r('[data-drop-zone-before-module-or-nested-section="'+r(this).data("sek-id")+'"]').length<1&&r(this).before('<div class="sek-content-module-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-modules-and-nested-sections" data-drop-zone-before-module-or-nested-section="'+r(this).data("sek-id")+'"></div>'),a==e.length&&r('[data-drop-zone-after-module-or-nested-section="'+r(this).data("sek-id")+'"]').length<1&&r(this).after('<div class="sek-content-module-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-modules-and-nested-sections" data-drop-zone-after-module-or-nested-section="'+r(this).data("sek-id")+'"></div>'),a++})}),d.cachedElements.$body.addClass("sek-dragging"),l.delay(function(){r(".sek-dynamic-drop-zone").css({opacity:1})},100)},"sek-drag-stop":function(e){d.cachedElements.$body.removeClass("sek-dragging"),r(".sortable-placeholder").remove(),r(".sek-dynamic-drop-zone").remove()},"sek-animate-to-level":function(e){var t=r('[data-sek-id="'+e.id+'"]');0<t.length&&r("html, body").animate({scrollTop:t.offset().top-100},200)},"sek-clean-level-uis":function(e){r(".sek-dyn-ui-wrapper").each(function(){r(this).remove()})},"sek-display-level-ui":function(e){var t=r('[data-sek-id="'+e.id+'"]');0<t.length&&d.printLevelUI(t)},"sek-set-double-click-target":function(e){if(r(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion"),l.isObject(e)&&e.id){var t=r('[data-sek-id="'+e.id+'"]');1===t.length&&t.addClass("sek-target-for-double-click-insertion")}},"sek-reset-double-click-target":function(e){r(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion")},"sek-update-html-in-selector":function(e){var t,a=r('[data-sek-id="'+e.id+'"]');t=l.isEmpty(e.changed_item_id)?r(e.selector,a):r('[data-sek-item-id="'+e.changed_item_id+'"] '+e.selector,a),0<a.length&&0<t.length?t.html(e.html):d.errare("reactToPanelMsg => sek-update-html-in-selector => missing level or target dom element",e)},"sek-print-confettis":function(e){if(window.confetti&&window.requestAnimationFrame){var t=(e=e||{}).duration||Date.now()+1e3,a=["#f18700","#684F2F","#eea236"];!function e(){confetti({particleCount:2,angle:60,spread:55,origin:{x:0,y:.8},colors:a}),confetti({particleCount:4,angle:120,spread:55,origin:{x:1,y:.8},colors:a}),Date.now()<t&&window.requestAnimationFrame(e)}()}}},i=function(a,e,i){a=l.extend({location_skope_id:"",apiParams:{},uiParams:{}},a||{});d.cachedElements.$body.addClass(i);try{r.when(l.isFunction(e)?e(a):d[e].call(d,a)).done(function(e){var t;t=e,o.preview.send([i,"done"].join("_"),a),a.apiParams.is_multi_items&&"sek-refresh-level"===a.apiParams.action&&o.preview.send("multi-items-module-refreshed",a),l.isUndefined(t)||t.data&&t.data.setting_validities&&o.preview.send("selective-refresh-setting-validities",t.data.setting_validities)}).fail(function(){o.preview.send("sek-notify",{type:"error",duration:1e4,message:sekPreviewLocalized.i18n["Something went wrong, please refresh this page."]})}).always(function(e){d.cachedElements.$body.removeClass(i)}).then(function(){o.preview.trigger("control-panel-requested-action-done",{action:i,args:a})})}catch(e){d.errare("reactToPanelMsg => Error when firing the callback of "+i,e),d.cachedElements.$body.removeClass(i)}a.apiParams.id&&((!(t=d.activeLevelEl())||!l.isObject(t)||t.length<1||d.activeLevelUI()!==a.apiParams.id)&&(d.activeLevelEl(r('[data-sek-id="'+a.apiParams.id+'"]')),t=d.activeLevelEl()),0<t.length&&!nb_.isInScreen(t[0])&&t[0].scrollIntoView())};l.each(e,function(t,a){"sek-refresh-stylesheet"===a?(o.preview.bind(a,function(e){i(e,t,a)}),o.preview.bind(a,l.debounce(function(e){i(e,t,a),e&&e.apiParams&&e.apiParams.id&&o.preview.trigger("sek-animate-to-level",{id:e.apiParams.id})},1e3))):o.preview.bind(a,function(e){i(e,t,a)})})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,d){o.extend(SekPreviewPrototype,{ajaxAddSektion:function(n){var s=this;return s.mayBePrintLoader({loader_located_in_level_id:n.apiParams.location}),s.doAjax({action:"sek_get_content",id:n.apiParams.id,in_sektion:n.apiParams.in_sektion,in_column:n.apiParams.in_column,location_skope_id:n.location_skope_id,local_skope_id:n.local_skope_id,sek_action:n.apiParams.action,is_nested:n.apiParams.is_nested,content_type:n.all_params&&n.all_params.content_type?n.all_params.content_type:null,collection_of_preset_section_id:n.all_params&&n.all_params.collection_of_preset_section_id?n.all_params.collection_of_preset_section_id:[]}).done(function(e){var t,a="";if(e.data&&e.data.contents?a=e.data.contents:(s.errare("SekPreviewPrototype::ajaxAddSektion => ajax_response.data.contents is undefined ",e),s.errare("params ?",n)),n.apiParams.is_nested){(t=o(".sektion-wrapper").find('div[data-sek-id="'+n.apiParams.in_column+'"]')).length<1&&s.errare("preview => reactToPanelMsg => sek-add-column => no DOM node for parent column => ",n.apiParams.in_column);var i='<span class="sek-placeholder" data-sek-placeholder-for="'+n.apiParams.in_column+'"></span>';t.before(i),t.remove(),o(".sektion-wrapper").find(".sek-placeholder").after(a),o(".sektion-wrapper").find(".sek-placeholder").remove()}else"sek-duplicate-section"!=n.apiParams.action||d.isEmpty(n.cloneId)?($beforeCandidate=o('.sektion-wrapper[data-sek-id="'+n.apiParams.location+'"]').find('div[data-sek-id="'+n.apiParams.before_section+'"]'),$afterCandidate=o('.sektion-wrapper[data-sek-id="'+n.apiParams.location+'"]').find('div[data-sek-id="'+n.apiParams.after_section+'"]'),!d.isEmpty(n.apiParams.before_section)&&0<$beforeCandidate.length?$beforeCandidate.before(a):!d.isEmpty(n.apiParams.after_section)&&0<$afterCandidate.length?$afterCandidate.after(a):o('[data-sek-id="'+n.apiParams.location+'"]').append(a)):o(".sektion-wrapper").find('div[data-sek-id="'+n.apiParams.in_sektion+'"]').after(a);"sek-duplicate-section"==n.apiParams.action&&o('div[data-sek-id="'+n.cloneId+'"]',".sektion-wrapper").each(function(){o(this).trigger("sek-columns-refreshed")}),n.apiParams.is_nested&&(s.makeModulesSortableInColumn(n.apiParams.in_column),o(".sektion-wrapper").find('div[data-sek-id="'+n.apiParams.in_sektion+'"]').each(function(){s.maybeMakeColumnResizableInSektion.call(this)})),n.cloneId&&o('div[data-sek-id="'+n.cloneId+'"]').trigger("sek-section-added",n),o('div[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-section-added",n),o('div[data-sek-id="'+n.apiParams.location+'"]').trigger("sek-location-refreshed",n)}).fail(function(e){s.errare("ERROR in sek_get_html_for_injection ? ",e),o('[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-ajax-error")})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(o,d,e){d.extend(SekPreviewPrototype,{ajaxRefreshColumns:function(n){var s=this;return s.mayBePrintLoader({loader_located_in_level_id:n.apiParams.in_sektion}),s.doAjax({action:"sek_get_content",id:n.apiParams.id,in_sektion:n.apiParams.in_sektion,location_skope_id:n.location_skope_id,local_skope_id:n.local_skope_id,sek_action:n.apiParams.action}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(s.errare("SekPreviewPrototype::ajaxRefreshColumns => ajax_response.data.contents is undefined ",e),s.errare("params ?",n));var a=d('div[data-sek-id="'+n.apiParams.in_sektion+'"]');a.length<1&&s.errare("reactToPanelMsg => "+n.apiParams.action+" => no DOM node for parent sektion => ",n.apiParams.in_sektion);var i='<span class="sek-placeholder" data-sek-placeholder-for="'+n.apiParams.in_sektion+'"></span>';a.before(i),a.remove(),d(".sektion-wrapper").find(".sek-placeholder").after(t),d(".sektion-wrapper").find(".sek-placeholder").remove(),o.preview.trigger("sek-refresh-stylesheet",n),d('div[data-sek-id="'+n.apiParams.in_sektion+'"]').trigger("sek-columns-refreshed",{in_sektion:n.apiParams.in_sektion})}).fail(function(e){s.errare("ERROR reactToPanelMsg => sek-add-column => ",e),d('[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-ajax-error")})},ajaxResizeColumns:function(a){var i=this;return i.mayBePrintLoader({loader_located_in_level_id:a.apiParams.in_sektion}),i.doAjax({action:"sek_get_content",resized_column:a.apiParams.resized_column,sister_column:a.apiParams.sister_column,location_skope_id:a.location_skope_id,local_skope_id:a.local_skope_id,sek_action:"sek-resize-columns"}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(i.errare("SekPreviewPrototype::ajaxResizeColumns => ajax_response.data.contents is undefined ",e),i.errare("params ?",a)),d('[data-sek-id="'+a.apiParams.resized_column+'"]').css({width:"",height:""}),i.appendDynStyleSheet(a.location_skope_id,t),d('div[data-sek-id="'+a.apiParams.in_sektion+'"]').trigger("sek-columns-refreshed")}).fail(function(e){i.errare("ERROR reactToPanelMsg => sek-resize-columns => ",e),d('[data-sek-id="'+a.apiParams.in_sektion+'"]').trigger("sek-ajax-error")})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,t){o.extend(SekPreviewPrototype,{ajaxRefreshModulesAndNestedSections:function(n){var s=this;return s.mayBePrintLoader({loader_located_in_level_id:n.apiParams.in_column}),s.doAjax({action:"sek_get_content",id:n.apiParams.id,in_sektion:n.apiParams.in_sektion,in_column:n.apiParams.in_column,location_skope_id:n.location_skope_id,local_skope_id:n.local_skope_id,sek_action:n.apiParams.action,is_nested:n.apiParams.is_nested}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(s.errare("SekPreviewPrototype::ajaxRefreshModulesAndNestedSections => ajax_response.data.contents is undefined ",e),s.errare("params ?",n));var a=o('[data-sek-id="'+n.apiParams.in_column+'"]');a.length<1&&s.errare("reactToPanelMsg => ajaxRefreshModulesAndNestedSections => no DOM node for parent column => ",n.apiParams.in_column);var i='<span class="sek-placeholder" data-sek-placeholder-for="'+n.apiParams.in_column+'"></span>';a.before(i),a.remove(),o('[data-sek-placeholder-for="'+n.apiParams.in_column+'"]').after(t),o('[data-sek-placeholder-for="'+n.apiParams.in_column+'"]').remove(),o('[data-sek-id="'+n.apiParams.in_column+'"]').trigger("sek-modules-refreshed",{in_column:n.apiParams.in_column,in_sektion:n.apiParams.in_sektion})}).fail(function(e){s.errare("ERROR reactToPanelMsg => sek-add-module => ",e),o('[data-sek-id="'+n.apiParams.id+'"]').trigger("sek-ajax-error")})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,s,o){s.extend(SekPreviewPrototype,{ajaxRefreshStylesheet:function(a){var i=this;return i.mayBePrintLoader({loader_located_in_level_id:a.apiParams.id}),i.doAjax({action:"sek_get_content",location_skope_id:a.location_skope_id,local_skope_id:a.local_skope_id,sek_action:"sek-refresh-stylesheet"}).done(function(e){var t="";e.data&&e.data.contents&&(t=e.data.contents),i.appendDynStyleSheet(a.location_skope_id,t),s('[data-sek-id="'+a.apiParams.id+'"]').trigger("sek-stylesheet-refreshed",{level:a.apiParams.level,id:a.apiParams.id})}).fail(function(e){i.errare("sek-refresh-stylesheet fail !"),s('[data-sek-id="'+a.apiParams.id+'"]').trigger("sek-ajax-error")})},appendDynStyleSheet:function(e,t){var a="#sek-"+e,i="#"+sekPreviewLocalized.googleFontsStyleId,n="#"+sekPreviewLocalized.globalOptionsStyleId;0<s("head").find(a).length&&s("head").find(a).remove(),0<s("head").find(i).length&&s("head").find(i).remove(),0<s("head").find(n).length&&s("head").find(n).remove(),o.isEmpty(t)||s("head").append(t),!o.isEmpty(t)&&s("head").find(a).length<1&&s("head").find(i).length<1&&s("head").find(n).length<1?this.errare("sek-preview => problem when printing the dynamic inline style for : "+a,t):s("head").find(a).attr("sek-data-origin","customizer")}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,d){o.extend(SekPreviewPrototype,{parseTemplate:d.memoize(function(t){var a,i=this,n={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"};return function(e){if(o(t).length<1)return i.errare("preview => parseTemplate => the requested tmpl does not exist =>"+t),"";try{a=a||d.template(o(t).html(),n)}catch(e){i.errare("preview => parseTemplate => problem when parsing tmpl =>"+t,e)}return a(e)}}),_prettyPrintLog:function(e){e=d.extend({bgCol:"#5ed1f5",textCol:"#000",consoleArguments:[]},e);var t,a=Array.from(e.consoleArguments);return a=d.isEmpty(d.filter(a,function(e){return!d.isString(e)}))?a.join(" "):JSON.stringify(a.join(" ")),["%c "+(t=a,d.isString(t)?300<t.length?t.substr(0,299)+"...":t:""),["background:"+e.bgCol,"color:"+e.textCol,"display: block;"].join(";")]},_wrapLogInsideTags:function(e,t,a){d.isUndefined(console)&&"function"!=typeof window.console.log||(sekPreviewLocalized.isDevMode?d.isUndefined(t)?console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:["<"+e+">"]})):(console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:["<"+e+">"]})),console.log(t),console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:["</"+e+">"]}))):console.log.apply(console,this._prettyPrintLog({bgCol:a,textCol:"#000",consoleArguments:[e]})))},errare:function(e,t){this._wrapLogInsideTags(e,t,"#ffd5a0")},infoLog:function(e,t){this._wrapLogInsideTags(e,t,"#5ed1f5")},doAjax:function(e){var t=this,a=(e=e||(d.isObject(e)?e:{})).ajaxUrl||sekPreviewLocalized.ajaxUrl,i=sekPreviewLocalized.frontNonce,n=o.Deferred(),s=d.extend({action:"",withNonce:!1},e);return"https:"==document.location.protocol&&(a=a.replace("http://","https://")),d.isEmpty(s.action)||!d.isString(s.action)?(t.errare("self.doAjax : unproper action provided"),n.resolve().promise()):(s[i.id]=i.handle,!d.isObject(i)||d.isUndefined(i.id)||d.isUndefined(i.handle)?(t.errare("self.doAjax : unproper nonce"),n.resolve().promise()):(s["preview-level-guid"]=sekPreviewLocalized.previewLevelGuid,s.czr_query_params=JSON.stringify(d.isObject(_wpCustomizeSettings.czr_query_params)?_wpCustomizeSettings.czr_query_params:[]),o.post(a,s).done(function(e){"0"!==e&&"-1"!==e&&!1!==e.success||(t.errare("self.doAjax : done ajax error for action : "+s.action,e),n.reject(e)),n.resolve(e)}).fail(function(e){t.errare("self.doAjax : failed ajax error for : "+s.action,e),n.reject(e)}),n.promise()))},isModuleRegistered:function(e){return sekPreviewLocalized.registeredModules&&!d.isUndefined(sekPreviewLocalized.registeredModules[e])},getRegisteredModuleProperty:function(e,t){return this.isModuleRegistered(e)?sekPreviewLocalized.registeredModules[e][t]:"not_set"},getLevelModel:function(t,e){var a=this,i="no_match";return d.isUndefined(e)&&a.errare("getLevelModel => a collection must be provided"),d.each(e,function(e){"no_match"==i&&(t===e.id?i=e:d.isArray(e.collection)&&(i=a.getLevelModel(t,e.collection)))}),i}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,t,a){t.extend(SekPreviewPrototype,e.Events);var i=e.Class.extend(SekPreviewPrototype);e.bind("preview-ready",function(){e.preview.bind("active",function(){try{e.sekPreview=new i}catch(e){SekPreviewPrototype.errare("SekPreviewConstructor => problem on instantiation",e)}})})}(wp.customize,jQuery,_);
|
assets/front/css/modules/accordion-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.sek-accord-wrapper {
|
2 |
text-align: left;
|
3 |
}
|
1 |
+
/*************************************
|
2 |
+
* ACCORDION MODULE
|
3 |
+
*************************************/
|
4 |
.sek-accord-wrapper {
|
5 |
text-align: left;
|
6 |
}
|
assets/front/css/modules/button-module.css
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*************************************
|
2 |
+
* BUTTON MODULE
|
3 |
+
*************************************/
|
4 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
5 |
+
text-align: center;
|
6 |
+
}
|
7 |
+
|
8 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
9 |
+
background: #020202;
|
10 |
+
color: #ffffff;
|
11 |
+
padding: 0.5em 1em;
|
12 |
+
}
|
13 |
+
|
14 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
15 |
+
margin: 0 8px;
|
16 |
+
}
|
17 |
+
|
18 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
19 |
+
color: #ffffff;
|
20 |
+
text-decoration: none;
|
21 |
+
}
|
22 |
+
|
23 |
+
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
24 |
+
text-decoration: none;
|
25 |
+
}
|
26 |
+
|
27 |
+
.sek-btn-inner {
|
28 |
+
display: flex;
|
29 |
+
align-items: center;
|
30 |
+
}
|
31 |
+
|
32 |
+
.sek-btn.box-shadow {
|
33 |
+
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
34 |
+
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
35 |
+
}
|
36 |
+
|
37 |
+
.sek-btn.box-shadow.push-effect:active {
|
38 |
+
transform: translateY(2px);
|
39 |
+
}
|
assets/front/css/modules/button-module.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
[data-sek-module-type=czr_button_module] .sek-module-inner{text-align:center}.nb-loc .sek-module .sek-module-inner .sek-btn{background:#020202;color:#fff;padding:.5em 1em}.nb-loc .sek-module .sek-module-inner .sek-btn i{margin:0 8px}.nb-loc .sek-module .sek-module-inner .sek-btn:active,.nb-loc .sek-module .sek-module-inner .sek-btn:focus,.nb-loc .sek-module .sek-module-inner .sek-btn:hover{color:#fff;text-decoration:none}[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:focus,[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-btn-inner{display:flex;align-items:center}.sek-btn.box-shadow{-webkit-box-shadow:0 3px 8px rgba(0,0,0,.2)!important;box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-btn.box-shadow.push-effect:active{transform:translateY(2px)}
|
assets/front/css/modules/heading-module.css
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*************************************
|
2 |
+
* HEADING MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6 {
|
5 |
+
font-weight: 400;
|
6 |
+
line-height: 1.5em;
|
7 |
+
}
|
8 |
+
|
9 |
+
.sek-module-inner h1 {
|
10 |
+
font-size: 2.48em;
|
11 |
+
}
|
12 |
+
|
13 |
+
.sek-module-inner h2 {
|
14 |
+
font-size: 2.07em;
|
15 |
+
}
|
16 |
+
|
17 |
+
.sek-module-inner h3 {
|
18 |
+
font-size: 1.73em;
|
19 |
+
}
|
20 |
+
|
21 |
+
.sek-module-inner h4 {
|
22 |
+
font-size: 1.44em;
|
23 |
+
}
|
24 |
+
|
25 |
+
.sek-module-inner h5 {
|
26 |
+
font-size: 1.2em;
|
27 |
+
}
|
28 |
+
|
29 |
+
.sek-module-inner h6 {
|
30 |
+
font-size: 1em;
|
31 |
+
}
|
32 |
+
|
33 |
+
.sek-module-inner .sek-heading {
|
34 |
+
text-align: center;
|
35 |
+
margin: 0.6em 0;
|
36 |
+
display: block;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sek-module-inner .sek-heading > a {
|
40 |
+
color: inherit;
|
41 |
+
font-size: inherit;
|
42 |
+
}
|
assets/front/css/modules/heading-module.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6{font-weight:400;line-height:1.5em}.sek-module-inner h1{font-size:2.48em}.sek-module-inner h2{font-size:2.07em}.sek-module-inner h3{font-size:1.73em}.sek-module-inner h4{font-size:1.44em}.sek-module-inner h5{font-size:1.2em}.sek-module-inner h6{font-size:1em}.sek-module-inner .sek-heading{text-align:center;margin:.6em 0;display:block}.sek-module-inner .sek-heading>a{color:inherit;font-size:inherit}
|
assets/front/css/modules/icon-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
[data-sek-module-type="czr_icon_module"] {
|
2 |
text-align: center;
|
3 |
color: #5a5a5a;
|
1 |
+
/*************************************
|
2 |
+
* ICON MODULE
|
3 |
+
*************************************/
|
4 |
[data-sek-module-type="czr_icon_module"] {
|
5 |
text-align: center;
|
6 |
color: #5a5a5a;
|
assets/front/css/modules/image-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
[data-sek-module-type="czr_image_module"] {
|
2 |
text-align: center;
|
3 |
}
|
1 |
+
/*************************************
|
2 |
+
* IMAGE MODULE
|
3 |
+
*************************************/
|
4 |
[data-sek-module-type="czr_image_module"] {
|
5 |
text-align: center;
|
6 |
}
|
assets/front/css/modules/img-slider-module-with-swiper.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2 |
width: calc(100% + 20px);
|
3 |
max-width: calc(100% + 20px);
|
1 |
+
/*************************************
|
2 |
+
* IMAGE SLIDER MODULE
|
3 |
+
*************************************/
|
4 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
5 |
width: calc(100% + 20px);
|
6 |
max-width: calc(100% + 20px);
|
assets/front/css/modules/img-slider-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2 |
width: calc(100% + 20px);
|
3 |
max-width: calc(100% + 20px);
|
1 |
+
/*************************************
|
2 |
+
* IMAGE SLIDER MODULE
|
3 |
+
*************************************/
|
4 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
5 |
width: calc(100% + 20px);
|
6 |
max-width: calc(100% + 20px);
|
assets/front/css/modules/menu-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.sek-nav-wrap {
|
2 |
position: relative;
|
3 |
display: -ms-flexbox;
|
@@ -159,7 +162,7 @@
|
|
159 |
-ms-transform: rotate(-180deg) !important;
|
160 |
}
|
161 |
|
162 |
-
.sek-module-inner .sek-nav-toggler {
|
163 |
-webkit-appearance: none !important;
|
164 |
cursor: pointer;
|
165 |
height: 40px;
|
@@ -168,7 +171,7 @@
|
|
168 |
vertical-align: middle;
|
169 |
}
|
170 |
|
171 |
-
.sek-module-inner .sek-nav-toggler, .sek-module-inner .sek-nav-toggler:hover, .sek-module-inner .sek-nav-toggler:focus {
|
172 |
background: 0 0;
|
173 |
background-color: rgba(0, 0, 0, 0);
|
174 |
color: black;
|
1 |
+
/*************************************
|
2 |
+
* MENU MODULE
|
3 |
+
*************************************/
|
4 |
.sek-nav-wrap {
|
5 |
position: relative;
|
6 |
display: -ms-flexbox;
|
162 |
-ms-transform: rotate(-180deg) !important;
|
163 |
}
|
164 |
|
165 |
+
.nb-loc .sek-module-inner .sek-nav-toggler {
|
166 |
-webkit-appearance: none !important;
|
167 |
cursor: pointer;
|
168 |
height: 40px;
|
171 |
vertical-align: middle;
|
172 |
}
|
173 |
|
174 |
+
.nb-loc .sek-module-inner .sek-nav-toggler, .nb-loc .sek-module-inner .sek-nav-toggler:hover, .nb-loc .sek-module-inner .sek-nav-toggler:focus {
|
175 |
background: 0 0;
|
176 |
background-color: rgba(0, 0, 0, 0);
|
177 |
color: black;
|
assets/front/css/modules/menu-module.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sek-nav-wrap{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem 0}.sek-mobile-menu-expanded-below .sek-nav-wrap{padding:0}.sek-nav-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.sek-module .sek-module-inner .sek-nav{margin-right:-10px!important;margin-left:-10px!important}.sek-module .sek-module-inner .sek-nav,.sek-module .sek-module-inner .sek-nav ul{list-style:none!important;padding:0!important;margin:0!important}.sek-module .sek-module-inner .sek-nav li{list-style:none;margin:0 5px}.sek-module .sek-module-inner .sek-nav li>ul li{padding:0 0 0 .9rem}.sek-nav li a{font-size:16px;line-height:1.5em;padding:.6em .8em;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;color:inherit;overflow:hidden}.sek-nav-wrap .sek-nav li a{text-decoration:none}.sek-nav li a:hover .sek-nav__title{text-decoration:underline}.sek-nav li:not(:last-of-type){border-bottom:1px solid;border-color:rgba(49,49,49,.09)}.sek-nav .menu-item-has-children,.sek-nav .page_item_has_children{position:relative}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{content:"\203A";font-family:"Arial Unicode MS",Arial;moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-weight:900;transition:all .3s ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px;padding:0 .45em;font-size:1em;position:relative;-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(-90deg)!important;transform:translateZ(0) rotate(-90deg)!important;-ms-transform:rotate(-90deg)!important}.sek-nav .children,.sek-nav .sub-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-nav .children,.sek-nav .sub-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.sek-dropdown-submenu>a::after{-webkit-transform:translateZ(0) rotate(0)!important;transform:translateZ(0) rotate(0)!important;-ms-transform:rotate(0)!important}.sek-dropdown-submenu>a[class*=-reverse]::after{top:.1em;-webkit-transform:translateZ(0) rotate(-180deg)!important;transform:translateZ(0) rotate(-180deg)!important;-ms-transform:rotate(-180deg)!important}.sek-module-inner .sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.sek-module-inner .sek-nav-toggler,.sek-module-inner .sek-nav-toggler:focus,.sek-module-inner .sek-nav-toggler:hover{background:0 0;background-color:rgba(0,0,0,0);color:#000;border:none}.sek-ham__span-wrapper{height:12px;position:relative;display:block}.sek-ham__span-wrapper .line{display:block;height:1.5px;position:absolute;left:10px;border-radius:5px;background-clip:padding-box;transition:all ease .35s;-webkit-backface-visibility:hidden;backface-visibility:hidden;border-top:1.5px solid}.sek-ham__span-wrapper .line-1{top:0}.sek-ham__span-wrapper .line-2{top:50%}.sek-ham__span-wrapper .line-3{top:100%}.sek-nav-toggler .line-1{-webkit-transform:translate(-3px,6px) rotate(45deg);transform:translate(-3px,6px) rotate(45deg);width:28px}.sek-nav-toggler .line-2{opacity:0}.sek-nav-toggler .line-3{-webkit-transform:translate(-3px,-6px) rotate(-45deg);transform:translate(-3px,-6px) rotate(-45deg);width:28px}.sek-nav-toggler.sek-collapsed .line{width:20px;-webkit-transform:translate(0,0) rotate(0);transform:translate(0,0) rotate(0);opacity:1}.sek-nav-toggler.sek-collapsed.hovering .line{-webkit-transform:translateX(-3px);transform:translateX(-3px);width:26px}.sek-dropdown-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-dropdown-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.show>.sek-dropdown-menu{display:block}.sek-dropdown-menu .sek-nav__title{word-break:break-word;white-space:normal}.sek-dropdown-menu.open-right{left:0;right:auto}.sek-dropdown-menu ul.open-right,.sek-dropdown-menu.open-right ul:not(.open-left){left:100%;right:auto}.sek-dropdown-menu.open-left{left:auto;right:0}.sek-dropdown-menu ul.open-left,.sek-dropdown-menu.open-left ul:not(.open-right){right:100%;left:auto}@media (min-width:768px){.sek-nav{-ms-flex-direction:row;flex-direction:row}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{display:inline-block}.sek-nav>li:not(:last-of-type){border-bottom:none}.sek-nav>li>a{padding:5px}.sek-nav-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.sek-mobile-menu-expanded-below{display:none!important}.sek-nav-toggler{display:none}.sek-dropdown-menu{background:#fff;box-shadow:1px 2px 2px 2px rgba(0,0,0,.15)}.sek-nav .sek-dropdown-menu li{padding:0 10px!important;margin:0!important}.sek-nav .sek-dropdown-menu li a{padding:10px 12px}.sek-dropdown-menu ul{left:100%}.sek-dropdown-menu .sek-menu-link__row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sek-dropdown-menu .sek-nav__title{word-break:normal;white-space:nowrap}.sek-dropdown-submenu .sek-dropdown-menu{top:15px}.sek-submenu-fade .sek-dropdown-menu a{transition:all .25s ease;-webkit-transform:translate(0,0);transform:translate(0,0)}.sek-submenu-fade .sek-dropdown-menu a:hover{-webkit-transform:translate(3px,0);transform:translate(3px,0)}.sek-submenu-fade .menu-item-has-children,.sek-submenu-fade .page_item_has_children{-webkit-perspective:1000px;perspective:1000px}.sek-submenu-fade .menu-item-has-children>ul,.sek-submenu-fade .page_item_has_children>ul{position:fixed;opacity:0;visibility:hidden;display:block;transition:all .25s ease-in-out;-webkit-transform:translate(0,-10px);transform:translate(0,-10px)}.sek-submenu-fade .menu-item-has-children:not(.show),.sek-submenu-fade .page_item_has_children:not(.show){overflow:hidden}.sek-submenu-fade .menu-item-has-children:not(.show) ul,.sek-submenu-fade .page_item_has_children:not(.show) ul{pointer-events:none;cursor:not-allowed}.sek-submenu-fade li.show{-webkit-perspective:none;perspective:none}.sek-submenu-fade li.show>ul{position:absolute;visibility:visible;opacity:1;-webkit-transform:translate(0,0);transform:translate(0,0)}}[data-sek-is-mobile-menu=yes]>.show{overflow:auto;max-height:80vh}[data-sek-is-mobile-menu=yes] li .sub-menu li>a{font-size:.8em;padding:.6em 15px}.nb-module-menu-search{position:relative}[data-sek-is-mobile-menu=yes] .nb-module-menu-search{display:none}.nb-svg-search-icon{cursor:pointer;padding:0}.nb-module-menu-search .nb-search-expand{display:none;background:#fff;position:absolute;z-index:100;top:49px;right:0;left:0;width:340px;box-shadow:0 1px 0 rgba(255,255,255,.1)}.nb-search-expand .nb-search-expand-inner{border:1px solid #eee;box-shadow:0 0 5px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.15);transition:-webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;padding:15px}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:none}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner label input[type=search]{max-width:100%}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{margin:0;background:grey;color:#fff}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-is-mobile-menu=yes] .nb-mobile-search input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{text-transform:none!important}.nb-mobile-search{display:none}[data-sek-is-mobile-menu=yes] .nb-mobile-search{display:block;padding:6px 14px 15px}[data-sek-is-mobile-menu=yes] .nb-mobile-search input{font-size:16px}
|
1 |
+
.sek-nav-wrap{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem 0}.sek-mobile-menu-expanded-below .sek-nav-wrap{padding:0}.sek-nav-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.sek-module .sek-module-inner .sek-nav{margin-right:-10px!important;margin-left:-10px!important}.sek-module .sek-module-inner .sek-nav,.sek-module .sek-module-inner .sek-nav ul{list-style:none!important;padding:0!important;margin:0!important}.sek-module .sek-module-inner .sek-nav li{list-style:none;margin:0 5px}.sek-module .sek-module-inner .sek-nav li>ul li{padding:0 0 0 .9rem}.sek-nav li a{font-size:16px;line-height:1.5em;padding:.6em .8em;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;color:inherit;overflow:hidden}.sek-nav-wrap .sek-nav li a{text-decoration:none}.sek-nav li a:hover .sek-nav__title{text-decoration:underline}.sek-nav li:not(:last-of-type){border-bottom:1px solid;border-color:rgba(49,49,49,.09)}.sek-nav .menu-item-has-children,.sek-nav .page_item_has_children{position:relative}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{content:"\203A";font-family:"Arial Unicode MS",Arial;moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-weight:900;transition:all .3s ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px;padding:0 .45em;font-size:1em;position:relative;-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(-90deg)!important;transform:translateZ(0) rotate(-90deg)!important;-ms-transform:rotate(-90deg)!important}.sek-nav .children,.sek-nav .sub-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-nav .children,.sek-nav .sub-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.sek-dropdown-submenu>a::after{-webkit-transform:translateZ(0) rotate(0)!important;transform:translateZ(0) rotate(0)!important;-ms-transform:rotate(0)!important}.sek-dropdown-submenu>a[class*=-reverse]::after{top:.1em;-webkit-transform:translateZ(0) rotate(-180deg)!important;transform:translateZ(0) rotate(-180deg)!important;-ms-transform:rotate(-180deg)!important}.nb-loc .sek-module-inner .sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.nb-loc .sek-module-inner .sek-nav-toggler,.nb-loc .sek-module-inner .sek-nav-toggler:focus,.nb-loc .sek-module-inner .sek-nav-toggler:hover{background:0 0;background-color:rgba(0,0,0,0);color:#000;border:none}.sek-ham__span-wrapper{height:12px;position:relative;display:block}.sek-ham__span-wrapper .line{display:block;height:1.5px;position:absolute;left:10px;border-radius:5px;background-clip:padding-box;transition:all ease .35s;-webkit-backface-visibility:hidden;backface-visibility:hidden;border-top:1.5px solid}.sek-ham__span-wrapper .line-1{top:0}.sek-ham__span-wrapper .line-2{top:50%}.sek-ham__span-wrapper .line-3{top:100%}.sek-nav-toggler .line-1{-webkit-transform:translate(-3px,6px) rotate(45deg);transform:translate(-3px,6px) rotate(45deg);width:28px}.sek-nav-toggler .line-2{opacity:0}.sek-nav-toggler .line-3{-webkit-transform:translate(-3px,-6px) rotate(-45deg);transform:translate(-3px,-6px) rotate(-45deg);width:28px}.sek-nav-toggler.sek-collapsed .line{width:20px;-webkit-transform:translate(0,0) rotate(0);transform:translate(0,0) rotate(0);opacity:1}.sek-nav-toggler.sek-collapsed.hovering .line{-webkit-transform:translateX(-3px);transform:translateX(-3px);width:26px}.sek-dropdown-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-dropdown-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.show>.sek-dropdown-menu{display:block}.sek-dropdown-menu .sek-nav__title{word-break:break-word;white-space:normal}.sek-dropdown-menu.open-right{left:0;right:auto}.sek-dropdown-menu ul.open-right,.sek-dropdown-menu.open-right ul:not(.open-left){left:100%;right:auto}.sek-dropdown-menu.open-left{left:auto;right:0}.sek-dropdown-menu ul.open-left,.sek-dropdown-menu.open-left ul:not(.open-right){right:100%;left:auto}@media (min-width:768px){.sek-nav{-ms-flex-direction:row;flex-direction:row}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{display:inline-block}.sek-nav>li:not(:last-of-type){border-bottom:none}.sek-nav>li>a{padding:5px}.sek-nav-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.sek-mobile-menu-expanded-below{display:none!important}.sek-nav-toggler{display:none}.sek-dropdown-menu{background:#fff;box-shadow:1px 2px 2px 2px rgba(0,0,0,.15)}.sek-nav .sek-dropdown-menu li{padding:0 10px!important;margin:0!important}.sek-nav .sek-dropdown-menu li a{padding:10px 12px}.sek-dropdown-menu ul{left:100%}.sek-dropdown-menu .sek-menu-link__row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sek-dropdown-menu .sek-nav__title{word-break:normal;white-space:nowrap}.sek-dropdown-submenu .sek-dropdown-menu{top:15px}.sek-submenu-fade .sek-dropdown-menu a{transition:all .25s ease;-webkit-transform:translate(0,0);transform:translate(0,0)}.sek-submenu-fade .sek-dropdown-menu a:hover{-webkit-transform:translate(3px,0);transform:translate(3px,0)}.sek-submenu-fade .menu-item-has-children,.sek-submenu-fade .page_item_has_children{-webkit-perspective:1000px;perspective:1000px}.sek-submenu-fade .menu-item-has-children>ul,.sek-submenu-fade .page_item_has_children>ul{position:fixed;opacity:0;visibility:hidden;display:block;transition:all .25s ease-in-out;-webkit-transform:translate(0,-10px);transform:translate(0,-10px)}.sek-submenu-fade .menu-item-has-children:not(.show),.sek-submenu-fade .page_item_has_children:not(.show){overflow:hidden}.sek-submenu-fade .menu-item-has-children:not(.show) ul,.sek-submenu-fade .page_item_has_children:not(.show) ul{pointer-events:none;cursor:not-allowed}.sek-submenu-fade li.show{-webkit-perspective:none;perspective:none}.sek-submenu-fade li.show>ul{position:absolute;visibility:visible;opacity:1;-webkit-transform:translate(0,0);transform:translate(0,0)}}[data-sek-is-mobile-menu=yes]>.show{overflow:auto;max-height:80vh}[data-sek-is-mobile-menu=yes] li .sub-menu li>a{font-size:.8em;padding:.6em 15px}.nb-module-menu-search{position:relative}[data-sek-is-mobile-menu=yes] .nb-module-menu-search{display:none}.nb-svg-search-icon{cursor:pointer;padding:0}.nb-module-menu-search .nb-search-expand{display:none;background:#fff;position:absolute;z-index:100;top:49px;right:0;left:0;width:340px;box-shadow:0 1px 0 rgba(255,255,255,.1)}.nb-search-expand .nb-search-expand-inner{border:1px solid #eee;box-shadow:0 0 5px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.15);transition:-webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;padding:15px}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:none}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner label input[type=search]{max-width:100%}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{margin:0;background:grey;color:#fff}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-is-mobile-menu=yes] .nb-mobile-search input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{text-transform:none!important}.nb-mobile-search{display:none}[data-sek-is-mobile-menu=yes] .nb-mobile-search{display:block;padding:6px 14px 15px}[data-sek-is-mobile-menu=yes] .nb-mobile-search input{font-size:16px}
|
assets/front/css/modules/post-grid-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.sek-post-grid-wrapper {
|
2 |
margin-top: 1.5rem;
|
3 |
margin-bottom: 1.5rem;
|
1 |
+
/*************************************
|
2 |
+
* POST GRID MODULE
|
3 |
+
*************************************/
|
4 |
.sek-post-grid-wrapper {
|
5 |
margin-top: 1.5rem;
|
6 |
margin-bottom: 1.5rem;
|
assets/front/css/modules/quote-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.sek-quote p {
|
2 |
margin: 0 0 .5em;
|
3 |
padding: 0;
|
1 |
+
/*************************************
|
2 |
+
* QUOTE MODULE
|
3 |
+
*************************************/
|
4 |
.sek-quote p {
|
5 |
margin: 0 0 .5em;
|
6 |
padding: 0;
|
assets/front/css/modules/simple-form-module.css
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2 |
font-size: 16px;
|
3 |
width: 100% !important;
|
1 |
+
/*************************************
|
2 |
+
* SIMPLE FORM MODULE
|
3 |
+
*************************************/
|
4 |
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
5 |
font-size: 16px;
|
6 |
width: 100% !important;
|
assets/front/css/modules/social-icons-module.css
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*************************************
|
2 |
+
* SOCIAL ICONS MODULE
|
3 |
+
*************************************/
|
4 |
+
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
5 |
+
margin: 10px 0;
|
6 |
+
}
|
7 |
+
|
8 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
9 |
+
text-align: center;
|
10 |
+
}
|
11 |
+
|
12 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
13 |
+
padding-right: 8px;
|
14 |
+
}
|
15 |
+
|
16 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
17 |
+
display: inline-block;
|
18 |
+
}
|
19 |
+
|
20 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
21 |
+
color: #707070;
|
22 |
+
}
|
23 |
+
|
24 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
25 |
+
font-size: 28px;
|
26 |
+
line-height: 1.5em;
|
27 |
+
}
|
28 |
+
|
29 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
30 |
+
-webkit-transition: all 0.2s ease-in-out;
|
31 |
+
-o-transition: all 0.2s ease-in-out;
|
32 |
+
transition: all 0.2s ease-in-out;
|
33 |
+
}
|
assets/front/css/modules/social-icons-module.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
[data-sek-module-type=czr_social_icons_module] .sek-module-inner .sek-social-icons-wrapper{margin:10px 0}.nb-loc .sek-module-inner .sek-social-icons-wrapper{text-align:center}.nb-loc .sek-module-inner .sek-social-icons-wrapper>:not(:last-child){padding-right:8px}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li{display:inline-block}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li a{color:#707070}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{font-size:28px;line-height:1.5em}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}
|
assets/front/css/modules/special-image-module.css
ADDED
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*************************************
|
2 |
+
* SPECIAL IMAGE MODULE
|
3 |
+
*************************************/
|
4 |
+
.sek-nimble-image-wrapper {
|
5 |
+
max-width: 100%;
|
6 |
+
overflow: hidden;
|
7 |
+
width: 100%;
|
8 |
+
position: relative;
|
9 |
+
display: block;
|
10 |
+
background-position: center center;
|
11 |
+
background-size: cover;
|
12 |
+
display: flex;
|
13 |
+
align-items: center;
|
14 |
+
justify-content: center;
|
15 |
+
backface-visibility: hidden;
|
16 |
+
transform-style: preserve-3d;
|
17 |
+
}
|
18 |
+
|
19 |
+
.sek-nimble-image-wrapper::before {
|
20 |
+
content: '';
|
21 |
+
display: block;
|
22 |
+
padding-top: 100%;
|
23 |
+
}
|
24 |
+
|
25 |
+
.sek-nimble-image-wrapper a {
|
26 |
+
color: #ffffff;
|
27 |
+
}
|
28 |
+
|
29 |
+
.sek-nimble-image-wrapper a:hover {
|
30 |
+
color: #ffffff;
|
31 |
+
}
|
32 |
+
|
33 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper {
|
34 |
+
position: absolute;
|
35 |
+
width: 100%;
|
36 |
+
height: 100%;
|
37 |
+
z-index: 1;
|
38 |
+
top: 0;
|
39 |
+
display: -webkit-box;
|
40 |
+
display: -moz-box;
|
41 |
+
display: -ms-flexbox;
|
42 |
+
display: -webkit-flex;
|
43 |
+
display: flex;
|
44 |
+
-ms-flex-direction: column;
|
45 |
+
flex-direction: column;
|
46 |
+
align-items: center;
|
47 |
+
justify-content: center;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {
|
51 |
+
font-size: 80px;
|
52 |
+
line-height: 1em;
|
53 |
+
color: #000000;
|
54 |
+
transition: all .3s ease;
|
55 |
+
}
|
56 |
+
|
57 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {
|
58 |
+
color: #000000;
|
59 |
+
font-size: 16px;
|
60 |
+
line-height: 1.5em;
|
61 |
+
font-weight: 400;
|
62 |
+
transition: all .3s ease;
|
63 |
+
}
|
64 |
+
|
65 |
+
.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {
|
66 |
+
margin: 0;
|
67 |
+
padding: 0;
|
68 |
+
}
|
69 |
+
|
70 |
+
.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {
|
71 |
+
color: #969696;
|
72 |
+
}
|
73 |
+
|
74 |
+
.sek-nimble-image-mask {
|
75 |
+
position: absolute;
|
76 |
+
border-color: #fff;
|
77 |
+
left: 0;
|
78 |
+
right: 0;
|
79 |
+
top: 0;
|
80 |
+
bottom: 0;
|
81 |
+
overflow: hidden;
|
82 |
+
z-index: 1;
|
83 |
+
display: flex;
|
84 |
+
align-items: center;
|
85 |
+
justify-content: center;
|
86 |
+
}
|
87 |
+
|
88 |
+
.sek-nimble-image-mask::before {
|
89 |
+
position: absolute;
|
90 |
+
content: '';
|
91 |
+
z-index: 1;
|
92 |
+
border: 150vw solid;
|
93 |
+
border-color: inherit;
|
94 |
+
box-sizing: content-box;
|
95 |
+
transition: all .3s ease;
|
96 |
+
-webkit-backface-visibility: hidden;
|
97 |
+
backface-visibility: hidden;
|
98 |
+
}
|
99 |
+
|
100 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,
|
101 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,
|
102 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {
|
103 |
+
width: 88%;
|
104 |
+
padding-bottom: 88%;
|
105 |
+
}
|
106 |
+
|
107 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,
|
108 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,
|
109 |
+
.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {
|
110 |
+
width: 63%;
|
111 |
+
padding-bottom: 63%;
|
112 |
+
}
|
113 |
+
|
114 |
+
.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {
|
115 |
+
border-radius: 50%;
|
116 |
+
}
|
117 |
+
|
118 |
+
.sek-nimble-image {
|
119 |
+
position: absolute;
|
120 |
+
width: 100%;
|
121 |
+
height: 100%;
|
122 |
+
background-position: center center;
|
123 |
+
background-size: cover;
|
124 |
+
background-repeat: no-repeat;
|
125 |
+
z-index: 0;
|
126 |
+
top: 0;
|
127 |
+
}
|
assets/front/css/modules/special-image-module.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.sek-nimble-image-wrapper{max-width:100%;overflow:hidden;width:100%;position:relative;display:block;background-position:center center;background-size:cover;display:flex;align-items:center;justify-content:center;backface-visibility:hidden;transform-style:preserve-3d}.sek-nimble-image-wrapper::before{content:'';display:block;padding-top:100%}.sek-nimble-image-wrapper a{color:#fff}.sek-nimble-image-wrapper a:hover{color:#fff}.sek-nimble-image-wrapper .nb-icon-text-wrapper{position:absolute;width:100%;height:100%;z-index:1;top:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-direction:column;flex-direction:column;align-items:center;justify-content:center}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon{font-size:80px;line-height:1em;color:#000;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text,.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text *{color:#000;font-size:16px;line-height:1.5em;font-weight:400;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p{margin:0;padding:0}.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon{color:#969696}.sek-nimble-image-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1;display:flex;align-items:center;justify-content:center}.sek-nimble-image-mask::before{position:absolute;content:'';z-index:1;border:150vw solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before{width:88%;padding-bottom:88%}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before{width:63%;padding-bottom:63%}.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;background-repeat:no-repeat;z-index:0;top:0}
|
assets/front/css/sek-base-light-rtl.css
CHANGED
@@ -309,11 +309,11 @@
|
|
309 |
opacity: 0;
|
310 |
}
|
311 |
|
312 |
-
.sek-overflow-hidden-
|
313 |
-
overflow
|
314 |
}
|
315 |
|
316 |
-
.sek-service-font, .sek-module-inner .sek-btn {
|
317 |
font-family: sans-serif;
|
318 |
}
|
319 |
|
@@ -734,7 +734,7 @@
|
|
734 |
color: #777;
|
735 |
}
|
736 |
|
737 |
-
.sek-module-inner .sek-btn {
|
738 |
display: inline-block;
|
739 |
font-weight: normal;
|
740 |
line-height: 1.25em;
|
@@ -758,22 +758,22 @@
|
|
758 |
transition: all 0.2s ease-in-out;
|
759 |
}
|
760 |
|
761 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:hover {
|
762 |
text-decoration: none;
|
763 |
}
|
764 |
|
765 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .focus.sek-btn {
|
766 |
outline: 0;
|
767 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
768 |
}
|
769 |
|
770 |
-
.sek-module-inner .disabled.sek-btn, .sek-module-inner .sek-btn:disabled {
|
771 |
cursor: not-allowed;
|
772 |
opacity: .65;
|
773 |
box-shadow: none;
|
774 |
}
|
775 |
|
776 |
-
.sek-module-inner .sek-btn:active, .sek-module-inner .active.sek-btn {
|
777 |
background-image: none;
|
778 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
779 |
}
|
@@ -928,46 +928,9 @@ button.sek-btn,
|
|
928 |
font-size: 1em;
|
929 |
}
|
930 |
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
}
|
935 |
-
|
936 |
-
.sek-module-inner h1 {
|
937 |
-
font-size: 2.48em;
|
938 |
-
}
|
939 |
-
|
940 |
-
.sek-module-inner h2 {
|
941 |
-
font-size: 2.07em;
|
942 |
-
}
|
943 |
-
|
944 |
-
.sek-module-inner h3 {
|
945 |
-
font-size: 1.73em;
|
946 |
-
}
|
947 |
-
|
948 |
-
.sek-module-inner h4 {
|
949 |
-
font-size: 1.44em;
|
950 |
-
}
|
951 |
-
|
952 |
-
.sek-module-inner h5 {
|
953 |
-
font-size: 1.2em;
|
954 |
-
}
|
955 |
-
|
956 |
-
.sek-module-inner h6 {
|
957 |
-
font-size: 1em;
|
958 |
-
}
|
959 |
-
|
960 |
-
.sek-module-inner .sek-heading {
|
961 |
-
text-align: center;
|
962 |
-
margin: 0.6em 0;
|
963 |
-
display: block;
|
964 |
-
}
|
965 |
-
|
966 |
-
.sek-module-inner .sek-heading > a {
|
967 |
-
color: inherit;
|
968 |
-
font-size: inherit;
|
969 |
-
}
|
970 |
-
|
971 |
[data-sek-module-type="czr_divider_module"] {
|
972 |
text-align: center;
|
973 |
}
|
@@ -986,81 +949,23 @@ button.sek-btn,
|
|
986 |
font-size: 1rem;
|
987 |
}
|
988 |
|
|
|
|
|
|
|
989 |
.sek-module-inner .sek-spacer {
|
990 |
height: 20px;
|
991 |
}
|
992 |
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
.sek-module-inner .sek-btn {
|
998 |
-
background: #020202;
|
999 |
-
color: #ffffff;
|
1000 |
-
padding: 0.5em 1em;
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
.sek-module-inner .sek-btn i {
|
1004 |
-
margin: 0 8px;
|
1005 |
-
}
|
1006 |
-
|
1007 |
-
.sek-module-inner .sek-btn:hover, .sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:active {
|
1008 |
-
color: #ffffff;
|
1009 |
-
}
|
1010 |
-
|
1011 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
1012 |
-
text-decoration: none;
|
1013 |
-
}
|
1014 |
-
|
1015 |
-
.sek-btn-inner {
|
1016 |
-
display: flex;
|
1017 |
-
align-items: center;
|
1018 |
-
}
|
1019 |
-
|
1020 |
-
.sek-btn.box-shadow {
|
1021 |
-
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
1022 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
.sek-btn.box-shadow.push-effect:active {
|
1026 |
-
transform: translateY(2px);
|
1027 |
-
}
|
1028 |
-
|
1029 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
1030 |
text-decoration: underline;
|
1031 |
}
|
1032 |
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
.sek-module-inner .sek-social-icons-wrapper {
|
1038 |
-
text-align: center;
|
1039 |
-
}
|
1040 |
-
|
1041 |
-
.sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
1042 |
-
padding-right: 8px;
|
1043 |
-
}
|
1044 |
-
|
1045 |
-
.sek-module-inner .sek-social-icons-wrapper > li {
|
1046 |
-
display: inline-block;
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
.sek-module-inner .sek-social-icons-wrapper > li a {
|
1050 |
-
color: #707070;
|
1051 |
-
}
|
1052 |
-
|
1053 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
1054 |
-
font-size: 28px;
|
1055 |
-
line-height: 1.5em;
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
1059 |
-
-webkit-transition: all 0.2s ease-in-out;
|
1060 |
-
-o-transition: all 0.2s ease-in-out;
|
1061 |
-
transition: all 0.2s ease-in-out;
|
1062 |
-
}
|
1063 |
-
|
1064 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
1065 |
display: -webkit-box;
|
1066 |
display: -ms-flexbox;
|
309 |
opacity: 0;
|
310 |
}
|
311 |
|
312 |
+
.sek-overflow-hidden-while-animating {
|
313 |
+
overflow: hidden;
|
314 |
}
|
315 |
|
316 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
317 |
font-family: sans-serif;
|
318 |
}
|
319 |
|
734 |
color: #777;
|
735 |
}
|
736 |
|
737 |
+
.sek-module .sek-module-inner .sek-btn {
|
738 |
display: inline-block;
|
739 |
font-weight: normal;
|
740 |
line-height: 1.25em;
|
758 |
transition: all 0.2s ease-in-out;
|
759 |
}
|
760 |
|
761 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
762 |
text-decoration: none;
|
763 |
}
|
764 |
|
765 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
766 |
outline: 0;
|
767 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
768 |
}
|
769 |
|
770 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
771 |
cursor: not-allowed;
|
772 |
opacity: .65;
|
773 |
box-shadow: none;
|
774 |
}
|
775 |
|
776 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
777 |
background-image: none;
|
778 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
779 |
}
|
928 |
font-size: 1em;
|
929 |
}
|
930 |
|
931 |
+
/*************************************
|
932 |
+
* DIVIDER MODULE
|
933 |
+
*************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
[data-sek-module-type="czr_divider_module"] {
|
935 |
text-align: center;
|
936 |
}
|
949 |
font-size: 1rem;
|
950 |
}
|
951 |
|
952 |
+
/*************************************
|
953 |
+
* SPACER MODULE
|
954 |
+
*************************************/
|
955 |
.sek-module-inner .sek-spacer {
|
956 |
height: 20px;
|
957 |
}
|
958 |
|
959 |
+
/*************************************
|
960 |
+
* TINY MCE EDITOR MODULE
|
961 |
+
*************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
963 |
text-decoration: underline;
|
964 |
}
|
965 |
|
966 |
+
/*************************************
|
967 |
+
* SHORTCODE MODULE
|
968 |
+
*************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
969 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
970 |
display: -webkit-box;
|
971 |
display: -ms-flexbox;
|
assets/front/css/sek-base-light-rtl.css.map
CHANGED
@@ -27,14 +27,11 @@
|
|
27 |
"../scss/_2_2_buttons.scss",
|
28 |
"../scss/_2_3_wpspecifics.scss",
|
29 |
"../scss/_3_2_modules_light.scss",
|
30 |
-
"../scss/modules/_heading.scss",
|
31 |
"../scss/modules/_divider.scss",
|
32 |
"../scss/modules/_spacer.scss",
|
33 |
-
"../scss/modules/_button.scss",
|
34 |
"../scss/modules/_tiny_mce_editor.scss",
|
35 |
-
"../scss/modules/_social_icons.scss",
|
36 |
"../scss/modules/_shortcode.scss"
|
37 |
],
|
38 |
"names": [],
|
39 |
-
"mappings": "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"
|
40 |
}
|
27 |
"../scss/_2_2_buttons.scss",
|
28 |
"../scss/_2_3_wpspecifics.scss",
|
29 |
"../scss/_3_2_modules_light.scss",
|
|
|
30 |
"../scss/modules/_divider.scss",
|
31 |
"../scss/modules/_spacer.scss",
|
|
|
32 |
"../scss/modules/_tiny_mce_editor.scss",
|
|
|
33 |
"../scss/modules/_shortcode.scss"
|
34 |
],
|
35 |
"names": [],
|
36 |
+
"mappings": "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"
|
37 |
}
|
assets/front/css/sek-base-light-rtl.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:flex;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:flex;flex-direction:column}.sek-module{align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:none;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{-webkit-transition:0s linear;-o-transition:0s linear;transition:0s linear;-webkit-transition-property:background-position;-o-transition-property:background-position;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{-webkit-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-when-animating [data-sek-level]{overflow-x:hidden}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:flex;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{flex:0 0 100%;max-width:100%}.sek-col{flex-basis:0;flex-grow:1;max-width:100%}.sek-col-auto{flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{flex:0 0 8.333%;max-width:8.333%}.sek-col-9{flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{flex:0 0 10%;max-width:10%}.sek-col-11{flex:0 0 11.111%;max-width:11.111%}.sek-col-12{flex:0 0 12.5%;max-width:12.5%}.sek-col-14{flex:0 0 14.285%;max-width:14.285%}.sek-col-16{flex:0 0 16.666%;max-width:16.666%}.sek-col-20{flex:0 0 20%;max-width:20%}.sek-col-25{flex:0 0 25%;max-width:25%}.sek-col-30{flex:0 0 30%;max-width:30%}.sek-col-33{flex:0 0 33.333%;max-width:33.333%}.sek-col-40{flex:0 0 40%;max-width:40%}.sek-col-50{flex:0 0 50%;max-width:50%}.sek-col-60{flex:0 0 60%;max-width:60%}.sek-col-66{flex:0 0 66.666%;max-width:66.666%}.sek-col-70{flex:0 0 70%;max-width:70%}.sek-col-75{flex:0 0 75%;max-width:75%}.sek-col-80{flex:0 0 80%;max-width:80%}.sek-col-83{flex:0 0 83.333%;max-width:83.333%}.sek-col-90{flex:0 0 90%;max-width:90%}.sek-col-100{flex:0 0 100%;max-width:100%}.sek-order-first{order:-1}.sek-order-last{order:13}.sek-order-0{order:0}.sek-order-1{order:1}.sek-order-2{order:2}.sek-order-3{order:3}.sek-order-4{order:4}.sek-order-5{order:5}.sek-order-6{order:6}.sek-order-7{order:7}.sek-order-8{order:8}.sek-order-9{order:9}.sek-order-10{order:10}.sek-order-11{order:11}.sek-order-12{order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 1.5rem 1.5rem 0}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module-inner .focus.sek-btn,.sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module-inner .disabled.sek-btn,.sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module-inner .active.sek-btn,.sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;-webkit-border-radius:3px;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:0;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:flex;align-items:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6{font-weight:400;line-height:1.5em}.sek-module-inner h1{font-size:2.48em}.sek-module-inner h2{font-size:2.07em}.sek-module-inner h3{font-size:1.73em}.sek-module-inner h4{font-size:1.44em}.sek-module-inner h5{font-size:1.2em}.sek-module-inner h6{font-size:1em}.sek-module-inner .sek-heading{text-align:center;margin:.6em 0;display:block}.sek-module-inner .sek-heading>a{color:inherit;font-size:inherit}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_button_module] .sek-module-inner{text-align:center}.sek-module-inner .sek-btn{background:#020202;color:#fff;padding:.5em 1em}.sek-module-inner .sek-btn i{margin:0 8px}.sek-module-inner .sek-btn:active,.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{color:#fff}[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:focus,[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-btn-inner{display:flex;align-items:center}.sek-btn.box-shadow{-webkit-box-shadow:0 3px 8px rgba(0,0,0,.2)!important;box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-btn.box-shadow.push-effect:active{transform:translateY(2px)}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_social_icons_module] .sek-module-inner .sek-social-icons-wrapper{margin:10px 0}.sek-module-inner .sek-social-icons-wrapper{text-align:center}.sek-module-inner .sek-social-icons-wrapper>:not(:last-child){padding-right:8px}.sek-module-inner .sek-social-icons-wrapper>li{display:inline-block}.sek-module-inner .sek-social-icons-wrapper>li a{color:#707070}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{font-size:28px;line-height:1.5em}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;-webkit-box-shadow:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
1 |
+
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:flex;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:flex;flex-direction:column}.sek-module{align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:none;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{-webkit-transition:0s linear;-o-transition:0s linear;transition:0s linear;-webkit-transition-property:background-position;-o-transition-property:background-position;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{-webkit-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-while-animating{overflow:hidden}.sek-module .sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:flex;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{flex:0 0 100%;max-width:100%}.sek-col{flex-basis:0;flex-grow:1;max-width:100%}.sek-col-auto{flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{flex:0 0 8.333%;max-width:8.333%}.sek-col-9{flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{flex:0 0 10%;max-width:10%}.sek-col-11{flex:0 0 11.111%;max-width:11.111%}.sek-col-12{flex:0 0 12.5%;max-width:12.5%}.sek-col-14{flex:0 0 14.285%;max-width:14.285%}.sek-col-16{flex:0 0 16.666%;max-width:16.666%}.sek-col-20{flex:0 0 20%;max-width:20%}.sek-col-25{flex:0 0 25%;max-width:25%}.sek-col-30{flex:0 0 30%;max-width:30%}.sek-col-33{flex:0 0 33.333%;max-width:33.333%}.sek-col-40{flex:0 0 40%;max-width:40%}.sek-col-50{flex:0 0 50%;max-width:50%}.sek-col-60{flex:0 0 60%;max-width:60%}.sek-col-66{flex:0 0 66.666%;max-width:66.666%}.sek-col-70{flex:0 0 70%;max-width:70%}.sek-col-75{flex:0 0 75%;max-width:75%}.sek-col-80{flex:0 0 80%;max-width:80%}.sek-col-83{flex:0 0 83.333%;max-width:83.333%}.sek-col-90{flex:0 0 90%;max-width:90%}.sek-col-100{flex:0 0 100%;max-width:100%}.sek-order-first{order:-1}.sek-order-last{order:13}.sek-order-0{order:0}.sek-order-1{order:1}.sek-order-2{order:2}.sek-order-3{order:3}.sek-order-4{order:4}.sek-order-5{order:5}.sek-order-6{order:6}.sek-order-7{order:7}.sek-order-8{order:8}.sek-order-9{order:9}.sek-order-10{order:10}.sek-order-11{order:11}.sek-order-12{order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 1.5rem 1.5rem 0}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module .sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.sek-module .sek-module-inner .sek-btn:focus,.sek-module .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module .sek-module-inner .focus.sek-btn,.sek-module .sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module .sek-module-inner .disabled.sek-btn,.sek-module .sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module .sek-module-inner .active.sek-btn,.sek-module .sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;-webkit-border-radius:3px;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:0;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:flex;align-items:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;-webkit-box-shadow:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
assets/front/css/sek-base-light.css
CHANGED
@@ -309,11 +309,11 @@
|
|
309 |
opacity: 0;
|
310 |
}
|
311 |
|
312 |
-
.sek-overflow-hidden-
|
313 |
-
overflow
|
314 |
}
|
315 |
|
316 |
-
.sek-service-font, .sek-module-inner .sek-btn {
|
317 |
font-family: sans-serif;
|
318 |
}
|
319 |
|
@@ -734,7 +734,7 @@
|
|
734 |
color: #777;
|
735 |
}
|
736 |
|
737 |
-
.sek-module-inner .sek-btn {
|
738 |
display: inline-block;
|
739 |
font-weight: normal;
|
740 |
line-height: 1.25em;
|
@@ -758,22 +758,22 @@
|
|
758 |
transition: all 0.2s ease-in-out;
|
759 |
}
|
760 |
|
761 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:hover {
|
762 |
text-decoration: none;
|
763 |
}
|
764 |
|
765 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .focus.sek-btn {
|
766 |
outline: 0;
|
767 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
768 |
}
|
769 |
|
770 |
-
.sek-module-inner .disabled.sek-btn, .sek-module-inner .sek-btn:disabled {
|
771 |
cursor: not-allowed;
|
772 |
opacity: .65;
|
773 |
box-shadow: none;
|
774 |
}
|
775 |
|
776 |
-
.sek-module-inner .sek-btn:active, .sek-module-inner .active.sek-btn {
|
777 |
background-image: none;
|
778 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
779 |
}
|
@@ -928,46 +928,9 @@ button.sek-btn,
|
|
928 |
font-size: 1em;
|
929 |
}
|
930 |
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
}
|
935 |
-
|
936 |
-
.sek-module-inner h1 {
|
937 |
-
font-size: 2.48em;
|
938 |
-
}
|
939 |
-
|
940 |
-
.sek-module-inner h2 {
|
941 |
-
font-size: 2.07em;
|
942 |
-
}
|
943 |
-
|
944 |
-
.sek-module-inner h3 {
|
945 |
-
font-size: 1.73em;
|
946 |
-
}
|
947 |
-
|
948 |
-
.sek-module-inner h4 {
|
949 |
-
font-size: 1.44em;
|
950 |
-
}
|
951 |
-
|
952 |
-
.sek-module-inner h5 {
|
953 |
-
font-size: 1.2em;
|
954 |
-
}
|
955 |
-
|
956 |
-
.sek-module-inner h6 {
|
957 |
-
font-size: 1em;
|
958 |
-
}
|
959 |
-
|
960 |
-
.sek-module-inner .sek-heading {
|
961 |
-
text-align: center;
|
962 |
-
margin: 0.6em 0;
|
963 |
-
display: block;
|
964 |
-
}
|
965 |
-
|
966 |
-
.sek-module-inner .sek-heading > a {
|
967 |
-
color: inherit;
|
968 |
-
font-size: inherit;
|
969 |
-
}
|
970 |
-
|
971 |
[data-sek-module-type="czr_divider_module"] {
|
972 |
text-align: center;
|
973 |
}
|
@@ -986,81 +949,23 @@ button.sek-btn,
|
|
986 |
font-size: 1rem;
|
987 |
}
|
988 |
|
|
|
|
|
|
|
989 |
.sek-module-inner .sek-spacer {
|
990 |
height: 20px;
|
991 |
}
|
992 |
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
.sek-module-inner .sek-btn {
|
998 |
-
background: #020202;
|
999 |
-
color: #ffffff;
|
1000 |
-
padding: 0.5em 1em;
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
.sek-module-inner .sek-btn i {
|
1004 |
-
margin: 0 8px;
|
1005 |
-
}
|
1006 |
-
|
1007 |
-
.sek-module-inner .sek-btn:hover, .sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:active {
|
1008 |
-
color: #ffffff;
|
1009 |
-
}
|
1010 |
-
|
1011 |
-
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
1012 |
-
text-decoration: none;
|
1013 |
-
}
|
1014 |
-
|
1015 |
-
.sek-btn-inner {
|
1016 |
-
display: flex;
|
1017 |
-
align-items: center;
|
1018 |
-
}
|
1019 |
-
|
1020 |
-
.sek-btn.box-shadow {
|
1021 |
-
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
1022 |
-
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
.sek-btn.box-shadow.push-effect:active {
|
1026 |
-
transform: translateY(2px);
|
1027 |
-
}
|
1028 |
-
|
1029 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
1030 |
text-decoration: underline;
|
1031 |
}
|
1032 |
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
.sek-module-inner .sek-social-icons-wrapper {
|
1038 |
-
text-align: center;
|
1039 |
-
}
|
1040 |
-
|
1041 |
-
.sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
1042 |
-
padding-right: 8px;
|
1043 |
-
}
|
1044 |
-
|
1045 |
-
.sek-module-inner .sek-social-icons-wrapper > li {
|
1046 |
-
display: inline-block;
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
.sek-module-inner .sek-social-icons-wrapper > li a {
|
1050 |
-
color: #707070;
|
1051 |
-
}
|
1052 |
-
|
1053 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
1054 |
-
font-size: 28px;
|
1055 |
-
line-height: 1.5em;
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
1059 |
-
-webkit-transition: all 0.2s ease-in-out;
|
1060 |
-
-o-transition: all 0.2s ease-in-out;
|
1061 |
-
transition: all 0.2s ease-in-out;
|
1062 |
-
}
|
1063 |
-
|
1064 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
1065 |
display: -webkit-box;
|
1066 |
display: -ms-flexbox;
|
309 |
opacity: 0;
|
310 |
}
|
311 |
|
312 |
+
.sek-overflow-hidden-while-animating {
|
313 |
+
overflow: hidden;
|
314 |
}
|
315 |
|
316 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
317 |
font-family: sans-serif;
|
318 |
}
|
319 |
|
734 |
color: #777;
|
735 |
}
|
736 |
|
737 |
+
.sek-module .sek-module-inner .sek-btn {
|
738 |
display: inline-block;
|
739 |
font-weight: normal;
|
740 |
line-height: 1.25em;
|
758 |
transition: all 0.2s ease-in-out;
|
759 |
}
|
760 |
|
761 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
762 |
text-decoration: none;
|
763 |
}
|
764 |
|
765 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
766 |
outline: 0;
|
767 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
768 |
}
|
769 |
|
770 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
771 |
cursor: not-allowed;
|
772 |
opacity: .65;
|
773 |
box-shadow: none;
|
774 |
}
|
775 |
|
776 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
777 |
background-image: none;
|
778 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
779 |
}
|
928 |
font-size: 1em;
|
929 |
}
|
930 |
|
931 |
+
/*************************************
|
932 |
+
* DIVIDER MODULE
|
933 |
+
*************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
[data-sek-module-type="czr_divider_module"] {
|
935 |
text-align: center;
|
936 |
}
|
949 |
font-size: 1rem;
|
950 |
}
|
951 |
|
952 |
+
/*************************************
|
953 |
+
* SPACER MODULE
|
954 |
+
*************************************/
|
955 |
.sek-module-inner .sek-spacer {
|
956 |
height: 20px;
|
957 |
}
|
958 |
|
959 |
+
/*************************************
|
960 |
+
* TINY MCE EDITOR MODULE
|
961 |
+
*************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
963 |
text-decoration: underline;
|
964 |
}
|
965 |
|
966 |
+
/*************************************
|
967 |
+
* SHORTCODE MODULE
|
968 |
+
*************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
969 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
970 |
display: -webkit-box;
|
971 |
display: -ms-flexbox;
|
assets/front/css/sek-base-light.css.map
CHANGED
@@ -26,14 +26,11 @@
|
|
26 |
"../scss/_2_2_buttons.scss",
|
27 |
"../scss/_2_3_wpspecifics.scss",
|
28 |
"../scss/_3_2_modules_light.scss",
|
29 |
-
"../scss/modules/_heading.scss",
|
30 |
"../scss/modules/_divider.scss",
|
31 |
"../scss/modules/_spacer.scss",
|
32 |
-
"../scss/modules/_button.scss",
|
33 |
"../scss/modules/_tiny_mce_editor.scss",
|
34 |
-
"../scss/modules/_social_icons.scss",
|
35 |
"../scss/modules/_shortcode.scss"
|
36 |
],
|
37 |
"names": [],
|
38 |
-
"mappings": "AWEA,gFAAgF;AAChF;gFACgF;AAIhF,AAGE,gBAHc,CAGd,CAAC;AAHH,gBAAgB,CAId,CAAC,AAAA,QAAQ;AAJX,gBAAgB,CAKd,CAAC,AAAA,OAAO,CAAC;EACP,UAAU,EAAE,UAAU;CACvB;;AAPH,AASE,gBATc,CASd,IAAI,EATN,gBAAgB,CASR,MAAM,EATd,gBAAgB,CASA,MAAM,EATtB,gBAAgB,CASQ,MAAM;AAT9B,gBAAgB,CAUd,EAAE,EAVJ,gBAAgB,CAUV,EAAE,EAVR,gBAAgB,CAUN,EAAE,EAVZ,gBAAgB,CAUF,EAAE,EAVhB,gBAAgB,CAUE,EAAE,EAVpB,gBAAgB,CAUM,EAAE,EAVxB,gBAAgB,CAUU,CAAC,EAV3B,gBAAgB,CAUa,UAAU,EAVvC,gBAAgB,CAUyB,GAAG;AAV5C,gBAAgB,CAWd,CAAC,EAXH,gBAAgB,CAWX,IAAI,EAXT,gBAAgB,CAWL,OAAO,EAXlB,gBAAgB,CAWI,OAAO,EAX3B,gBAAgB,CAWa,GAAG,EAXhC,gBAAgB,CAWkB,IAAI,EAXtC,gBAAgB,CAWwB,IAAI;AAX5C,gBAAgB,CAYd,GAAG,EAZL,gBAAgB,CAYT,GAAG,EAZV,gBAAgB,CAYJ,EAAE,EAZd,gBAAgB,CAYA,GAAG,EAZnB,gBAAgB,CAYK,GAAG,EAZxB,gBAAgB,CAYU,GAAG,EAZ7B,gBAAgB,CAYe,CAAC,EAZhC,gBAAgB,CAYkB,CAAC,EAZnC,gBAAgB,CAYqB,IAAI;AAZzC,gBAAgB,CAad,KAAK,EAbP,gBAAgB,CAaP,MAAM,EAbf,gBAAgB,CAaC,MAAM,EAbvB,gBAAgB,CAaS,GAAG,EAb5B,gBAAgB,CAac,GAAG,EAbjC,gBAAgB,CAamB,EAAE,EAbrC,gBAAgB,CAauB,GAAG;AAb1C,gBAAgB,CAcd,CAAC,EAdH,gBAAgB,CAcX,CAAC,EAdN,gBAAgB,CAcR,CAAC,EAdT,gBAAgB,CAcL,MAAM;AAdjB,gBAAgB,CAed,EAAE,EAfJ,gBAAgB,CAeV,EAAE,EAfR,gBAAgB,CAeN,EAAE,EAfZ,gBAAgB,CAeF,EAAE,EAfhB,gBAAgB,CAeE,EAAE,EAfpB,gBAAgB,CAeM,EAAE;AAfxB,gBAAgB,CAgBd,QAAQ,EAhBV,gBAAgB,CAgBJ,IAAI,EAhBhB,gBAAgB,CAgBE,KAAK,EAhBvB,gBAAgB,CAgBS,MAAM;AAhB/B,gBAAgB,CAiBd,KAAK,EAjBP,gBAAgB,CAiBP,OAAO,EAjBhB,gBAAgB,CAiBE,KAAK,EAjBvB,gBAAgB,CAiBS,KAAK,EAjB9B,gBAAgB,CAiBgB,KAAK,EAjBrC,gBAAgB,CAiBuB,EAAE,EAjBzC,gBAAgB,CAiB2B,EAAE,EAjB7C,gBAAgB,CAiB+B,EAAE;AAjBjD,gBAAgB,CAkBd,OAAO,EAlBT,gBAAgB,CAkBL,KAAK,EAlBhB,gBAAgB,CAkBE,MAAM,EAlBxB,gBAAgB,CAkBU,OAAO,EAlBjC,gBAAgB,CAkBmB,KAAK;AAlBxC,gBAAgB,CAmBd,MAAM,EAnBR,gBAAgB,CAmBN,UAAU,EAnBpB,gBAAgB,CAmBM,MAAM,EAnB5B,gBAAgB,CAmBc,MAAM,EAnBpC,gBAAgB,CAmBsB,MAAM;AAnB5C,gBAAgB,CAoBd,IAAI,EApBN,gBAAgB,CAoBR,GAAG,EApBX,gBAAgB,CAoBH,MAAM,EApBnB,gBAAgB,CAoBK,IAAI,EApBzB,gBAAgB,CAoBW,OAAO,EApBlC,gBAAgB,CAoBoB,OAAO;AApB3C,gBAAgB,CAqBd,IAAI,EArBN,gBAAgB,CAqBR,IAAI,EArBZ,gBAAgB,CAqBF,KAAK,EArBnB,gBAAgB,CAqBK,KAAK,CAAC;EACvB,MAAM,EAAE,IAAI;EACZ,SAAS,EAAE,OAAO;EAClB,WAAW,EAAE,OAAO;EACpB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,OAAO;CACpB;;AA5BH,AA8BE,gBA9Bc,CA8Bd,UAAU,AAAA,QAAQ;AA9BpB,gBAAgB,CA+Bd,UAAU,AAAA,OAAO,EA/BnB,gBAAgB,CA+BI,CAAC,AAAA,OAAO,EA/B5B,gBAAgB,CA+Bc,CAAC,AAAA,MAAM,CAAC;EAClC,OAAO,EAAE,EAAE;CACZ;;AAjCH,AAkCE,gBAlCc,CAkCd,EAAE,EAlCJ,gBAAgB,CAkCV,EAAE,CAAC;EACL,UAAU,EAAE,IAAI;CACjB;;AApCH,AAsCE,gBAtCc,CAsCd,GAAG,CAAC;EACF,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,MAAM;EACtB,YAAY,EAAE,IAAI;EAClB,OAAO,EAAE,MAAM;CAChB;;AA3CH,AA4CE,gBA5Cc,CA4Cd,GAAG,AAAA,IAAK,CAAA,KAAK,EAAE;EACb,QAAQ,EAAE,MAAM;CACjB;;AA9CH,AAkDE,gBAlDc,CAkDd,KAAK,EAlDP,gBAAgB,CAkDP,MAAM,EAlDf,gBAAgB,CAkDC,MAAM,CAAC;EACpB,SAAS,EAAE,IAAI;CAChB;;AAEH,gFAAgF;AAChF;gFACgF;AC5DhF,kEAAkE;CAClE,AAAA,AAAA,cAAC,CAAe,UAAU,AAAzB,EAA2B;EAC1B,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;CAChB;;AAED,qDAAqD;AACrD,AAAA,YAAY,EAAE,WAAW,EAAE,WAAW,CAAC;EACrC,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;CACpB;;AAED,AAAA,iBAAiB,EAAE,iBAAiB,CAAC;EACnC,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,QAAQ;EACd,SAAS,EAAE,IAAI;CAChB;;AAED;;EAEE;AACF,8BAA8B;AAW9B,4BAA4B;AAQ5B,2BAA2B;AAC3B,AAAA,iBAAiB,CAAC;EAChB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;CACvB;;AACD,AAAA,WAAW,CAAC;EACV,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,IAAI;EAEX,SAAS,EAAE,IAAI;CAChB;;AAKD;;EAEE;CACF,AAAA,AAAA,kBAAC,CAAmB,MAAM,AAAzB,EAA2B,oBAAoB,CAAC;EAC7C,aAAa,EAAE,CAAC;EAChB,YAAY,EAAE,CAAC;CAClB;;AAKD,wBAAwB;AACxB;;;;;GAKG;AACH,kGAAkG;AAqClG,AAAA,uBAAuB,CAAC;EACtB,UAAU,EAAE,MAAM;CACnB;;AACD,AAAA,uBAAuB,CAAC,eAAe,CAAC;EACtC,SAAS,EAAE,OAAO;EAClB,KAAK,EAAE,OAAO;CACf;;AAGD,gCAAgC;AAchC,qCAAqC;AACrC,6CAA6C;AAC7C,AAAA,uBAAuB,CAAC;EACpB,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,gBAAgB;EACtB,MAAM,EAAE,GAAG;EACX,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,CAAC;EACV,QAAQ,EAAE,mBAAmB;EAC7B,KAAK,EAAE,GAAG;EACV,SAAS,EAAE,iBAAiB;CAC/B;;AACD,AAAA,YAAY,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,SAAS,EAAE,UAAU;CACxB;;AACD,8CAA8C;AAE9C,iCAAiC;AACjC,AAAA,WAAW,CAAC,gBAAgB,CAAC;EAE3B,OAAO,EAAE,YAAY;CACtB;;AACD,AAAA,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC;EAC/B,KAAK,EAAC,IAAI;EACV,QAAQ,EAAC,QAAQ;EACjB,GAAG,EAAE,GAAG;EACR,cAAc,EAAE,eAAe;EAC/B,MAAM,EAAE,eAAe;EACvB,cAAc,EAAE,IAAI;EACpB,MAAM,EAAE,IAAI;EACZ,kBAAkB,EAAE,oBAAoB;EACxC,eAAe,EAAE,qBAAqB;EACtC,cAAc,EAAE,qBAAqB;EACrC,aAAa,EAAE,qBAAqB;EACpC,UAAU,EAAE,oBAAoB;EAChC,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;CACjB;;AACD,AAAA,WAAW,CAAC,gBAAgB,AAAA,MAAM,CAAC,GAAG,CAAC;EACrC,cAAc,EAAE,IAAI;EACpB,MAAM,EAAE,IAAI;EACZ,cAAc,EAAE,IAAI;EACpB,MAAM,EAAE,IAAI;CACb;;AACD,AAAA,WAAW,CAAC,gBAAgB,CAAC,2BAA2B,CAAC;EACvD,YAAY,EAAC,IACf;CAAC;;CAID,AAAA,AAAA,eAAC,CAAgB,MAAM,AAAtB,EAAwB;EACvB,eAAe,EAAE,KAAK;EACtB,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,OAAO;CAC7B;;CACD,AAAA,AAAA,cAAC,CAAe,UAAU,AAAzB,GAA2B,AAAA,oBAAC,CAAqB,MAAM,AAA3B,EAA6B;EAExD,qBAAqB,EAAE,KAAK;EAC5B,eAAe,EAAE,KAAK;CACvB;;CAED,AAAA,AAAA,cAAC,CAAe,UAAU,AAAzB,EAA2B,WAAW,CAAC;EACtC,QAAQ,EAAE,QAAQ;CACnB;;AAI2C,SAAC,EAAlC,0BAA0B,EAAC,KAAK;EACvC,AAAA,IAAI,EAAC,AAAA,cAAC,CAAe,UAAU,AAAzB,GAA2B,AAAA,oBAAC,CAAqB,MAAM,AAA3B,GAA8B,IAAI,EAAC,AAAA,cAAC,CAAe,UAAU,AAAzB,GAA2B,AAAA,iBAAC,CAAkB,MAAM,AAAxB,EAA0B;IACxH,qBAAqB,EAAE,MAAM;GAChC;;;CAKL,AAAA,AAAA,cAAC,CAAe,UAAU,AAAzB,GAA2B,AAAA,cAAC,AAAA,EAAgB;EAC3C,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,2BAA2B,EAAE,mBAAmB;EAChD,sBAAsB,EAAE,mBAAmB;EAC3C,mBAAmB,EAAE,mBAAmB;CACzC;;AAKD,AAAA,WAAW,CAAC,iBAAiB,CAAC,QAAQ,AAAA,eAAe,GAAG,EAAE,CAAC;EACvD,YAAY,EAAE,IAAI;CACrB;;AACD,AAAA,WAAW,CAAC,iBAAiB,CAAC,eAAe,CAAC,EAAE;AAChD,WAAW,CAAC,iBAAiB,CAAC,eAAe,CAAC,EAAE,CAAC;EAC7C,WAAW,EAAE,CAAC;EACd,aAAa,EAAE,CAAC;CACnB;;AACD,AAAA,WAAW,CAAC,iBAAiB,CAAC,eAAe,CAAC,aAAa,CAAC;EACxD,aAAa,EAAE,IAAI;CACtB;;CAGD,AAAA,AAAA,cAAC,AAAA,CAAe,qBAAqB,CAAC;EACpC,kBAAkB,EAAE,mBAAmB,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG;EACxD,eAAe,EAAE,mBAAmB,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG;EACrD,UAAU,EAAE,mBAAmB,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG;CACjD;;AACD,AAAA,mBAAmB,EAAC,AAAA,cAAC,AAAA,CAAe,qBAAqB,CAAC;EACxD,kBAAkB,EAAE,mBAAmB,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAA,UAAU;EAClE,eAAe,EAAE,mBAAmB,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAA,UAAU;EAC/D,UAAU,EAAE,mBAAmB,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAA,UAAU;CAC3D;;CAID,AAAA,AAAA,cAAC,AAAA,EAAe,AAAA,qBAAC,AAAA,EAAuB;EACtC,QAAQ,EAAE,QAAQ;CACnB;;CAED,AAAA,AAAA,cAAC,AAAA,EAAgB,KAAK;CACtB,AAAA,cAAC,AAAA,EAAgB,MAAM;CACvB,AAAA,cAAC,AAAA,EAAgB,MAAM;CACvB,AAAA,cAAC,AAAA,EAAgB,KAAK,CAAC;EACrB,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,CAAC;EACd,MAAM,EAAE,IAAI;CACb;;CACD,AAAA,AAAA,cAAC,AAAA,EAAgB,iBAAiB,CAAC;EACjC,WAAW,EAAE,CAAC;CACf;;CACD,AAAA,AAAA,cAAC,AAAA,EAAgB,qBAAqB;CACtC,AAAA,cAAC,AAAA,EAAgB,eAAe,CAAC;EAC/B,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,QAAQ,EAAE,QAAQ,CAAA,UAAU;EAC5B,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,GAAG;CACf;;CACD,AAAA,AAAA,cAAC,AAAA,EAAgB,qBAAqB,CAAC;EACrC,kBAAkB,EAAE,mBAAmB;EACvC,aAAa,EAAE,mBAAmB;EAClC,UAAU,EAAE,mBAAmB;EAC/B,cAAc,EAAE,IAAI;EACpB,OAAO,EAAE,CAAC;CACX;;CACD,AAAA,AAAA,cAAC,AAAA,EAAgB,qBAAqB,AAAA,eAAe,CAAC;EACpD,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,MAAM;CACnB;;CACD,AAAA,AAAA,cAAC,AAAA,EAAgB,6BAA6B,GAAE,AAAA,cAAC,AAAA,EAAgB,6BAA6B,CAAC;EAC7F,SAAS,EAAE,IAAI;CAChB;;CACD,AAAA,AAAA,cAAC,AAAA,EAAgB,6BAA6B,GAAE,AAAA,cAAC,AAAA,EAAgB,2BAA2B,GAAG,AAAA,cAAC,AAAA,EAAgB,6BAA6B,CAAC;EAC5I,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,iBAAiB,EAAE,gBAAgB,CAAC,gBAAgB;EAChD,aAAa,EAAE,gBAAgB,CAAC,gBAAgB;EAC5C,SAAS,EAAE,gBAAgB,CAAC,gBAAgB;CACrD;;CACD,AAAA,AAAA,cAAC,AAAA,EAAgB,2BAA2B,CAAC;EAC3C,aAAa,EAAE,KAAK;EACjB,UAAU,EAAE,KAAK;CACrB;;AAGD,AAAA,iBAAiB,CAAC,kBAAkB,CAAC;EACjC,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,GAAG,CAAC,KAAK,CAAC,yBAAyB;EAC3C,UAAU,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,qBAAqB;EAC/C,kBAAkB,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,qBAAqB;EACvD,gBAAgB,EAAE,IAAI;EACtB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,OAAO;EACd,UAAU,EAAE,wBAAwB;CACvC;;AASD,MAAM,EAAE,SAAS,EAAE,KAAK;EACtB,AAAA,mBAAmB,EAAC,AAAA,2BAAC,CAA4B,OAAO,AAAnC,EAAqC,qBAAqB,CAAC;IAC9E,OAAO,EAAE,IAAI;GACd;;;AAIH,AAAA,sBAAsB,CAAC;EAAE,OAAO,EAAE,CAAC;CAAG;;AACtC,AAAA,mCAAmC,EAAC,AAAA,cAAC,AAAA,EAAgB;EAAE,UAAU,EAAE,MAAM;CAAG;;AC/U5E,AAAA,iBAAiB,EQGjB,iBAAiB,CAkDjB,QAAQ,CRrDwB;EAC9B,WAAW,EX2GE,UAAU;CW1GxB;;ACGC,AAAA,cAAc,CAAe;ELA7B,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,IAAwB;EACvC,YAAY,EAAE,IAAwB;EACtC,YAAY,EAAE,IAAI;EAClB,WAAW,EAAE,IAAI;CKDhB;;AVoDC,MAAM,EAAE,SAAS,EAAE,KAAK;EUvD1B,AAAA,cAAc,CAAe;ILWzB,SAAS,EPoDT,KAAK;GY5DR;;;AVoDC,MAAM,EAAE,SAAS,EAAE,KAAK;EUvD1B,AAAA,cAAc,CAAe;ILWzB,SAAS,EPqDT,KAAK;GY7DR;;;AVoDC,MAAM,EAAE,SAAS,EAAE,KAAK;EUvD1B,AAAA,cAAc,CAAe;ILWzB,SAAS,EPsDT,KAAK;GY9DR;;;AVoDC,MAAM,EAAE,SAAS,EAAE,MAAM;EUvD3B,AAAA,cAAc,CAAe;ILWzB,SAAS,EPuDT,MAAM;GY/DT;;;AASD,AAAA,oBAAoB,CAAe;ELZnC,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,IAAwB;EACvC,YAAY,EAAE,IAAwB;EACtC,YAAY,EAAE,IAAI;EAClB,WAAW,EAAE,IAAI;CKUhB;;AAQD,AAAA,QAAQ,CAAe;ELLvB,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,KAAyB;EACvC,WAAW,EAAE,KAAyB;CKIrC;;AACD,AAAA,yBAAyB,CAAe;EACtC,aAAa,EAAE,CAAC;EAChB,YAAY,EAAE,CAAC;EACf,UAAU,EAAE,MAAM;CACnB;;AAID,AAAA,eAAe,CAAe;EAC5B,YAAY,EAAE,CAAC;EACf,WAAW,EAAE,CAAC;CAOf;;AATD,AAIE,eAJa,GAIX,QAAQ;AAJZ,eAAe,IAKX,AAAA,KAAC,EAAO,UAAU,AAAjB,EAAiC;EAClC,aAAa,EAAE,CAAC;EAChB,YAAY,EAAE,CAAC;CAChB;;AJ5BD,AAVF,UAUY,EAAV,UAAU,EAAV,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,WAAW,EAAX,YAAY,EAKd,aAAa;AACb,QAAQ;AACR,aAAa,CAjBA;EACX,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,GAAG;EACf,aAAa,EAAE,IAAa;EAC5B,YAAY,EAAE,IAAa;CAC5B;;AAgBD,AAAA,aAAa,CAAe;EDW5B,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAA4B;EAItC,SAAS,EAAE,IAA4B;CCbtC;;AAED,AAAA,QAAQ,CAAe;EACrB,UAAU,EAAE,CAAC;EACb,SAAS,EAAE,CAAC;EACZ,SAAS,EAAE,IAAI;CAChB;;AACD,AAAA,aAAa,CAAe;EAC1B,IAAI,EAAE,QAAQ;EACd,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;CAChB;;ANiBC,MAAM,EAAE,SAAS,EAAE,KAAK;EMXpB,AAAA,UAAU,CAAgC;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,MAA4B;IAItC,SAAS,EAAE,MAA4B;GCMhC;EAFD,AAAA,UAAU,CAAgC;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,SAA4B;IAItC,SAAS,EAAE,SAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,OAA4B;IAItC,SAAS,EAAE,OAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,KAA4B;IAItC,SAAS,EAAE,KAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,OAA4B;IAItC,SAAS,EAAE,OAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,OAA4B;IAItC,SAAS,EAAE,OAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,OAA4B;IAItC,SAAS,EAAE,OAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,OAA4B;IAItC,SAAS,EAAE,OAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,OAA4B;IAItC,SAAS,EAAE,OAA4B;GCMhC;EAFD,AAAA,WAAW,CAA+B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,GAA4B;IAItC,SAAS,EAAE,GAA4B;GCMhC;EAFD,AAAA,YAAY,CAA8B;IDRhD,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,IAA4B;IAItC,SAAS,EAAE,IAA4B;GCMhC;EAGH,AAAA,gBAAgB,CAAe;IAAE,KAAK,EAAE,EAAE;GAAI;EAE9C,AAAA,eAAe,CAAe;IAAE,KAAK,ERyBb,EAAE;GQzB6B;EAGrD,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,YAAY,CAAmB;IAAE,KAAK,EAD3B,CAAC;GACkC;EAA9C,AAAA,aAAa,CAAkB;IAAE,KAAK,EAD3B,EAAC;GACkC;EAA9C,AAAA,aAAa,CAAkB;IAAE,KAAK,EAD3B,EAAC;GACkC;EAA9C,AAAA,aAAa,CAAkB;IAAE,KAAK,EAD3B,EAAC;GACkC;;;AK1DtD,AAAA,SAAS,CAAe;ERKlB,UAAU,ELwFc,OAAO,CAAC,KAAI,CAAC,MAAM;CavFhD;;ARGC,MAAM,CAAC,MAAM,MAAM,sBAAsB,EAAE,MAAM;EQTnD,AAAA,SAAS,CAAe;IRUpB,UAAU,EAAE,IAAI;GQJnB;;;AAND,AAGE,SAHO,AAGN,IAAK,CAAA,KAAK,EAAE;EACX,OAAO,EAAE,CAAC;CACX;;AAGH,AACE,aADW,AACV,IAAK,CANA,KAAK,EAME;EACX,OAAO,EAAE,IAAI;CACd;;AAEH;;;;;;GAMG;AEpBH,ATCE,aSDW,ATCV,OAAO,CAAC;EACP,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,EAAE;CACZ;;AUDH,AAAA,YAAY,CAAe;EbEzB,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,CAAC;EACV,QAAQ,EAAE,MAAM;EAChB,IAAI,EAAE,gBAAgB;EACtB,WAAW,EAAE,MAAM;EACnB,MAAM,EAAE,CAAC;CaPV;;AAED,AbeE,sBafoB,AbenB,OAAO,EafV,sBAAsB,AbgBnB,MAAM,CAAC;EACN,QAAQ,EAAE,MAAM;EAChB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,QAAQ,EAAE,OAAO;EACjB,IAAI,EAAE,IAAI;EACV,WAAW,EAAE,MAAM;CACpB;;Ac1BH,AAAA,UAAU,CAAe;EACxB,QAAQ,EAAE,QAAQ;CAalB;;AAdD,AAEC,UAFS,AAER,QAAQ,CAAC;EACT,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;CACX;;AALF,AAMC,UANS,CAMT,gBAAgB;AANjB,UAAU,CAOT,MAAM,CAAC;EACN,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;CACP;;AClBF,AAAA,gBAAgB,CAAU;EACtB,SAAS,EAAE,UAAU;CACxB;;AAGD,AAAA,eAAe,CAAC;EAAE,UAAU,EAAE,gBAAgB;CAAI;;AAClD,AAAA,cAAc,CAAC;EAAE,UAAU,EAAE,eAAe;CAAI;;AAIhD,AACI,WADO,CAAC,iBAAiB,CACzB,EAAE,CAAC;EACD,UAAU,EAAE,IAAI;CACjB;;AAHL,AAII,WAJO,CAAC,iBAAiB,CAIzB,EAAE,CAAC;EACD,UAAU,EAAE,OAAO;CAMpB;;AAXL,AAOQ,WAPG,CAAC,iBAAiB,CAIzB,EAAE,GAEI,EAAE,AACH,QAAQ,CAAC;EACR,OAAO,EAAE,IAAI;CACd;;AATT,AAYI,WAZO,CAAC,iBAAiB,CAYzB,EAAE,EAZN,WAAW,CAAC,iBAAiB,CAYrB,EAAE,CAAC;EACL,OAAO,EAAE,CAAC;EACV,WAAW,EAAE,GAAG;EAKZ,MAAM,EAAE,iBAAiB;CAK9B;;AAxBL,AAqBM,WArBK,CAAC,iBAAiB,CAYzB,EAAE,GASI,EAAE,EArBZ,WAAW,CAAC,iBAAiB,CAYrB,EAAE,GASA,EAAE,CAAC;EACL,OAAO,EAAE,YAAY;CACtB;;AAvBP,AAyBI,WAzBO,CAAC,iBAAiB,CAyBzB,EAAE,GAAG,EAAE,EAzBX,WAAW,CAAC,iBAAiB,CAyBhB,EAAE,GAAG,EAAE,CAAC;EACb,aAAa,EAAE,CAAC;CACnB;;AAML,AAyBE,iBAzBe,CAyBf,GAAG,CAAC,IAAI,EAzBV,iBAAiB,CAyBL,EAAE,CAAC;EdfX,UAAU,EcgBU,UAAU;EAC9B,SAAS,EAAE,OAAO;EAClB,WAAW,EAAE,mBAAmB;EAChC,UAAU,EAAE,WAAW;EACvB,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,CAAC;EACV,WAAW,ElBkCC,SAAS;CkBjCtB;;AAjCH,AAkCE,iBAlCe,CAkCf,GAAG,CAAC;EACF,UAAU,ElBwBG,OAAO;EkBvBpB,OAAO,EAAE,KAAmB;EAC5B,SAAS,EAAE,MAAM;EACjB,WAAW,EAAE,mBAAmB;EAChC,KAAK,ElBsBQ,OAAO;EkBrBpB,WAAW,ElB0BC,SAAS,CkB1BM,UAAU;CACtC;;AAzCH,AA2CE,iBA3Ce,CA2Cf,MAAM,CAAC;EAAE,UAAU,EAAE,MAAM;CAAI;;AA3CjC,AA4CE,iBA5Ce,CA4Cf,UAAU,CAAC;EAAE,UAAU,EAAC,MAAM;CAAI;;AA5CpC,AA6CE,iBA7Ce,CA6Cf,IAAI,CAAC;EACH,KAAK,ElBeQ,OAAO;EkBdpB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;CACtB;;AAnDH,AAqDE,iBArDe,CAqDf,OAAO,EArDT,iBAAiB,CAqDN,IAAI,EArDf,iBAAiB,CAqDA,IAAI,EArDrB,iBAAiB,CAqDM,GAAG,EArD1B,iBAAiB,CAqDW,IAAI,EArDhC,iBAAiB,CAqDiB,eAAe,AAAA,iBAAiB,CAAC,KAAK,CAAC,EAAE,AAAA,UAAW,CAAA,GAAG,GArDzF,iBAAiB,CAqD2E,KAAK,CAAC,uCAAuC,CAAC;EACtI,gBAAgB,EAAE,OAAO;CAC1B;;AAvDH,AAwDE,iBAxDe,CAwDf,GAAG,CAAC;EACF,MAAM,EAAE,OAAO;CAChB;;AA1DH,AA2DE,iBA3De,CA2Df,GAAG,EA3DL,iBAAiB,CA2DV,GAAG,CAAC;EACP,SAAS,EAAE,GAAG;EACd,WAAW,EAAE,CAAC;EACd,QAAQ,EAAE,QAAQ;EAClB,cAAc,EAAE,QAAQ;CACzB;;AA4BH,AApBA,iBAoBiB,CAAC,KAAK,CApBX;EACV,KAAK,EAAE,IAAI;EACX,eAAe,EAAE,QAAQ;EAIzB;;;;;KAKG;CACJ;;AhBtDG,MAAM,EAAE,SAAS,EAAE,QAAQ;EgB8D/B,AApBA,iBAoBiB,CAAC,KAAK,CApBX;IAIR,YAAY,EAAE,KAAK;GAQtB;;;AAQD,AAPA,iBAOiB,CAAC,KAAK,AAEpB,IAAK,EAAA,AAAA,EAAC,EAAD,WAAC,AAAA,EAAiB,IAAK,CAAA,uBAAuB,CAAC,IAAK,CAAA,oBAAoB,EATnE;EACT,MAAM,EAAE,GAAG,CAAC,KAAK,ClB5BJ,OAAO;CkBgCvB;;AAED,AALI,iBAKa,CAAC,KAAK,AAEpB,IAAK,EAAA,AAAA,EAAC,EAAD,WAAC,AAAA,EAAiB,IAAK,CAAA,uBAAuB,CAAC,IAAK,CAAA,oBAAoB,EAP5E,EAAE,CAAC;EAAE,cAAc,EAAE,SAAS;EAAE,cAAc,EAAE,GAAG;EAAE,WAAW,ElBtBrD,UAAU;CkBsB6D;;AAKtF,AAJI,iBAIa,CAAC,KAAK,AAEpB,IAAK,EAAA,AAAA,EAAC,EAAD,WAAC,AAAA,EAAiB,IAAK,CAAA,uBAAuB,CAAC,IAAK,CAAA,oBAAoB,EAP5E,EAAE,EAKN,iBAAiB,CAAC,KAAK,AAEpB,IAAK,EAAA,AAAA,EAAC,EAAD,WAAC,AAAA,EAAiB,IAAK,CAAA,uBAAuB,CAAC,IAAK,CAAA,oBAAoB,EANxE,EAAE,CAAC;EAAE,SAAS,EAAE,MAAM;EAAG,OAAO,ElBNrB,MAAU;EkBMgC,MAAM,EAAE,GAAG,CAAC,KAAK,ClB9B7D,OAAO;CkB8BsE;;AAI9F,AAHI,iBAGa,CAAC,KAAK,AAEpB,IAAK,EAAA,AAAA,EAAC,EAAD,WAAC,AAAA,EAAiB,IAAK,CAAA,uBAAuB,CAAC,IAAK,CAAA,oBAAoB,EANxE,EAAE,CACH;EAAE,KAAK,ElB7BG,IAAI;CkB6BS;;ACjI9B,AAAA,iBAAiB,CAkDjB,QAAQ,CAlDoB;EAC1B,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,wBAAwB;EACxB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,SAAS;EACrB,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,qBAAqB;EAC7B,OAAO,EAAE,SAAS;EAClB,aAAa,EAAE,GAAG;EAClB,YAAY,EAAE,GAAG;EACjB,YAAY,EAAE,KAAK;EACnB,SAAS,EAAE,GAAG;EAEd,MAAM,EAAE,OAAO;EACf,eAAe,EAAE,IAAI;EACrB,cAAc,EAAE,IAAI;EACpB,kBAAkB,EAAE,oBAAoB;EACxC,aAAa,EAAE,oBAAoB;EACnC,UAAU,EAAE,oBAAoB;CAyBjC;;AA/CD,AfII,iBeJa,CAkDjB,QAAQ,Af9CH,MAAM,EeJX,iBAAiB,CAkDjB,QAAQ,Af7CH,MAAM,CAAC;EeqBR,eAAe,EAAE,IAAI;CfnBpB;;AePL,AA4BE,iBA5Be,CAkDjB,QAAQ,Af9CH,MAAM,EeJX,iBAAiB,CA6Bd,MAAM,AAqBT,QAAQ,CArBE;EACN,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,uBAAuB;CAC9C;;AAhCH,AAmCE,iBAnCe,CAmCd,SAAS,AAeZ,QAAQ,EAlDR,iBAAiB,CAkDjB,QAAQ,AAdL,SAAS,CAAC;EACT,MAAM,EnB+CU,WAAW;EmB9C3B,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;CACjB;;AAxCH,AA0CE,iBA1Ce,CAkDjB,QAAQ,AARL,OAAO,EA1CV,iBAAiB,CA2Cd,OAAO,AAOV,QAAQ,CAPG;EACP,gBAAgB,EAAE,IAAI;EACtB,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,uBAAuB;CAC9C;;AASH,AAAA,CAAC,AAAA,QAAQ,AAAA,SAAS;AAClB,QAAQ,CAAA,AAAA,QAAC,AAAA,EAAU,CAAC,AAAA,QAAQ,CAAC;EAC3B,cAAc,EAAE,IAAI;CACrB;;AAED,AACE,gBADc,CACd,MAAM;AADR,gBAAgB,EAEd,AAAA,IAAC,CAAK,QAAQ,AAAb;AAFH,gBAAgB,EAGd,AAAA,IAAC,CAAK,OAAO,AAAZ;AAHH,gBAAgB,EAId,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACd,kBAAkB,EAAE,MAAM;CAC3B;;AANH,AAQE,gBARc,CAQd,MAAM,AAAA,kBAAkB;AAR1B,gBAAgB,EASd,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,kBAAkB;AATnC,gBAAgB,EAUd,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,kBAAkB;AAVlC,gBAAgB,EAWd,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,kBAAkB,CAAC;EAChC,OAAO,EAAE,CAAC;EACV,YAAY,EAAE,IAAI;CAOnB;;AAGH,AAIE,MAJI,AAIH,QAAQ;CAHX,AAAA,IAAC,CAAK,QAAQ,AAAb,CAGE,QAAQ;CAFX,AAAA,IAAC,CAAK,OAAO,AAAZ,CAEE,QAAQ;CADX,AAAA,IAAC,CAAK,QAAQ,AAAb,CACE,QAAQ,CAAC;EACR,kBAAkB,EAAE,eAAe;EACnC,UAAU,EAAE,WAAW;CACxB;;CC1FH,AAAA,AAAA,cAAC,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAAC;EAgC1C,sBAAsB;CAmEvB;;CAnGD,AAAA,AACG,cADF,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CACxC,WAAW,CAAC,UAAU,CAAC;EACtB,KAAK,EAAE,OAAO;EACd,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,IAAI;EACf,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,0DAA0D;EAC1D,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;CACjB;;CAXH,AAAA,AAYE,cAZD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAYzC,MAAM,CAAC;EACL,OAAO,EAAE,KAAK;CACf;;CAdH,AAAA,AAeE,cAfD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAezC,YAAY,GAfd,AAAA,cAAC,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAe3B,YAAY,CAAC,GAAG,CAAC;EAC7B,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;CACnB;;CAlBH,AAAA,AAmBE,cAnBD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAmBzC,UAAU,CAAC;EACT,KAAK,EAAE,IAAI;CACZ;;CArBH,AAAA,AAsBE,cAtBD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAsBzC,WAAW,CAAC;EACV,KAAK,EAAE,KAAK;CACb;;CAxBH,AAAA,AAyBE,cAzBD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAyBzC,UAAU,GAzBZ,AAAA,cAAC,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAyB7B,YAAY,GAzB1B,AAAA,cAAC,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAyBf,UAAU,GAzBtC,AAAA,cAAC,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAyBH,WAAW,GAzBnD,AAAA,cAAC,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAyBU,UAAU,CAAC;EAC5D,UAAU,EAAE,MAAM;EAClB,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,MAAM;EACrB,WAAW,EAAE,IAAI;CAClB;;CA9BH,AAAA,AAiCE,cAjCD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,EAiCzC,AAAA,IAAC,CAAD,MAAC,AAAA,CAAY,YAAY,CAAC;EACxB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,IAAI;EAIX,KAAK,EAAC,KAAK;CAMd;;AlBwBC,MAAM,EAAE,SAAS,EAAE,QAAQ;GkBtE/B,AAAA,AAiCE,cAjCD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,EAiCzC,AAAA,IAAC,CAAD,MAAC,AAAA,CAAY,YAAY,CAAC;IAWtB,KAAK,EAAE,IAAI;GAEd;;;CA9CH,AAAA,AAgDE,cAhDD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,EAgDzC,AAAA,IAAC,CAAD,MAAC,AAAA,CAAY,YAAY,CAAC,KAAK,CAAC;EAC9B,QAAQ,EAAE,QAAQ;EAClB,gBAAgB,EAAE,CAAC;EACnB,QAAQ,EAAE,CAAC;EACX,IAAI,EAAE,CAAC;EACP,YAAY,EAAE,GAAG;CAClB;;CAtDH,AAAA,AAwDE,cAxDD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,EAwDzC,AAAA,IAAC,CAAD,MAAC,AAAA,CAAY,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC;EACpC,YAAY,EAAE,GAAG;EACjB,WAAW,EAAE,IAAI;EACjB,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,KAAK;EAChB,SAAS,EAAE,IAAI;CAKhB;;AlBIC,MAAM,EAAE,SAAS,EAAE,QAAQ;GkBtE/B,AAAA,AAwDE,cAxDD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,EAwDzC,AAAA,IAAC,CAAD,MAAC,AAAA,CAAY,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC;IAQhC,SAAS,EAAE,IAAI;GAEpB;;;CAlEH,AAAA,AAoEE,cApED,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,EAoEzC,AAAA,IAAC,CAAD,MAAC,AAAA,CAAY,YAAY,CAAC,KAAK,CAAA,AAAA,IAAC,CAAD,MAAC,AAAA,EAAa;EAC3C,WAAW,EAAE,IAAI;EACjB,eAAe;CAChB;;CAvEH,AAAA,AAyEE,cAzED,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAyEzC,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAc;EAClB,UAAU,EpBsBN,OAAO;EoBrBX,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,MAAM;EACnB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,OAAO;EACf,qBAAqB,EAAE,GAAG;EAC1B,aAAa,EAAE,GAAG;CACnB;;CAnFH,AAAA,AAqFE,cArFD,CAAe,QAAQ,AAAvB,EAAyB,iBAAiB,CAqFzC,YAAY,CAAC,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EAChC,MAAM,EAAE,CAAC;EACT,eAAe,EAAE,UAAU;EAC3B,kBAAkB,EAAE,UAAU;EAC9B,UAAU,EAAE,UAAU;EACtB,qBAAqB,EAAE,CAAC;EACxB,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,cAAc;EACtB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,OAAO;CACjB;;AAKH,AAAA,gBAAgB,AAAA,uBAAuB,CAAC;EACtC,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,MAAM;EACvB,kBAAkB,EAAE,MAAM;EAC1B,cAAc,EAAE,MAAM;CAOvB;;AAZD,AAME,gBANc,AAAA,uBAAuB,CAMrC,IAAI,AAAA,mBAAmB,CAAC;EACtB,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,OAAO;EAChB,SAAS,EAAE,GAAG;CACf;;AEpHH,AACE,iBADe,CACf,EAAE,EADJ,iBAAiB,CACX,EAAE,EADR,iBAAiB,CACP,EAAE,EADZ,iBAAiB,CACH,EAAE,EADhB,iBAAiB,CACC,EAAE,EADpB,iBAAiB,CACK,EAAE,CAAC;EACnB,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,KAAK;CACrB;;AAJH,AAME,iBANe,CAMf,EAAE,CAAC;EAAC,SAAS,EAAE,MAAM;CAAG;;AAN1B,AAOE,iBAPe,CAOf,EAAE,CAAC;EAAC,SAAS,EAAE,MAAM;CAAG;;AAP1B,AAQE,iBARe,CAQf,EAAE,CAAC;EAAC,SAAS,EAAE,MAAM;CAAG;;AAR1B,AASE,iBATe,CASf,EAAE,CAAC;EAAC,SAAS,EAAE,MAAM;CAAG;;AAT1B,AAUE,iBAVe,CAUf,EAAE,CAAC;EAAC,SAAS,EAAE,KAAK;CAAG;;AAVzB,AAWE,iBAXe,CAWf,EAAE,CAAC;EAAC,SAAS,EAAE,GAAG;CAAG;;AAXvB,AAYE,iBAZe,CAYf,YAAY,CAAC;EACT,UAAU,EAAE,MAAM;EAElB,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,KAAK;CAKjB;;AArBH,AAiBM,iBAjBW,CAYf,YAAY,GAKN,CAAC,CAAC;EACA,KAAK,EAAE,OAAO;EACd,SAAS,EAAE,OAAO;CACrB;;CCrBP,AAAA,AAAA,oBAAC,CAAqB,oBAAoB,AAAzC,EAA2C;EACxC,UAAU,EAAE,MAAM;CAKrB;;CAND,AAAA,AAEI,oBAFH,CAAqB,oBAAoB,AAAzC,EAEG,iBAAiB,CAAC;EACd,SAAS,EAAE,CAAC;EACZ,WAAW,EAAE,CAAC;CACjB;;AAEL,AAAA,iBAAiB,CAAC,YAAY,CAAC;EAC3B,UAAU,EAAE,iBAAiB;EAC7B,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;EACnB,SAAS,EAAE,IAAI;CAClB;;ACdD,AAAA,iBAAiB,CAAC,WAAW,CAAC;EAC1B,MAAM,EAAE,IAAI;CACf;;CCDD,AAAA,AAAA,oBAAC,CAAqB,mBAAmB,AAAxC,EAA0C,iBAAiB,CAAe;EACzE,UAAU,EAAE,MAAM;CACnB;;AACD,AACE,iBADe,CACf,QAAQ,CAAC;EACP,UAAU,EAAC,OAAO;EAClB,KAAK,EAAE,OAAO;EACd,OAAO,EAAE,SAAS;CAOnB;;AAXH,AAKI,iBALa,CACf,QAAQ,CAIN,CAAC,CAAC;EACA,MAAM,EAAE,KAAK;CACd;;AAPL,AAQI,iBARa,CACf,QAAQ,AAOL,MAAM,EARX,iBAAiB,CACf,QAAQ,AAOI,MAAM,EARpB,iBAAiB,CACf,QAAQ,AAOa,OAAO,CAAC;EACzB,KAAK,EAAE,OAAO;CACf;;CAKL,AAAA,AAAA,oBAAC,CAAqB,mBAAmB,AAAxC,EAA0C,iBAAiB,CAAC,QAAQ,AAAA,MAAM,GAAE,AAAA,oBAAC,CAAqB,mBAAmB,AAAxC,EAA0C,iBAAiB,CAAC,QAAQ,AAAA,MAAM,CAAC;EACvJ,eAAe,EAAE,IAAI;CACtB;;AAED,AAAA,cAAc,CAAe;EACzB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;CACtB;;AACD,AAAA,QAAQ,AAAA,WAAW,CAAe;EAC9B,kBAAkB,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,kBAAkB,CAAC,UAAU;EAC3D,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,kBAAkB,CAAC,UAAU;CAItD;;AAND,AAGI,QAHI,AAAA,WAAW,AAGd,YAAY,AAAA,OAAO,CAAC;EACjB,SAAS,EAAE,eAAe;CAC7B;;CChCL,AAAA,AAGI,oBAHH,CAAqB,4BAA4B,AAAjD,EAGG,CAAC,CAAA;EAAC,eAAe,EAAE,SAAS;CAAG;;CCHnC,AAAA,AAAA,oBAAC,CAAqB,yBAAyB,AAA9C,EAAgD,iBAAiB,CAAC,yBAAyB,CAAC;EAC3F,MAAM,EAAE,MAAM;CACf;;AACD,AAAA,iBAAiB,CAAC,yBAAyB,CAAC;EAC1C,UAAU,EAAE,MAAM;CAenB;;AAhBD,AAEE,iBAFe,CAAC,yBAAyB,GAEvC,CAAC,AAAA,IAAK,CAAA,WAAW,EAAE;EAAE,aAAa,EAAE,GAAG;CAAI;;AAF/C,AAGE,iBAHe,CAAC,yBAAyB,GAGvC,EAAE,CAAC;EACH,OAAO,EAAE,YAAY;CAWtB;;AAfH,AAKI,iBALa,CAAC,yBAAyB,GAGvC,EAAE,CAEF,CAAC,CAAC;EAAE,KAAK,EAAE,OAAO;CAAI;;AAL1B,AAMI,iBANa,CAAC,yBAAyB,GAGvC,EAAE,CAGF,gBAAgB,CAAC;EACf,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,KAAK;CACnB;;AATL,AAMI,iBANa,CAAC,yBAAyB,GAGvC,EAAE,CAGF,gBAAgB,CAIC;EACf,kBAAkB,EAAE,oBAAoB;EACxC,aAAa,EAAE,oBAAoB;EACnC,UAAU,EAAE,oBAAoB;CACjC;;CCjBL,AAAA,AAAA,oBAAC,CAAqB,sBAAsB,AAA3C,GAA6C,AAAA,oBAAC,CAAqB,MAAM,AAA3B,EAA6B;EAExE,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,IAAI;EACb,gBAAgB,EAAE,MAAM;EACxB,aAAa,EAAE,MAAM;EACrB,eAAe,EAAE,MAAM;CAC1B;;APaD,AAAA,iBAAiB,CAAe;EAC9B,WAAW,EAAE,KAAK;CAsBnB;;AAvBD,AAEE,iBAFe,CAEf,EAAE,EAFJ,iBAAiB,CAEX,EAAE,EAFR,iBAAiB,CAEP,EAAE,EAFZ,iBAAiB,CAEH,EAAE,EAFhB,iBAAiB,CAEC,EAAE,EAFpB,iBAAiB,CAEK,EAAE,EAFxB,iBAAiB,CAES,CAAC,CAAC;EACxB,WAAW,EAAE,KAAK;CACnB;;AAJH,AAKE,iBALe,CAKf,CAAC,CAAC;EACA,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,CAAC;CACX;;AARH,AASE,iBATe,CASf,CAAC,CAAC;EACA,eAAe,EAAE,IAAI;EACrB,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;CACjB;;AAbH,AAcE,iBAde,CAcf,GAAG,CAAC;EACF,MAAM,EAAE,IAAI;EACZ,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI;EACZ,qBAAqB,EAAE,CAAC;EACxB,aAAa,EAAE,CAAC;EAChB,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;CACjB;;CAIH,AAAA,AAIE,oBAJD,CAAqB,4BAA4B,AAAjD,EAIC,iBAAiB,CAAC,CAAC;CAHrB,AAAA,oBAAC,CAAqB,sBAAsB,AAA3C,EAGC,iBAAiB,CAAC,CAAC;CAFrB,AAAA,oBAAC,CAAqB,sBAAsB,AAA3C,EAEC,iBAAiB,CAAC,CAAC;CADrB,AAAA,oBAAC,CAAqB,wBAAwB,AAA7C,EACC,iBAAiB,CAAC,CAAC,CAAC;EAClB,eAAe,EAAE,SAAS;CAC3B;;AAKH,AAEI,IAFA,CAAC,iBAAiB,CACpB,EAAE,AACC,OAAO,EAFZ,IAAI,CAAC,iBAAiB,CAChB,EAAE,AACH,OAAO,EAFZ,IAAI,CAAC,iBAAiB,CACZ,EAAE,AACP,OAAO,EAFZ,IAAI,CAAC,iBAAiB,CACR,EAAE,AACX,OAAO,EAFZ,IAAI,CAAC,iBAAiB,CACJ,EAAE,AACf,OAAO,EAFZ,IAAI,CAAC,iBAAiB,CACA,EAAE,AACnB,OAAO,CAAC;EACP,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;CACjB"
|
39 |
}
|
26 |
"../scss/_2_2_buttons.scss",
|
27 |
"../scss/_2_3_wpspecifics.scss",
|
28 |
"../scss/_3_2_modules_light.scss",
|
|
|
29 |
"../scss/modules/_divider.scss",
|
30 |
"../scss/modules/_spacer.scss",
|
|
|
31 |
"../scss/modules/_tiny_mce_editor.scss",
|
|
|
32 |
"../scss/modules/_shortcode.scss"
|
33 |
],
|
34 |
"names": [],
|
35 |
+
"mappings": "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"
|
36 |
}
|
assets/front/css/sek-base-light.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:flex;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:flex;flex-direction:column}.sek-module{align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:none;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{-webkit-transition:0s linear;-o-transition:0s linear;transition:0s linear;-webkit-transition-property:background-position;-o-transition-property:background-position;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{-webkit-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-when-animating [data-sek-level]{overflow-x:hidden}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:flex;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{flex:0 0 100%;max-width:100%}.sek-col{flex-basis:0;flex-grow:1;max-width:100%}.sek-col-auto{flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{flex:0 0 8.333%;max-width:8.333%}.sek-col-9{flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{flex:0 0 10%;max-width:10%}.sek-col-11{flex:0 0 11.111%;max-width:11.111%}.sek-col-12{flex:0 0 12.5%;max-width:12.5%}.sek-col-14{flex:0 0 14.285%;max-width:14.285%}.sek-col-16{flex:0 0 16.666%;max-width:16.666%}.sek-col-20{flex:0 0 20%;max-width:20%}.sek-col-25{flex:0 0 25%;max-width:25%}.sek-col-30{flex:0 0 30%;max-width:30%}.sek-col-33{flex:0 0 33.333%;max-width:33.333%}.sek-col-40{flex:0 0 40%;max-width:40%}.sek-col-50{flex:0 0 50%;max-width:50%}.sek-col-60{flex:0 0 60%;max-width:60%}.sek-col-66{flex:0 0 66.666%;max-width:66.666%}.sek-col-70{flex:0 0 70%;max-width:70%}.sek-col-75{flex:0 0 75%;max-width:75%}.sek-col-80{flex:0 0 80%;max-width:80%}.sek-col-83{flex:0 0 83.333%;max-width:83.333%}.sek-col-90{flex:0 0 90%;max-width:90%}.sek-col-100{flex:0 0 100%;max-width:100%}.sek-order-first{order:-1}.sek-order-last{order:13}.sek-order-0{order:0}.sek-order-1{order:1}.sek-order-2{order:2}.sek-order-3{order:3}.sek-order-4{order:4}.sek-order-5{order:5}.sek-order-6{order:6}.sek-order-7{order:7}.sek-order-8{order:8}.sek-order-9{order:9}.sek-order-10{order:10}.sek-order-11{order:11}.sek-order-12{order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 0 1.5rem 1.5rem}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module-inner .focus.sek-btn,.sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module-inner .disabled.sek-btn,.sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module-inner .active.sek-btn,.sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;-webkit-border-radius:3px;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:0;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:flex;align-items:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6{font-weight:400;line-height:1.5em}.sek-module-inner h1{font-size:2.48em}.sek-module-inner h2{font-size:2.07em}.sek-module-inner h3{font-size:1.73em}.sek-module-inner h4{font-size:1.44em}.sek-module-inner h5{font-size:1.2em}.sek-module-inner h6{font-size:1em}.sek-module-inner .sek-heading{text-align:center;margin:.6em 0;display:block}.sek-module-inner .sek-heading>a{color:inherit;font-size:inherit}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_button_module] .sek-module-inner{text-align:center}.sek-module-inner .sek-btn{background:#020202;color:#fff;padding:.5em 1em}.sek-module-inner .sek-btn i{margin:0 8px}.sek-module-inner .sek-btn:active,.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{color:#fff}[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:focus,[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-btn-inner{display:flex;align-items:center}.sek-btn.box-shadow{-webkit-box-shadow:0 3px 8px rgba(0,0,0,.2)!important;box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-btn.box-shadow.push-effect:active{transform:translateY(2px)}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_social_icons_module] .sek-module-inner .sek-social-icons-wrapper{margin:10px 0}.sek-module-inner .sek-social-icons-wrapper{text-align:center}.sek-module-inner .sek-social-icons-wrapper>:not(:last-child){padding-right:8px}.sek-module-inner .sek-social-icons-wrapper>li{display:inline-block}.sek-module-inner .sek-social-icons-wrapper>li a{color:#707070}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{font-size:28px;line-height:1.5em}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;-webkit-box-shadow:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
1 |
+
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:flex;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:flex;flex-direction:column}.sek-module{align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;-webkit-transition:all .3s ease-in-out;-moz-transition:all,.3s ease-in-out;-ms-transition:all,.3s ease-in-out;-o-transition:all,.3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:none;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{-webkit-transition:0s linear;-o-transition:0s linear;transition:0s linear;-webkit-transition-property:background-position;-o-transition-property:background-position;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{-webkit-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-while-animating{overflow:hidden}.sek-module .sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:flex;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{flex:0 0 100%;max-width:100%}.sek-col{flex-basis:0;flex-grow:1;max-width:100%}.sek-col-auto{flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{flex:0 0 8.333%;max-width:8.333%}.sek-col-9{flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{flex:0 0 10%;max-width:10%}.sek-col-11{flex:0 0 11.111%;max-width:11.111%}.sek-col-12{flex:0 0 12.5%;max-width:12.5%}.sek-col-14{flex:0 0 14.285%;max-width:14.285%}.sek-col-16{flex:0 0 16.666%;max-width:16.666%}.sek-col-20{flex:0 0 20%;max-width:20%}.sek-col-25{flex:0 0 25%;max-width:25%}.sek-col-30{flex:0 0 30%;max-width:30%}.sek-col-33{flex:0 0 33.333%;max-width:33.333%}.sek-col-40{flex:0 0 40%;max-width:40%}.sek-col-50{flex:0 0 50%;max-width:50%}.sek-col-60{flex:0 0 60%;max-width:60%}.sek-col-66{flex:0 0 66.666%;max-width:66.666%}.sek-col-70{flex:0 0 70%;max-width:70%}.sek-col-75{flex:0 0 75%;max-width:75%}.sek-col-80{flex:0 0 80%;max-width:80%}.sek-col-83{flex:0 0 83.333%;max-width:83.333%}.sek-col-90{flex:0 0 90%;max-width:90%}.sek-col-100{flex:0 0 100%;max-width:100%}.sek-order-first{order:-1}.sek-order-last{order:13}.sek-order-0{order:0}.sek-order-1{order:1}.sek-order-2{order:2}.sek-order-3{order:3}.sek-order-4{order:4}.sek-order-5{order:5}.sek-order-6{order:6}.sek-order-7{order:7}.sek-order-8{order:8}.sek-order-9{order:9}.sek-order-10{order:10}.sek-order-11{order:11}.sek-order-12{order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 0 1.5rem 1.5rem}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module .sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.sek-module .sek-module-inner .sek-btn:focus,.sek-module .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module .sek-module-inner .focus.sek-btn,.sek-module .sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module .sek-module-inner .disabled.sek-btn,.sek-module .sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module .sek-module-inner .active.sek-btn,.sek-module .sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;-webkit-border-radius:3px;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:0;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:flex;align-items:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;-webkit-box-shadow:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
assets/front/css/sek-base-rtl.css
CHANGED
@@ -299,11 +299,11 @@
|
|
299 |
opacity: 0;
|
300 |
}
|
301 |
|
302 |
-
.sek-overflow-hidden-
|
303 |
-
overflow
|
304 |
}
|
305 |
|
306 |
-
.sek-service-font, .sek-module-inner .sek-btn {
|
307 |
font-family: sans-serif;
|
308 |
}
|
309 |
|
@@ -766,7 +766,7 @@
|
|
766 |
color: #777;
|
767 |
}
|
768 |
|
769 |
-
.sek-module-inner .sek-btn {
|
770 |
display: inline-block;
|
771 |
font-weight: normal;
|
772 |
line-height: 1.25em;
|
@@ -791,22 +791,22 @@
|
|
791 |
transition: all 0.2s ease-in-out;
|
792 |
}
|
793 |
|
794 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:hover {
|
795 |
text-decoration: none;
|
796 |
}
|
797 |
|
798 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .focus.sek-btn {
|
799 |
outline: 0;
|
800 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
801 |
}
|
802 |
|
803 |
-
.sek-module-inner .disabled.sek-btn, .sek-module-inner .sek-btn:disabled {
|
804 |
cursor: not-allowed;
|
805 |
opacity: .65;
|
806 |
box-shadow: none;
|
807 |
}
|
808 |
|
809 |
-
.sek-module-inner .sek-btn:active, .sek-module-inner .active.sek-btn {
|
810 |
background-image: none;
|
811 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
812 |
}
|
@@ -958,6 +958,9 @@ button.sek-btn,
|
|
958 |
font-size: 1em;
|
959 |
}
|
960 |
|
|
|
|
|
|
|
961 |
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6 {
|
962 |
font-weight: 400;
|
963 |
line-height: 1.5em;
|
@@ -998,6 +1001,9 @@ button.sek-btn,
|
|
998 |
font-size: inherit;
|
999 |
}
|
1000 |
|
|
|
|
|
|
|
1001 |
.sek-nav-wrap {
|
1002 |
position: relative;
|
1003 |
display: -ms-flexbox;
|
@@ -1159,7 +1165,7 @@ button.sek-btn,
|
|
1159 |
-ms-transform: rotate(180deg) !important;
|
1160 |
}
|
1161 |
|
1162 |
-
.sek-module-inner .sek-nav-toggler {
|
1163 |
-webkit-appearance: none !important;
|
1164 |
cursor: pointer;
|
1165 |
height: 40px;
|
@@ -1168,7 +1174,7 @@ button.sek-btn,
|
|
1168 |
vertical-align: middle;
|
1169 |
}
|
1170 |
|
1171 |
-
.sek-module-inner .sek-nav-toggler, .sek-module-inner .sek-nav-toggler:hover, .sek-module-inner .sek-nav-toggler:focus {
|
1172 |
background: 0 0;
|
1173 |
background-color: rgba(0, 0, 0, 0);
|
1174 |
color: black;
|
@@ -1466,6 +1472,9 @@ button.sek-btn,
|
|
1466 |
font-size: 16px;
|
1467 |
}
|
1468 |
|
|
|
|
|
|
|
1469 |
[data-sek-module-type="czr_image_module"] {
|
1470 |
text-align: center;
|
1471 |
}
|
@@ -1551,6 +1560,9 @@ button.sek-btn,
|
|
1551 |
filter: grayscale(0%);
|
1552 |
}
|
1553 |
|
|
|
|
|
|
|
1554 |
.sek-nimble-image-wrapper {
|
1555 |
max-width: 100%;
|
1556 |
overflow: hidden;
|
@@ -1683,6 +1695,9 @@ button.sek-btn,
|
|
1683 |
top: 0;
|
1684 |
}
|
1685 |
|
|
|
|
|
|
|
1686 |
[data-sek-module-type="czr_divider_module"] {
|
1687 |
text-align: center;
|
1688 |
}
|
@@ -1701,10 +1716,16 @@ button.sek-btn,
|
|
1701 |
font-size: 1rem;
|
1702 |
}
|
1703 |
|
|
|
|
|
|
|
1704 |
.sek-module-inner .sek-spacer {
|
1705 |
height: 20px;
|
1706 |
}
|
1707 |
|
|
|
|
|
|
|
1708 |
[data-sek-module-type="czr_icon_module"] {
|
1709 |
text-align: center;
|
1710 |
color: #5a5a5a;
|
@@ -1748,6 +1769,9 @@ button.sek-btn,
|
|
1748 |
line-height: 1em;
|
1749 |
}
|
1750 |
|
|
|
|
|
|
|
1751 |
.sek-quote p {
|
1752 |
margin: 0 0 .5em;
|
1753 |
padding: 0;
|
@@ -1858,22 +1882,26 @@ button.sek-btn,
|
|
1858 |
top: 10px;
|
1859 |
}
|
1860 |
|
|
|
|
|
|
|
1861 |
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
1862 |
text-align: center;
|
1863 |
}
|
1864 |
|
1865 |
-
.sek-module-inner .sek-btn {
|
1866 |
background: #020202;
|
1867 |
color: #ffffff;
|
1868 |
padding: 0.5em 1em;
|
1869 |
}
|
1870 |
|
1871 |
-
.sek-module-inner .sek-btn i {
|
1872 |
margin: 0 8px;
|
1873 |
}
|
1874 |
|
1875 |
-
.sek-module-inner .sek-btn:hover, .sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:active {
|
1876 |
color: #ffffff;
|
|
|
1877 |
}
|
1878 |
|
1879 |
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
@@ -1896,6 +1924,9 @@ button.sek-btn,
|
|
1896 |
transform: translateY(2px);
|
1897 |
}
|
1898 |
|
|
|
|
|
|
|
1899 |
.sek-post-grid-wrapper {
|
1900 |
margin-top: 1.5rem;
|
1901 |
margin-bottom: 1.5rem;
|
@@ -2353,6 +2384,9 @@ button.sek-btn,
|
|
2353 |
font-size: 0.9em;
|
2354 |
}
|
2355 |
|
|
|
|
|
|
|
2356 |
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2357 |
font-size: 16px;
|
2358 |
width: 100% !important;
|
@@ -2443,39 +2477,48 @@ button.sek-btn,
|
|
2443 |
display: none;
|
2444 |
}
|
2445 |
|
|
|
|
|
|
|
2446 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2447 |
text-decoration: underline;
|
2448 |
}
|
2449 |
|
|
|
|
|
|
|
2450 |
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2451 |
margin: 10px 0;
|
2452 |
}
|
2453 |
|
2454 |
-
.sek-module-inner .sek-social-icons-wrapper {
|
2455 |
text-align: center;
|
2456 |
}
|
2457 |
|
2458 |
-
.sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2459 |
padding-right: 8px;
|
2460 |
}
|
2461 |
|
2462 |
-
.sek-module-inner .sek-social-icons-wrapper > li {
|
2463 |
display: inline-block;
|
2464 |
}
|
2465 |
|
2466 |
-
.sek-module-inner .sek-social-icons-wrapper > li a {
|
2467 |
color: #707070;
|
2468 |
}
|
2469 |
|
2470 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2471 |
font-size: 28px;
|
2472 |
line-height: 1.5em;
|
2473 |
}
|
2474 |
|
2475 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2476 |
transition: all 0.2s ease-in-out;
|
2477 |
}
|
2478 |
|
|
|
|
|
|
|
2479 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2480 |
width: calc(100% + 20px);
|
2481 |
max-width: calc(100% + 20px);
|
@@ -2718,6 +2761,9 @@ button.sek-btn,
|
|
2718 |
}
|
2719 |
}
|
2720 |
|
|
|
|
|
|
|
2721 |
.sek-accord-wrapper {
|
2722 |
text-align: left;
|
2723 |
}
|
@@ -2858,6 +2904,9 @@ button.sek-btn,
|
|
2858 |
display: none;
|
2859 |
}
|
2860 |
|
|
|
|
|
|
|
2861 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
2862 |
display: -ms-flexbox;
|
2863 |
display: flex;
|
299 |
opacity: 0;
|
300 |
}
|
301 |
|
302 |
+
.sek-overflow-hidden-while-animating {
|
303 |
+
overflow: hidden;
|
304 |
}
|
305 |
|
306 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
307 |
font-family: sans-serif;
|
308 |
}
|
309 |
|
766 |
color: #777;
|
767 |
}
|
768 |
|
769 |
+
.sek-module .sek-module-inner .sek-btn {
|
770 |
display: inline-block;
|
771 |
font-weight: normal;
|
772 |
line-height: 1.25em;
|
791 |
transition: all 0.2s ease-in-out;
|
792 |
}
|
793 |
|
794 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
795 |
text-decoration: none;
|
796 |
}
|
797 |
|
798 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
799 |
outline: 0;
|
800 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
801 |
}
|
802 |
|
803 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
804 |
cursor: not-allowed;
|
805 |
opacity: .65;
|
806 |
box-shadow: none;
|
807 |
}
|
808 |
|
809 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
810 |
background-image: none;
|
811 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
812 |
}
|
958 |
font-size: 1em;
|
959 |
}
|
960 |
|
961 |
+
/*************************************
|
962 |
+
* HEADING MODULE
|
963 |
+
*************************************/
|
964 |
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6 {
|
965 |
font-weight: 400;
|
966 |
line-height: 1.5em;
|
1001 |
font-size: inherit;
|
1002 |
}
|
1003 |
|
1004 |
+
/*************************************
|
1005 |
+
* MENU MODULE
|
1006 |
+
*************************************/
|
1007 |
.sek-nav-wrap {
|
1008 |
position: relative;
|
1009 |
display: -ms-flexbox;
|
1165 |
-ms-transform: rotate(180deg) !important;
|
1166 |
}
|
1167 |
|
1168 |
+
.nb-loc .sek-module-inner .sek-nav-toggler {
|
1169 |
-webkit-appearance: none !important;
|
1170 |
cursor: pointer;
|
1171 |
height: 40px;
|
1174 |
vertical-align: middle;
|
1175 |
}
|
1176 |
|
1177 |
+
.nb-loc .sek-module-inner .sek-nav-toggler, .nb-loc .sek-module-inner .sek-nav-toggler:hover, .nb-loc .sek-module-inner .sek-nav-toggler:focus {
|
1178 |
background: 0 0;
|
1179 |
background-color: rgba(0, 0, 0, 0);
|
1180 |
color: black;
|
1472 |
font-size: 16px;
|
1473 |
}
|
1474 |
|
1475 |
+
/*************************************
|
1476 |
+
* IMAGE MODULE
|
1477 |
+
*************************************/
|
1478 |
[data-sek-module-type="czr_image_module"] {
|
1479 |
text-align: center;
|
1480 |
}
|
1560 |
filter: grayscale(0%);
|
1561 |
}
|
1562 |
|
1563 |
+
/*************************************
|
1564 |
+
* SPECIAL IMAGE MODULE
|
1565 |
+
*************************************/
|
1566 |
.sek-nimble-image-wrapper {
|
1567 |
max-width: 100%;
|
1568 |
overflow: hidden;
|
1695 |
top: 0;
|
1696 |
}
|
1697 |
|
1698 |
+
/*************************************
|
1699 |
+
* DIVIDER MODULE
|
1700 |
+
*************************************/
|
1701 |
[data-sek-module-type="czr_divider_module"] {
|
1702 |
text-align: center;
|
1703 |
}
|
1716 |
font-size: 1rem;
|
1717 |
}
|
1718 |
|
1719 |
+
/*************************************
|
1720 |
+
* SPACER MODULE
|
1721 |
+
*************************************/
|
1722 |
.sek-module-inner .sek-spacer {
|
1723 |
height: 20px;
|
1724 |
}
|
1725 |
|
1726 |
+
/*************************************
|
1727 |
+
* ICON MODULE
|
1728 |
+
*************************************/
|
1729 |
[data-sek-module-type="czr_icon_module"] {
|
1730 |
text-align: center;
|
1731 |
color: #5a5a5a;
|
1769 |
line-height: 1em;
|
1770 |
}
|
1771 |
|
1772 |
+
/*************************************
|
1773 |
+
* QUOTE MODULE
|
1774 |
+
*************************************/
|
1775 |
.sek-quote p {
|
1776 |
margin: 0 0 .5em;
|
1777 |
padding: 0;
|
1882 |
top: 10px;
|
1883 |
}
|
1884 |
|
1885 |
+
/*************************************
|
1886 |
+
* BUTTON MODULE
|
1887 |
+
*************************************/
|
1888 |
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
1889 |
text-align: center;
|
1890 |
}
|
1891 |
|
1892 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
1893 |
background: #020202;
|
1894 |
color: #ffffff;
|
1895 |
padding: 0.5em 1em;
|
1896 |
}
|
1897 |
|
1898 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
1899 |
margin: 0 8px;
|
1900 |
}
|
1901 |
|
1902 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
1903 |
color: #ffffff;
|
1904 |
+
text-decoration: none;
|
1905 |
}
|
1906 |
|
1907 |
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
1924 |
transform: translateY(2px);
|
1925 |
}
|
1926 |
|
1927 |
+
/*************************************
|
1928 |
+
* POST GRID MODULE
|
1929 |
+
*************************************/
|
1930 |
.sek-post-grid-wrapper {
|
1931 |
margin-top: 1.5rem;
|
1932 |
margin-bottom: 1.5rem;
|
2384 |
font-size: 0.9em;
|
2385 |
}
|
2386 |
|
2387 |
+
/*************************************
|
2388 |
+
* SIMPLE FORM MODULE
|
2389 |
+
*************************************/
|
2390 |
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2391 |
font-size: 16px;
|
2392 |
width: 100% !important;
|
2477 |
display: none;
|
2478 |
}
|
2479 |
|
2480 |
+
/*************************************
|
2481 |
+
* TINY MCE EDITOR MODULE
|
2482 |
+
*************************************/
|
2483 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2484 |
text-decoration: underline;
|
2485 |
}
|
2486 |
|
2487 |
+
/*************************************
|
2488 |
+
* SOCIAL ICONS MODULE
|
2489 |
+
*************************************/
|
2490 |
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2491 |
margin: 10px 0;
|
2492 |
}
|
2493 |
|
2494 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
2495 |
text-align: center;
|
2496 |
}
|
2497 |
|
2498 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2499 |
padding-right: 8px;
|
2500 |
}
|
2501 |
|
2502 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
2503 |
display: inline-block;
|
2504 |
}
|
2505 |
|
2506 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
2507 |
color: #707070;
|
2508 |
}
|
2509 |
|
2510 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2511 |
font-size: 28px;
|
2512 |
line-height: 1.5em;
|
2513 |
}
|
2514 |
|
2515 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2516 |
transition: all 0.2s ease-in-out;
|
2517 |
}
|
2518 |
|
2519 |
+
/*************************************
|
2520 |
+
* IMAGE SLIDER MODULE
|
2521 |
+
*************************************/
|
2522 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2523 |
width: calc(100% + 20px);
|
2524 |
max-width: calc(100% + 20px);
|
2761 |
}
|
2762 |
}
|
2763 |
|
2764 |
+
/*************************************
|
2765 |
+
* ACCORDION MODULE
|
2766 |
+
*************************************/
|
2767 |
.sek-accord-wrapper {
|
2768 |
text-align: left;
|
2769 |
}
|
2904 |
display: none;
|
2905 |
}
|
2906 |
|
2907 |
+
/*************************************
|
2908 |
+
* SHORTCODE MODULE
|
2909 |
+
*************************************/
|
2910 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
2911 |
display: -ms-flexbox;
|
2912 |
display: flex;
|
assets/front/css/sek-base-rtl.css.map
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["../scss/_1_4_reboot.scss","../scss/_1_5_base.scss","sek-base-rtl.css","../scss/_1_6_typography.scss","../scss/_1_2_variables.scss","../scss/_1_7_grid.scss","../scss/mixins/_grid.scss","../scss/mixins/_breakpoints.scss","../scss/mixins/_grid-framework.scss","../scss/_1_8_transitions.scss","../scss/mixins/_transition.scss","../scss/mixins/_clearfix.scss","../scss/utilities/_screenreaders.scss","../scss/mixins/_screen-reader.scss","../scss/utilities/_embed.scss","../scss/_2_1_formatting.scss","../scss/mixins/_utilities.scss","../scss/_2_2_buttons.scss","../scss/_2_3_wpspecifics.scss","../scss/modules/_heading.scss","../scss/modules/_menu.scss","../scss/modules/_image.scss","../scss/modules/_special_image.scss","../scss/modules/_divider.scss","../scss/modules/_spacer.scss","../scss/modules/_icon.scss","../scss/modules/_quote.scss","../scss/modules/_button.scss","../scss/modules/_post_grid.scss","../scss/modules/_simple_form.scss","../scss/modules/_tiny_mce_editor.scss","../scss/modules/_social_icons.scss","../scss/modules/_img_slider.scss","../scss/modules/_accordion.scss","../scss/modules/_shortcode.scss","../scss/_3_1_modules.scss"],"names":[],"mappings":"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","file":"sek-base-rtl.css","sourcesContent":[null,null,"/* -------------------------------------------------------------------------- */\n/* <SCOPED RESET>\r\n/* -------------------------------------------------------------------------- */\n.sektion-wrapper *,\n.sektion-wrapper *::before,\n.sektion-wrapper *::after {\n box-sizing: border-box;\n}\n\n.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,\n.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,\n.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,\n.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,\n.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,\n.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,\n.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,\n.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,\n.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,\n.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,\n.sektion-wrapper figure, .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,\n.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,\n.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {\n border: none;\n font-size: inherit;\n line-height: inherit;\n margin: 0;\n padding: 0;\n text-align: inherit;\n}\n\n.sektion-wrapper blockquote::before,\n.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {\n content: \"\";\n}\n\n.sektion-wrapper ol, .sektion-wrapper ul {\n list-style: none;\n}\n\n.sektion-wrapper img {\n max-width: 100%;\n vertical-align: middle;\n border-style: none;\n display: inline;\n}\n\n.sektion-wrapper svg:not(:root) {\n overflow: hidden;\n}\n\n.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {\n max-width: 100%;\n}\n\n/* -------------------------------------------------------------------------- */\n/* </SCOPED RESET>\r\n/* -------------------------------------------------------------------------- */\n/* make sure that the location level occupies 100% of the width */\n[data-sek-level=\"location\"] {\n clear: both;\n font-size: 16px;\n}\n\n/* To make vertical alignment possible in sections */\n.sek-section, .sek-column, .sek-module {\n display: flex;\n align-items: center;\n}\n\n.sek-column-inner, .sek-module-inner {\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n/* To allow horizontal centering of modules\r\n @see https://github.com/presscustomizr/nimble-builder/issues/119\r\n*/\n/* - sections in locations */\n/* - columns in sections */\n/* - modules in columns */\n.sek-column-inner {\n display: flex;\n flex-direction: column;\n}\n\n.sek-module {\n align-self: center;\n width: 100%;\n max-width: 100%;\n}\n\n/* a nested sektion should reset its parent column padding\r\n@see https://github.com/presscustomizr/nimble-builder/issues/25\r\n*/\n[data-sek-is-nested=\"true\"] .sek-container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n/* MODULE PLACEHOLDER */\n/*@font-face {\r\n font-family: 'Material Icons';\r\n font-style: normal;\r\n font-weight: 400;\r\n src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');\r\n}*/\n/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */\n.sek-module-placeholder {\n text-align: center;\n}\n\n.sek-module-placeholder .material-icons {\n font-size: inherit;\n color: #cfcfcf;\n}\n\n/* LEVEL VISIBILITY BY DEVICE */\n/* NIMBLE TEMPLATE GENERAL STYLING */\n/* <inspired by Twenty Seventeed WP theme> */\n.sek-screen-reader-text {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n overflow: hidden;\n padding: 0;\n position: absolute !important;\n width: 1px;\n word-wrap: normal !important;\n}\n\n#nimble-page {\n position: relative;\n word-wrap: break-word;\n}\n\n/* </inspired by Twenty Seventeen WP theme> */\n/* Nimble btn in admin top bar */\n#wpadminbar .sek-nimble-icon {\n display: inline-block;\n}\n\n#wpadminbar .sek-nimble-icon img {\n width: 28px;\n position: absolute;\n top: 2px;\n -webkit-filter: grayscale(100%);\n filter: grayscale(100%);\n -webkit-filter: gray;\n filter: gray;\n -webkit-transition: all 0.3s ease-in-out;\n -moz-transition: all, 0.3s ease-in-out;\n -ms-transition: all, 0.3s ease-in-out;\n -o-transition: all, 0.3s ease-in-out;\n transition: all 0.3s ease-in-out;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\n#wpadminbar .sek-nimble-icon:hover img {\n -webkit-filter: none;\n filter: none;\n -webkit-filter: none;\n filter: none;\n}\n\n#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {\n padding-left: 30px;\n}\n\n[data-sek-has-bg=\"true\"] {\n background-size: cover;\n background-repeat: no-repeat;\n background-position: 50% 50%;\n}\n\n[data-sek-level=\"location\"] [data-sek-bg-parallax=\"true\"] {\n background-attachment: fixed;\n background-size: cover;\n}\n\n[data-sek-level=\"location\"] .sek-has-bg {\n position: relative;\n}\n\n@supports (-webkit-overflow-scrolling: touch) {\n body [data-sek-level=\"location\"] [data-sek-bg-parallax=\"true\"], body [data-sek-level=\"location\"] [data-sek-bg-fixed=\"true\"] {\n background-attachment: scroll;\n }\n}\n\n[data-sek-level=\"location\"] [data-sek-level] {\n -webkit-transition: 0s linear;\n -o-transition: 0s linear;\n transition: 0s linear;\n -webkit-transition-property: background-position;\n -o-transition-property: background-position;\n transition-property: background-position;\n}\n\n.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {\n padding-left: 94px;\n}\n\n.sek-module .sek-module-inner .widget_hu_tabs ul,\n.sek-module .sek-module-inner .widget_hu_tabs ol {\n margin-left: 0;\n margin-bottom: 0;\n}\n\n.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {\n margin-bottom: 10px;\n}\n\n[data-sek-level].sek-level-has-shadow {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n}\n\n.customizer-preview [data-sek-level].sek-level-has-shadow {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;\n}\n\n[data-sek-level][data-sek-video-bg-src] {\n position: relative;\n}\n\n[data-sek-level] embed,\n[data-sek-level] iframe,\n[data-sek-level] object,\n[data-sek-level] video {\n max-width: 100%;\n width: 100%;\n margin: 0;\n line-height: 1;\n border: none;\n}\n\n[data-sek-level] .sek-custom-embed {\n line-height: 0;\n}\n\n[data-sek-level] .sek-bg-video-wrapper,\n[data-sek-level] .sek-background {\n height: 100%;\n width: 100%;\n top: 0;\n left: 0;\n position: absolute !important;\n overflow: hidden;\n z-index: 0;\n direction: ltr;\n}\n\n[data-sek-level] .sek-bg-video-wrapper {\n -webkit-transition: opacity 0.5s linear;\n -o-transition: opacity 0.5s linear;\n transition: opacity 0.5s linear;\n pointer-events: none;\n opacity: 0;\n}\n\n[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {\n opacity: 0;\n visibility: hidden;\n}\n\n[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {\n max-width: none;\n}\n\n[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {\n position: absolute;\n top: 50%;\n left: 50%;\n -webkit-transform: translateX(-50%) translateY(-50%);\n -ms-transform: translateX(-50%) translateY(-50%);\n transform: translateX(-50%) translateY(-50%);\n}\n\n[data-sek-level] .sek-background-video-local {\n -o-object-fit: cover;\n object-fit: cover;\n}\n\n.sek-module-inner .sek-debug-modules {\n margin: 1em;\n padding: 5px;\n border: 1px solid rgba(221, 221, 221, 0.43);\n box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);\n -webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);\n background-color: #fff;\n font-size: 15px;\n font-weight: normal;\n color: #6d6d6d;\n background: rgba(255, 255, 255, 0.6);\n}\n\n@media (max-width: 575px) {\n .customizer-preview [data-sek-video-bg-on-mobile=\"false\"] .sek-bg-video-wrapper {\n display: none;\n }\n}\n\n.sek-animate-candidate {\n opacity: 0;\n}\n\n.sek-overflow-hidden-when-animating [data-sek-level] {\n overflow-x: hidden;\n}\n\n.sek-service-font, .sek-module-inner .sek-btn {\n font-family: sans-serif;\n}\n\n.sek-container {\n width: 100%;\n padding-right: 10px;\n padding-left: 10px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .sek-container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .sek-container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .sek-container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .sek-container {\n max-width: 1140px;\n }\n}\n\n.sek-container-fluid {\n width: 100%;\n padding-right: 10px;\n padding-left: 10px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.sek-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -10px;\n margin-left: -10px;\n}\n\n.sek-container-no-padding {\n padding-right: 0;\n padding-left: 0;\n overflow-x: hidden;\n}\n\n.sek-no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.sek-no-gutters > .sek-col,\n.sek-no-gutters > [class*=\"sek-col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,\n.sek-col,\n.sek-col-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 10px;\n padding-left: 10px;\n}\n\n.sek-col-base {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.sek-col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.sek-col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n}\n\n@media (min-width: 768px) {\n .sek-col-8 {\n flex: 0 0 8.333%;\n max-width: 8.333%;\n }\n .sek-col-9 {\n flex: 0 0 9.090909%;\n max-width: 9.090909%;\n }\n .sek-col-10 {\n flex: 0 0 10%;\n max-width: 10%;\n }\n .sek-col-11 {\n flex: 0 0 11.111%;\n max-width: 11.111%;\n }\n .sek-col-12 {\n flex: 0 0 12.5%;\n max-width: 12.5%;\n }\n .sek-col-14 {\n flex: 0 0 14.285%;\n max-width: 14.285%;\n }\n .sek-col-16 {\n flex: 0 0 16.666%;\n max-width: 16.666%;\n }\n .sek-col-20 {\n flex: 0 0 20%;\n max-width: 20%;\n }\n .sek-col-25 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .sek-col-30 {\n flex: 0 0 30%;\n max-width: 30%;\n }\n .sek-col-33 {\n flex: 0 0 33.333%;\n max-width: 33.333%;\n }\n .sek-col-40 {\n flex: 0 0 40%;\n max-width: 40%;\n }\n .sek-col-50 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .sek-col-60 {\n flex: 0 0 60%;\n max-width: 60%;\n }\n .sek-col-66 {\n flex: 0 0 66.666%;\n max-width: 66.666%;\n }\n .sek-col-70 {\n flex: 0 0 70%;\n max-width: 70%;\n }\n .sek-col-75 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .sek-col-80 {\n flex: 0 0 80%;\n max-width: 80%;\n }\n .sek-col-83 {\n flex: 0 0 83.333%;\n max-width: 83.333%;\n }\n .sek-col-90 {\n flex: 0 0 90%;\n max-width: 90%;\n }\n .sek-col-100 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .sek-order-first {\n order: -1;\n }\n .sek-order-last {\n order: 13;\n }\n .sek-order-0 {\n order: 0;\n }\n .sek-order-1 {\n order: 1;\n }\n .sek-order-2 {\n order: 2;\n }\n .sek-order-3 {\n order: 3;\n }\n .sek-order-4 {\n order: 4;\n }\n .sek-order-5 {\n order: 5;\n }\n .sek-order-6 {\n order: 6;\n }\n .sek-order-7 {\n order: 7;\n }\n .sek-order-8 {\n order: 8;\n }\n .sek-order-9 {\n order: 9;\n }\n .sek-order-10 {\n order: 10;\n }\n .sek-order-11 {\n order: 11;\n }\n .sek-order-12 {\n order: 12;\n }\n}\n\n.sek-fade {\n transition: opacity 0.15s linear;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .sek-fade {\n transition: none;\n }\n}\n\n.sek-fade:not(.show) {\n opacity: 0;\n}\n\n.sek-collapse:not(.show) {\n display: none;\n}\n\n/*\r\n.sek-collapsing {\r\n position: relative;\r\n height: 0;\r\n overflow: hidden;\r\n //@include transition($transition-collapse);\r\n}*/\n.sek-clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.sek-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0;\n}\n\n.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n}\n\n.sek-embed {\n position: relative;\n}\n\n.sek-embed::before {\n display: block;\n content: '';\n}\n\n.sek-embed .sek-embed-inner,\n.sek-embed iframe {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n}\n\n.sektion-wrapper {\n word-wrap: break-word;\n}\n\n.sek-text-right {\n text-align: right !important;\n}\n\n.sek-text-left {\n text-align: left !important;\n}\n\n.sek-module .sek-module-inner ul {\n list-style: disc;\n}\n\n.sek-module .sek-module-inner ol {\n list-style: decimal;\n}\n\n.sek-module .sek-module-inner ol > li::before {\n content: none;\n}\n\n.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {\n padding: 0;\n line-height: 1.5;\n margin: 0 1.5rem 1.5rem 0;\n}\n\n.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {\n padding: .25rem .5rem;\n}\n\n.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {\n margin-bottom: 0;\n}\n\n.sek-module-inner pre code, .sek-module-inner tt {\n box-sizing: border-box;\n font-size: inherit;\n white-space: pre-wrap !important;\n background: transparent;\n border: none;\n padding: 0;\n font-family: monospace;\n}\n\n.sek-module-inner pre {\n background: #f7f8f9;\n padding: 2.5em;\n word-wrap: normal;\n white-space: pre-wrap !important;\n color: #313131;\n font-family: monospace !important;\n}\n\n.sek-module-inner figure {\n text-align: center;\n}\n\n.sek-module-inner figcaption {\n text-align: center;\n}\n\n.sek-module-inner cite {\n color: #313131;\n font-weight: 300;\n font-style: normal;\n position: relative;\n display: inline-block;\n}\n\n.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {\n background-color: #dbdbdb;\n}\n\n.sek-module-inner sub {\n bottom: -0.25em;\n}\n\n.sek-module-inner sub, .sek-module-inner sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\n.sek-module-inner table {\n width: 100%;\n border-collapse: collapse;\n /*&:not([id^=wp-calendar]) {\r\n border: 2px solid $grey-lightest;\r\n th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }\r\n th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }\r\n td { color: $grey-dark; }\r\n }*/\n}\n\n@media (max-width: 767.98px) {\n .sek-module-inner table {\n table-layout: fixed;\n }\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {\n border: 2px solid #eceeef;\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {\n text-transform: uppercase;\n letter-spacing: 2px;\n font-family: sans-serif;\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {\n font-size: 0.95em;\n padding: 1.25em;\n border: 1px solid #eceeef;\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {\n color: #777;\n}\n\n.sek-module-inner .sek-btn {\n display: inline-block;\n font-weight: normal;\n line-height: 1.25em;\n text-align: center;\n /*white-space: nowrap;*/\n white-space: normal;\n word-break: break-all;\n vertical-align: middle;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.5em 1em;\n border-radius: 2px;\n border-width: 2px;\n border-style: solid;\n font-size: 1em;\n cursor: pointer;\n text-decoration: none;\n text-transform: none;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n}\n\n.sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:hover {\n text-decoration: none;\n}\n\n.sek-module-inner .sek-btn:focus, .sek-module-inner .focus.sek-btn {\n outline: 0;\n box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);\n}\n\n.sek-module-inner .disabled.sek-btn, .sek-module-inner .sek-btn:disabled {\n cursor: not-allowed;\n opacity: .65;\n box-shadow: none;\n}\n\n.sek-module-inner .sek-btn:active, .sek-module-inner .active.sek-btn {\n background-image: none;\n box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);\n}\n\na.sek-btn.disabled,\nfieldset[disabled] a.sek-btn {\n pointer-events: none;\n}\n\n.sektion-wrapper button,\n.sektion-wrapper [type=\"button\"],\n.sektion-wrapper [type=\"reset\"],\n.sektion-wrapper [type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n.sektion-wrapper button::-moz-focus-inner,\n.sektion-wrapper [type=\"button\"]::-moz-focus-inner,\n.sektion-wrapper [type=\"reset\"]::-moz-focus-inner,\n.sektion-wrapper [type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\nbutton.sek-btn,\n[type=\"button\"].sek-btn,\n[type=\"reset\"].sek-btn,\n[type=\"submit\"].sek-btn {\n -wekbit-appearance: none !important;\n background: transparent;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner {\n /* WP Search Widget */\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .wp-caption figcaption {\n color: #6d6d6d;\n font-style: italic;\n max-width: 100%;\n font-size: 14px;\n font-weight: 500;\n line-height: 1.4;\n /* Keep wide captions from overflowing their container. */\n padding: 4px;\n margin-top: 1rem;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner figure {\n display: block;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .aligncenter, [data-sek-level=\"module\"] .sek-module-inner .aligncenter img {\n margin-left: auto;\n margin-right: auto;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .alignleft {\n float: left;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .alignright {\n float: right;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .alignnone, [data-sek-level=\"module\"] .sek-module-inner .aligncenter, [data-sek-level=\"module\"] .sek-module-inner .alignleft, [data-sek-level=\"module\"] .sek-module-inner .alignright, [data-sek-level=\"module\"] .sek-module-inner .alignwide {\n margin-top: 1.5rem;\n margin-right: auto;\n margin-bottom: 1.5rem;\n margin-left: auto;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n float: left;\n}\n\n@media (max-width: 767.98px) {\n [data-sek-level=\"module\"] .sek-module-inner [role=search].search-form {\n float: none;\n }\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form label {\n position: relative;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin-right: 5px;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form label input {\n padding-left: 5px;\n line-height: 20px;\n width: 100%;\n max-width: 185px;\n min-width: 80px;\n}\n\n@media (max-width: 767.98px) {\n [data-sek-level=\"module\"] .sek-module-inner [role=search].search-form label input {\n max-width: none;\n }\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form input[type=submit] {\n line-height: 15px;\n /*width: 25%;*/\n}\n\n[data-sek-level=\"module\"] .sek-module-inner input[type=\"submit\"] {\n background: #808080;\n color: #fff;\n padding: 10px 10px;\n font-weight: normal;\n display: inline-block;\n border: none;\n cursor: pointer;\n -webkit-border-radius: 3px;\n border-radius: 3px;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .search-form input[type=\"search\"] {\n margin: 0;\n -moz-box-sizing: border-box;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-border-radius: 0;\n border-radius: 0;\n background: #fff;\n border: 2px solid #ddd;\n color: #777;\n display: block;\n max-width: 100%;\n padding: 7px 8px;\n}\n\n.sektion-wrapper.sek-password-protected {\n display: flex;\n align-items: center;\n justify-content: center;\n -ms-flex-direction: column;\n flex-direction: column;\n}\n\n.sektion-wrapper.sek-password-protected form.post-password-form {\n max-width: 450px;\n height: auto;\n padding: 4em 1em;\n font-size: 1em;\n}\n\n.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6 {\n font-weight: 400;\n line-height: 1.5em;\n}\n\n.sek-module-inner h1 {\n font-size: 2.48em;\n}\n\n.sek-module-inner h2 {\n font-size: 2.07em;\n}\n\n.sek-module-inner h3 {\n font-size: 1.73em;\n}\n\n.sek-module-inner h4 {\n font-size: 1.44em;\n}\n\n.sek-module-inner h5 {\n font-size: 1.2em;\n}\n\n.sek-module-inner h6 {\n font-size: 1em;\n}\n\n.sek-module-inner .sek-heading {\n text-align: center;\n margin: 0.6em 0;\n display: block;\n}\n\n.sek-module-inner .sek-heading > a {\n color: inherit;\n font-size: inherit;\n}\n\n.sek-nav-wrap {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: flex-end;\n padding: .5rem 0;\n}\n\n.sek-mobile-menu-expanded-below .sek-nav-wrap {\n padding: 0;\n}\n\n.sek-nav-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n}\n\n.sek-nav {\n display: flex;\n flex-wrap: wrap;\n flex-direction: column;\n}\n\n.sek-module .sek-module-inner .sek-nav {\n margin-right: -10px !important;\n margin-left: -10px !important;\n}\n\n.sek-module .sek-module-inner .sek-nav,\n.sek-module .sek-module-inner .sek-nav ul {\n list-style: none !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n\n.sek-module .sek-module-inner .sek-nav li {\n list-style: none;\n margin: 0 5px;\n}\n\n.sek-module .sek-module-inner .sek-nav li > ul li {\n padding: 0 .9rem 0 0;\n}\n\n.sek-nav li a {\n font-size: 16px;\n line-height: 1.5em;\n padding: .6em .8em;\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: inherit;\n overflow: hidden;\n}\n\n.sek-nav-wrap .sek-nav li a {\n text-decoration: none;\n}\n\n.sek-nav li a:hover .sek-nav__title {\n text-decoration: underline;\n}\n\n.sek-nav li:not(:last-of-type) {\n border-bottom: 1px solid;\n border-color: rgba(49, 49, 49, 0.09);\n}\n\n.sek-nav .menu-item-has-children,\n.sek-nav .page_item_has_children {\n position: relative;\n}\n\n.sek-nav .menu-item-has-children > a::after,\n.sek-nav .page_item_has_children > a::after {\n content: \"\\203A\";\n font-family: \"Arial Unicode MS\", Arial;\n moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n display: none;\n font-style: normal;\n font-variant: normal;\n text-rendering: auto;\n font-weight: 900;\n transition: all 0.3s ease;\n transform-style: preserve-3d;\n backface-visibility: hidden;\n perspective: 1000px;\n padding: 0 .45em;\n font-size: 1em;\n position: relative;\n transform: translateZ(0) rotate(90deg);\n -ms-transform: rotate(90deg);\n}\n\n.sek-nav .menu-item-has-children.show > a::after,\n.sek-nav .page_item_has_children.show > a::after {\n transform: translateZ(0) rotate(90deg) !important;\n -ms-transform: rotate(90deg) !important;\n}\n\n.sek-nav .sub-menu,\n.sek-nav .children {\n position: static;\n float: none;\n list-style: none;\n border-radius: 0;\n border: 0;\n margin: 0;\n padding: 0;\n font-size: inherit;\n}\n\n@media (min-width: 768px) {\n .sek-nav .sub-menu,\n .sek-nav .children {\n position: absolute;\n display: none;\n top: 100%;\n right: 0;\n z-index: 1000;\n min-width: 10rem;\n max-width: 50vw;\n }\n}\n\n.sek-dropdown-submenu > a::after {\n transform: translateZ(0) rotate(0deg) !important;\n -ms-transform: rotate(0deg) !important;\n}\n\n.sek-dropdown-submenu > a[class*=-reverse]::after {\n top: .1em;\n transform: translateZ(0) rotate(180deg) !important;\n -ms-transform: rotate(180deg) !important;\n}\n\n.sek-module-inner .sek-nav-toggler {\n -webkit-appearance: none !important;\n cursor: pointer;\n height: 40px;\n width: 40px;\n padding: 0;\n vertical-align: middle;\n}\n\n.sek-module-inner .sek-nav-toggler, .sek-module-inner .sek-nav-toggler:hover, .sek-module-inner .sek-nav-toggler:focus {\n background: 0 0;\n background-color: rgba(0, 0, 0, 0);\n color: black;\n border: none;\n}\n\n.sek-ham__span-wrapper {\n height: 12px;\n position: relative;\n display: block;\n}\n\n.sek-ham__span-wrapper .line {\n display: block;\n height: 1.5px;\n position: absolute;\n left: 10px;\n border-radius: 5px;\n background-clip: padding-box;\n transition: all ease .35s;\n backface-visibility: hidden;\n border-top: 1.5px solid;\n}\n\n.sek-ham__span-wrapper .line-1 {\n top: 0;\n}\n\n.sek-ham__span-wrapper .line-2 {\n top: 50%;\n}\n\n.sek-ham__span-wrapper .line-3 {\n top: 100%;\n}\n\n.sek-nav-toggler .line-1 {\n transform: translate(-3px, 6px) rotate(45deg);\n width: 28px;\n}\n\n.sek-nav-toggler .line-2 {\n opacity: 0;\n}\n\n.sek-nav-toggler .line-3 {\n transform: translate(-3px, -6px) rotate(-45deg);\n width: 28px;\n}\n\n.sek-nav-toggler.sek-collapsed .line {\n width: 20px;\n transform: translate(0, 0) rotate(0);\n opacity: 1;\n}\n\n.sek-nav-toggler.sek-collapsed.hovering .line {\n transform: translateX(-3px);\n width: 26px;\n}\n\n.sek-dropdown-menu {\n position: static;\n float: none;\n list-style: none;\n border-radius: 0;\n border: 0;\n margin: 0;\n padding: 0;\n font-size: inherit;\n}\n\n@media (min-width: 768px) {\n .sek-dropdown-menu {\n position: absolute;\n display: none;\n top: 100%;\n right: 0;\n z-index: 1000;\n min-width: 10rem;\n max-width: 50vw;\n }\n}\n\n.show > .sek-dropdown-menu {\n display: block;\n}\n\n.sek-dropdown-menu .sek-nav__title {\n word-break: break-word;\n white-space: normal;\n}\n\n.sek-dropdown-menu.open-right {\n left: 0;\n right: auto;\n}\n\n.sek-dropdown-menu.open-right ul:not(.open-left),\n.sek-dropdown-menu ul.open-right {\n left: 100%;\n right: auto;\n}\n\n.sek-dropdown-menu.open-left {\n left: auto;\n right: 0;\n}\n\n.sek-dropdown-menu.open-left ul:not(.open-right),\n.sek-dropdown-menu ul.open-left {\n right: 100%;\n left: auto;\n}\n\n@media (min-width: 768px) {\n .sek-nav {\n flex-direction: row;\n }\n .sek-nav .menu-item-has-children > a::after,\n .sek-nav .page_item_has_children > a::after {\n display: inline-block;\n }\n .sek-nav > li:not(:last-of-type) {\n border-bottom: none;\n }\n .sek-nav > li > a {\n padding: 5px;\n }\n .sek-nav-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .sek-mobile-menu-expanded-below {\n display: none !important;\n }\n .sek-nav-toggler {\n display: none;\n }\n .sek-dropdown-menu {\n background: white;\n box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);\n }\n .sek-nav .sek-dropdown-menu li {\n padding: 0 10px !important;\n margin: 0 !important;\n }\n .sek-nav .sek-dropdown-menu li a {\n padding: 10px 12px;\n }\n .sek-dropdown-menu ul {\n right: 100%;\n }\n .sek-dropdown-menu .sek-menu-link__row-reverse {\n flex-direction: row-reverse !important;\n }\n .sek-dropdown-menu .sek-nav__title {\n word-break: normal;\n white-space: nowrap;\n }\n .sek-dropdown-submenu .sek-dropdown-menu {\n top: 15px;\n }\n .sek-submenu-fade .sek-dropdown-menu a {\n transition: all 0.25s ease;\n transform: translate(0, 0);\n }\n .sek-submenu-fade .sek-dropdown-menu a:hover {\n transform: translate(3px, 0);\n }\n .sek-submenu-fade .page_item_has_children,\n .sek-submenu-fade .menu-item-has-children {\n perspective: 1000px;\n }\n .sek-submenu-fade .page_item_has_children > ul,\n .sek-submenu-fade .menu-item-has-children > ul {\n position: fixed;\n opacity: 0;\n visibility: hidden;\n display: block;\n transition: all 0.25s ease-in-out;\n transform: translate(0, -10px);\n }\n .sek-submenu-fade .page_item_has_children:not(.show),\n .sek-submenu-fade .menu-item-has-children:not(.show) {\n overflow: hidden;\n }\n .sek-submenu-fade .page_item_has_children:not(.show) ul,\n .sek-submenu-fade .menu-item-has-children:not(.show) ul {\n pointer-events: none;\n cursor: not-allowed;\n }\n .sek-submenu-fade li.show {\n perspective: none;\n }\n .sek-submenu-fade li.show > ul {\n position: absolute;\n visibility: visible;\n opacity: 1;\n transform: translate(0, 0);\n }\n}\n\n[data-sek-is-mobile-menu=\"yes\"] > .show {\n overflow: auto;\n max-height: 80vh;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] li .sub-menu li > a {\n font-size: 0.8em;\n padding: .6em 15px;\n}\n\n.nb-module-menu-search {\n position: relative;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] .nb-module-menu-search {\n display: none;\n}\n\n.nb-svg-search-icon {\n cursor: pointer;\n padding: 0;\n}\n\n.nb-module-menu-search .nb-search-expand {\n display: none;\n background: #fff;\n position: absolute;\n z-index: 100;\n top: 49px;\n right: 0;\n left: 0;\n width: 340px;\n -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n\n.nb-search-expand .nb-search-expand-inner {\n border: 1px solid #eee;\n box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);\n transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;\n transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;\n padding: 15px;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {\n display: flex;\n float: none;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner label input[type=search] {\n max-width: 100%;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search form input[type=submit] {\n margin: 0;\n background: #808080;\n color: #fff;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search input[type=search],\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search form input[type=submit] {\n text-transform: none !important;\n}\n\n.nb-mobile-search {\n display: none;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search {\n display: block;\n padding: 6px 14px 15px;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search input {\n font-size: 16px;\n}\n\n[data-sek-module-type=\"czr_image_module\"] {\n text-align: center;\n}\n\n[data-sek-module-type=\"czr_image_module\"] img {\n border: 0 solid #f2f2f2;\n}\n\n[data-sek-module-type=\"czr_image_module\"] .box-shadow img {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;\n}\n\n/* image module transitions for better animations when effects are used */\n[data-sek-module-type=\"czr_image_module\"] figure img {\n -webkit-transition: all 0.2s ease-out;\n -o-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n\n[data-sek-module-type=\"czr_image_module\"] figure.has-custom-height {\n overflow: hidden;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-pack: center;\n justify-content: center;\n -ms-flex-align: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_image_module\"] figure.has-custom-height img {\n object-fit: cover;\n}\n\n.sek-hover-effect-opacity img:hover {\n opacity: .7;\n}\n\n.sek-hover-effect-zoom-out img:hover {\n transform: scale(1.05);\n}\n\n.sek-hover-effect-zoom-in img:hover {\n transform: scale(0.95);\n}\n\n.sek-hover-effect-move-up img:hover {\n transform: translateY(-6px);\n}\n\n.sek-hover-effect-move-down img:hover {\n transform: translateY(6px);\n}\n\n.sek-hover-effect-blur img:hover {\n filter: blur(2px);\n}\n\n.sek-hover-effect-grayscale img:hover {\n filter: grayscale(0%);\n}\n\n.sek-hover-effect-grayscale img:hover {\n filter: grayscale(100%);\n filter: gray;\n}\n\n.sek-hover-effect-reverse-grayscale img {\n filter: grayscale(100%);\n filter: gray;\n}\n\n.sek-hover-effect-reverse-grayscale img:hover {\n filter: grayscale(0%);\n}\n\n.sek-nimble-image-wrapper {\n max-width: 100%;\n overflow: hidden;\n width: 100%;\n position: relative;\n display: block;\n background-position: center center;\n background-size: cover;\n display: flex;\n align-items: center;\n justify-content: center;\n backface-visibility: hidden;\n transform-style: preserve-3d;\n}\n\n.sek-nimble-image-wrapper::before {\n content: '';\n display: block;\n padding-top: 100%;\n}\n\n.sek-nimble-image-wrapper a {\n color: #ffffff;\n}\n\n.sek-nimble-image-wrapper a:hover {\n color: #ffffff;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper {\n position: absolute;\n width: 100%;\n height: 100%;\n z-index: 1;\n top: 0;\n display: -webkit-box;\n display: -moz-box;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {\n font-size: 80px;\n line-height: 1em;\n color: #000000;\n transition: all .3s ease;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {\n color: #000000;\n font-size: 16px;\n line-height: 1.5em;\n font-weight: 400;\n transition: all .3s ease;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {\n margin: 0;\n padding: 0;\n}\n\n.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {\n color: #969696;\n}\n\n.sek-nimble-image-mask {\n position: absolute;\n border-color: #fff;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n overflow: hidden;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.sek-nimble-image-mask::before {\n position: absolute;\n content: '';\n z-index: 1;\n border: 150vw solid;\n border-color: inherit;\n box-sizing: content-box;\n transition: all .3s ease;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n}\n\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {\n width: 88%;\n padding-bottom: 88%;\n}\n\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {\n width: 63%;\n padding-bottom: 63%;\n}\n\n.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {\n border-radius: 50%;\n}\n\n.sek-nimble-image {\n position: absolute;\n width: 100%;\n height: 100%;\n background-position: center center;\n background-size: cover;\n background-repeat: no-repeat;\n z-index: 0;\n top: 0;\n}\n\n[data-sek-module-type=\"czr_divider_module\"] {\n text-align: center;\n}\n\n[data-sek-module-type=\"czr_divider_module\"] .sek-module-inner {\n font-size: 0;\n line-height: 0;\n}\n\n.sek-module-inner .sek-divider {\n border-top: 1px solid #5a5a5a;\n display: inline-block;\n width: 100%;\n margin-top: 15px;\n margin-bottom: 15px;\n font-size: 1rem;\n}\n\n.sek-module-inner .sek-spacer {\n height: 20px;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] {\n text-align: center;\n color: #5a5a5a;\n font-size: 15px;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:hover,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:focus,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:active,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon.active {\n color: inherit;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .box-shadow .sek-icon-wrapper {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .sek-icon i {\n -webkit-transition: all 0.15s ease-in-out;\n -o-transition: all 0.15s ease-in-out;\n transition: all 0.15s ease-in-out;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .sek-icon .fas, [data-sek-module-type=\"czr_icon_module\"] .sek-icon .far, [data-sek-module-type=\"czr_icon_module\"] .sek-icon .fab {\n width: 1em;\n height: 1em;\n text-align: center;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon {\n box-shadow: none;\n -webkit-box-shadow: none;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:hover, [data-sek-module-type=\"czr_icon_module\"] a.sek-icon:focus, [data-sek-module-type=\"czr_icon_module\"] a.sek-icon:active {\n box-shadow: none;\n -webkit-box-shadow: none;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .sek-icon-wrapper {\n display: inline-block;\n line-height: 1em;\n}\n\n.sek-quote p {\n margin: 0 0 .5em;\n padding: 0;\n}\n\n.sek-quote .sek-cite {\n font-size: 14px;\n line-height: 1.5em;\n font-style: inherit;\n}\n\n.sek-quote[data-sek-quote-design=\"none\"] {\n border-left: none;\n}\n\n.sek-quote .sek-quote-content {\n font-weight: 400;\n font-size: 16px;\n line-height: 1.5em;\n color: inherit;\n}\n\n.sek-quote.sek-quote-design {\n background: none;\n font-style: inherit;\n margin-right: 0;\n margin-left: 0;\n padding: 15px 0;\n border: none;\n}\n\n.sek-quote.sek-quote-design > * {\n padding: 0;\n margin: 0;\n}\n\n.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {\n display: none;\n}\n\n.sek-quote.sek-quote-design .sek-cite {\n padding: 0;\n font-weight: normal;\n}\n\n.sek-quote.sek-quote-design .sek-cite::before {\n display: none;\n}\n\n.sek-quote.sek-quote-design .sek-quote-inner {\n color: inherit;\n padding-right: calc( 10px + 0.7em);\n}\n\n.sek-quote.sek-quote-design.sek-border-before {\n padding-right: 15px;\n border-right: 5px solid;\n}\n\n.sek-quote.sek-quote-design.sek-border-before .sek-cite {\n clear: both;\n display: block;\n margin-top: 1.5em;\n position: relative;\n padding-right: 2.2em;\n padding-left: 0.25em;\n}\n\n.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {\n display: block;\n content: '';\n top: 1em;\n position: absolute;\n background: none;\n width: 2em;\n height: auto;\n right: 0;\n border-top: 1px solid;\n}\n\n.sek-quote.sek-quote-design.sek-quote-icon-before {\n position: relative;\n display: flex;\n font-size: 50px;\n}\n\n.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {\n margin-bottom: .75em;\n}\n\n.sek-quote.sek-quote-design.sek-quote-icon-before::before {\n content: \"\\275D\";\n font-family: \"Arial Unicode MS\", Code2000;\n color: #ccc;\n font-style: normal;\n text-align: center;\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n font-variant: normal;\n text-rendering: auto;\n display: flex;\n width: auto;\n margin: 0;\n right: 0;\n position: absolute;\n top: 10px;\n}\n\n[data-sek-module-type=\"czr_button_module\"] .sek-module-inner {\n text-align: center;\n}\n\n.sek-module-inner .sek-btn {\n background: #020202;\n color: #ffffff;\n padding: 0.5em 1em;\n}\n\n.sek-module-inner .sek-btn i {\n margin: 0 8px;\n}\n\n.sek-module-inner .sek-btn:hover, .sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:active {\n color: #ffffff;\n}\n\n[data-sek-module-type=\"czr_button_module\"] .sek-module-inner .sek-btn:focus, [data-sek-module-type=\"czr_button_module\"] .sek-module-inner .sek-btn:hover {\n text-decoration: none;\n}\n\n.sek-btn-inner {\n display: flex;\n align-items: center;\n}\n\n.sek-btn.box-shadow {\n -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n}\n\n.sek-btn.box-shadow.push-effect:active {\n transform: translateY(2px);\n}\n\n.sek-post-grid-wrapper {\n margin-top: 1.5rem;\n margin-bottom: 1.5rem;\n}\n\n.sek-post-grid-wrapper .sek-grid-items {\n grid-row-gap: 25px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {\n margin-bottom: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {\n margin-bottom: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article > :first-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article > :last-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {\n margin-top: 0 !important;\n margin-bottom: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {\n -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);\n box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);\n -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n -o-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {\n -webkit-transform: translateY(-4px);\n -ms-transform: translateY(-4px);\n transform: translateY(-4px);\n -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);\n box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);\n}\n\n.sek-post-grid-wrapper .sek-pg-thumbnail {\n box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);\n background-color: #fff;\n overflow: hidden;\n}\n\n.sek-post-grid-wrapper .sek-pg-thumbnail a {\n display: block;\n position: relative;\n}\n\n.sek-post-grid-wrapper .sek-pg-thumbnail img {\n display: block;\n width: 100%;\n height: auto;\n}\n\n.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {\n height: 0;\n padding-top: 65%;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {\n height: auto !important;\n padding-top: inherit !important;\n }\n}\n\n.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {\n position: absolute;\n height: 100%;\n width: 100%;\n max-height: none;\n max-width: none;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n -o-object-fit: cover;\n object-fit: cover;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {\n height: auto !important;\n position: relative;\n }\n}\n\n.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {\n content: \"\\B7\";\n vertical-align: middle;\n margin: 0 5px;\n line-height: 1;\n}\n\n.sek-post-grid-wrapper .sek-pg-content {\n text-align: right;\n}\n\n.sek-post-grid-wrapper .sek-excerpt > :last-child {\n margin-bottom: 0;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {\n text-transform: uppercase;\n font-size: 14px;\n text-decoration: none;\n color: #767676;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-title {\n font-size: 28px;\n line-height: 1.3em;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {\n text-decoration: none;\n color: #444;\n font-size: 28px;\n font-weight: 400;\n line-height: 1.3em;\n -ms-word-wrap: break-word;\n word-wrap: break-word;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {\n text-transform: uppercase;\n font-size: 14px;\n letter-spacing: 1px;\n color: #767676;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {\n margin: 0 0 15px 0;\n line-height: 1.5;\n font-size: 16px;\n color: #494949;\n}\n\n.sek-post-grid-wrapper .sek-list-layout {\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-list-layout {\n display: block !important;\n }\n}\n\n.sek-post-grid-wrapper .sek-list-layout article {\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n grid-column-gap: 20px;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-list-layout article {\n display: block !important;\n padding-top: 10px;\n }\n}\n\n.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n}\n\n.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {\n -ms-grid-columns: 30% minmax(0, 1fr);\n grid-template-columns: 30% minmax(0, 1fr);\n}\n\n.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {\n margin-bottom: 0;\n -ms-flex-item-align: start;\n align-self: flex-start;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout {\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: 1fr 20px 1fr;\n grid-template-columns: 1fr 1fr;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n grid-row-gap: 20px;\n grid-column-gap: 20px;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-grid-layout {\n display: block !important;\n }\n}\n\n.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-1 {\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n}\n\n@media (min-width: 768px) {\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-1 {\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n}\n\n@media (min-width: 576px) and (max-width: 767.98px) {\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-1 {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n}\n\n@media (max-width: 575.98px) {\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-1 {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n}\n\n@media (min-width: 576px) and (max-width: 767.98px) {\n .sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n grid-gap: 0;\n }\n .sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article .sek-pg-thumbnail {\n margin-bottom: 15px;\n }\n}\n\n@media (max-width: 575.98px) {\n .sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n grid-gap: 0;\n }\n .sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article .sek-pg-thumbnail {\n margin-bottom: 15px;\n }\n}\n\n.sek-post-navigation #sek-nav-below {\n background-color: #f7f8f9;\n margin-top: 20px;\n padding: 5px;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination {\n text-align: center;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination ul {\n display: inline-block;\n vertical-align: middle;\n margin: 0;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {\n font-family: inherit;\n opacity: 0.7;\n text-decoration: none !important;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .current {\n font-weight: 600;\n opacity: 1;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {\n margin: 0 5px;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {\n margin: 0 -5px;\n}\n\n.sek-post-navigation #sek-nav-below nav {\n padding-top: 20px;\n padding-bottom: 20px;\n}\n\n.sek-post-navigation #sek-nav-below ul.sek-czr-pager {\n margin: 0;\n}\n\n.sek-post-navigation #sek-nav-below li {\n display: inline-block;\n font-size: 16px;\n}\n\n.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {\n text-transform: uppercase;\n letter-spacing: 2px;\n color: #5A5A5A;\n}\n\n.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {\n color: #3b3b3b;\n opacity: 1 !important;\n}\n\n.sek-post-navigation #sek-nav-below .sek-czr-pager > li {\n display: block;\n}\n\n.sek-post-navigation #sek-nav-below .sek-nav-dir {\n display: block;\n}\n\n.sek-post-navigation #sek-nav-below .sek-nav-dir > a {\n max-width: 100%;\n}\n\n.sek-post-navigation #sek-nav-below a i.arrow {\n font-size: 0.9em;\n}\n\n.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {\n font-family: inherit;\n line-height: 30px;\n height: 30px;\n display: inline-block;\n vertical-align: middle;\n transition: all 0.3s ease;\n position: relative;\n}\n\n.sek-post-navigation #sek-nav-below .sek-meta-nav {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n transition: all .2s,.6s ease;\n opacity: .7;\n}\n\n.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {\n opacity: 1;\n text-decoration: underline;\n}\n\n.sek-post-navigation #sek-nav-below .sek-meta-nav-title {\n display: inline-block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n vertical-align: middle;\n font-size: 0.9em;\n}\n\n.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {\n font-size: 16px;\n width: 100% !important;\n padding: 0.4em 0.5em;\n border-radius: 3px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n outline: none;\n font-weight: normal;\n max-width: 100%;\n border: none;\n color: #555555;\n background-color: #ffffff;\n}\n\n.sek-simple-form-wrapper textarea {\n height: auto;\n max-height: 150px;\n}\n\n.sek-simple-form-wrapper .sek-form-field {\n margin-bottom: 15px;\n clear: both;\n}\n\n.sek-simple-form-wrapper label {\n color: #444444;\n font-weight: bold;\n text-align: left;\n margin: 0;\n padding: 0 0 3px 0;\n width: auto;\n display: block;\n}\n\n.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type=\"text\"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {\n -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n}\n\n.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type=\"text\"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;\n}\n\n.sek-simple-form-wrapper #sek-form-respond {\n padding: 20px 0;\n}\n\n.sek-simple-form-wrapper input[type=\"checkbox\"] + label {\n display: inline;\n font-weight: bold;\n margin-left: 0.5rem;\n}\n\n.sek-form-message {\n padding: 10px;\n margin: 10px 0;\n text-align: center;\n line-height: 1.5em;\n font-size: 16px;\n border-radius: 4px;\n}\n\n.sek-form-message.sek-mail-failure {\n color: #ff0000;\n border: 1px solid #ff0000;\n background: none;\n background: rgba(255, 0, 0, 0.05);\n}\n\n.sek-form-message.sek-mail-success {\n color: #008000;\n border: 1px solid #008000;\n background: none;\n background: rgba(0, 128, 0, 0.05);\n}\n\n.sek-form-message.sek-mail-aborted {\n color: #ffa500;\n border: 1px solid #ffa500;\n background: none;\n background: rgba(255, 165, 0, 0.05);\n}\n\n.grecaptcha-badge {\n z-index: 1;\n}\n\n.sek-hide-rc-badge .grecaptcha-badge {\n display: none;\n}\n\n[data-sek-module-type=\"czr_tiny_mce_editor_module\"] a {\n text-decoration: underline;\n}\n\n[data-sek-module-type=\"czr_social_icons_module\"] .sek-module-inner .sek-social-icons-wrapper {\n margin: 10px 0;\n}\n\n.sek-module-inner .sek-social-icons-wrapper {\n text-align: center;\n}\n\n.sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {\n padding-right: 8px;\n}\n\n.sek-module-inner .sek-social-icons-wrapper > li {\n display: inline-block;\n}\n\n.sek-module-inner .sek-social-icons-wrapper > li a {\n color: #707070;\n}\n\n.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {\n font-size: 28px;\n line-height: 1.5em;\n}\n\n.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n}\n\n.sek-column-inner [data-sek-module-type=\"czr_img_slider_module\"] {\n width: calc(100% + 20px);\n max-width: calc(100% + 20px);\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] {\n /* SWIPER BULLETS */\n /* SWIPER ARROWS */\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-carousel-img [src*=\"data:image/gif;\"] {\n display: none;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-loading .sek-carousel-img img {\n display: none;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container {\n width: 100%;\n height: 100%;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container .swiper-wrapper {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n height: 400px;\n}\n\n@media (max-width: 575.98px) {\n [data-sek-module-type=\"czr_img_slider_module\"] .swiper-container .swiper-wrapper {\n height: 200px;\n }\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"nimble-wizard\"] .sek-carousel-img {\n height: 100%;\n overflow: hidden;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"nimble-wizard\"] .sek-carousel-img img {\n max-width: none;\n opacity: 0;\n -webkit-transition: opacity 0.15s ease-in-out;\n -moz-transition: opacity, 0.15s ease-in-out;\n -ms-transition: opacity, 0.15s ease-in-out;\n -o-transition: opacity, 0.15s ease-in-out;\n transition: opacity 0.15s ease-in-out;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"height-100\"] .sek-carousel-img {\n height: 100%;\n width: auto;\n overflow: hidden;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"height-100\"] .sek-carousel-img img {\n width: auto;\n height: 100%;\n max-width: none;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"cover\"] .sek-carousel-img {\n height: 100%;\n width: 100%;\n overflow: hidden;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"cover\"] .sek-carousel-img img {\n width: 100%;\n height: 100%;\n max-width: none;\n object-fit: cover;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide {\n text-align: center;\n font-size: 18px;\n background: #fff;\n /* Center slide image vertically */\n display: -webkit-box;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n -webkit-justify-content: center;\n justify-content: center;\n -webkit-box-align: center;\n -ms-flex-align: center;\n -webkit-align-items: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img {\n width: 100%;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img img {\n width: 100%;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img img.sek-h-centrd {\n width: auto !important;\n max-width: none !important;\n position: relative;\n opacity: 1;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img img.sek-v-centrd {\n height: auto !important;\n max-height: none !important;\n vertical-align: top;\n position: relative;\n max-width: none !important;\n opacity: 1;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide[data-sek-has-overlay=\"true\"] .sek-carousel-img::after {\n content: '';\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n position: absolute;\n background-color: #000000;\n opacity: 0.3;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-slider-text-wrapper {\n height: 100%;\n width: 100%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform: translate3d(-50%, -50%, 0);\n transform: translate3d(-50%, -50%, 0);\n top: 50%;\n left: 50%;\n position: absolute;\n /* Center slide text vertically\r\n => consistent with defaults in module registration */\n display: -webkit-box;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n -webkit-justify-content: center;\n justify-content: center;\n -webkit-box-align: center;\n -ms-flex-align: center;\n -webkit-align-items: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-slider-text-content {\n height: auto;\n max-height: 100%;\n width: 100%;\n padding: 5%;\n text-align: center;\n z-index: 3;\n overflow: hidden;\n color: #e2e2e2;\n font-size: 16px;\n line-height: 1.5em;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-slider-text-content * {\n font-size: 16px;\n line-height: 1.5em;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-pagination-bullet-active {\n background-color: #ffffff;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav {\n cursor: pointer;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-chevron {\n display: inline-block;\n border-right: 2px solid #ffffff;\n border-bottom: 2px solid #ffffff;\n width: 11px;\n height: 11px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev {\n left: 0;\n border-top-left-radius: 0px;\n border-top-right-radius: 2px;\n border-bottom-right-radius: 2px;\n border-bottom-left-radius: 0px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {\n -webkit-transform: rotate(-225deg);\n -ms-transform: rotate(-225deg);\n transform: rotate(-225deg);\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next {\n right: 0;\n border-top-left-radius: 2px;\n border-top-right-radius: 0px;\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 2px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next .sek-chevron {\n -webkit-transform: rotate(-45deg);\n -ms-transform: rotate(-45deg);\n transform: rotate(-45deg);\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next {\n position: absolute;\n z-index: 2;\n top: calc((100% - 60px)/2);\n text-align: center;\n margin-top: 0px;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n -ms-backface-visibility: hidden;\n -o-backface-visibility: hidden;\n backface-visibility: hidden;\n display: block;\n height: 60px;\n width: 50px;\n opacity: 0.6;\n background-color: rgba(32, 32, 32, 0.4);\n -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);\n transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);\n line-height: 64px;\n cursor: pointer;\n font-size: 18px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next:hover {\n background-color: rgba(32, 32, 32, 0.7);\n opacity: 1;\n width: 100px;\n}\n\n@media (max-width: 575.98px) {\n [data-sek-module-type=\"czr_img_slider_module\"] [data-sek-hide-nav-on-mobile=\"true\"] .swiper-pagination {\n display: none;\n }\n [data-sek-module-type=\"czr_img_slider_module\"] [data-sek-hide-nav-on-mobile=\"true\"] .sek-swiper-nav {\n display: none;\n }\n}\n\n.sek-accord-wrapper {\n text-align: left;\n}\n\n.sek-accord-wrapper .sek-accord-item {\n border: 1px solid #e3e3e3;\n overflow: hidden;\n}\n\n.sek-accord-wrapper .sek-accord-item:not(:last-child) {\n margin-bottom: 0px;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title {\n cursor: pointer;\n color: #565656;\n background: #ffffff;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding: 15px 20px;\n border-top: none;\n border-right: none;\n border-left: none;\n border-bottom: 1px solid #e3e3e3;\n font-size: 16px;\n line-height: 1.5em;\n font-weight: 600;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {\n color: #1e261f;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {\n background: #1e261f;\n}\n\n[data-sek-expanded=\"true\"] .sek-accord-title * {\n color: #1e261f;\n}\n\n[data-sek-expanded=\"true\"] .sek-accord-title .expander span {\n background: #1e261f;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {\n padding-right: 10px;\n max-width: calc(100% - 30px);\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {\n -webkit-transition: all 0.15s ease-in-out;\n -moz-transition: all, 0.15s ease-in-out;\n -ms-transition: all, 0.15s ease-in-out;\n -o-transition: all, 0.15s ease-in-out;\n transition: all 0.15s ease-in-out;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {\n color: #1e261f;\n width: 30px;\n height: 30px;\n padding: 0;\n margin: 0;\n outline: none;\n border: 0;\n background: none;\n -webkit-box-shadow: none;\n box-shadow: none;\n font-size: 1.5em;\n position: relative;\n cursor: pointer;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {\n position: absolute;\n -webkit-transition: .3s;\n -o-transition: .3s;\n transition: .3s;\n background: #565656;\n border-radius: 2px;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {\n top: 25%;\n bottom: 25%;\n width: 10%;\n left: 45%;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {\n left: 25%;\n right: 25%;\n height: 10%;\n top: 45%;\n}\n\n[data-sek-expanded=\"true\"] .expander span:first-of-type, [data-sek-expanded=\"true\"] .expander span:last-of-type {\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n[data-sek-expanded=\"true\"] .expander span:last-of-type {\n left: 50%;\n right: 50%;\n}\n\n[data-sek-has-global-border=\"true\"][data-sek-has-title-border=\"true\"] [data-sek-expanded=\"false\"] .sek-accord-title {\n border-bottom: none;\n}\n\n[data-sek-has-global-border=\"true\"][data-sek-has-title-border=\"true\"] .sek-accord-item:not(:last-child) {\n border-bottom: none;\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title .expander span:last-of-type {\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title .expander span:last-of-type {\n left: 50%;\n right: 50%;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-content {\n padding: 15px 20px;\n background: #f2f2f2;\n color: #1e261f;\n font-size: 16px;\n line-height: 1.5em;\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] > .sek-accord-content {\n display: block;\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"false\"] > .sek-accord-content {\n display: none;\n}\n\n[data-sek-module-type=\"czr_shortcode_module\"] [data-sek-use-flexbox=\"true\"] {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n}\n\n.sek-module-inner {\n line-height: 1.5em;\n}\n\n.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {\n line-height: 1.5em;\n}\n\n.sek-module-inner p {\n margin: 0 0 1em;\n padding: 0;\n}\n\n.sek-module-inner a {\n text-decoration: none;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\n.sek-module-inner img {\n height: auto;\n max-width: 100%;\n border: none;\n -webkit-border-radius: 0;\n border-radius: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\n[data-sek-module-type=\"czr_tiny_mce_editor_module\"] .sek-module-inner a,\n[data-sek-module-type=\"czr_shortcode_module\"] .sek-module-inner a,\n[data-sek-module-type=\"czr_accordion_module\"] .sek-module-inner a,\n[data-sek-module-type=\"czr_simple_html_module\"] .sek-module-inner a {\n text-decoration: underline;\n}\n\nbody .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {\n content: none;\n background: none;\n}\n\n/*# sourceMappingURL=sek-base-rtl.css.map */",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}
|
1 |
+
{"version":3,"sources":["../scss/_1_4_reboot.scss","../scss/_1_5_base.scss","sek-base-rtl.css","../scss/_1_6_typography.scss","../scss/_1_2_variables.scss","../scss/_1_7_grid.scss","../scss/mixins/_grid.scss","../scss/mixins/_breakpoints.scss","../scss/mixins/_grid-framework.scss","../scss/_1_8_transitions.scss","../scss/mixins/_transition.scss","../scss/mixins/_clearfix.scss","../scss/utilities/_screenreaders.scss","../scss/mixins/_screen-reader.scss","../scss/utilities/_embed.scss","../scss/_2_1_formatting.scss","../scss/mixins/_utilities.scss","../scss/_2_2_buttons.scss","../scss/_2_3_wpspecifics.scss","../scss/modules/_heading.scss","../scss/modules/_menu.scss","../scss/modules/_image.scss","../scss/modules/_special_image.scss","../scss/modules/_divider.scss","../scss/modules/_spacer.scss","../scss/modules/_icon.scss","../scss/modules/_quote.scss","../scss/modules/_button.scss","../scss/modules/_post_grid.scss","../scss/modules/_simple_form.scss","../scss/modules/_tiny_mce_editor.scss","../scss/modules/_social_icons.scss","../scss/modules/_img_slider.scss","../scss/modules/_accordion.scss","../scss/modules/_shortcode.scss","../scss/_3_1_modules.scss"],"names":[],"mappings":"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","file":"sek-base-rtl.css","sourcesContent":[null,null,"/* -------------------------------------------------------------------------- */\n/* <SCOPED RESET>\r\n/* -------------------------------------------------------------------------- */\n.sektion-wrapper *,\n.sektion-wrapper *::before,\n.sektion-wrapper *::after {\n box-sizing: border-box;\n}\n\n.sektion-wrapper span, .sektion-wrapper applet, .sektion-wrapper object, .sektion-wrapper iframe,\n.sektion-wrapper h1, .sektion-wrapper h2, .sektion-wrapper h3, .sektion-wrapper h4, .sektion-wrapper h5, .sektion-wrapper h6, .sektion-wrapper p, .sektion-wrapper blockquote, .sektion-wrapper pre,\n.sektion-wrapper a, .sektion-wrapper abbr, .sektion-wrapper acronym, .sektion-wrapper address, .sektion-wrapper big, .sektion-wrapper cite, .sektion-wrapper code,\n.sektion-wrapper del, .sektion-wrapper dfn, .sektion-wrapper em, .sektion-wrapper img, .sektion-wrapper ins, .sektion-wrapper kbd, .sektion-wrapper q, .sektion-wrapper s, .sektion-wrapper samp,\n.sektion-wrapper small, .sektion-wrapper strike, .sektion-wrapper strong, .sektion-wrapper sub, .sektion-wrapper sup, .sektion-wrapper tt, .sektion-wrapper var,\n.sektion-wrapper b, .sektion-wrapper u, .sektion-wrapper i, .sektion-wrapper center,\n.sektion-wrapper dl, .sektion-wrapper dt, .sektion-wrapper dd, .sektion-wrapper ol, .sektion-wrapper ul, .sektion-wrapper li,\n.sektion-wrapper fieldset, .sektion-wrapper form, .sektion-wrapper label, .sektion-wrapper legend,\n.sektion-wrapper table, .sektion-wrapper caption, .sektion-wrapper tbody, .sektion-wrapper tfoot, .sektion-wrapper thead, .sektion-wrapper tr, .sektion-wrapper th, .sektion-wrapper td,\n.sektion-wrapper article, .sektion-wrapper aside, .sektion-wrapper canvas, .sektion-wrapper details, .sektion-wrapper embed,\n.sektion-wrapper figure, .sektion-wrapper figcaption, .sektion-wrapper footer, .sektion-wrapper header, .sektion-wrapper hgroup,\n.sektion-wrapper menu, .sektion-wrapper nav, .sektion-wrapper output, .sektion-wrapper ruby, .sektion-wrapper section, .sektion-wrapper summary,\n.sektion-wrapper time, .sektion-wrapper mark, .sektion-wrapper audio, .sektion-wrapper video {\n border: none;\n font-size: inherit;\n line-height: inherit;\n margin: 0;\n padding: 0;\n text-align: inherit;\n}\n\n.sektion-wrapper blockquote::before,\n.sektion-wrapper blockquote::after, .sektion-wrapper q:before, .sektion-wrapper q:after {\n content: \"\";\n}\n\n.sektion-wrapper ol, .sektion-wrapper ul {\n list-style: none;\n}\n\n.sektion-wrapper img {\n max-width: 100%;\n vertical-align: middle;\n border-style: none;\n display: inline;\n}\n\n.sektion-wrapper svg:not(:root) {\n overflow: hidden;\n}\n\n.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {\n max-width: 100%;\n}\n\n/* -------------------------------------------------------------------------- */\n/* </SCOPED RESET>\r\n/* -------------------------------------------------------------------------- */\n/* make sure that the location level occupies 100% of the width */\n[data-sek-level=\"location\"] {\n clear: both;\n font-size: 16px;\n}\n\n/* To make vertical alignment possible in sections */\n.sek-section, .sek-column, .sek-module {\n display: flex;\n align-items: center;\n}\n\n.sek-column-inner, .sek-module-inner {\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n/* To allow horizontal centering of modules\r\n @see https://github.com/presscustomizr/nimble-builder/issues/119\r\n*/\n/* - sections in locations */\n/* - columns in sections */\n/* - modules in columns */\n.sek-column-inner {\n display: flex;\n flex-direction: column;\n}\n\n.sek-module {\n align-self: center;\n width: 100%;\n max-width: 100%;\n}\n\n/* a nested sektion should reset its parent column padding\r\n@see https://github.com/presscustomizr/nimble-builder/issues/25\r\n*/\n[data-sek-is-nested=\"true\"] .sek-container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n/* MODULE PLACEHOLDER */\n/*@font-face {\r\n font-family: 'Material Icons';\r\n font-style: normal;\r\n font-weight: 400;\r\n src: url('../fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');\r\n}*/\n/* @see https://github.com/google/material-design-icons/blob/master/iconfont/material-icons.css */\n.sek-module-placeholder {\n text-align: center;\n}\n\n.sek-module-placeholder .material-icons {\n font-size: inherit;\n color: #cfcfcf;\n}\n\n/* LEVEL VISIBILITY BY DEVICE */\n/* NIMBLE TEMPLATE GENERAL STYLING */\n/* <inspired by Twenty Seventeed WP theme> */\n.sek-screen-reader-text {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n overflow: hidden;\n padding: 0;\n position: absolute !important;\n width: 1px;\n word-wrap: normal !important;\n}\n\n#nimble-page {\n position: relative;\n word-wrap: break-word;\n}\n\n/* </inspired by Twenty Seventeen WP theme> */\n/* Nimble btn in admin top bar */\n#wpadminbar .sek-nimble-icon {\n display: inline-block;\n}\n\n#wpadminbar .sek-nimble-icon img {\n width: 28px;\n position: absolute;\n top: 2px;\n -webkit-filter: grayscale(100%);\n filter: grayscale(100%);\n -webkit-filter: gray;\n filter: gray;\n -webkit-transition: all 0.3s ease-in-out;\n -moz-transition: all, 0.3s ease-in-out;\n -ms-transition: all, 0.3s ease-in-out;\n -o-transition: all, 0.3s ease-in-out;\n transition: all 0.3s ease-in-out;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\n#wpadminbar .sek-nimble-icon:hover img {\n -webkit-filter: none;\n filter: none;\n -webkit-filter: none;\n filter: none;\n}\n\n#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {\n padding-left: 30px;\n}\n\n[data-sek-has-bg=\"true\"] {\n background-size: cover;\n background-repeat: no-repeat;\n background-position: 50% 50%;\n}\n\n[data-sek-level=\"location\"] [data-sek-bg-parallax=\"true\"] {\n background-attachment: fixed;\n background-size: cover;\n}\n\n[data-sek-level=\"location\"] .sek-has-bg {\n position: relative;\n}\n\n@supports (-webkit-overflow-scrolling: touch) {\n body [data-sek-level=\"location\"] [data-sek-bg-parallax=\"true\"], body [data-sek-level=\"location\"] [data-sek-bg-fixed=\"true\"] {\n background-attachment: scroll;\n }\n}\n\n[data-sek-level=\"location\"] [data-sek-level] {\n -webkit-transition: 0s linear;\n -o-transition: 0s linear;\n transition: 0s linear;\n -webkit-transition-property: background-position;\n -o-transition-property: background-position;\n transition-property: background-position;\n}\n\n.sek-module .sek-module-inner .alx-tab.thumbs-enabled > li {\n padding-left: 94px;\n}\n\n.sek-module .sek-module-inner .widget_hu_tabs ul,\n.sek-module .sek-module-inner .widget_hu_tabs ol {\n margin-left: 0;\n margin-bottom: 0;\n}\n\n.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav {\n margin-bottom: 10px;\n}\n\n[data-sek-level].sek-level-has-shadow {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n}\n\n.customizer-preview [data-sek-level].sek-level-has-shadow {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;\n}\n\n[data-sek-level][data-sek-video-bg-src] {\n position: relative;\n}\n\n[data-sek-level] embed,\n[data-sek-level] iframe,\n[data-sek-level] object,\n[data-sek-level] video {\n max-width: 100%;\n width: 100%;\n margin: 0;\n line-height: 1;\n border: none;\n}\n\n[data-sek-level] .sek-custom-embed {\n line-height: 0;\n}\n\n[data-sek-level] .sek-bg-video-wrapper,\n[data-sek-level] .sek-background {\n height: 100%;\n width: 100%;\n top: 0;\n left: 0;\n position: absolute !important;\n overflow: hidden;\n z-index: 0;\n direction: ltr;\n}\n\n[data-sek-level] .sek-bg-video-wrapper {\n -webkit-transition: opacity 0.5s linear;\n -o-transition: opacity 0.5s linear;\n transition: opacity 0.5s linear;\n pointer-events: none;\n opacity: 0;\n}\n\n[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading {\n opacity: 0;\n visibility: hidden;\n}\n\n[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-vimeo-element {\n max-width: none;\n}\n\n[data-sek-level] .sek-bg-youtube-video-wrapper, [data-sek-level] .sek-background-video-local, [data-sek-level] .sek-background-vimeo-element {\n position: absolute;\n top: 50%;\n left: 50%;\n -webkit-transform: translateX(-50%) translateY(-50%);\n -ms-transform: translateX(-50%) translateY(-50%);\n transform: translateX(-50%) translateY(-50%);\n}\n\n[data-sek-level] .sek-background-video-local {\n -o-object-fit: cover;\n object-fit: cover;\n}\n\n.sek-module-inner .sek-debug-modules {\n margin: 1em;\n padding: 5px;\n border: 1px solid rgba(221, 221, 221, 0.43);\n box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);\n -webkit-box-shadow: 1px 1px 2px 0 rgba(75, 75, 85, 0.2);\n background-color: #fff;\n font-size: 15px;\n font-weight: normal;\n color: #6d6d6d;\n background: rgba(255, 255, 255, 0.6);\n}\n\n@media (max-width: 575px) {\n .customizer-preview [data-sek-video-bg-on-mobile=\"false\"] .sek-bg-video-wrapper {\n display: none;\n }\n}\n\n.sek-animate-candidate {\n opacity: 0;\n}\n\n.sek-overflow-hidden-while-animating {\n overflow: hidden;\n}\n\n.sek-service-font, .sek-module .sek-module-inner .sek-btn {\n font-family: sans-serif;\n}\n\n.sek-container {\n width: 100%;\n padding-right: 10px;\n padding-left: 10px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .sek-container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .sek-container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .sek-container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .sek-container {\n max-width: 1140px;\n }\n}\n\n.sek-container-fluid {\n width: 100%;\n padding-right: 10px;\n padding-left: 10px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.sek-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -10px;\n margin-left: -10px;\n}\n\n.sek-container-no-padding {\n padding-right: 0;\n padding-left: 0;\n overflow-x: hidden;\n}\n\n.sek-no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.sek-no-gutters > .sek-col,\n.sek-no-gutters > [class*=\"sek-col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.sek-col-8, .sek-col-9, .sek-col-10, .sek-col-11, .sek-col-12, .sek-col-14, .sek-col-16, .sek-col-20, .sek-col-25, .sek-col-30, .sek-col-33, .sek-col-40, .sek-col-50, .sek-col-60, .sek-col-66, .sek-col-70, .sek-col-75, .sek-col-80, .sek-col-83, .sek-col-90, .sek-col-100, .sek-col-base,\n.sek-col,\n.sek-col-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 10px;\n padding-left: 10px;\n}\n\n.sek-col-base {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.sek-col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.sek-col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%;\n}\n\n@media (min-width: 768px) {\n .sek-col-8 {\n flex: 0 0 8.333%;\n max-width: 8.333%;\n }\n .sek-col-9 {\n flex: 0 0 9.090909%;\n max-width: 9.090909%;\n }\n .sek-col-10 {\n flex: 0 0 10%;\n max-width: 10%;\n }\n .sek-col-11 {\n flex: 0 0 11.111%;\n max-width: 11.111%;\n }\n .sek-col-12 {\n flex: 0 0 12.5%;\n max-width: 12.5%;\n }\n .sek-col-14 {\n flex: 0 0 14.285%;\n max-width: 14.285%;\n }\n .sek-col-16 {\n flex: 0 0 16.666%;\n max-width: 16.666%;\n }\n .sek-col-20 {\n flex: 0 0 20%;\n max-width: 20%;\n }\n .sek-col-25 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .sek-col-30 {\n flex: 0 0 30%;\n max-width: 30%;\n }\n .sek-col-33 {\n flex: 0 0 33.333%;\n max-width: 33.333%;\n }\n .sek-col-40 {\n flex: 0 0 40%;\n max-width: 40%;\n }\n .sek-col-50 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .sek-col-60 {\n flex: 0 0 60%;\n max-width: 60%;\n }\n .sek-col-66 {\n flex: 0 0 66.666%;\n max-width: 66.666%;\n }\n .sek-col-70 {\n flex: 0 0 70%;\n max-width: 70%;\n }\n .sek-col-75 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .sek-col-80 {\n flex: 0 0 80%;\n max-width: 80%;\n }\n .sek-col-83 {\n flex: 0 0 83.333%;\n max-width: 83.333%;\n }\n .sek-col-90 {\n flex: 0 0 90%;\n max-width: 90%;\n }\n .sek-col-100 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .sek-order-first {\n order: -1;\n }\n .sek-order-last {\n order: 13;\n }\n .sek-order-0 {\n order: 0;\n }\n .sek-order-1 {\n order: 1;\n }\n .sek-order-2 {\n order: 2;\n }\n .sek-order-3 {\n order: 3;\n }\n .sek-order-4 {\n order: 4;\n }\n .sek-order-5 {\n order: 5;\n }\n .sek-order-6 {\n order: 6;\n }\n .sek-order-7 {\n order: 7;\n }\n .sek-order-8 {\n order: 8;\n }\n .sek-order-9 {\n order: 9;\n }\n .sek-order-10 {\n order: 10;\n }\n .sek-order-11 {\n order: 11;\n }\n .sek-order-12 {\n order: 12;\n }\n}\n\n.sek-fade {\n transition: opacity 0.15s linear;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .sek-fade {\n transition: none;\n }\n}\n\n.sek-fade:not(.show) {\n opacity: 0;\n}\n\n.sek-collapse:not(.show) {\n display: none;\n}\n\n/*\r\n.sek-collapsing {\r\n position: relative;\r\n height: 0;\r\n overflow: hidden;\r\n //@include transition($transition-collapse);\r\n}*/\n.sek-clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.sek-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0;\n}\n\n.sek-sr-only-focusable:active, .sek-sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n}\n\n.sek-embed {\n position: relative;\n}\n\n.sek-embed::before {\n display: block;\n content: '';\n}\n\n.sek-embed .sek-embed-inner,\n.sek-embed iframe {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n}\n\n.sektion-wrapper {\n word-wrap: break-word;\n}\n\n.sek-text-right {\n text-align: right !important;\n}\n\n.sek-text-left {\n text-align: left !important;\n}\n\n.sek-module .sek-module-inner ul {\n list-style: disc;\n}\n\n.sek-module .sek-module-inner ol {\n list-style: decimal;\n}\n\n.sek-module .sek-module-inner ol > li::before {\n content: none;\n}\n\n.sek-module .sek-module-inner ul, .sek-module .sek-module-inner ol {\n padding: 0;\n line-height: 1.5;\n margin: 0 1.5rem 1.5rem 0;\n}\n\n.sek-module .sek-module-inner ul > li, .sek-module .sek-module-inner ol > li {\n padding: .25rem .5rem;\n}\n\n.sek-module .sek-module-inner li > ul, .sek-module .sek-module-inner li > ol {\n margin-bottom: 0;\n}\n\n.sek-module-inner pre code, .sek-module-inner tt {\n box-sizing: border-box;\n font-size: inherit;\n white-space: pre-wrap !important;\n background: transparent;\n border: none;\n padding: 0;\n font-family: monospace;\n}\n\n.sek-module-inner pre {\n background: #f7f8f9;\n padding: 2.5em;\n word-wrap: normal;\n white-space: pre-wrap !important;\n color: #313131;\n font-family: monospace !important;\n}\n\n.sek-module-inner figure {\n text-align: center;\n}\n\n.sek-module-inner figcaption {\n text-align: center;\n}\n\n.sek-module-inner cite {\n color: #313131;\n font-weight: 300;\n font-style: normal;\n position: relative;\n display: inline-block;\n}\n\n.sek-module-inner caption, .sek-module-inner code, .sek-module-inner code, .sek-module-inner kbd, .sek-module-inner samp, .sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd), .sek-module-inner :root .has-subtle-background-background-color {\n background-color: #dbdbdb;\n}\n\n.sek-module-inner sub {\n bottom: -0.25em;\n}\n\n.sek-module-inner sub, .sek-module-inner sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\n.sek-module-inner table {\n width: 100%;\n border-collapse: collapse;\n /*&:not([id^=wp-calendar]) {\r\n border: 2px solid $grey-lightest;\r\n th { @extend .caps; @extend .letter-spacing-2; font-family: $serviceFont; }\r\n th, td { @extend .demi-small; padding: $base-line-height; border: 1px solid $grey-lightest; }\r\n td { color: $grey-dark; }\r\n }*/\n}\n\n@media (max-width: 767.98px) {\n .sek-module-inner table {\n table-layout: fixed;\n }\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) {\n border: 2px solid #eceeef;\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th {\n text-transform: uppercase;\n letter-spacing: 2px;\n font-family: sans-serif;\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th, .sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {\n font-size: 0.95em;\n padding: 1.25em;\n border: 1px solid #eceeef;\n}\n\n.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td {\n color: #777;\n}\n\n.sek-module .sek-module-inner .sek-btn {\n display: inline-block;\n font-weight: normal;\n line-height: 1.25em;\n text-align: center;\n /*white-space: nowrap;*/\n white-space: normal;\n word-break: break-all;\n vertical-align: middle;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.5em 1em;\n border-radius: 2px;\n border-width: 2px;\n border-style: solid;\n font-size: 1em;\n cursor: pointer;\n text-decoration: none;\n text-transform: none;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n}\n\n.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {\n text-decoration: none;\n}\n\n.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {\n outline: 0;\n box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);\n}\n\n.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {\n cursor: not-allowed;\n opacity: .65;\n box-shadow: none;\n}\n\n.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {\n background-image: none;\n box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);\n}\n\na.sek-btn.disabled,\nfieldset[disabled] a.sek-btn {\n pointer-events: none;\n}\n\n.sektion-wrapper button,\n.sektion-wrapper [type=\"button\"],\n.sektion-wrapper [type=\"reset\"],\n.sektion-wrapper [type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n.sektion-wrapper button::-moz-focus-inner,\n.sektion-wrapper [type=\"button\"]::-moz-focus-inner,\n.sektion-wrapper [type=\"reset\"]::-moz-focus-inner,\n.sektion-wrapper [type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\nbutton.sek-btn,\n[type=\"button\"].sek-btn,\n[type=\"reset\"].sek-btn,\n[type=\"submit\"].sek-btn {\n -wekbit-appearance: none !important;\n background: transparent;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner {\n /* WP Search Widget */\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .wp-caption figcaption {\n color: #6d6d6d;\n font-style: italic;\n max-width: 100%;\n font-size: 14px;\n font-weight: 500;\n line-height: 1.4;\n /* Keep wide captions from overflowing their container. */\n padding: 4px;\n margin-top: 1rem;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner figure {\n display: block;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .aligncenter, [data-sek-level=\"module\"] .sek-module-inner .aligncenter img {\n margin-left: auto;\n margin-right: auto;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .alignleft {\n float: left;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .alignright {\n float: right;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .alignnone, [data-sek-level=\"module\"] .sek-module-inner .aligncenter, [data-sek-level=\"module\"] .sek-module-inner .alignleft, [data-sek-level=\"module\"] .sek-module-inner .alignright, [data-sek-level=\"module\"] .sek-module-inner .alignwide {\n margin-top: 1.5rem;\n margin-right: auto;\n margin-bottom: 1.5rem;\n margin-left: auto;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n float: left;\n}\n\n@media (max-width: 767.98px) {\n [data-sek-level=\"module\"] .sek-module-inner [role=search].search-form {\n float: none;\n }\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form label {\n position: relative;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin-right: 5px;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form label input {\n padding-left: 5px;\n line-height: 20px;\n width: 100%;\n max-width: 185px;\n min-width: 80px;\n}\n\n@media (max-width: 767.98px) {\n [data-sek-level=\"module\"] .sek-module-inner [role=search].search-form label input {\n max-width: none;\n }\n}\n\n[data-sek-level=\"module\"] .sek-module-inner [role=search].search-form input[type=submit] {\n line-height: 15px;\n /*width: 25%;*/\n}\n\n[data-sek-level=\"module\"] .sek-module-inner input[type=\"submit\"] {\n background: #808080;\n color: #fff;\n padding: 10px 10px;\n font-weight: normal;\n display: inline-block;\n border: none;\n cursor: pointer;\n -webkit-border-radius: 3px;\n border-radius: 3px;\n}\n\n[data-sek-level=\"module\"] .sek-module-inner .search-form input[type=\"search\"] {\n margin: 0;\n -moz-box-sizing: border-box;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-border-radius: 0;\n border-radius: 0;\n background: #fff;\n border: 2px solid #ddd;\n color: #777;\n display: block;\n max-width: 100%;\n padding: 7px 8px;\n}\n\n.sektion-wrapper.sek-password-protected {\n display: flex;\n align-items: center;\n justify-content: center;\n -ms-flex-direction: column;\n flex-direction: column;\n}\n\n.sektion-wrapper.sek-password-protected form.post-password-form {\n max-width: 450px;\n height: auto;\n padding: 4em 1em;\n font-size: 1em;\n}\n\n/*************************************\r\n* HEADING MODULE\r\n*************************************/\n.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6 {\n font-weight: 400;\n line-height: 1.5em;\n}\n\n.sek-module-inner h1 {\n font-size: 2.48em;\n}\n\n.sek-module-inner h2 {\n font-size: 2.07em;\n}\n\n.sek-module-inner h3 {\n font-size: 1.73em;\n}\n\n.sek-module-inner h4 {\n font-size: 1.44em;\n}\n\n.sek-module-inner h5 {\n font-size: 1.2em;\n}\n\n.sek-module-inner h6 {\n font-size: 1em;\n}\n\n.sek-module-inner .sek-heading {\n text-align: center;\n margin: 0.6em 0;\n display: block;\n}\n\n.sek-module-inner .sek-heading > a {\n color: inherit;\n font-size: inherit;\n}\n\n/*************************************\r\n* MENU MODULE\r\n*************************************/\n.sek-nav-wrap {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: flex-end;\n padding: .5rem 0;\n}\n\n.sek-mobile-menu-expanded-below .sek-nav-wrap {\n padding: 0;\n}\n\n.sek-nav-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n}\n\n.sek-nav {\n display: flex;\n flex-wrap: wrap;\n flex-direction: column;\n}\n\n.sek-module .sek-module-inner .sek-nav {\n margin-right: -10px !important;\n margin-left: -10px !important;\n}\n\n.sek-module .sek-module-inner .sek-nav,\n.sek-module .sek-module-inner .sek-nav ul {\n list-style: none !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n\n.sek-module .sek-module-inner .sek-nav li {\n list-style: none;\n margin: 0 5px;\n}\n\n.sek-module .sek-module-inner .sek-nav li > ul li {\n padding: 0 .9rem 0 0;\n}\n\n.sek-nav li a {\n font-size: 16px;\n line-height: 1.5em;\n padding: .6em .8em;\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: inherit;\n overflow: hidden;\n}\n\n.sek-nav-wrap .sek-nav li a {\n text-decoration: none;\n}\n\n.sek-nav li a:hover .sek-nav__title {\n text-decoration: underline;\n}\n\n.sek-nav li:not(:last-of-type) {\n border-bottom: 1px solid;\n border-color: rgba(49, 49, 49, 0.09);\n}\n\n.sek-nav .menu-item-has-children,\n.sek-nav .page_item_has_children {\n position: relative;\n}\n\n.sek-nav .menu-item-has-children > a::after,\n.sek-nav .page_item_has_children > a::after {\n content: \"\\203A\";\n font-family: \"Arial Unicode MS\", Arial;\n moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n display: none;\n font-style: normal;\n font-variant: normal;\n text-rendering: auto;\n font-weight: 900;\n transition: all 0.3s ease;\n transform-style: preserve-3d;\n backface-visibility: hidden;\n perspective: 1000px;\n padding: 0 .45em;\n font-size: 1em;\n position: relative;\n transform: translateZ(0) rotate(90deg);\n -ms-transform: rotate(90deg);\n}\n\n.sek-nav .menu-item-has-children.show > a::after,\n.sek-nav .page_item_has_children.show > a::after {\n transform: translateZ(0) rotate(90deg) !important;\n -ms-transform: rotate(90deg) !important;\n}\n\n.sek-nav .sub-menu,\n.sek-nav .children {\n position: static;\n float: none;\n list-style: none;\n border-radius: 0;\n border: 0;\n margin: 0;\n padding: 0;\n font-size: inherit;\n}\n\n@media (min-width: 768px) {\n .sek-nav .sub-menu,\n .sek-nav .children {\n position: absolute;\n display: none;\n top: 100%;\n right: 0;\n z-index: 1000;\n min-width: 10rem;\n max-width: 50vw;\n }\n}\n\n.sek-dropdown-submenu > a::after {\n transform: translateZ(0) rotate(0deg) !important;\n -ms-transform: rotate(0deg) !important;\n}\n\n.sek-dropdown-submenu > a[class*=-reverse]::after {\n top: .1em;\n transform: translateZ(0) rotate(180deg) !important;\n -ms-transform: rotate(180deg) !important;\n}\n\n.nb-loc .sek-module-inner .sek-nav-toggler {\n -webkit-appearance: none !important;\n cursor: pointer;\n height: 40px;\n width: 40px;\n padding: 0;\n vertical-align: middle;\n}\n\n.nb-loc .sek-module-inner .sek-nav-toggler, .nb-loc .sek-module-inner .sek-nav-toggler:hover, .nb-loc .sek-module-inner .sek-nav-toggler:focus {\n background: 0 0;\n background-color: rgba(0, 0, 0, 0);\n color: black;\n border: none;\n}\n\n.sek-ham__span-wrapper {\n height: 12px;\n position: relative;\n display: block;\n}\n\n.sek-ham__span-wrapper .line {\n display: block;\n height: 1.5px;\n position: absolute;\n left: 10px;\n border-radius: 5px;\n background-clip: padding-box;\n transition: all ease .35s;\n backface-visibility: hidden;\n border-top: 1.5px solid;\n}\n\n.sek-ham__span-wrapper .line-1 {\n top: 0;\n}\n\n.sek-ham__span-wrapper .line-2 {\n top: 50%;\n}\n\n.sek-ham__span-wrapper .line-3 {\n top: 100%;\n}\n\n.sek-nav-toggler .line-1 {\n transform: translate(-3px, 6px) rotate(45deg);\n width: 28px;\n}\n\n.sek-nav-toggler .line-2 {\n opacity: 0;\n}\n\n.sek-nav-toggler .line-3 {\n transform: translate(-3px, -6px) rotate(-45deg);\n width: 28px;\n}\n\n.sek-nav-toggler.sek-collapsed .line {\n width: 20px;\n transform: translate(0, 0) rotate(0);\n opacity: 1;\n}\n\n.sek-nav-toggler.sek-collapsed.hovering .line {\n transform: translateX(-3px);\n width: 26px;\n}\n\n.sek-dropdown-menu {\n position: static;\n float: none;\n list-style: none;\n border-radius: 0;\n border: 0;\n margin: 0;\n padding: 0;\n font-size: inherit;\n}\n\n@media (min-width: 768px) {\n .sek-dropdown-menu {\n position: absolute;\n display: none;\n top: 100%;\n right: 0;\n z-index: 1000;\n min-width: 10rem;\n max-width: 50vw;\n }\n}\n\n.show > .sek-dropdown-menu {\n display: block;\n}\n\n.sek-dropdown-menu .sek-nav__title {\n word-break: break-word;\n white-space: normal;\n}\n\n.sek-dropdown-menu.open-right {\n left: 0;\n right: auto;\n}\n\n.sek-dropdown-menu.open-right ul:not(.open-left),\n.sek-dropdown-menu ul.open-right {\n left: 100%;\n right: auto;\n}\n\n.sek-dropdown-menu.open-left {\n left: auto;\n right: 0;\n}\n\n.sek-dropdown-menu.open-left ul:not(.open-right),\n.sek-dropdown-menu ul.open-left {\n right: 100%;\n left: auto;\n}\n\n@media (min-width: 768px) {\n .sek-nav {\n flex-direction: row;\n }\n .sek-nav .menu-item-has-children > a::after,\n .sek-nav .page_item_has_children > a::after {\n display: inline-block;\n }\n .sek-nav > li:not(:last-of-type) {\n border-bottom: none;\n }\n .sek-nav > li > a {\n padding: 5px;\n }\n .sek-nav-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .sek-mobile-menu-expanded-below {\n display: none !important;\n }\n .sek-nav-toggler {\n display: none;\n }\n .sek-dropdown-menu {\n background: white;\n box-shadow: 1px 2px 2px 2px rgba(0, 0, 0, 0.15);\n }\n .sek-nav .sek-dropdown-menu li {\n padding: 0 10px !important;\n margin: 0 !important;\n }\n .sek-nav .sek-dropdown-menu li a {\n padding: 10px 12px;\n }\n .sek-dropdown-menu ul {\n right: 100%;\n }\n .sek-dropdown-menu .sek-menu-link__row-reverse {\n flex-direction: row-reverse !important;\n }\n .sek-dropdown-menu .sek-nav__title {\n word-break: normal;\n white-space: nowrap;\n }\n .sek-dropdown-submenu .sek-dropdown-menu {\n top: 15px;\n }\n .sek-submenu-fade .sek-dropdown-menu a {\n transition: all 0.25s ease;\n transform: translate(0, 0);\n }\n .sek-submenu-fade .sek-dropdown-menu a:hover {\n transform: translate(3px, 0);\n }\n .sek-submenu-fade .page_item_has_children,\n .sek-submenu-fade .menu-item-has-children {\n perspective: 1000px;\n }\n .sek-submenu-fade .page_item_has_children > ul,\n .sek-submenu-fade .menu-item-has-children > ul {\n position: fixed;\n opacity: 0;\n visibility: hidden;\n display: block;\n transition: all 0.25s ease-in-out;\n transform: translate(0, -10px);\n }\n .sek-submenu-fade .page_item_has_children:not(.show),\n .sek-submenu-fade .menu-item-has-children:not(.show) {\n overflow: hidden;\n }\n .sek-submenu-fade .page_item_has_children:not(.show) ul,\n .sek-submenu-fade .menu-item-has-children:not(.show) ul {\n pointer-events: none;\n cursor: not-allowed;\n }\n .sek-submenu-fade li.show {\n perspective: none;\n }\n .sek-submenu-fade li.show > ul {\n position: absolute;\n visibility: visible;\n opacity: 1;\n transform: translate(0, 0);\n }\n}\n\n[data-sek-is-mobile-menu=\"yes\"] > .show {\n overflow: auto;\n max-height: 80vh;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] li .sub-menu li > a {\n font-size: 0.8em;\n padding: .6em 15px;\n}\n\n.nb-module-menu-search {\n position: relative;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] .nb-module-menu-search {\n display: none;\n}\n\n.nb-svg-search-icon {\n cursor: pointer;\n padding: 0;\n}\n\n.nb-module-menu-search .nb-search-expand {\n display: none;\n background: #fff;\n position: absolute;\n z-index: 100;\n top: 49px;\n right: 0;\n left: 0;\n width: 340px;\n -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n\n.nb-search-expand .nb-search-expand-inner {\n border: 1px solid #eee;\n box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.15);\n transition: -webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;\n transition: transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;\n padding: 15px;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner [role=search].search-form {\n display: flex;\n float: none;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner label input[type=search] {\n max-width: 100%;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search form input[type=submit] {\n margin: 0;\n background: #808080;\n color: #fff;\n}\n\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner input[type=search], [data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search input[type=search],\n[data-sek-module-type=\"czr_menu_module\"] .nb-search-expand .nb-search-expand-inner input[type=submit], [data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search form input[type=submit] {\n text-transform: none !important;\n}\n\n.nb-mobile-search {\n display: none;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search {\n display: block;\n padding: 6px 14px 15px;\n}\n\n[data-sek-is-mobile-menu=\"yes\"] .nb-mobile-search input {\n font-size: 16px;\n}\n\n/*************************************\r\n* IMAGE MODULE\r\n*************************************/\n[data-sek-module-type=\"czr_image_module\"] {\n text-align: center;\n}\n\n[data-sek-module-type=\"czr_image_module\"] img {\n border: 0 solid #f2f2f2;\n}\n\n[data-sek-module-type=\"czr_image_module\"] .box-shadow img {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;\n}\n\n/* image module transitions for better animations when effects are used */\n[data-sek-module-type=\"czr_image_module\"] figure img {\n -webkit-transition: all 0.2s ease-out;\n -o-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n\n[data-sek-module-type=\"czr_image_module\"] figure.has-custom-height {\n overflow: hidden;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-pack: center;\n justify-content: center;\n -ms-flex-align: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_image_module\"] figure.has-custom-height img {\n object-fit: cover;\n}\n\n.sek-hover-effect-opacity img:hover {\n opacity: .7;\n}\n\n.sek-hover-effect-zoom-out img:hover {\n transform: scale(1.05);\n}\n\n.sek-hover-effect-zoom-in img:hover {\n transform: scale(0.95);\n}\n\n.sek-hover-effect-move-up img:hover {\n transform: translateY(-6px);\n}\n\n.sek-hover-effect-move-down img:hover {\n transform: translateY(6px);\n}\n\n.sek-hover-effect-blur img:hover {\n filter: blur(2px);\n}\n\n.sek-hover-effect-grayscale img:hover {\n filter: grayscale(0%);\n}\n\n.sek-hover-effect-grayscale img:hover {\n filter: grayscale(100%);\n filter: gray;\n}\n\n.sek-hover-effect-reverse-grayscale img {\n filter: grayscale(100%);\n filter: gray;\n}\n\n.sek-hover-effect-reverse-grayscale img:hover {\n filter: grayscale(0%);\n}\n\n/*************************************\r\n* SPECIAL IMAGE MODULE\r\n*************************************/\n.sek-nimble-image-wrapper {\n max-width: 100%;\n overflow: hidden;\n width: 100%;\n position: relative;\n display: block;\n background-position: center center;\n background-size: cover;\n display: flex;\n align-items: center;\n justify-content: center;\n backface-visibility: hidden;\n transform-style: preserve-3d;\n}\n\n.sek-nimble-image-wrapper::before {\n content: '';\n display: block;\n padding-top: 100%;\n}\n\n.sek-nimble-image-wrapper a {\n color: #ffffff;\n}\n\n.sek-nimble-image-wrapper a:hover {\n color: #ffffff;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper {\n position: absolute;\n width: 100%;\n height: 100%;\n z-index: 1;\n top: 0;\n display: -webkit-box;\n display: -moz-box;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon {\n font-size: 80px;\n line-height: 1em;\n color: #000000;\n transition: all .3s ease;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text, .sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text * {\n color: #000000;\n font-size: 16px;\n line-height: 1.5em;\n font-weight: 400;\n transition: all .3s ease;\n}\n\n.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p {\n margin: 0;\n padding: 0;\n}\n\n.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon {\n color: #969696;\n}\n\n.sek-nimble-image-mask {\n position: absolute;\n border-color: #fff;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n overflow: hidden;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.sek-nimble-image-mask::before {\n position: absolute;\n content: '';\n z-index: 1;\n border: 150vw solid;\n border-color: inherit;\n box-sizing: content-box;\n transition: all .3s ease;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n}\n\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before {\n width: 88%;\n padding-bottom: 88%;\n}\n\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,\n.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before {\n width: 63%;\n padding-bottom: 63%;\n}\n\n.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before {\n border-radius: 50%;\n}\n\n.sek-nimble-image {\n position: absolute;\n width: 100%;\n height: 100%;\n background-position: center center;\n background-size: cover;\n background-repeat: no-repeat;\n z-index: 0;\n top: 0;\n}\n\n/*************************************\r\n* DIVIDER MODULE\r\n*************************************/\n[data-sek-module-type=\"czr_divider_module\"] {\n text-align: center;\n}\n\n[data-sek-module-type=\"czr_divider_module\"] .sek-module-inner {\n font-size: 0;\n line-height: 0;\n}\n\n.sek-module-inner .sek-divider {\n border-top: 1px solid #5a5a5a;\n display: inline-block;\n width: 100%;\n margin-top: 15px;\n margin-bottom: 15px;\n font-size: 1rem;\n}\n\n/*************************************\r\n* SPACER MODULE\r\n*************************************/\n.sek-module-inner .sek-spacer {\n height: 20px;\n}\n\n/*************************************\r\n* ICON MODULE\r\n*************************************/\n[data-sek-module-type=\"czr_icon_module\"] {\n text-align: center;\n color: #5a5a5a;\n font-size: 15px;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:hover,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:focus,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:active,\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon.active {\n color: inherit;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .box-shadow .sek-icon-wrapper {\n -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;\n box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .sek-icon i {\n -webkit-transition: all 0.15s ease-in-out;\n -o-transition: all 0.15s ease-in-out;\n transition: all 0.15s ease-in-out;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .sek-icon .fas, [data-sek-module-type=\"czr_icon_module\"] .sek-icon .far, [data-sek-module-type=\"czr_icon_module\"] .sek-icon .fab {\n width: 1em;\n height: 1em;\n text-align: center;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon {\n box-shadow: none;\n -webkit-box-shadow: none;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] a.sek-icon:hover, [data-sek-module-type=\"czr_icon_module\"] a.sek-icon:focus, [data-sek-module-type=\"czr_icon_module\"] a.sek-icon:active {\n box-shadow: none;\n -webkit-box-shadow: none;\n}\n\n[data-sek-module-type=\"czr_icon_module\"] .sek-icon-wrapper {\n display: inline-block;\n line-height: 1em;\n}\n\n/*************************************\r\n* QUOTE MODULE\r\n*************************************/\n.sek-quote p {\n margin: 0 0 .5em;\n padding: 0;\n}\n\n.sek-quote .sek-cite {\n font-size: 14px;\n line-height: 1.5em;\n font-style: inherit;\n}\n\n.sek-quote[data-sek-quote-design=\"none\"] {\n border-left: none;\n}\n\n.sek-quote .sek-quote-content {\n font-weight: 400;\n font-size: 16px;\n line-height: 1.5em;\n color: inherit;\n}\n\n.sek-quote.sek-quote-design {\n background: none;\n font-style: inherit;\n margin-right: 0;\n margin-left: 0;\n padding: 15px 0;\n border: none;\n}\n\n.sek-quote.sek-quote-design > * {\n padding: 0;\n margin: 0;\n}\n\n.sek-quote.sek-quote-design::before, .sek-quote.sek-quote-design::after {\n display: none;\n}\n\n.sek-quote.sek-quote-design .sek-cite {\n padding: 0;\n font-weight: normal;\n}\n\n.sek-quote.sek-quote-design .sek-cite::before {\n display: none;\n}\n\n.sek-quote.sek-quote-design .sek-quote-inner {\n color: inherit;\n padding-right: calc( 10px + 0.7em);\n}\n\n.sek-quote.sek-quote-design.sek-border-before {\n padding-right: 15px;\n border-right: 5px solid;\n}\n\n.sek-quote.sek-quote-design.sek-border-before .sek-cite {\n clear: both;\n display: block;\n margin-top: 1.5em;\n position: relative;\n padding-right: 2.2em;\n padding-left: 0.25em;\n}\n\n.sek-quote.sek-quote-design.sek-border-before .sek-cite::before {\n display: block;\n content: '';\n top: 1em;\n position: absolute;\n background: none;\n width: 2em;\n height: auto;\n right: 0;\n border-top: 1px solid;\n}\n\n.sek-quote.sek-quote-design.sek-quote-icon-before {\n position: relative;\n display: flex;\n font-size: 50px;\n}\n\n.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content *:last-child {\n margin-bottom: .75em;\n}\n\n.sek-quote.sek-quote-design.sek-quote-icon-before::before {\n content: \"\\275D\";\n font-family: \"Arial Unicode MS\", Code2000;\n color: #ccc;\n font-style: normal;\n text-align: center;\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n font-variant: normal;\n text-rendering: auto;\n display: flex;\n width: auto;\n margin: 0;\n right: 0;\n position: absolute;\n top: 10px;\n}\n\n/*************************************\r\n* BUTTON MODULE\r\n*************************************/\n[data-sek-module-type=\"czr_button_module\"] .sek-module-inner {\n text-align: center;\n}\n\n.nb-loc .sek-module .sek-module-inner .sek-btn {\n background: #020202;\n color: #ffffff;\n padding: 0.5em 1em;\n}\n\n.nb-loc .sek-module .sek-module-inner .sek-btn i {\n margin: 0 8px;\n}\n\n.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {\n color: #ffffff;\n text-decoration: none;\n}\n\n[data-sek-module-type=\"czr_button_module\"] .sek-module-inner .sek-btn:focus, [data-sek-module-type=\"czr_button_module\"] .sek-module-inner .sek-btn:hover {\n text-decoration: none;\n}\n\n.sek-btn-inner {\n display: flex;\n align-items: center;\n}\n\n.sek-btn.box-shadow {\n -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n}\n\n.sek-btn.box-shadow.push-effect:active {\n transform: translateY(2px);\n}\n\n/*************************************\r\n* POST GRID MODULE\r\n*************************************/\n.sek-post-grid-wrapper {\n margin-top: 1.5rem;\n margin-bottom: 1.5rem;\n}\n\n.sek-post-grid-wrapper .sek-grid-items {\n grid-row-gap: 25px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article > *:not(:last-child):not(.sek-pg-thumbnail) {\n margin-bottom: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article > *:not(:last-child) {\n margin-bottom: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article > :first-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article > :last-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article > *:not(:last-child) {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > *:not(:last-child) {\n margin-top: 0 !important;\n margin-bottom: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :first-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content > :last-child {\n margin-top: 0 !important;\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article {\n -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);\n box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);\n -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n -o-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n}\n\n.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover {\n -webkit-transform: translateY(-4px);\n -ms-transform: translateY(-4px);\n transform: translateY(-4px);\n -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);\n box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 10px 10px rgba(0, 0, 0, 0.15);\n}\n\n.sek-post-grid-wrapper .sek-pg-thumbnail {\n box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);\n background-color: #fff;\n overflow: hidden;\n}\n\n.sek-post-grid-wrapper .sek-pg-thumbnail a {\n display: block;\n position: relative;\n}\n\n.sek-post-grid-wrapper .sek-pg-thumbnail img {\n display: block;\n width: 100%;\n height: auto;\n}\n\n.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {\n height: 0;\n padding-top: 65%;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a {\n height: auto !important;\n padding-top: inherit !important;\n }\n}\n\n.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {\n position: absolute;\n height: 100%;\n width: 100%;\n max-height: none;\n max-width: none;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n -o-object-fit: cover;\n object-fit: cover;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img {\n height: auto !important;\n position: relative;\n }\n}\n\n.sek-post-grid-wrapper .sek-pg-metas > span:not(:last-child)::after {\n content: \"\\B7\";\n vertical-align: middle;\n margin: 0 5px;\n line-height: 1;\n}\n\n.sek-post-grid-wrapper .sek-pg-content {\n text-align: right;\n}\n\n.sek-post-grid-wrapper .sek-excerpt > :last-child {\n margin-bottom: 0;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-category a {\n text-transform: uppercase;\n font-size: 14px;\n text-decoration: none;\n color: #767676;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-title {\n font-size: 28px;\n line-height: 1.3em;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-title a {\n text-decoration: none;\n color: #444;\n font-size: 28px;\n font-weight: 400;\n line-height: 1.3em;\n -ms-word-wrap: break-word;\n word-wrap: break-word;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span, .sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a {\n text-transform: uppercase;\n font-size: 14px;\n letter-spacing: 1px;\n color: #767676;\n}\n\n.sek-module-inner .sek-post-grid-wrapper .sek-pg-content p {\n margin: 0 0 15px 0;\n line-height: 1.5;\n font-size: 16px;\n color: #494949;\n}\n\n.sek-post-grid-wrapper .sek-list-layout {\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-list-layout {\n display: block !important;\n }\n}\n\n.sek-post-grid-wrapper .sek-list-layout article {\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n grid-column-gap: 20px;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-list-layout article {\n display: block !important;\n padding-top: 10px;\n }\n}\n\n.sek-post-grid-wrapper .sek-list-layout article > *:nth-child(1) {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n}\n\n.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb {\n -ms-grid-columns: 30% minmax(0, 1fr);\n grid-template-columns: 30% minmax(0, 1fr);\n}\n\n.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail {\n margin-bottom: 0;\n -ms-flex-item-align: start;\n align-self: flex-start;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout {\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: 1fr 20px 1fr;\n grid-template-columns: 1fr 1fr;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n grid-row-gap: 20px;\n grid-column-gap: 20px;\n}\n\n@media all and (-ms-high-contrast: none) {\n .sek-post-grid-wrapper .sek-grid-layout {\n display: block !important;\n }\n}\n\n.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(1) {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout > *:nth-child(2) {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-1 {\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n}\n\n.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n}\n\n@media (min-width: 768px) {\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-1 {\n -ms-grid-columns: minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr);\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n}\n\n@media (min-width: 576px) and (max-width: 767.98px) {\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-1 {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n}\n\n@media (max-width: 575.98px) {\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-1 {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-2 {\n -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 20px;\n grid-row-gap: 20px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-3 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n .sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-4 {\n -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;\n grid-column-gap: 15px;\n grid-row-gap: 15px;\n }\n}\n\n@media (min-width: 576px) and (max-width: 767.98px) {\n .sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n grid-gap: 0;\n }\n .sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article .sek-pg-thumbnail {\n margin-bottom: 15px;\n }\n}\n\n@media (max-width: 575.98px) {\n .sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article {\n -ms-grid-columns: minmax(0, 1fr) !important;\n grid-template-columns: minmax(0, 1fr) !important;\n grid-gap: 0;\n }\n .sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article .sek-pg-thumbnail {\n margin-bottom: 15px;\n }\n}\n\n.sek-post-navigation #sek-nav-below {\n background-color: #f7f8f9;\n margin-top: 20px;\n padding: 5px;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination {\n text-align: center;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination ul {\n display: inline-block;\n vertical-align: middle;\n margin: 0;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers {\n font-family: inherit;\n opacity: 0.7;\n text-decoration: none !important;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .current {\n font-weight: 600;\n opacity: 1;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list > * {\n margin: 0 5px;\n}\n\n.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list {\n margin: 0 -5px;\n}\n\n.sek-post-navigation #sek-nav-below nav {\n padding-top: 20px;\n padding-bottom: 20px;\n}\n\n.sek-post-navigation #sek-nav-below ul.sek-czr-pager {\n margin: 0;\n}\n\n.sek-post-navigation #sek-nav-below li {\n display: inline-block;\n font-size: 16px;\n}\n\n.sek-post-navigation #sek-nav-below a, .sek-post-navigation #sek-nav-below .sek-meta-nav-title {\n text-transform: uppercase;\n letter-spacing: 2px;\n color: #5A5A5A;\n}\n\n.sek-post-navigation #sek-nav-below a:hover, .sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover {\n color: #3b3b3b;\n opacity: 1 !important;\n}\n\n.sek-post-navigation #sek-nav-below .sek-czr-pager > li {\n display: block;\n}\n\n.sek-post-navigation #sek-nav-below .sek-nav-dir {\n display: block;\n}\n\n.sek-post-navigation #sek-nav-below .sek-nav-dir > a {\n max-width: 100%;\n}\n\n.sek-post-navigation #sek-nav-below a i.arrow {\n font-size: 0.9em;\n}\n\n.sek-post-navigation #sek-nav-below .page-numbers, .sek-post-navigation #sek-nav-below a {\n font-family: inherit;\n line-height: 30px;\n height: 30px;\n display: inline-block;\n vertical-align: middle;\n transition: all 0.3s ease;\n position: relative;\n}\n\n.sek-post-navigation #sek-nav-below .sek-meta-nav {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n transition: all .2s,.6s ease;\n opacity: .7;\n}\n\n.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav {\n opacity: 1;\n text-decoration: underline;\n}\n\n.sek-post-navigation #sek-nav-below .sek-meta-nav-title {\n display: inline-block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n vertical-align: middle;\n font-size: 0.9em;\n}\n\n/*************************************\r\n* SIMPLE FORM MODULE\r\n*************************************/\n.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {\n font-size: 16px;\n width: 100% !important;\n padding: 0.4em 0.5em;\n border-radius: 3px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n outline: none;\n font-weight: normal;\n max-width: 100%;\n border: none;\n color: #555555;\n background-color: #ffffff;\n}\n\n.sek-simple-form-wrapper textarea {\n height: auto;\n max-height: 150px;\n}\n\n.sek-simple-form-wrapper .sek-form-field {\n margin-bottom: 15px;\n clear: both;\n}\n\n.sek-simple-form-wrapper label {\n color: #444444;\n font-weight: bold;\n text-align: left;\n margin: 0;\n padding: 0 0 3px 0;\n width: auto;\n display: block;\n}\n\n.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type=\"text\"], .sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea {\n -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;\n}\n\n.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type=\"text\"], .sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea {\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;\n}\n\n.sek-simple-form-wrapper #sek-form-respond {\n padding: 20px 0;\n}\n\n.sek-simple-form-wrapper input[type=\"checkbox\"] + label {\n display: inline;\n font-weight: bold;\n margin-left: 0.5rem;\n}\n\n.sek-form-message {\n padding: 10px;\n margin: 10px 0;\n text-align: center;\n line-height: 1.5em;\n font-size: 16px;\n border-radius: 4px;\n}\n\n.sek-form-message.sek-mail-failure {\n color: #ff0000;\n border: 1px solid #ff0000;\n background: none;\n background: rgba(255, 0, 0, 0.05);\n}\n\n.sek-form-message.sek-mail-success {\n color: #008000;\n border: 1px solid #008000;\n background: none;\n background: rgba(0, 128, 0, 0.05);\n}\n\n.sek-form-message.sek-mail-aborted {\n color: #ffa500;\n border: 1px solid #ffa500;\n background: none;\n background: rgba(255, 165, 0, 0.05);\n}\n\n.grecaptcha-badge {\n z-index: 1;\n}\n\n.sek-hide-rc-badge .grecaptcha-badge {\n display: none;\n}\n\n/*************************************\r\n* TINY MCE EDITOR MODULE\r\n*************************************/\n[data-sek-module-type=\"czr_tiny_mce_editor_module\"] a {\n text-decoration: underline;\n}\n\n/*************************************\r\n* SOCIAL ICONS MODULE\r\n*************************************/\n[data-sek-module-type=\"czr_social_icons_module\"] .sek-module-inner .sek-social-icons-wrapper {\n margin: 10px 0;\n}\n\n.nb-loc .sek-module-inner .sek-social-icons-wrapper {\n text-align: center;\n}\n\n.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {\n padding-right: 8px;\n}\n\n.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {\n display: inline-block;\n}\n\n.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {\n color: #707070;\n}\n\n.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {\n font-size: 28px;\n line-height: 1.5em;\n}\n\n.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n}\n\n/*************************************\r\n* IMAGE SLIDER MODULE\r\n*************************************/\n.sek-column-inner [data-sek-module-type=\"czr_img_slider_module\"] {\n width: calc(100% + 20px);\n max-width: calc(100% + 20px);\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] {\n /* SWIPER BULLETS */\n /* SWIPER ARROWS */\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-carousel-img [src*=\"data:image/gif;\"] {\n display: none;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-loading .sek-carousel-img img {\n display: none;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container {\n width: 100%;\n height: 100%;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container .swiper-wrapper {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-align: center;\n align-items: center;\n height: 400px;\n}\n\n@media (max-width: 575.98px) {\n [data-sek-module-type=\"czr_img_slider_module\"] .swiper-container .swiper-wrapper {\n height: 200px;\n }\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"nimble-wizard\"] .sek-carousel-img {\n height: 100%;\n overflow: hidden;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"nimble-wizard\"] .sek-carousel-img img {\n max-width: none;\n opacity: 0;\n -webkit-transition: opacity 0.15s ease-in-out;\n -moz-transition: opacity, 0.15s ease-in-out;\n -ms-transition: opacity, 0.15s ease-in-out;\n -o-transition: opacity, 0.15s ease-in-out;\n transition: opacity 0.15s ease-in-out;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"height-100\"] .sek-carousel-img {\n height: 100%;\n width: auto;\n overflow: hidden;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"height-100\"] .sek-carousel-img img {\n width: auto;\n height: 100%;\n max-width: none;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"cover\"] .sek-carousel-img {\n height: 100%;\n width: 100%;\n overflow: hidden;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-container[data-sek-image-layout=\"cover\"] .sek-carousel-img img {\n width: 100%;\n height: 100%;\n max-width: none;\n object-fit: cover;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide {\n text-align: center;\n font-size: 18px;\n background: #fff;\n /* Center slide image vertically */\n display: -webkit-box;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n -webkit-justify-content: center;\n justify-content: center;\n -webkit-box-align: center;\n -ms-flex-align: center;\n -webkit-align-items: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img {\n width: 100%;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img img {\n width: 100%;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img img.sek-h-centrd {\n width: auto !important;\n max-width: none !important;\n position: relative;\n opacity: 1;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-carousel-img img.sek-v-centrd {\n height: auto !important;\n max-height: none !important;\n vertical-align: top;\n position: relative;\n max-width: none !important;\n opacity: 1;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide[data-sek-has-overlay=\"true\"] .sek-carousel-img::after {\n content: '';\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n position: absolute;\n background-color: #000000;\n opacity: 0.3;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-slider-text-wrapper {\n height: 100%;\n width: 100%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform: translate3d(-50%, -50%, 0);\n transform: translate3d(-50%, -50%, 0);\n top: 50%;\n left: 50%;\n position: absolute;\n /* Center slide text vertically\r\n => consistent with defaults in module registration */\n display: -webkit-box;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n -webkit-justify-content: center;\n justify-content: center;\n -webkit-box-align: center;\n -ms-flex-align: center;\n -webkit-align-items: center;\n align-items: center;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-slider-text-content {\n height: auto;\n max-height: 100%;\n width: 100%;\n padding: 5%;\n text-align: center;\n z-index: 3;\n overflow: hidden;\n color: #e2e2e2;\n font-size: 16px;\n line-height: 1.5em;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-slide .sek-slider-text-content * {\n font-size: 16px;\n line-height: 1.5em;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .swiper-pagination-bullet-active {\n background-color: #ffffff;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav {\n cursor: pointer;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-chevron {\n display: inline-block;\n border-right: 2px solid #ffffff;\n border-bottom: 2px solid #ffffff;\n width: 11px;\n height: 11px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev {\n left: 0;\n border-top-left-radius: 0px;\n border-top-right-radius: 2px;\n border-bottom-right-radius: 2px;\n border-bottom-left-radius: 0px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev .sek-chevron {\n -webkit-transform: rotate(-225deg);\n -ms-transform: rotate(-225deg);\n transform: rotate(-225deg);\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next {\n right: 0;\n border-top-left-radius: 2px;\n border-top-right-radius: 0px;\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 2px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next .sek-chevron {\n -webkit-transform: rotate(-45deg);\n -ms-transform: rotate(-45deg);\n transform: rotate(-45deg);\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev, [data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next {\n position: absolute;\n z-index: 2;\n top: calc((100% - 60px)/2);\n text-align: center;\n margin-top: 0px;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n -ms-backface-visibility: hidden;\n -o-backface-visibility: hidden;\n backface-visibility: hidden;\n display: block;\n height: 60px;\n width: 50px;\n opacity: 0.6;\n background-color: rgba(32, 32, 32, 0.4);\n -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);\n transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);\n line-height: 64px;\n cursor: pointer;\n font-size: 18px;\n}\n\n[data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-prev:hover, [data-sek-module-type=\"czr_img_slider_module\"] .sek-swiper-nav .sek-swiper-next:hover {\n background-color: rgba(32, 32, 32, 0.7);\n opacity: 1;\n width: 100px;\n}\n\n@media (max-width: 575.98px) {\n [data-sek-module-type=\"czr_img_slider_module\"] [data-sek-hide-nav-on-mobile=\"true\"] .swiper-pagination {\n display: none;\n }\n [data-sek-module-type=\"czr_img_slider_module\"] [data-sek-hide-nav-on-mobile=\"true\"] .sek-swiper-nav {\n display: none;\n }\n}\n\n/*************************************\r\n* ACCORDION MODULE\r\n*************************************/\n.sek-accord-wrapper {\n text-align: left;\n}\n\n.sek-accord-wrapper .sek-accord-item {\n border: 1px solid #e3e3e3;\n overflow: hidden;\n}\n\n.sek-accord-wrapper .sek-accord-item:not(:last-child) {\n margin-bottom: 0px;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title {\n cursor: pointer;\n color: #565656;\n background: #ffffff;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding: 15px 20px;\n border-top: none;\n border-right: none;\n border-left: none;\n border-bottom: 1px solid #e3e3e3;\n font-size: 16px;\n line-height: 1.5em;\n font-weight: 600;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover * {\n color: #1e261f;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span {\n background: #1e261f;\n}\n\n[data-sek-expanded=\"true\"] .sek-accord-title * {\n color: #1e261f;\n}\n\n[data-sek-expanded=\"true\"] .sek-accord-title .expander span {\n background: #1e261f;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title {\n padding-right: 10px;\n max-width: calc(100% - 30px);\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title, .sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {\n -webkit-transition: all 0.15s ease-in-out;\n -moz-transition: all, 0.15s ease-in-out;\n -ms-transition: all, 0.15s ease-in-out;\n -o-transition: all, 0.15s ease-in-out;\n transition: all 0.15s ease-in-out;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander {\n color: #1e261f;\n width: 30px;\n height: 30px;\n padding: 0;\n margin: 0;\n outline: none;\n border: 0;\n background: none;\n -webkit-box-shadow: none;\n box-shadow: none;\n font-size: 1.5em;\n position: relative;\n cursor: pointer;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span {\n position: absolute;\n -webkit-transition: .3s;\n -o-transition: .3s;\n transition: .3s;\n background: #565656;\n border-radius: 2px;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type {\n top: 25%;\n bottom: 25%;\n width: 10%;\n left: 45%;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type {\n left: 25%;\n right: 25%;\n height: 10%;\n top: 45%;\n}\n\n[data-sek-expanded=\"true\"] .expander span:first-of-type, [data-sek-expanded=\"true\"] .expander span:last-of-type {\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n[data-sek-expanded=\"true\"] .expander span:last-of-type {\n left: 50%;\n right: 50%;\n}\n\n[data-sek-has-global-border=\"true\"][data-sek-has-title-border=\"true\"] [data-sek-expanded=\"false\"] .sek-accord-title {\n border-bottom: none;\n}\n\n[data-sek-has-global-border=\"true\"][data-sek-has-title-border=\"true\"] .sek-accord-item:not(:last-child) {\n border-bottom: none;\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title .expander span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title .expander span:last-of-type {\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title .expander span:last-of-type {\n left: 50%;\n right: 50%;\n}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-content {\n padding: 15px 20px;\n background: #f2f2f2;\n color: #1e261f;\n font-size: 16px;\n line-height: 1.5em;\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] > .sek-accord-content {\n display: block;\n}\n\n.sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"false\"] > .sek-accord-content {\n display: none;\n}\n\n/*************************************\r\n* SHORTCODE MODULE\r\n*************************************/\n[data-sek-module-type=\"czr_shortcode_module\"] [data-sek-use-flexbox=\"true\"] {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n}\n\n.sek-module-inner {\n line-height: 1.5em;\n}\n\n.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6, .sek-module-inner p {\n line-height: 1.5em;\n}\n\n.sek-module-inner p {\n margin: 0 0 1em;\n padding: 0;\n}\n\n.sek-module-inner a {\n text-decoration: none;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\n.sek-module-inner img {\n height: auto;\n max-width: 100%;\n border: none;\n -webkit-border-radius: 0;\n border-radius: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\n[data-sek-module-type=\"czr_tiny_mce_editor_module\"] .sek-module-inner a,\n[data-sek-module-type=\"czr_shortcode_module\"] .sek-module-inner a,\n[data-sek-module-type=\"czr_accordion_module\"] .sek-module-inner a,\n[data-sek-module-type=\"czr_simple_html_module\"] .sek-module-inner a {\n text-decoration: underline;\n}\n\nbody .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-module-inner h3:before, body .sek-module-inner h4:before, body .sek-module-inner h5:before, body .sek-module-inner h6:before {\n content: none;\n background: none;\n}\n\n/*# sourceMappingURL=sek-base-rtl.css.map */",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}
|
assets/front/css/sek-base-rtl.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.sek-module{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;transition:all .3s ease-in-out;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{transition:0s linear;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-when-animating [data-sek-level]{overflow-x:hidden}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.sek-col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{-ms-flex:0 0 8.333%;flex:0 0 8.333%;max-width:8.333%}.sek-col-9{-ms-flex:0 0 9.090909%;flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%}.sek-col-11{-ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111%}.sek-col-12{-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.sek-col-14{-ms-flex:0 0 14.285%;flex:0 0 14.285%;max-width:14.285%}.sek-col-16{-ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666%}.sek-col-20{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.sek-col-25{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.sek-col-30{-ms-flex:0 0 30%;flex:0 0 30%;max-width:30%}.sek-col-33{-ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333%}.sek-col-40{-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}.sek-col-50{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.sek-col-60{-ms-flex:0 0 60%;flex:0 0 60%;max-width:60%}.sek-col-66{-ms-flex:0 0 66.666%;flex:0 0 66.666%;max-width:66.666%}.sek-col-70{-ms-flex:0 0 70%;flex:0 0 70%;max-width:70%}.sek-col-75{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.sek-col-80{-ms-flex:0 0 80%;flex:0 0 80%;max-width:80%}.sek-col-83{-ms-flex:0 0 83.333%;flex:0 0 83.333%;max-width:83.333%}.sek-col-90{-ms-flex:0 0 90%;flex:0 0 90%;max-width:90%}.sek-col-100{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-order-first{-ms-flex-order:-1;order:-1}.sek-order-last{-ms-flex-order:13;order:13}.sek-order-0{-ms-flex-order:0;order:0}.sek-order-1{-ms-flex-order:1;order:1}.sek-order-2{-ms-flex-order:2;order:2}.sek-order-3{-ms-flex-order:3;order:3}.sek-order-4{-ms-flex-order:4;order:4}.sek-order-5{-ms-flex-order:5;order:5}.sek-order-6{-ms-flex-order:6;order:6}.sek-order-7{-ms-flex-order:7;order:7}.sek-order-8{-ms-flex-order:8;order:8}.sek-order-9{-ms-flex-order:9;order:9}.sek-order-10{-ms-flex-order:10;order:10}.sek-order-11{-ms-flex-order:11;order:11}.sek-order-12{-ms-flex-order:12;order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 1.5rem 1.5rem 0}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;transition:all .2s ease-in-out}.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module-inner .focus.sek-btn,.sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module-inner .disabled.sek-btn,.sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module-inner .active.sek-btn,.sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:left}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;box-sizing:border-box;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6{font-weight:400;line-height:1.5em}.sek-module-inner h1{font-size:2.48em}.sek-module-inner h2{font-size:2.07em}.sek-module-inner h3{font-size:1.73em}.sek-module-inner h4{font-size:1.44em}.sek-module-inner h5{font-size:1.2em}.sek-module-inner h6{font-size:1em}.sek-module-inner .sek-heading{text-align:center;margin:.6em 0;display:block}.sek-module-inner .sek-heading>a{color:inherit;font-size:inherit}.sek-nav-wrap{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem 0}.sek-mobile-menu-expanded-below .sek-nav-wrap{padding:0}.sek-nav-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.sek-module .sek-module-inner .sek-nav{margin-right:-10px!important;margin-left:-10px!important}.sek-module .sek-module-inner .sek-nav,.sek-module .sek-module-inner .sek-nav ul{list-style:none!important;padding:0!important;margin:0!important}.sek-module .sek-module-inner .sek-nav li{list-style:none;margin:0 5px}.sek-module .sek-module-inner .sek-nav li>ul li{padding:0 .9rem 0 0}.sek-nav li a{font-size:16px;line-height:1.5em;padding:.6em .8em;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;color:inherit;overflow:hidden}.sek-nav-wrap .sek-nav li a{text-decoration:none}.sek-nav li a:hover .sek-nav__title{text-decoration:underline}.sek-nav li:not(:last-of-type){border-bottom:1px solid;border-color:rgba(49,49,49,.09)}.sek-nav .menu-item-has-children,.sek-nav .page_item_has_children{position:relative}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{content:"\203A";font-family:"Arial Unicode MS",Arial;moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-weight:900;transition:all .3s ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px;padding:0 .45em;font-size:1em;position:relative;-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(90deg)!important;transform:translateZ(0) rotate(90deg)!important;-ms-transform:rotate(90deg)!important}.sek-nav .children,.sek-nav .sub-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-nav .children,.sek-nav .sub-menu{position:absolute;display:none;top:100%;right:0;z-index:1000;min-width:10rem;max-width:50vw}}.sek-dropdown-submenu>a::after{-webkit-transform:translateZ(0) rotate(0)!important;transform:translateZ(0) rotate(0)!important;-ms-transform:rotate(0)!important}.sek-dropdown-submenu>a[class*=-reverse]::after{top:.1em;-webkit-transform:translateZ(0) rotate(180deg)!important;transform:translateZ(0) rotate(180deg)!important;-ms-transform:rotate(180deg)!important}.sek-module-inner .sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.sek-module-inner .sek-nav-toggler,.sek-module-inner .sek-nav-toggler:focus,.sek-module-inner .sek-nav-toggler:hover{background:0 0;background-color:rgba(0,0,0,0);color:#000;border:none}.sek-ham__span-wrapper{height:12px;position:relative;display:block}.sek-ham__span-wrapper .line{display:block;height:1.5px;position:absolute;left:10px;border-radius:5px;background-clip:padding-box;transition:all ease .35s;-webkit-backface-visibility:hidden;backface-visibility:hidden;border-top:1.5px solid}.sek-ham__span-wrapper .line-1{top:0}.sek-ham__span-wrapper .line-2{top:50%}.sek-ham__span-wrapper .line-3{top:100%}.sek-nav-toggler .line-1{-webkit-transform:translate(-3px,6px) rotate(45deg);transform:translate(-3px,6px) rotate(45deg);width:28px}.sek-nav-toggler .line-2{opacity:0}.sek-nav-toggler .line-3{-webkit-transform:translate(-3px,-6px) rotate(-45deg);transform:translate(-3px,-6px) rotate(-45deg);width:28px}.sek-nav-toggler.sek-collapsed .line{width:20px;-webkit-transform:translate(0,0) rotate(0);transform:translate(0,0) rotate(0);opacity:1}.sek-nav-toggler.sek-collapsed.hovering .line{-webkit-transform:translateX(-3px);transform:translateX(-3px);width:26px}.sek-dropdown-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-dropdown-menu{position:absolute;display:none;top:100%;right:0;z-index:1000;min-width:10rem;max-width:50vw}}.show>.sek-dropdown-menu{display:block}.sek-dropdown-menu .sek-nav__title{word-break:break-word;white-space:normal}.sek-dropdown-menu.open-right{left:0;right:auto}.sek-dropdown-menu ul.open-right,.sek-dropdown-menu.open-right ul:not(.open-left){left:100%;right:auto}.sek-dropdown-menu.open-left{left:auto;right:0}.sek-dropdown-menu ul.open-left,.sek-dropdown-menu.open-left ul:not(.open-right){right:100%;left:auto}@media (min-width:768px){.sek-nav{-ms-flex-direction:row;flex-direction:row}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{display:inline-block}.sek-nav>li:not(:last-of-type){border-bottom:none}.sek-nav>li>a{padding:5px}.sek-nav-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.sek-mobile-menu-expanded-below{display:none!important}.sek-nav-toggler{display:none}.sek-dropdown-menu{background:#fff;box-shadow:1px 2px 2px 2px rgba(0,0,0,.15)}.sek-nav .sek-dropdown-menu li{padding:0 10px!important;margin:0!important}.sek-nav .sek-dropdown-menu li a{padding:10px 12px}.sek-dropdown-menu ul{right:100%}.sek-dropdown-menu .sek-menu-link__row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sek-dropdown-menu .sek-nav__title{word-break:normal;white-space:nowrap}.sek-dropdown-submenu .sek-dropdown-menu{top:15px}.sek-submenu-fade .sek-dropdown-menu a{transition:all .25s ease;-webkit-transform:translate(0,0);transform:translate(0,0)}.sek-submenu-fade .sek-dropdown-menu a:hover{-webkit-transform:translate(3px,0);transform:translate(3px,0)}.sek-submenu-fade .menu-item-has-children,.sek-submenu-fade .page_item_has_children{-webkit-perspective:1000px;perspective:1000px}.sek-submenu-fade .menu-item-has-children>ul,.sek-submenu-fade .page_item_has_children>ul{position:fixed;opacity:0;visibility:hidden;display:block;transition:all .25s ease-in-out;-webkit-transform:translate(0,-10px);transform:translate(0,-10px)}.sek-submenu-fade .menu-item-has-children:not(.show),.sek-submenu-fade .page_item_has_children:not(.show){overflow:hidden}.sek-submenu-fade .menu-item-has-children:not(.show) ul,.sek-submenu-fade .page_item_has_children:not(.show) ul{pointer-events:none;cursor:not-allowed}.sek-submenu-fade li.show{-webkit-perspective:none;perspective:none}.sek-submenu-fade li.show>ul{position:absolute;visibility:visible;opacity:1;-webkit-transform:translate(0,0);transform:translate(0,0)}}[data-sek-is-mobile-menu=yes]>.show{overflow:auto;max-height:80vh}[data-sek-is-mobile-menu=yes] li .sub-menu li>a{font-size:.8em;padding:.6em 15px}.nb-module-menu-search{position:relative}[data-sek-is-mobile-menu=yes] .nb-module-menu-search{display:none}.nb-svg-search-icon{cursor:pointer;padding:0}.nb-module-menu-search .nb-search-expand{display:none;background:#fff;position:absolute;z-index:100;top:49px;right:0;left:0;width:340px;box-shadow:0 1px 0 rgba(255,255,255,.1)}.nb-search-expand .nb-search-expand-inner{border:1px solid #eee;box-shadow:0 0 5px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.15);transition:-webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;padding:15px}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:none}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner label input[type=search]{max-width:100%}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{margin:0;background:grey;color:#fff}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-is-mobile-menu=yes] .nb-mobile-search input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{text-transform:none!important}.nb-mobile-search{display:none}[data-sek-is-mobile-menu=yes] .nb-mobile-search{display:block;padding:6px 14px 15px}[data-sek-is-mobile-menu=yes] .nb-mobile-search input{font-size:16px}[data-sek-module-type=czr_image_module]{text-align:center}[data-sek-module-type=czr_image_module] img{border:0 solid #f2f2f2}[data-sek-module-type=czr_image_module] .box-shadow img{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_image_module] figure img{transition:all .2s ease-out}[data-sek-module-type=czr_image_module] figure.has-custom-height{overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_image_module] figure.has-custom-height img{-o-object-fit:cover;object-fit:cover}.sek-hover-effect-opacity img:hover{opacity:.7}.sek-hover-effect-zoom-out img:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}.sek-hover-effect-zoom-in img:hover{-webkit-transform:scale(.95);transform:scale(.95)}.sek-hover-effect-move-up img:hover{-webkit-transform:translateY(-6px);transform:translateY(-6px)}.sek-hover-effect-move-down img:hover{-webkit-transform:translateY(6px);transform:translateY(6px)}.sek-hover-effect-blur img:hover{-webkit-filter:blur(2px);filter:blur(2px)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-nimble-image-wrapper{max-width:100%;overflow:hidden;width:100%;position:relative;display:block;background-position:center center;background-size:cover;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.sek-nimble-image-wrapper::before{content:'';display:block;padding-top:100%}.sek-nimble-image-wrapper a{color:#fff}.sek-nimble-image-wrapper a:hover{color:#fff}.sek-nimble-image-wrapper .nb-icon-text-wrapper{position:absolute;width:100%;height:100%;z-index:1;top:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon{font-size:80px;line-height:1em;color:#000;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text,.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text *{color:#000;font-size:16px;line-height:1.5em;font-weight:400;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p{margin:0;padding:0}.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon{color:#969696}.sek-nimble-image-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-mask::before{position:absolute;content:'';z-index:1;border:150vw solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before{width:88%;padding-bottom:88%}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before{width:63%;padding-bottom:63%}.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;background-repeat:no-repeat;z-index:0;top:0}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_icon_module]{text-align:center;color:#5a5a5a;font-size:15px}[data-sek-module-type=czr_icon_module] a.sek-icon,[data-sek-module-type=czr_icon_module] a.sek-icon.active,[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{color:inherit}[data-sek-module-type=czr_icon_module] .box-shadow .sek-icon-wrapper{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_icon_module] .sek-icon i{transition:all .15s ease-in-out}[data-sek-module-type=czr_icon_module] .sek-icon .fab,[data-sek-module-type=czr_icon_module] .sek-icon .far,[data-sek-module-type=czr_icon_module] .sek-icon .fas{width:1em;height:1em;text-align:center}[data-sek-module-type=czr_icon_module] a.sek-icon{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] .sek-icon-wrapper{display:inline-block;line-height:1em}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:14px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.sek-quote .sek-quote-content{font-weight:400;font-size:16px;line-height:1.5em;color:inherit}.sek-quote.sek-quote-design{background:0 0;font-style:inherit;margin-right:0;margin-left:0;padding:15px 0;border:none}.sek-quote.sek-quote-design>*{padding:0;margin:0}.sek-quote.sek-quote-design::after,.sek-quote.sek-quote-design::before{display:none}.sek-quote.sek-quote-design .sek-cite{padding:0;font-weight:400}.sek-quote.sek-quote-design .sek-cite::before{display:none}.sek-quote.sek-quote-design .sek-quote-inner{color:inherit;padding-right:calc(10px + .7em)}.sek-quote.sek-quote-design.sek-border-before{padding-right:15px;border-right:5px solid}.sek-quote.sek-quote-design.sek-border-before .sek-cite{clear:both;display:block;margin-top:1.5em;position:relative;padding-right:2.2em;padding-left:.25em}.sek-quote.sek-quote-design.sek-border-before .sek-cite::before{display:block;content:'';top:1em;position:absolute;background:0 0;width:2em;height:auto;right:0;border-top:1px solid}.sek-quote.sek-quote-design.sek-quote-icon-before{position:relative;display:-ms-flexbox;display:flex;font-size:50px}.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content :last-child{margin-bottom:.75em}.sek-quote.sek-quote-design.sek-quote-icon-before::before{content:"\275D";font-family:"Arial Unicode MS",Code2000;color:#ccc;font-style:normal;text-align:center;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;width:auto;margin:0;right:0;position:absolute;top:10px}[data-sek-module-type=czr_button_module] .sek-module-inner{text-align:center}.sek-module-inner .sek-btn{background:#020202;color:#fff;padding:.5em 1em}.sek-module-inner .sek-btn i{margin:0 8px}.sek-module-inner .sek-btn:active,.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{color:#fff}[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:focus,[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-btn-inner{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-btn.box-shadow{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-btn.box-shadow.push-effect:active{-webkit-transform:translateY(2px);transform:translateY(2px)}.sek-post-grid-wrapper{margin-top:1.5rem;margin-bottom:1.5rem}.sek-post-grid-wrapper .sek-grid-items{grid-row-gap:25px}.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article>:not(:last-child):not(.sek-pg-thumbnail){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article>:not(:last-child){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:not(:last-child){margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:not(:last-child){margin-top:0!important;margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article{box-shadow:0 0 40px 0 rgba(0,0,0,.05);transition:all .3s cubic-bezier(.25,.8,.25,1)}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px);box-shadow:0 14px 28px rgba(0,0,0,.18),0 10px 10px rgba(0,0,0,.15)}.sek-post-grid-wrapper .sek-pg-thumbnail{box-shadow:0 5px 5px 0 rgba(18,63,82,.035),0 0 0 1px rgba(176,181,193,.2);background-color:#fff;overflow:hidden}.sek-post-grid-wrapper .sek-pg-thumbnail a{display:block;position:relative}.sek-post-grid-wrapper .sek-pg-thumbnail img{display:block;width:100%;height:auto}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:0;padding-top:65%}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:auto!important;padding-top:inherit!important}}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{position:absolute;height:100%;width:100%;max-height:none;max-width:none;top:0;left:0;right:0;bottom:0;-o-object-fit:cover;object-fit:cover}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{height:auto!important;position:relative}}.sek-post-grid-wrapper .sek-pg-metas>span:not(:last-child)::after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.sek-post-grid-wrapper .sek-pg-content{text-align:right}.sek-post-grid-wrapper .sek-excerpt>:last-child{margin-bottom:0}.sek-module-inner .sek-post-grid-wrapper .sek-pg-category a{text-transform:uppercase;font-size:14px;text-decoration:none;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title{font-size:28px;line-height:1.3em}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title a{text-decoration:none;color:#444;font-size:28px;font-weight:400;line-height:1.3em;-ms-word-wrap:break-word;word-wrap:break-word}.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a,.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span{text-transform:uppercase;font-size:14px;letter-spacing:1px;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-content p{margin:0 0 15px 0;line-height:1.5;font-size:16px;color:#494949}.sek-post-grid-wrapper .sek-list-layout{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout{display:block!important}}.sek-post-grid-wrapper .sek-list-layout article{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr);-ms-grid-rows:1fr;grid-template-rows:1fr;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout article{display:block!important;padding-top:10px}}.sek-post-grid-wrapper .sek-list-layout article>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb{-ms-grid-columns:30% minmax(0,1fr);grid-template-columns:30% minmax(0,1fr)}.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail{margin-bottom:0;-ms-flex-item-align:start;align-self:flex-start}.sek-post-grid-wrapper .sek-grid-layout{display:-ms-grid;display:grid;-ms-grid-columns:1fr 20px 1fr;grid-template-columns:1fr 1fr;-ms-grid-rows:1fr;grid-template-rows:1fr;grid-row-gap:20px;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-grid-layout{display:block!important}}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(2){-ms-grid-row:1;-ms-grid-column:3}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}@media (min-width:768px){.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}.sek-post-navigation #sek-nav-below{background-color:#f7f8f9;margin-top:20px;padding:5px}.sek-post-navigation #sek-nav-below .sek-pagination{text-align:center}.sek-post-navigation #sek-nav-below .sek-pagination ul{display:inline-block;vertical-align:middle;margin:0}.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers{font-family:inherit;opacity:.7;text-decoration:none!important}.sek-post-navigation #sek-nav-below .sek-pagination .current{font-weight:600;opacity:1}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list>*{margin:0 5px}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list{margin:0 -5px}.sek-post-navigation #sek-nav-below nav{padding-top:20px;padding-bottom:20px}.sek-post-navigation #sek-nav-below ul.sek-czr-pager{margin:0}.sek-post-navigation #sek-nav-below li{display:inline-block;font-size:16px}.sek-post-navigation #sek-nav-below .sek-meta-nav-title,.sek-post-navigation #sek-nav-below a{text-transform:uppercase;letter-spacing:2px;color:#5a5a5a}.sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover,.sek-post-navigation #sek-nav-below a:hover{color:#3b3b3b;opacity:1!important}.sek-post-navigation #sek-nav-below .sek-czr-pager>li{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir>a{max-width:100%}.sek-post-navigation #sek-nav-below a i.arrow{font-size:.9em}.sek-post-navigation #sek-nav-below .page-numbers,.sek-post-navigation #sek-nav-below a{font-family:inherit;line-height:30px;height:30px;display:inline-block;vertical-align:middle;transition:all .3s ease;position:relative}.sek-post-navigation #sek-nav-below .sek-meta-nav{display:-ms-flexbox;display:flex;transition:all .2s,.6s ease;opacity:.7}.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav{opacity:1;text-decoration:underline}.sek-post-navigation #sek-nav-below .sek-meta-nav-title{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;font-size:.9em}.sek-simple-form-wrapper input[type=text],.sek-simple-form-wrapper textarea{font-size:16px;width:100%!important;padding:.4em .5em;border-radius:3px;box-sizing:border-box;outline:0;font-weight:400;max-width:100%;border:none;color:#555;background-color:#fff}.sek-simple-form-wrapper textarea{height:auto;max-height:150px}.sek-simple-form-wrapper .sek-form-field{margin-bottom:15px;clear:both}.sek-simple-form-wrapper label{color:#444;font-weight:700;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block}.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea{box-shadow:0 1px 1px rgba(0,0,0,.075) inset}.sek-simple-form-wrapper #sek-form-respond{padding:20px 0}.sek-simple-form-wrapper input[type=checkbox]+label{display:inline;font-weight:700;margin-left:.5rem}.sek-form-message{padding:10px;margin:10px 0;text-align:center;line-height:1.5em;font-size:16px;border-radius:4px}.sek-form-message.sek-mail-failure{color:red;border:1px solid red;background:0 0;background:rgba(255,0,0,.05)}.sek-form-message.sek-mail-success{color:green;border:1px solid green;background:0 0;background:rgba(0,128,0,.05)}.sek-form-message.sek-mail-aborted{color:orange;border:1px solid orange;background:0 0;background:rgba(255,165,0,.05)}.grecaptcha-badge{z-index:1}.sek-hide-rc-badge .grecaptcha-badge{display:none}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_social_icons_module] .sek-module-inner .sek-social-icons-wrapper{margin:10px 0}.sek-module-inner .sek-social-icons-wrapper{text-align:center}.sek-module-inner .sek-social-icons-wrapper>:not(:last-child){padding-right:8px}.sek-module-inner .sek-social-icons-wrapper>li{display:inline-block}.sek-module-inner .sek-social-icons-wrapper>li a{color:#707070}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{font-size:28px;line-height:1.5em}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{transition:all .2s ease-in-out}.sek-column-inner [data-sek-module-type=czr_img_slider_module]{width:calc(100% + 20px);max-width:calc(100% + 20px)}[data-sek-module-type=czr_img_slider_module] .sek-carousel-img [src*="data:image/gif;"]{display:none}[data-sek-module-type=czr_img_slider_module] .sek-swiper-loading .sek-carousel-img img{display:none}[data-sek-module-type=czr_img_slider_module] .swiper-container{width:100%;height:100%}[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:400px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{height:200px}}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img{height:100%;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img img{max-width:none;opacity:0;transition:opacity .15s ease-in-out}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img{height:100%;width:auto;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img img{width:auto;height:100%;max-width:none}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img{height:100%;width:100%;overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img img{width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover}[data-sek-module-type=czr_img_slider_module] .swiper-slide{text-align:center;font-size:18px;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-h-centrd{width:auto!important;max-width:none!important;position:relative;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-v-centrd{height:auto!important;max-height:none!important;vertical-align:top;position:relative;max-width:none!important;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide[data-sek-has-overlay=true] .sek-carousel-img::after{content:'';left:0;right:0;bottom:0;top:0;position:absolute;background-color:#000;opacity:.3}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-wrapper{height:100%;width:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);top:50%;left:50%;position:absolute;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content{height:auto;max-height:100%;width:100%;padding:5%;text-align:center;z-index:3;overflow:hidden;color:#e2e2e2;font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content *{font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-pagination-bullet-active{background-color:#fff}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav{cursor:pointer}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-chevron{display:inline-block;border-right:2px solid #fff;border-bottom:2px solid #fff;width:11px;height:11px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{left:0;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev .sek-chevron{-webkit-transform:rotate(-225deg);transform:rotate(-225deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next{right:0;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next .sek-chevron{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{position:absolute;z-index:2;top:calc(50% - 30px);text-align:center;margin-top:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:60px;width:50px;opacity:.6;background-color:rgba(32,32,32,.4);transition:all .3s cubic-bezier(.39,.575,.565,1);line-height:64px;cursor:pointer;font-size:18px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next:hover,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev:hover{background-color:rgba(32,32,32,.7);opacity:1;width:100px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .swiper-pagination{display:none}[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .sek-swiper-nav{display:none}}.sek-accord-wrapper{text-align:left}.sek-accord-wrapper .sek-accord-item{border:1px solid #e3e3e3;overflow:hidden}.sek-accord-wrapper .sek-accord-item:not(:last-child){margin-bottom:0}.sek-accord-wrapper .sek-accord-item .sek-accord-title{cursor:pointer;color:#565656;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:15px 20px;border-top:none;border-right:none;border-left:none;border-bottom:1px solid #e3e3e3;font-size:16px;line-height:1.5em;font-weight:600;-ms-flex-positive:1;flex-grow:1}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover *{color:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title .expander span{background:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{padding-right:10px;max-width:calc(100% - 30px)}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span,.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander{color:#1e261f;width:30px;height:30px;padding:0;margin:0;outline:0;border:0;background:0 0;box-shadow:none;font-size:1.5em;position:relative;cursor:pointer}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] .expander span:first-of-type,[data-sek-expanded=true] .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] .expander span:last-of-type{left:50%;right:50%}[data-sek-has-global-border=true][data-sek-has-title-border=true] [data-sek-expanded=false] .sek-accord-title{border-bottom:none}[data-sek-has-global-border=true][data-sek-has-title-border=true] .sek-accord-item:not(:last-child){border-bottom:none}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{left:50%;right:50%}.sek-accord-wrapper .sek-accord-item .sek-accord-content{padding:15px 20px;background:#f2f2f2;color:#1e261f;font-size:16px;line-height:1.5em}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true]>.sek-accord-content{display:block}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=false]>.sek-accord-content{display:none}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;border-radius:0;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
1 |
+
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.sek-module{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;transition:all .3s ease-in-out;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{transition:0s linear;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-while-animating{overflow:hidden}.sek-module .sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.sek-col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{-ms-flex:0 0 8.333%;flex:0 0 8.333%;max-width:8.333%}.sek-col-9{-ms-flex:0 0 9.090909%;flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%}.sek-col-11{-ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111%}.sek-col-12{-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.sek-col-14{-ms-flex:0 0 14.285%;flex:0 0 14.285%;max-width:14.285%}.sek-col-16{-ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666%}.sek-col-20{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.sek-col-25{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.sek-col-30{-ms-flex:0 0 30%;flex:0 0 30%;max-width:30%}.sek-col-33{-ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333%}.sek-col-40{-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}.sek-col-50{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.sek-col-60{-ms-flex:0 0 60%;flex:0 0 60%;max-width:60%}.sek-col-66{-ms-flex:0 0 66.666%;flex:0 0 66.666%;max-width:66.666%}.sek-col-70{-ms-flex:0 0 70%;flex:0 0 70%;max-width:70%}.sek-col-75{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.sek-col-80{-ms-flex:0 0 80%;flex:0 0 80%;max-width:80%}.sek-col-83{-ms-flex:0 0 83.333%;flex:0 0 83.333%;max-width:83.333%}.sek-col-90{-ms-flex:0 0 90%;flex:0 0 90%;max-width:90%}.sek-col-100{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-order-first{-ms-flex-order:-1;order:-1}.sek-order-last{-ms-flex-order:13;order:13}.sek-order-0{-ms-flex-order:0;order:0}.sek-order-1{-ms-flex-order:1;order:1}.sek-order-2{-ms-flex-order:2;order:2}.sek-order-3{-ms-flex-order:3;order:3}.sek-order-4{-ms-flex-order:4;order:4}.sek-order-5{-ms-flex-order:5;order:5}.sek-order-6{-ms-flex-order:6;order:6}.sek-order-7{-ms-flex-order:7;order:7}.sek-order-8{-ms-flex-order:8;order:8}.sek-order-9{-ms-flex-order:9;order:9}.sek-order-10{-ms-flex-order:10;order:10}.sek-order-11{-ms-flex-order:11;order:11}.sek-order-12{-ms-flex-order:12;order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 1.5rem 1.5rem 0}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module .sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;transition:all .2s ease-in-out}.sek-module .sek-module-inner .sek-btn:focus,.sek-module .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module .sek-module-inner .focus.sek-btn,.sek-module .sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module .sek-module-inner .disabled.sek-btn,.sek-module .sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module .sek-module-inner .active.sek-btn,.sek-module .sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:left}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;box-sizing:border-box;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6{font-weight:400;line-height:1.5em}.sek-module-inner h1{font-size:2.48em}.sek-module-inner h2{font-size:2.07em}.sek-module-inner h3{font-size:1.73em}.sek-module-inner h4{font-size:1.44em}.sek-module-inner h5{font-size:1.2em}.sek-module-inner h6{font-size:1em}.sek-module-inner .sek-heading{text-align:center;margin:.6em 0;display:block}.sek-module-inner .sek-heading>a{color:inherit;font-size:inherit}.sek-nav-wrap{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem 0}.sek-mobile-menu-expanded-below .sek-nav-wrap{padding:0}.sek-nav-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.sek-module .sek-module-inner .sek-nav{margin-right:-10px!important;margin-left:-10px!important}.sek-module .sek-module-inner .sek-nav,.sek-module .sek-module-inner .sek-nav ul{list-style:none!important;padding:0!important;margin:0!important}.sek-module .sek-module-inner .sek-nav li{list-style:none;margin:0 5px}.sek-module .sek-module-inner .sek-nav li>ul li{padding:0 .9rem 0 0}.sek-nav li a{font-size:16px;line-height:1.5em;padding:.6em .8em;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;color:inherit;overflow:hidden}.sek-nav-wrap .sek-nav li a{text-decoration:none}.sek-nav li a:hover .sek-nav__title{text-decoration:underline}.sek-nav li:not(:last-of-type){border-bottom:1px solid;border-color:rgba(49,49,49,.09)}.sek-nav .menu-item-has-children,.sek-nav .page_item_has_children{position:relative}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{content:"\203A";font-family:"Arial Unicode MS",Arial;moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-weight:900;transition:all .3s ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px;padding:0 .45em;font-size:1em;position:relative;-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(90deg)!important;transform:translateZ(0) rotate(90deg)!important;-ms-transform:rotate(90deg)!important}.sek-nav .children,.sek-nav .sub-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-nav .children,.sek-nav .sub-menu{position:absolute;display:none;top:100%;right:0;z-index:1000;min-width:10rem;max-width:50vw}}.sek-dropdown-submenu>a::after{-webkit-transform:translateZ(0) rotate(0)!important;transform:translateZ(0) rotate(0)!important;-ms-transform:rotate(0)!important}.sek-dropdown-submenu>a[class*=-reverse]::after{top:.1em;-webkit-transform:translateZ(0) rotate(180deg)!important;transform:translateZ(0) rotate(180deg)!important;-ms-transform:rotate(180deg)!important}.nb-loc .sek-module-inner .sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.nb-loc .sek-module-inner .sek-nav-toggler,.nb-loc .sek-module-inner .sek-nav-toggler:focus,.nb-loc .sek-module-inner .sek-nav-toggler:hover{background:0 0;background-color:rgba(0,0,0,0);color:#000;border:none}.sek-ham__span-wrapper{height:12px;position:relative;display:block}.sek-ham__span-wrapper .line{display:block;height:1.5px;position:absolute;left:10px;border-radius:5px;background-clip:padding-box;transition:all ease .35s;-webkit-backface-visibility:hidden;backface-visibility:hidden;border-top:1.5px solid}.sek-ham__span-wrapper .line-1{top:0}.sek-ham__span-wrapper .line-2{top:50%}.sek-ham__span-wrapper .line-3{top:100%}.sek-nav-toggler .line-1{-webkit-transform:translate(-3px,6px) rotate(45deg);transform:translate(-3px,6px) rotate(45deg);width:28px}.sek-nav-toggler .line-2{opacity:0}.sek-nav-toggler .line-3{-webkit-transform:translate(-3px,-6px) rotate(-45deg);transform:translate(-3px,-6px) rotate(-45deg);width:28px}.sek-nav-toggler.sek-collapsed .line{width:20px;-webkit-transform:translate(0,0) rotate(0);transform:translate(0,0) rotate(0);opacity:1}.sek-nav-toggler.sek-collapsed.hovering .line{-webkit-transform:translateX(-3px);transform:translateX(-3px);width:26px}.sek-dropdown-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-dropdown-menu{position:absolute;display:none;top:100%;right:0;z-index:1000;min-width:10rem;max-width:50vw}}.show>.sek-dropdown-menu{display:block}.sek-dropdown-menu .sek-nav__title{word-break:break-word;white-space:normal}.sek-dropdown-menu.open-right{left:0;right:auto}.sek-dropdown-menu ul.open-right,.sek-dropdown-menu.open-right ul:not(.open-left){left:100%;right:auto}.sek-dropdown-menu.open-left{left:auto;right:0}.sek-dropdown-menu ul.open-left,.sek-dropdown-menu.open-left ul:not(.open-right){right:100%;left:auto}@media (min-width:768px){.sek-nav{-ms-flex-direction:row;flex-direction:row}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{display:inline-block}.sek-nav>li:not(:last-of-type){border-bottom:none}.sek-nav>li>a{padding:5px}.sek-nav-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.sek-mobile-menu-expanded-below{display:none!important}.sek-nav-toggler{display:none}.sek-dropdown-menu{background:#fff;box-shadow:1px 2px 2px 2px rgba(0,0,0,.15)}.sek-nav .sek-dropdown-menu li{padding:0 10px!important;margin:0!important}.sek-nav .sek-dropdown-menu li a{padding:10px 12px}.sek-dropdown-menu ul{right:100%}.sek-dropdown-menu .sek-menu-link__row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sek-dropdown-menu .sek-nav__title{word-break:normal;white-space:nowrap}.sek-dropdown-submenu .sek-dropdown-menu{top:15px}.sek-submenu-fade .sek-dropdown-menu a{transition:all .25s ease;-webkit-transform:translate(0,0);transform:translate(0,0)}.sek-submenu-fade .sek-dropdown-menu a:hover{-webkit-transform:translate(3px,0);transform:translate(3px,0)}.sek-submenu-fade .menu-item-has-children,.sek-submenu-fade .page_item_has_children{-webkit-perspective:1000px;perspective:1000px}.sek-submenu-fade .menu-item-has-children>ul,.sek-submenu-fade .page_item_has_children>ul{position:fixed;opacity:0;visibility:hidden;display:block;transition:all .25s ease-in-out;-webkit-transform:translate(0,-10px);transform:translate(0,-10px)}.sek-submenu-fade .menu-item-has-children:not(.show),.sek-submenu-fade .page_item_has_children:not(.show){overflow:hidden}.sek-submenu-fade .menu-item-has-children:not(.show) ul,.sek-submenu-fade .page_item_has_children:not(.show) ul{pointer-events:none;cursor:not-allowed}.sek-submenu-fade li.show{-webkit-perspective:none;perspective:none}.sek-submenu-fade li.show>ul{position:absolute;visibility:visible;opacity:1;-webkit-transform:translate(0,0);transform:translate(0,0)}}[data-sek-is-mobile-menu=yes]>.show{overflow:auto;max-height:80vh}[data-sek-is-mobile-menu=yes] li .sub-menu li>a{font-size:.8em;padding:.6em 15px}.nb-module-menu-search{position:relative}[data-sek-is-mobile-menu=yes] .nb-module-menu-search{display:none}.nb-svg-search-icon{cursor:pointer;padding:0}.nb-module-menu-search .nb-search-expand{display:none;background:#fff;position:absolute;z-index:100;top:49px;right:0;left:0;width:340px;box-shadow:0 1px 0 rgba(255,255,255,.1)}.nb-search-expand .nb-search-expand-inner{border:1px solid #eee;box-shadow:0 0 5px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.15);transition:-webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;padding:15px}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:none}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner label input[type=search]{max-width:100%}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{margin:0;background:grey;color:#fff}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-is-mobile-menu=yes] .nb-mobile-search input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{text-transform:none!important}.nb-mobile-search{display:none}[data-sek-is-mobile-menu=yes] .nb-mobile-search{display:block;padding:6px 14px 15px}[data-sek-is-mobile-menu=yes] .nb-mobile-search input{font-size:16px}[data-sek-module-type=czr_image_module]{text-align:center}[data-sek-module-type=czr_image_module] img{border:0 solid #f2f2f2}[data-sek-module-type=czr_image_module] .box-shadow img{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_image_module] figure img{transition:all .2s ease-out}[data-sek-module-type=czr_image_module] figure.has-custom-height{overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_image_module] figure.has-custom-height img{-o-object-fit:cover;object-fit:cover}.sek-hover-effect-opacity img:hover{opacity:.7}.sek-hover-effect-zoom-out img:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}.sek-hover-effect-zoom-in img:hover{-webkit-transform:scale(.95);transform:scale(.95)}.sek-hover-effect-move-up img:hover{-webkit-transform:translateY(-6px);transform:translateY(-6px)}.sek-hover-effect-move-down img:hover{-webkit-transform:translateY(6px);transform:translateY(6px)}.sek-hover-effect-blur img:hover{-webkit-filter:blur(2px);filter:blur(2px)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-nimble-image-wrapper{max-width:100%;overflow:hidden;width:100%;position:relative;display:block;background-position:center center;background-size:cover;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.sek-nimble-image-wrapper::before{content:'';display:block;padding-top:100%}.sek-nimble-image-wrapper a{color:#fff}.sek-nimble-image-wrapper a:hover{color:#fff}.sek-nimble-image-wrapper .nb-icon-text-wrapper{position:absolute;width:100%;height:100%;z-index:1;top:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon{font-size:80px;line-height:1em;color:#000;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text,.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text *{color:#000;font-size:16px;line-height:1.5em;font-weight:400;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p{margin:0;padding:0}.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon{color:#969696}.sek-nimble-image-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-mask::before{position:absolute;content:'';z-index:1;border:150vw solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before{width:88%;padding-bottom:88%}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before{width:63%;padding-bottom:63%}.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;background-repeat:no-repeat;z-index:0;top:0}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_icon_module]{text-align:center;color:#5a5a5a;font-size:15px}[data-sek-module-type=czr_icon_module] a.sek-icon,[data-sek-module-type=czr_icon_module] a.sek-icon.active,[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{color:inherit}[data-sek-module-type=czr_icon_module] .box-shadow .sek-icon-wrapper{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_icon_module] .sek-icon i{transition:all .15s ease-in-out}[data-sek-module-type=czr_icon_module] .sek-icon .fab,[data-sek-module-type=czr_icon_module] .sek-icon .far,[data-sek-module-type=czr_icon_module] .sek-icon .fas{width:1em;height:1em;text-align:center}[data-sek-module-type=czr_icon_module] a.sek-icon{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] .sek-icon-wrapper{display:inline-block;line-height:1em}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:14px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.sek-quote .sek-quote-content{font-weight:400;font-size:16px;line-height:1.5em;color:inherit}.sek-quote.sek-quote-design{background:0 0;font-style:inherit;margin-right:0;margin-left:0;padding:15px 0;border:none}.sek-quote.sek-quote-design>*{padding:0;margin:0}.sek-quote.sek-quote-design::after,.sek-quote.sek-quote-design::before{display:none}.sek-quote.sek-quote-design .sek-cite{padding:0;font-weight:400}.sek-quote.sek-quote-design .sek-cite::before{display:none}.sek-quote.sek-quote-design .sek-quote-inner{color:inherit;padding-right:calc(10px + .7em)}.sek-quote.sek-quote-design.sek-border-before{padding-right:15px;border-right:5px solid}.sek-quote.sek-quote-design.sek-border-before .sek-cite{clear:both;display:block;margin-top:1.5em;position:relative;padding-right:2.2em;padding-left:.25em}.sek-quote.sek-quote-design.sek-border-before .sek-cite::before{display:block;content:'';top:1em;position:absolute;background:0 0;width:2em;height:auto;right:0;border-top:1px solid}.sek-quote.sek-quote-design.sek-quote-icon-before{position:relative;display:-ms-flexbox;display:flex;font-size:50px}.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content :last-child{margin-bottom:.75em}.sek-quote.sek-quote-design.sek-quote-icon-before::before{content:"\275D";font-family:"Arial Unicode MS",Code2000;color:#ccc;font-style:normal;text-align:center;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;width:auto;margin:0;right:0;position:absolute;top:10px}[data-sek-module-type=czr_button_module] .sek-module-inner{text-align:center}.nb-loc .sek-module .sek-module-inner .sek-btn{background:#020202;color:#fff;padding:.5em 1em}.nb-loc .sek-module .sek-module-inner .sek-btn i{margin:0 8px}.nb-loc .sek-module .sek-module-inner .sek-btn:active,.nb-loc .sek-module .sek-module-inner .sek-btn:focus,.nb-loc .sek-module .sek-module-inner .sek-btn:hover{color:#fff;text-decoration:none}[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:focus,[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-btn-inner{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-btn.box-shadow{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-btn.box-shadow.push-effect:active{-webkit-transform:translateY(2px);transform:translateY(2px)}.sek-post-grid-wrapper{margin-top:1.5rem;margin-bottom:1.5rem}.sek-post-grid-wrapper .sek-grid-items{grid-row-gap:25px}.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article>:not(:last-child):not(.sek-pg-thumbnail){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article>:not(:last-child){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:not(:last-child){margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:not(:last-child){margin-top:0!important;margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article{box-shadow:0 0 40px 0 rgba(0,0,0,.05);transition:all .3s cubic-bezier(.25,.8,.25,1)}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px);box-shadow:0 14px 28px rgba(0,0,0,.18),0 10px 10px rgba(0,0,0,.15)}.sek-post-grid-wrapper .sek-pg-thumbnail{box-shadow:0 5px 5px 0 rgba(18,63,82,.035),0 0 0 1px rgba(176,181,193,.2);background-color:#fff;overflow:hidden}.sek-post-grid-wrapper .sek-pg-thumbnail a{display:block;position:relative}.sek-post-grid-wrapper .sek-pg-thumbnail img{display:block;width:100%;height:auto}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:0;padding-top:65%}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:auto!important;padding-top:inherit!important}}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{position:absolute;height:100%;width:100%;max-height:none;max-width:none;top:0;left:0;right:0;bottom:0;-o-object-fit:cover;object-fit:cover}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{height:auto!important;position:relative}}.sek-post-grid-wrapper .sek-pg-metas>span:not(:last-child)::after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.sek-post-grid-wrapper .sek-pg-content{text-align:right}.sek-post-grid-wrapper .sek-excerpt>:last-child{margin-bottom:0}.sek-module-inner .sek-post-grid-wrapper .sek-pg-category a{text-transform:uppercase;font-size:14px;text-decoration:none;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title{font-size:28px;line-height:1.3em}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title a{text-decoration:none;color:#444;font-size:28px;font-weight:400;line-height:1.3em;-ms-word-wrap:break-word;word-wrap:break-word}.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a,.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span{text-transform:uppercase;font-size:14px;letter-spacing:1px;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-content p{margin:0 0 15px 0;line-height:1.5;font-size:16px;color:#494949}.sek-post-grid-wrapper .sek-list-layout{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout{display:block!important}}.sek-post-grid-wrapper .sek-list-layout article{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr);-ms-grid-rows:1fr;grid-template-rows:1fr;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout article{display:block!important;padding-top:10px}}.sek-post-grid-wrapper .sek-list-layout article>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb{-ms-grid-columns:30% minmax(0,1fr);grid-template-columns:30% minmax(0,1fr)}.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail{margin-bottom:0;-ms-flex-item-align:start;align-self:flex-start}.sek-post-grid-wrapper .sek-grid-layout{display:-ms-grid;display:grid;-ms-grid-columns:1fr 20px 1fr;grid-template-columns:1fr 1fr;-ms-grid-rows:1fr;grid-template-rows:1fr;grid-row-gap:20px;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-grid-layout{display:block!important}}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(2){-ms-grid-row:1;-ms-grid-column:3}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}@media (min-width:768px){.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}.sek-post-navigation #sek-nav-below{background-color:#f7f8f9;margin-top:20px;padding:5px}.sek-post-navigation #sek-nav-below .sek-pagination{text-align:center}.sek-post-navigation #sek-nav-below .sek-pagination ul{display:inline-block;vertical-align:middle;margin:0}.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers{font-family:inherit;opacity:.7;text-decoration:none!important}.sek-post-navigation #sek-nav-below .sek-pagination .current{font-weight:600;opacity:1}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list>*{margin:0 5px}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list{margin:0 -5px}.sek-post-navigation #sek-nav-below nav{padding-top:20px;padding-bottom:20px}.sek-post-navigation #sek-nav-below ul.sek-czr-pager{margin:0}.sek-post-navigation #sek-nav-below li{display:inline-block;font-size:16px}.sek-post-navigation #sek-nav-below .sek-meta-nav-title,.sek-post-navigation #sek-nav-below a{text-transform:uppercase;letter-spacing:2px;color:#5a5a5a}.sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover,.sek-post-navigation #sek-nav-below a:hover{color:#3b3b3b;opacity:1!important}.sek-post-navigation #sek-nav-below .sek-czr-pager>li{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir>a{max-width:100%}.sek-post-navigation #sek-nav-below a i.arrow{font-size:.9em}.sek-post-navigation #sek-nav-below .page-numbers,.sek-post-navigation #sek-nav-below a{font-family:inherit;line-height:30px;height:30px;display:inline-block;vertical-align:middle;transition:all .3s ease;position:relative}.sek-post-navigation #sek-nav-below .sek-meta-nav{display:-ms-flexbox;display:flex;transition:all .2s,.6s ease;opacity:.7}.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav{opacity:1;text-decoration:underline}.sek-post-navigation #sek-nav-below .sek-meta-nav-title{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;font-size:.9em}.sek-simple-form-wrapper input[type=text],.sek-simple-form-wrapper textarea{font-size:16px;width:100%!important;padding:.4em .5em;border-radius:3px;box-sizing:border-box;outline:0;font-weight:400;max-width:100%;border:none;color:#555;background-color:#fff}.sek-simple-form-wrapper textarea{height:auto;max-height:150px}.sek-simple-form-wrapper .sek-form-field{margin-bottom:15px;clear:both}.sek-simple-form-wrapper label{color:#444;font-weight:700;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block}.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea{box-shadow:0 1px 1px rgba(0,0,0,.075) inset}.sek-simple-form-wrapper #sek-form-respond{padding:20px 0}.sek-simple-form-wrapper input[type=checkbox]+label{display:inline;font-weight:700;margin-left:.5rem}.sek-form-message{padding:10px;margin:10px 0;text-align:center;line-height:1.5em;font-size:16px;border-radius:4px}.sek-form-message.sek-mail-failure{color:red;border:1px solid red;background:0 0;background:rgba(255,0,0,.05)}.sek-form-message.sek-mail-success{color:green;border:1px solid green;background:0 0;background:rgba(0,128,0,.05)}.sek-form-message.sek-mail-aborted{color:orange;border:1px solid orange;background:0 0;background:rgba(255,165,0,.05)}.grecaptcha-badge{z-index:1}.sek-hide-rc-badge .grecaptcha-badge{display:none}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_social_icons_module] .sek-module-inner .sek-social-icons-wrapper{margin:10px 0}.nb-loc .sek-module-inner .sek-social-icons-wrapper{text-align:center}.nb-loc .sek-module-inner .sek-social-icons-wrapper>:not(:last-child){padding-right:8px}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li{display:inline-block}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li a{color:#707070}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{font-size:28px;line-height:1.5em}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{transition:all .2s ease-in-out}.sek-column-inner [data-sek-module-type=czr_img_slider_module]{width:calc(100% + 20px);max-width:calc(100% + 20px)}[data-sek-module-type=czr_img_slider_module] .sek-carousel-img [src*="data:image/gif;"]{display:none}[data-sek-module-type=czr_img_slider_module] .sek-swiper-loading .sek-carousel-img img{display:none}[data-sek-module-type=czr_img_slider_module] .swiper-container{width:100%;height:100%}[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:400px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{height:200px}}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img{height:100%;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img img{max-width:none;opacity:0;transition:opacity .15s ease-in-out}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img{height:100%;width:auto;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img img{width:auto;height:100%;max-width:none}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img{height:100%;width:100%;overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img img{width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover}[data-sek-module-type=czr_img_slider_module] .swiper-slide{text-align:center;font-size:18px;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-h-centrd{width:auto!important;max-width:none!important;position:relative;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-v-centrd{height:auto!important;max-height:none!important;vertical-align:top;position:relative;max-width:none!important;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide[data-sek-has-overlay=true] .sek-carousel-img::after{content:'';left:0;right:0;bottom:0;top:0;position:absolute;background-color:#000;opacity:.3}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-wrapper{height:100%;width:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);top:50%;left:50%;position:absolute;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content{height:auto;max-height:100%;width:100%;padding:5%;text-align:center;z-index:3;overflow:hidden;color:#e2e2e2;font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content *{font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-pagination-bullet-active{background-color:#fff}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav{cursor:pointer}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-chevron{display:inline-block;border-right:2px solid #fff;border-bottom:2px solid #fff;width:11px;height:11px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{left:0;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev .sek-chevron{-webkit-transform:rotate(-225deg);transform:rotate(-225deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next{right:0;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next .sek-chevron{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{position:absolute;z-index:2;top:calc(50% - 30px);text-align:center;margin-top:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:60px;width:50px;opacity:.6;background-color:rgba(32,32,32,.4);transition:all .3s cubic-bezier(.39,.575,.565,1);line-height:64px;cursor:pointer;font-size:18px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next:hover,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev:hover{background-color:rgba(32,32,32,.7);opacity:1;width:100px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .swiper-pagination{display:none}[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .sek-swiper-nav{display:none}}.sek-accord-wrapper{text-align:left}.sek-accord-wrapper .sek-accord-item{border:1px solid #e3e3e3;overflow:hidden}.sek-accord-wrapper .sek-accord-item:not(:last-child){margin-bottom:0}.sek-accord-wrapper .sek-accord-item .sek-accord-title{cursor:pointer;color:#565656;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:15px 20px;border-top:none;border-right:none;border-left:none;border-bottom:1px solid #e3e3e3;font-size:16px;line-height:1.5em;font-weight:600;-ms-flex-positive:1;flex-grow:1}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover *{color:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title .expander span{background:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{padding-right:10px;max-width:calc(100% - 30px)}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span,.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander{color:#1e261f;width:30px;height:30px;padding:0;margin:0;outline:0;border:0;background:0 0;box-shadow:none;font-size:1.5em;position:relative;cursor:pointer}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] .expander span:first-of-type,[data-sek-expanded=true] .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] .expander span:last-of-type{left:50%;right:50%}[data-sek-has-global-border=true][data-sek-has-title-border=true] [data-sek-expanded=false] .sek-accord-title{border-bottom:none}[data-sek-has-global-border=true][data-sek-has-title-border=true] .sek-accord-item:not(:last-child){border-bottom:none}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{left:50%;right:50%}.sek-accord-wrapper .sek-accord-item .sek-accord-content{padding:15px 20px;background:#f2f2f2;color:#1e261f;font-size:16px;line-height:1.5em}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true]>.sek-accord-content{display:block}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=false]>.sek-accord-content{display:none}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;border-radius:0;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
assets/front/css/sek-base.css
CHANGED
@@ -299,11 +299,11 @@
|
|
299 |
opacity: 0;
|
300 |
}
|
301 |
|
302 |
-
.sek-overflow-hidden-
|
303 |
-
overflow
|
304 |
}
|
305 |
|
306 |
-
.sek-service-font, .sek-module-inner .sek-btn {
|
307 |
font-family: sans-serif;
|
308 |
}
|
309 |
|
@@ -766,7 +766,7 @@
|
|
766 |
color: #777;
|
767 |
}
|
768 |
|
769 |
-
.sek-module-inner .sek-btn {
|
770 |
display: inline-block;
|
771 |
font-weight: normal;
|
772 |
line-height: 1.25em;
|
@@ -791,22 +791,22 @@
|
|
791 |
transition: all 0.2s ease-in-out;
|
792 |
}
|
793 |
|
794 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:hover {
|
795 |
text-decoration: none;
|
796 |
}
|
797 |
|
798 |
-
.sek-module-inner .sek-btn:focus, .sek-module-inner .focus.sek-btn {
|
799 |
outline: 0;
|
800 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
801 |
}
|
802 |
|
803 |
-
.sek-module-inner .disabled.sek-btn, .sek-module-inner .sek-btn:disabled {
|
804 |
cursor: not-allowed;
|
805 |
opacity: .65;
|
806 |
box-shadow: none;
|
807 |
}
|
808 |
|
809 |
-
.sek-module-inner .sek-btn:active, .sek-module-inner .active.sek-btn {
|
810 |
background-image: none;
|
811 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
812 |
}
|
@@ -958,6 +958,9 @@ button.sek-btn,
|
|
958 |
font-size: 1em;
|
959 |
}
|
960 |
|
|
|
|
|
|
|
961 |
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6 {
|
962 |
font-weight: 400;
|
963 |
line-height: 1.5em;
|
@@ -998,6 +1001,9 @@ button.sek-btn,
|
|
998 |
font-size: inherit;
|
999 |
}
|
1000 |
|
|
|
|
|
|
|
1001 |
.sek-nav-wrap {
|
1002 |
position: relative;
|
1003 |
display: -ms-flexbox;
|
@@ -1159,7 +1165,7 @@ button.sek-btn,
|
|
1159 |
-ms-transform: rotate(-180deg) !important;
|
1160 |
}
|
1161 |
|
1162 |
-
.sek-module-inner .sek-nav-toggler {
|
1163 |
-webkit-appearance: none !important;
|
1164 |
cursor: pointer;
|
1165 |
height: 40px;
|
@@ -1168,7 +1174,7 @@ button.sek-btn,
|
|
1168 |
vertical-align: middle;
|
1169 |
}
|
1170 |
|
1171 |
-
.sek-module-inner .sek-nav-toggler, .sek-module-inner .sek-nav-toggler:hover, .sek-module-inner .sek-nav-toggler:focus {
|
1172 |
background: 0 0;
|
1173 |
background-color: rgba(0, 0, 0, 0);
|
1174 |
color: black;
|
@@ -1466,6 +1472,9 @@ button.sek-btn,
|
|
1466 |
font-size: 16px;
|
1467 |
}
|
1468 |
|
|
|
|
|
|
|
1469 |
[data-sek-module-type="czr_image_module"] {
|
1470 |
text-align: center;
|
1471 |
}
|
@@ -1551,6 +1560,9 @@ button.sek-btn,
|
|
1551 |
filter: grayscale(0%);
|
1552 |
}
|
1553 |
|
|
|
|
|
|
|
1554 |
.sek-nimble-image-wrapper {
|
1555 |
max-width: 100%;
|
1556 |
overflow: hidden;
|
@@ -1683,6 +1695,9 @@ button.sek-btn,
|
|
1683 |
top: 0;
|
1684 |
}
|
1685 |
|
|
|
|
|
|
|
1686 |
[data-sek-module-type="czr_divider_module"] {
|
1687 |
text-align: center;
|
1688 |
}
|
@@ -1701,10 +1716,16 @@ button.sek-btn,
|
|
1701 |
font-size: 1rem;
|
1702 |
}
|
1703 |
|
|
|
|
|
|
|
1704 |
.sek-module-inner .sek-spacer {
|
1705 |
height: 20px;
|
1706 |
}
|
1707 |
|
|
|
|
|
|
|
1708 |
[data-sek-module-type="czr_icon_module"] {
|
1709 |
text-align: center;
|
1710 |
color: #5a5a5a;
|
@@ -1748,6 +1769,9 @@ button.sek-btn,
|
|
1748 |
line-height: 1em;
|
1749 |
}
|
1750 |
|
|
|
|
|
|
|
1751 |
.sek-quote p {
|
1752 |
margin: 0 0 .5em;
|
1753 |
padding: 0;
|
@@ -1858,22 +1882,26 @@ button.sek-btn,
|
|
1858 |
top: 10px;
|
1859 |
}
|
1860 |
|
|
|
|
|
|
|
1861 |
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
1862 |
text-align: center;
|
1863 |
}
|
1864 |
|
1865 |
-
.sek-module-inner .sek-btn {
|
1866 |
background: #020202;
|
1867 |
color: #ffffff;
|
1868 |
padding: 0.5em 1em;
|
1869 |
}
|
1870 |
|
1871 |
-
.sek-module-inner .sek-btn i {
|
1872 |
margin: 0 8px;
|
1873 |
}
|
1874 |
|
1875 |
-
.sek-module-inner .sek-btn:hover, .sek-module-inner .sek-btn:focus, .sek-module-inner .sek-btn:active {
|
1876 |
color: #ffffff;
|
|
|
1877 |
}
|
1878 |
|
1879 |
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
@@ -1896,6 +1924,9 @@ button.sek-btn,
|
|
1896 |
transform: translateY(2px);
|
1897 |
}
|
1898 |
|
|
|
|
|
|
|
1899 |
.sek-post-grid-wrapper {
|
1900 |
margin-top: 1.5rem;
|
1901 |
margin-bottom: 1.5rem;
|
@@ -2353,6 +2384,9 @@ button.sek-btn,
|
|
2353 |
font-size: 0.9em;
|
2354 |
}
|
2355 |
|
|
|
|
|
|
|
2356 |
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2357 |
font-size: 16px;
|
2358 |
width: 100% !important;
|
@@ -2443,39 +2477,48 @@ button.sek-btn,
|
|
2443 |
display: none;
|
2444 |
}
|
2445 |
|
|
|
|
|
|
|
2446 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2447 |
text-decoration: underline;
|
2448 |
}
|
2449 |
|
|
|
|
|
|
|
2450 |
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2451 |
margin: 10px 0;
|
2452 |
}
|
2453 |
|
2454 |
-
.sek-module-inner .sek-social-icons-wrapper {
|
2455 |
text-align: center;
|
2456 |
}
|
2457 |
|
2458 |
-
.sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2459 |
padding-right: 8px;
|
2460 |
}
|
2461 |
|
2462 |
-
.sek-module-inner .sek-social-icons-wrapper > li {
|
2463 |
display: inline-block;
|
2464 |
}
|
2465 |
|
2466 |
-
.sek-module-inner .sek-social-icons-wrapper > li a {
|
2467 |
color: #707070;
|
2468 |
}
|
2469 |
|
2470 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2471 |
font-size: 28px;
|
2472 |
line-height: 1.5em;
|
2473 |
}
|
2474 |
|
2475 |
-
.sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2476 |
transition: all 0.2s ease-in-out;
|
2477 |
}
|
2478 |
|
|
|
|
|
|
|
2479 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2480 |
width: calc(100% + 20px);
|
2481 |
max-width: calc(100% + 20px);
|
@@ -2718,6 +2761,9 @@ button.sek-btn,
|
|
2718 |
}
|
2719 |
}
|
2720 |
|
|
|
|
|
|
|
2721 |
.sek-accord-wrapper {
|
2722 |
text-align: left;
|
2723 |
}
|
@@ -2858,6 +2904,9 @@ button.sek-btn,
|
|
2858 |
display: none;
|
2859 |
}
|
2860 |
|
|
|
|
|
|
|
2861 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
2862 |
display: -ms-flexbox;
|
2863 |
display: flex;
|
299 |
opacity: 0;
|
300 |
}
|
301 |
|
302 |
+
.sek-overflow-hidden-while-animating {
|
303 |
+
overflow: hidden;
|
304 |
}
|
305 |
|
306 |
+
.sek-service-font, .sek-module .sek-module-inner .sek-btn {
|
307 |
font-family: sans-serif;
|
308 |
}
|
309 |
|
766 |
color: #777;
|
767 |
}
|
768 |
|
769 |
+
.sek-module .sek-module-inner .sek-btn {
|
770 |
display: inline-block;
|
771 |
font-weight: normal;
|
772 |
line-height: 1.25em;
|
791 |
transition: all 0.2s ease-in-out;
|
792 |
}
|
793 |
|
794 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .sek-btn:hover {
|
795 |
text-decoration: none;
|
796 |
}
|
797 |
|
798 |
+
.sek-module .sek-module-inner .sek-btn:focus, .sek-module .sek-module-inner .focus.sek-btn {
|
799 |
outline: 0;
|
800 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
801 |
}
|
802 |
|
803 |
+
.sek-module .sek-module-inner .disabled.sek-btn, .sek-module .sek-module-inner .sek-btn:disabled {
|
804 |
cursor: not-allowed;
|
805 |
opacity: .65;
|
806 |
box-shadow: none;
|
807 |
}
|
808 |
|
809 |
+
.sek-module .sek-module-inner .sek-btn:active, .sek-module .sek-module-inner .active.sek-btn {
|
810 |
background-image: none;
|
811 |
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
812 |
}
|
958 |
font-size: 1em;
|
959 |
}
|
960 |
|
961 |
+
/*************************************
|
962 |
+
* HEADING MODULE
|
963 |
+
*************************************/
|
964 |
.sek-module-inner h1, .sek-module-inner h2, .sek-module-inner h3, .sek-module-inner h4, .sek-module-inner h5, .sek-module-inner h6 {
|
965 |
font-weight: 400;
|
966 |
line-height: 1.5em;
|
1001 |
font-size: inherit;
|
1002 |
}
|
1003 |
|
1004 |
+
/*************************************
|
1005 |
+
* MENU MODULE
|
1006 |
+
*************************************/
|
1007 |
.sek-nav-wrap {
|
1008 |
position: relative;
|
1009 |
display: -ms-flexbox;
|
1165 |
-ms-transform: rotate(-180deg) !important;
|
1166 |
}
|
1167 |
|
1168 |
+
.nb-loc .sek-module-inner .sek-nav-toggler {
|
1169 |
-webkit-appearance: none !important;
|
1170 |
cursor: pointer;
|
1171 |
height: 40px;
|
1174 |
vertical-align: middle;
|
1175 |
}
|
1176 |
|
1177 |
+
.nb-loc .sek-module-inner .sek-nav-toggler, .nb-loc .sek-module-inner .sek-nav-toggler:hover, .nb-loc .sek-module-inner .sek-nav-toggler:focus {
|
1178 |
background: 0 0;
|
1179 |
background-color: rgba(0, 0, 0, 0);
|
1180 |
color: black;
|
1472 |
font-size: 16px;
|
1473 |
}
|
1474 |
|
1475 |
+
/*************************************
|
1476 |
+
* IMAGE MODULE
|
1477 |
+
*************************************/
|
1478 |
[data-sek-module-type="czr_image_module"] {
|
1479 |
text-align: center;
|
1480 |
}
|
1560 |
filter: grayscale(0%);
|
1561 |
}
|
1562 |
|
1563 |
+
/*************************************
|
1564 |
+
* SPECIAL IMAGE MODULE
|
1565 |
+
*************************************/
|
1566 |
.sek-nimble-image-wrapper {
|
1567 |
max-width: 100%;
|
1568 |
overflow: hidden;
|
1695 |
top: 0;
|
1696 |
}
|
1697 |
|
1698 |
+
/*************************************
|
1699 |
+
* DIVIDER MODULE
|
1700 |
+
*************************************/
|
1701 |
[data-sek-module-type="czr_divider_module"] {
|
1702 |
text-align: center;
|
1703 |
}
|
1716 |
font-size: 1rem;
|
1717 |
}
|
1718 |
|
1719 |
+
/*************************************
|
1720 |
+
* SPACER MODULE
|
1721 |
+
*************************************/
|
1722 |
.sek-module-inner .sek-spacer {
|
1723 |
height: 20px;
|
1724 |
}
|
1725 |
|
1726 |
+
/*************************************
|
1727 |
+
* ICON MODULE
|
1728 |
+
*************************************/
|
1729 |
[data-sek-module-type="czr_icon_module"] {
|
1730 |
text-align: center;
|
1731 |
color: #5a5a5a;
|
1769 |
line-height: 1em;
|
1770 |
}
|
1771 |
|
1772 |
+
/*************************************
|
1773 |
+
* QUOTE MODULE
|
1774 |
+
*************************************/
|
1775 |
.sek-quote p {
|
1776 |
margin: 0 0 .5em;
|
1777 |
padding: 0;
|
1882 |
top: 10px;
|
1883 |
}
|
1884 |
|
1885 |
+
/*************************************
|
1886 |
+
* BUTTON MODULE
|
1887 |
+
*************************************/
|
1888 |
[data-sek-module-type="czr_button_module"] .sek-module-inner {
|
1889 |
text-align: center;
|
1890 |
}
|
1891 |
|
1892 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn {
|
1893 |
background: #020202;
|
1894 |
color: #ffffff;
|
1895 |
padding: 0.5em 1em;
|
1896 |
}
|
1897 |
|
1898 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn i {
|
1899 |
margin: 0 8px;
|
1900 |
}
|
1901 |
|
1902 |
+
.nb-loc .sek-module .sek-module-inner .sek-btn:hover, .nb-loc .sek-module .sek-module-inner .sek-btn:focus, .nb-loc .sek-module .sek-module-inner .sek-btn:active {
|
1903 |
color: #ffffff;
|
1904 |
+
text-decoration: none;
|
1905 |
}
|
1906 |
|
1907 |
[data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:focus, [data-sek-module-type="czr_button_module"] .sek-module-inner .sek-btn:hover {
|
1924 |
transform: translateY(2px);
|
1925 |
}
|
1926 |
|
1927 |
+
/*************************************
|
1928 |
+
* POST GRID MODULE
|
1929 |
+
*************************************/
|
1930 |
.sek-post-grid-wrapper {
|
1931 |
margin-top: 1.5rem;
|
1932 |
margin-bottom: 1.5rem;
|
2384 |
font-size: 0.9em;
|
2385 |
}
|
2386 |
|
2387 |
+
/*************************************
|
2388 |
+
* SIMPLE FORM MODULE
|
2389 |
+
*************************************/
|
2390 |
.sek-simple-form-wrapper input[type=text], .sek-simple-form-wrapper textarea {
|
2391 |
font-size: 16px;
|
2392 |
width: 100% !important;
|
2477 |
display: none;
|
2478 |
}
|
2479 |
|
2480 |
+
/*************************************
|
2481 |
+
* TINY MCE EDITOR MODULE
|
2482 |
+
*************************************/
|
2483 |
[data-sek-module-type="czr_tiny_mce_editor_module"] a {
|
2484 |
text-decoration: underline;
|
2485 |
}
|
2486 |
|
2487 |
+
/*************************************
|
2488 |
+
* SOCIAL ICONS MODULE
|
2489 |
+
*************************************/
|
2490 |
[data-sek-module-type="czr_social_icons_module"] .sek-module-inner .sek-social-icons-wrapper {
|
2491 |
margin: 10px 0;
|
2492 |
}
|
2493 |
|
2494 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper {
|
2495 |
text-align: center;
|
2496 |
}
|
2497 |
|
2498 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > *:not(:last-child) {
|
2499 |
padding-right: 8px;
|
2500 |
}
|
2501 |
|
2502 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li {
|
2503 |
display: inline-block;
|
2504 |
}
|
2505 |
|
2506 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li a {
|
2507 |
color: #707070;
|
2508 |
}
|
2509 |
|
2510 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2511 |
font-size: 28px;
|
2512 |
line-height: 1.5em;
|
2513 |
}
|
2514 |
|
2515 |
+
.nb-loc .sek-module-inner .sek-social-icons-wrapper > li .sek-social-icon {
|
2516 |
transition: all 0.2s ease-in-out;
|
2517 |
}
|
2518 |
|
2519 |
+
/*************************************
|
2520 |
+
* IMAGE SLIDER MODULE
|
2521 |
+
*************************************/
|
2522 |
.sek-column-inner [data-sek-module-type="czr_img_slider_module"] {
|
2523 |
width: calc(100% + 20px);
|
2524 |
max-width: calc(100% + 20px);
|
2761 |
}
|
2762 |
}
|
2763 |
|
2764 |
+
/*************************************
|
2765 |
+
* ACCORDION MODULE
|
2766 |
+
*************************************/
|
2767 |
.sek-accord-wrapper {
|
2768 |
text-align: left;
|
2769 |
}
|
2904 |
display: none;
|
2905 |
}
|
2906 |
|
2907 |
+
/*************************************
|
2908 |
+
* SHORTCODE MODULE
|
2909 |
+
*************************************/
|
2910 |
[data-sek-module-type="czr_shortcode_module"] [data-sek-use-flexbox="true"] {
|
2911 |
display: -ms-flexbox;
|
2912 |
display: flex;
|
assets/front/css/sek-base.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.sek-module{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;transition:all .3s ease-in-out;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{transition:0s linear;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-when-animating [data-sek-level]{overflow-x:hidden}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.sek-col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{-ms-flex:0 0 8.333%;flex:0 0 8.333%;max-width:8.333%}.sek-col-9{-ms-flex:0 0 9.090909%;flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%}.sek-col-11{-ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111%}.sek-col-12{-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.sek-col-14{-ms-flex:0 0 14.285%;flex:0 0 14.285%;max-width:14.285%}.sek-col-16{-ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666%}.sek-col-20{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.sek-col-25{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.sek-col-30{-ms-flex:0 0 30%;flex:0 0 30%;max-width:30%}.sek-col-33{-ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333%}.sek-col-40{-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}.sek-col-50{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.sek-col-60{-ms-flex:0 0 60%;flex:0 0 60%;max-width:60%}.sek-col-66{-ms-flex:0 0 66.666%;flex:0 0 66.666%;max-width:66.666%}.sek-col-70{-ms-flex:0 0 70%;flex:0 0 70%;max-width:70%}.sek-col-75{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.sek-col-80{-ms-flex:0 0 80%;flex:0 0 80%;max-width:80%}.sek-col-83{-ms-flex:0 0 83.333%;flex:0 0 83.333%;max-width:83.333%}.sek-col-90{-ms-flex:0 0 90%;flex:0 0 90%;max-width:90%}.sek-col-100{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-order-first{-ms-flex-order:-1;order:-1}.sek-order-last{-ms-flex-order:13;order:13}.sek-order-0{-ms-flex-order:0;order:0}.sek-order-1{-ms-flex-order:1;order:1}.sek-order-2{-ms-flex-order:2;order:2}.sek-order-3{-ms-flex-order:3;order:3}.sek-order-4{-ms-flex-order:4;order:4}.sek-order-5{-ms-flex-order:5;order:5}.sek-order-6{-ms-flex-order:6;order:6}.sek-order-7{-ms-flex-order:7;order:7}.sek-order-8{-ms-flex-order:8;order:8}.sek-order-9{-ms-flex-order:9;order:9}.sek-order-10{-ms-flex-order:10;order:10}.sek-order-11{-ms-flex-order:11;order:11}.sek-order-12{-ms-flex-order:12;order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 0 1.5rem 1.5rem}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;transition:all .2s ease-in-out}.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module-inner .focus.sek-btn,.sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module-inner .disabled.sek-btn,.sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module-inner .active.sek-btn,.sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:right}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;box-sizing:border-box;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6{font-weight:400;line-height:1.5em}.sek-module-inner h1{font-size:2.48em}.sek-module-inner h2{font-size:2.07em}.sek-module-inner h3{font-size:1.73em}.sek-module-inner h4{font-size:1.44em}.sek-module-inner h5{font-size:1.2em}.sek-module-inner h6{font-size:1em}.sek-module-inner .sek-heading{text-align:center;margin:.6em 0;display:block}.sek-module-inner .sek-heading>a{color:inherit;font-size:inherit}.sek-nav-wrap{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem 0}.sek-mobile-menu-expanded-below .sek-nav-wrap{padding:0}.sek-nav-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.sek-module .sek-module-inner .sek-nav{margin-right:-10px!important;margin-left:-10px!important}.sek-module .sek-module-inner .sek-nav,.sek-module .sek-module-inner .sek-nav ul{list-style:none!important;padding:0!important;margin:0!important}.sek-module .sek-module-inner .sek-nav li{list-style:none;margin:0 5px}.sek-module .sek-module-inner .sek-nav li>ul li{padding:0 0 0 .9rem}.sek-nav li a{font-size:16px;line-height:1.5em;padding:.6em .8em;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;color:inherit;overflow:hidden}.sek-nav-wrap .sek-nav li a{text-decoration:none}.sek-nav li a:hover .sek-nav__title{text-decoration:underline}.sek-nav li:not(:last-of-type){border-bottom:1px solid;border-color:rgba(49,49,49,.09)}.sek-nav .menu-item-has-children,.sek-nav .page_item_has_children{position:relative}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{content:"\203A";font-family:"Arial Unicode MS",Arial;moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-weight:900;transition:all .3s ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px;padding:0 .45em;font-size:1em;position:relative;-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(-90deg)!important;transform:translateZ(0) rotate(-90deg)!important;-ms-transform:rotate(-90deg)!important}.sek-nav .children,.sek-nav .sub-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-nav .children,.sek-nav .sub-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.sek-dropdown-submenu>a::after{-webkit-transform:translateZ(0) rotate(0)!important;transform:translateZ(0) rotate(0)!important;-ms-transform:rotate(0)!important}.sek-dropdown-submenu>a[class*=-reverse]::after{top:.1em;-webkit-transform:translateZ(0) rotate(-180deg)!important;transform:translateZ(0) rotate(-180deg)!important;-ms-transform:rotate(-180deg)!important}.sek-module-inner .sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.sek-module-inner .sek-nav-toggler,.sek-module-inner .sek-nav-toggler:focus,.sek-module-inner .sek-nav-toggler:hover{background:0 0;background-color:rgba(0,0,0,0);color:#000;border:none}.sek-ham__span-wrapper{height:12px;position:relative;display:block}.sek-ham__span-wrapper .line{display:block;height:1.5px;position:absolute;left:10px;border-radius:5px;background-clip:padding-box;transition:all ease .35s;-webkit-backface-visibility:hidden;backface-visibility:hidden;border-top:1.5px solid}.sek-ham__span-wrapper .line-1{top:0}.sek-ham__span-wrapper .line-2{top:50%}.sek-ham__span-wrapper .line-3{top:100%}.sek-nav-toggler .line-1{-webkit-transform:translate(-3px,6px) rotate(45deg);transform:translate(-3px,6px) rotate(45deg);width:28px}.sek-nav-toggler .line-2{opacity:0}.sek-nav-toggler .line-3{-webkit-transform:translate(-3px,-6px) rotate(-45deg);transform:translate(-3px,-6px) rotate(-45deg);width:28px}.sek-nav-toggler.sek-collapsed .line{width:20px;-webkit-transform:translate(0,0) rotate(0);transform:translate(0,0) rotate(0);opacity:1}.sek-nav-toggler.sek-collapsed.hovering .line{-webkit-transform:translateX(-3px);transform:translateX(-3px);width:26px}.sek-dropdown-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-dropdown-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.show>.sek-dropdown-menu{display:block}.sek-dropdown-menu .sek-nav__title{word-break:break-word;white-space:normal}.sek-dropdown-menu.open-right{left:0;right:auto}.sek-dropdown-menu ul.open-right,.sek-dropdown-menu.open-right ul:not(.open-left){left:100%;right:auto}.sek-dropdown-menu.open-left{left:auto;right:0}.sek-dropdown-menu ul.open-left,.sek-dropdown-menu.open-left ul:not(.open-right){right:100%;left:auto}@media (min-width:768px){.sek-nav{-ms-flex-direction:row;flex-direction:row}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{display:inline-block}.sek-nav>li:not(:last-of-type){border-bottom:none}.sek-nav>li>a{padding:5px}.sek-nav-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.sek-mobile-menu-expanded-below{display:none!important}.sek-nav-toggler{display:none}.sek-dropdown-menu{background:#fff;box-shadow:1px 2px 2px 2px rgba(0,0,0,.15)}.sek-nav .sek-dropdown-menu li{padding:0 10px!important;margin:0!important}.sek-nav .sek-dropdown-menu li a{padding:10px 12px}.sek-dropdown-menu ul{left:100%}.sek-dropdown-menu .sek-menu-link__row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sek-dropdown-menu .sek-nav__title{word-break:normal;white-space:nowrap}.sek-dropdown-submenu .sek-dropdown-menu{top:15px}.sek-submenu-fade .sek-dropdown-menu a{transition:all .25s ease;-webkit-transform:translate(0,0);transform:translate(0,0)}.sek-submenu-fade .sek-dropdown-menu a:hover{-webkit-transform:translate(3px,0);transform:translate(3px,0)}.sek-submenu-fade .menu-item-has-children,.sek-submenu-fade .page_item_has_children{-webkit-perspective:1000px;perspective:1000px}.sek-submenu-fade .menu-item-has-children>ul,.sek-submenu-fade .page_item_has_children>ul{position:fixed;opacity:0;visibility:hidden;display:block;transition:all .25s ease-in-out;-webkit-transform:translate(0,-10px);transform:translate(0,-10px)}.sek-submenu-fade .menu-item-has-children:not(.show),.sek-submenu-fade .page_item_has_children:not(.show){overflow:hidden}.sek-submenu-fade .menu-item-has-children:not(.show) ul,.sek-submenu-fade .page_item_has_children:not(.show) ul{pointer-events:none;cursor:not-allowed}.sek-submenu-fade li.show{-webkit-perspective:none;perspective:none}.sek-submenu-fade li.show>ul{position:absolute;visibility:visible;opacity:1;-webkit-transform:translate(0,0);transform:translate(0,0)}}[data-sek-is-mobile-menu=yes]>.show{overflow:auto;max-height:80vh}[data-sek-is-mobile-menu=yes] li .sub-menu li>a{font-size:.8em;padding:.6em 15px}.nb-module-menu-search{position:relative}[data-sek-is-mobile-menu=yes] .nb-module-menu-search{display:none}.nb-svg-search-icon{cursor:pointer;padding:0}.nb-module-menu-search .nb-search-expand{display:none;background:#fff;position:absolute;z-index:100;top:49px;right:0;left:0;width:340px;box-shadow:0 1px 0 rgba(255,255,255,.1)}.nb-search-expand .nb-search-expand-inner{border:1px solid #eee;box-shadow:0 0 5px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.15);transition:-webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;padding:15px}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:none}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner label input[type=search]{max-width:100%}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{margin:0;background:grey;color:#fff}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-is-mobile-menu=yes] .nb-mobile-search input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{text-transform:none!important}.nb-mobile-search{display:none}[data-sek-is-mobile-menu=yes] .nb-mobile-search{display:block;padding:6px 14px 15px}[data-sek-is-mobile-menu=yes] .nb-mobile-search input{font-size:16px}[data-sek-module-type=czr_image_module]{text-align:center}[data-sek-module-type=czr_image_module] img{border:0 solid #f2f2f2}[data-sek-module-type=czr_image_module] .box-shadow img{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_image_module] figure img{transition:all .2s ease-out}[data-sek-module-type=czr_image_module] figure.has-custom-height{overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_image_module] figure.has-custom-height img{-o-object-fit:cover;object-fit:cover}.sek-hover-effect-opacity img:hover{opacity:.7}.sek-hover-effect-zoom-out img:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}.sek-hover-effect-zoom-in img:hover{-webkit-transform:scale(.95);transform:scale(.95)}.sek-hover-effect-move-up img:hover{-webkit-transform:translateY(-6px);transform:translateY(-6px)}.sek-hover-effect-move-down img:hover{-webkit-transform:translateY(6px);transform:translateY(6px)}.sek-hover-effect-blur img:hover{-webkit-filter:blur(2px);filter:blur(2px)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-nimble-image-wrapper{max-width:100%;overflow:hidden;width:100%;position:relative;display:block;background-position:center center;background-size:cover;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.sek-nimble-image-wrapper::before{content:'';display:block;padding-top:100%}.sek-nimble-image-wrapper a{color:#fff}.sek-nimble-image-wrapper a:hover{color:#fff}.sek-nimble-image-wrapper .nb-icon-text-wrapper{position:absolute;width:100%;height:100%;z-index:1;top:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon{font-size:80px;line-height:1em;color:#000;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text,.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text *{color:#000;font-size:16px;line-height:1.5em;font-weight:400;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p{margin:0;padding:0}.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon{color:#969696}.sek-nimble-image-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-mask::before{position:absolute;content:'';z-index:1;border:150vw solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before{width:88%;padding-bottom:88%}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before{width:63%;padding-bottom:63%}.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;background-repeat:no-repeat;z-index:0;top:0}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_icon_module]{text-align:center;color:#5a5a5a;font-size:15px}[data-sek-module-type=czr_icon_module] a.sek-icon,[data-sek-module-type=czr_icon_module] a.sek-icon.active,[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{color:inherit}[data-sek-module-type=czr_icon_module] .box-shadow .sek-icon-wrapper{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_icon_module] .sek-icon i{transition:all .15s ease-in-out}[data-sek-module-type=czr_icon_module] .sek-icon .fab,[data-sek-module-type=czr_icon_module] .sek-icon .far,[data-sek-module-type=czr_icon_module] .sek-icon .fas{width:1em;height:1em;text-align:center}[data-sek-module-type=czr_icon_module] a.sek-icon{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] .sek-icon-wrapper{display:inline-block;line-height:1em}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:14px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.sek-quote .sek-quote-content{font-weight:400;font-size:16px;line-height:1.5em;color:inherit}.sek-quote.sek-quote-design{background:0 0;font-style:inherit;margin-right:0;margin-left:0;padding:15px 0;border:none}.sek-quote.sek-quote-design>*{padding:0;margin:0}.sek-quote.sek-quote-design::after,.sek-quote.sek-quote-design::before{display:none}.sek-quote.sek-quote-design .sek-cite{padding:0;font-weight:400}.sek-quote.sek-quote-design .sek-cite::before{display:none}.sek-quote.sek-quote-design .sek-quote-inner{color:inherit;padding-left:calc(10px + .7em)}.sek-quote.sek-quote-design.sek-border-before{padding-left:15px;border-left:5px solid}.sek-quote.sek-quote-design.sek-border-before .sek-cite{clear:both;display:block;margin-top:1.5em;position:relative;padding-left:2.2em;padding-right:.25em}.sek-quote.sek-quote-design.sek-border-before .sek-cite::before{display:block;content:'';top:1em;position:absolute;background:0 0;width:2em;height:auto;left:0;border-top:1px solid}.sek-quote.sek-quote-design.sek-quote-icon-before{position:relative;display:-ms-flexbox;display:flex;font-size:50px}.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content :last-child{margin-bottom:.75em}.sek-quote.sek-quote-design.sek-quote-icon-before::before{content:"\275D";font-family:"Arial Unicode MS",Code2000;color:#ccc;font-style:normal;text-align:center;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;width:auto;margin:0;left:0;position:absolute;top:10px}[data-sek-module-type=czr_button_module] .sek-module-inner{text-align:center}.sek-module-inner .sek-btn{background:#020202;color:#fff;padding:.5em 1em}.sek-module-inner .sek-btn i{margin:0 8px}.sek-module-inner .sek-btn:active,.sek-module-inner .sek-btn:focus,.sek-module-inner .sek-btn:hover{color:#fff}[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:focus,[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-btn-inner{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-btn.box-shadow{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-btn.box-shadow.push-effect:active{-webkit-transform:translateY(2px);transform:translateY(2px)}.sek-post-grid-wrapper{margin-top:1.5rem;margin-bottom:1.5rem}.sek-post-grid-wrapper .sek-grid-items{grid-row-gap:25px}.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article>:not(:last-child):not(.sek-pg-thumbnail){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article>:not(:last-child){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:not(:last-child){margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:not(:last-child){margin-top:0!important;margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article{box-shadow:0 0 40px 0 rgba(0,0,0,.05);transition:all .3s cubic-bezier(.25,.8,.25,1)}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px);box-shadow:0 14px 28px rgba(0,0,0,.18),0 10px 10px rgba(0,0,0,.15)}.sek-post-grid-wrapper .sek-pg-thumbnail{box-shadow:0 5px 5px 0 rgba(18,63,82,.035),0 0 0 1px rgba(176,181,193,.2);background-color:#fff;overflow:hidden}.sek-post-grid-wrapper .sek-pg-thumbnail a{display:block;position:relative}.sek-post-grid-wrapper .sek-pg-thumbnail img{display:block;width:100%;height:auto}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:0;padding-top:65%}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:auto!important;padding-top:inherit!important}}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{position:absolute;height:100%;width:100%;max-height:none;max-width:none;top:0;left:0;right:0;bottom:0;-o-object-fit:cover;object-fit:cover}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{height:auto!important;position:relative}}.sek-post-grid-wrapper .sek-pg-metas>span:not(:last-child)::after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.sek-post-grid-wrapper .sek-pg-content{text-align:left}.sek-post-grid-wrapper .sek-excerpt>:last-child{margin-bottom:0}.sek-module-inner .sek-post-grid-wrapper .sek-pg-category a{text-transform:uppercase;font-size:14px;text-decoration:none;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title{font-size:28px;line-height:1.3em}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title a{text-decoration:none;color:#444;font-size:28px;font-weight:400;line-height:1.3em;-ms-word-wrap:break-word;word-wrap:break-word}.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a,.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span{text-transform:uppercase;font-size:14px;letter-spacing:1px;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-content p{margin:0 0 15px 0;line-height:1.5;font-size:16px;color:#494949}.sek-post-grid-wrapper .sek-list-layout{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout{display:block!important}}.sek-post-grid-wrapper .sek-list-layout article{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr);-ms-grid-rows:1fr;grid-template-rows:1fr;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout article{display:block!important;padding-top:10px}}.sek-post-grid-wrapper .sek-list-layout article>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb{-ms-grid-columns:30% minmax(0,1fr);grid-template-columns:30% minmax(0,1fr)}.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail{margin-bottom:0;-ms-flex-item-align:start;align-self:flex-start}.sek-post-grid-wrapper .sek-grid-layout{display:-ms-grid;display:grid;-ms-grid-columns:1fr 20px 1fr;grid-template-columns:1fr 1fr;-ms-grid-rows:1fr;grid-template-rows:1fr;grid-row-gap:20px;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-grid-layout{display:block!important}}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(2){-ms-grid-row:1;-ms-grid-column:3}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}@media (min-width:768px){.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}.sek-post-navigation #sek-nav-below{background-color:#f7f8f9;margin-top:20px;padding:5px}.sek-post-navigation #sek-nav-below .sek-pagination{text-align:center}.sek-post-navigation #sek-nav-below .sek-pagination ul{display:inline-block;vertical-align:middle;margin:0}.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers{font-family:inherit;opacity:.7;text-decoration:none!important}.sek-post-navigation #sek-nav-below .sek-pagination .current{font-weight:600;opacity:1}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list>*{margin:0 5px}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list{margin:0 -5px}.sek-post-navigation #sek-nav-below nav{padding-top:20px;padding-bottom:20px}.sek-post-navigation #sek-nav-below ul.sek-czr-pager{margin:0}.sek-post-navigation #sek-nav-below li{display:inline-block;font-size:16px}.sek-post-navigation #sek-nav-below .sek-meta-nav-title,.sek-post-navigation #sek-nav-below a{text-transform:uppercase;letter-spacing:2px;color:#5a5a5a}.sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover,.sek-post-navigation #sek-nav-below a:hover{color:#3b3b3b;opacity:1!important}.sek-post-navigation #sek-nav-below .sek-czr-pager>li{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir>a{max-width:100%}.sek-post-navigation #sek-nav-below a i.arrow{font-size:.9em}.sek-post-navigation #sek-nav-below .page-numbers,.sek-post-navigation #sek-nav-below a{font-family:inherit;line-height:30px;height:30px;display:inline-block;vertical-align:middle;transition:all .3s ease;position:relative}.sek-post-navigation #sek-nav-below .sek-meta-nav{display:-ms-flexbox;display:flex;transition:all .2s,.6s ease;opacity:.7}.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav{opacity:1;text-decoration:underline}.sek-post-navigation #sek-nav-below .sek-meta-nav-title{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;font-size:.9em}.sek-simple-form-wrapper input[type=text],.sek-simple-form-wrapper textarea{font-size:16px;width:100%!important;padding:.4em .5em;border-radius:3px;box-sizing:border-box;outline:0;font-weight:400;max-width:100%;border:none;color:#555;background-color:#fff}.sek-simple-form-wrapper textarea{height:auto;max-height:150px}.sek-simple-form-wrapper .sek-form-field{margin-bottom:15px;clear:both}.sek-simple-form-wrapper label{color:#444;font-weight:700;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block}.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea{box-shadow:0 1px 1px rgba(0,0,0,.075) inset}.sek-simple-form-wrapper #sek-form-respond{padding:20px 0}.sek-simple-form-wrapper input[type=checkbox]+label{display:inline;font-weight:700;margin-left:.5rem}.sek-form-message{padding:10px;margin:10px 0;text-align:center;line-height:1.5em;font-size:16px;border-radius:4px}.sek-form-message.sek-mail-failure{color:red;border:1px solid red;background:0 0;background:rgba(255,0,0,.05)}.sek-form-message.sek-mail-success{color:green;border:1px solid green;background:0 0;background:rgba(0,128,0,.05)}.sek-form-message.sek-mail-aborted{color:orange;border:1px solid orange;background:0 0;background:rgba(255,165,0,.05)}.grecaptcha-badge{z-index:1}.sek-hide-rc-badge .grecaptcha-badge{display:none}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_social_icons_module] .sek-module-inner .sek-social-icons-wrapper{margin:10px 0}.sek-module-inner .sek-social-icons-wrapper{text-align:center}.sek-module-inner .sek-social-icons-wrapper>:not(:last-child){padding-right:8px}.sek-module-inner .sek-social-icons-wrapper>li{display:inline-block}.sek-module-inner .sek-social-icons-wrapper>li a{color:#707070}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{font-size:28px;line-height:1.5em}.sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{transition:all .2s ease-in-out}.sek-column-inner [data-sek-module-type=czr_img_slider_module]{width:calc(100% + 20px);max-width:calc(100% + 20px)}[data-sek-module-type=czr_img_slider_module] .sek-carousel-img [src*="data:image/gif;"]{display:none}[data-sek-module-type=czr_img_slider_module] .sek-swiper-loading .sek-carousel-img img{display:none}[data-sek-module-type=czr_img_slider_module] .swiper-container{width:100%;height:100%}[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:400px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{height:200px}}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img{height:100%;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img img{max-width:none;opacity:0;transition:opacity .15s ease-in-out}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img{height:100%;width:auto;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img img{width:auto;height:100%;max-width:none}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img{height:100%;width:100%;overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img img{width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover}[data-sek-module-type=czr_img_slider_module] .swiper-slide{text-align:center;font-size:18px;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-h-centrd{width:auto!important;max-width:none!important;position:relative;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-v-centrd{height:auto!important;max-height:none!important;vertical-align:top;position:relative;max-width:none!important;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide[data-sek-has-overlay=true] .sek-carousel-img::after{content:'';left:0;right:0;bottom:0;top:0;position:absolute;background-color:#000;opacity:.3}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-wrapper{height:100%;width:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);top:50%;left:50%;position:absolute;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content{height:auto;max-height:100%;width:100%;padding:5%;text-align:center;z-index:3;overflow:hidden;color:#e2e2e2;font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content *{font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-pagination-bullet-active{background-color:#fff}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav{cursor:pointer}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-chevron{display:inline-block;border-right:2px solid #fff;border-bottom:2px solid #fff;width:11px;height:11px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{left:0;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev .sek-chevron{-webkit-transform:rotate(-225deg);transform:rotate(-225deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next{right:0;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next .sek-chevron{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{position:absolute;z-index:2;top:calc(50% - 30px);text-align:center;margin-top:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:60px;width:50px;opacity:.6;background-color:rgba(32,32,32,.4);transition:all .3s cubic-bezier(.39,.575,.565,1);line-height:64px;cursor:pointer;font-size:18px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next:hover,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev:hover{background-color:rgba(32,32,32,.7);opacity:1;width:100px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .swiper-pagination{display:none}[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .sek-swiper-nav{display:none}}.sek-accord-wrapper{text-align:left}.sek-accord-wrapper .sek-accord-item{border:1px solid #e3e3e3;overflow:hidden}.sek-accord-wrapper .sek-accord-item:not(:last-child){margin-bottom:0}.sek-accord-wrapper .sek-accord-item .sek-accord-title{cursor:pointer;color:#565656;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:15px 20px;border-top:none;border-right:none;border-left:none;border-bottom:1px solid #e3e3e3;font-size:16px;line-height:1.5em;font-weight:600;-ms-flex-positive:1;flex-grow:1}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover *{color:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title .expander span{background:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{padding-right:10px;max-width:calc(100% - 30px)}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span,.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander{color:#1e261f;width:30px;height:30px;padding:0;margin:0;outline:0;border:0;background:0 0;box-shadow:none;font-size:1.5em;position:relative;cursor:pointer}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] .expander span:first-of-type,[data-sek-expanded=true] .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] .expander span:last-of-type{left:50%;right:50%}[data-sek-has-global-border=true][data-sek-has-title-border=true] [data-sek-expanded=false] .sek-accord-title{border-bottom:none}[data-sek-has-global-border=true][data-sek-has-title-border=true] .sek-accord-item:not(:last-child){border-bottom:none}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{left:50%;right:50%}.sek-accord-wrapper .sek-accord-item .sek-accord-content{padding:15px 20px;background:#f2f2f2;color:#1e261f;font-size:16px;line-height:1.5em}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true]>.sek-accord-content{display:block}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=false]>.sek-accord-content{display:none}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;border-radius:0;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
1 |
+
.sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper a,.sektion-wrapper abbr,.sektion-wrapper acronym,.sektion-wrapper address,.sektion-wrapper applet,.sektion-wrapper article,.sektion-wrapper aside,.sektion-wrapper audio,.sektion-wrapper b,.sektion-wrapper big,.sektion-wrapper blockquote,.sektion-wrapper canvas,.sektion-wrapper caption,.sektion-wrapper center,.sektion-wrapper cite,.sektion-wrapper code,.sektion-wrapper dd,.sektion-wrapper del,.sektion-wrapper details,.sektion-wrapper dfn,.sektion-wrapper dl,.sektion-wrapper dt,.sektion-wrapper em,.sektion-wrapper embed,.sektion-wrapper fieldset,.sektion-wrapper figcaption,.sektion-wrapper figure,.sektion-wrapper footer,.sektion-wrapper form,.sektion-wrapper h1,.sektion-wrapper h2,.sektion-wrapper h3,.sektion-wrapper h4,.sektion-wrapper h5,.sektion-wrapper h6,.sektion-wrapper header,.sektion-wrapper hgroup,.sektion-wrapper i,.sektion-wrapper iframe,.sektion-wrapper img,.sektion-wrapper ins,.sektion-wrapper kbd,.sektion-wrapper label,.sektion-wrapper legend,.sektion-wrapper li,.sektion-wrapper mark,.sektion-wrapper menu,.sektion-wrapper nav,.sektion-wrapper object,.sektion-wrapper ol,.sektion-wrapper output,.sektion-wrapper p,.sektion-wrapper pre,.sektion-wrapper q,.sektion-wrapper ruby,.sektion-wrapper s,.sektion-wrapper samp,.sektion-wrapper section,.sektion-wrapper small,.sektion-wrapper span,.sektion-wrapper strike,.sektion-wrapper strong,.sektion-wrapper sub,.sektion-wrapper summary,.sektion-wrapper sup,.sektion-wrapper table,.sektion-wrapper tbody,.sektion-wrapper td,.sektion-wrapper tfoot,.sektion-wrapper th,.sektion-wrapper thead,.sektion-wrapper time,.sektion-wrapper tr,.sektion-wrapper tt,.sektion-wrapper u,.sektion-wrapper ul,.sektion-wrapper var,.sektion-wrapper video{border:none;font-size:inherit;line-height:inherit;margin:0;padding:0;text-align:inherit}.sektion-wrapper blockquote::after,.sektion-wrapper blockquote::before,.sektion-wrapper q:after,.sektion-wrapper q:before{content:""}.sektion-wrapper ol,.sektion-wrapper ul{list-style:none}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none;display:inline}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}[data-sek-level=location]{clear:both;font-size:16px}.sek-column,.sek-module,.sek-section{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-column-inner,.sek-module-inner{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-column-inner{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.sek-module{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;width:100%;max-width:100%}[data-sek-is-nested=true] .sek-container-fluid{padding-right:0;padding-left:0}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}.sek-screen-reader-text{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}#nimble-page{position:relative;word-wrap:break-word}#wpadminbar .sek-nimble-icon{display:inline-block}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px;-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;transition:all .3s ease-in-out;box-shadow:none}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{padding-left:30px}[data-sek-has-bg=true]{background-size:cover;background-repeat:no-repeat;background-position:50% 50%}[data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:fixed;background-size:cover}[data-sek-level=location] .sek-has-bg{position:relative}@supports (-webkit-overflow-scrolling:touch){body [data-sek-level=location] [data-sek-bg-fixed=true],body [data-sek-level=location] [data-sek-bg-parallax=true]{background-attachment:scroll}}[data-sek-level=location] [data-sek-level]{transition:0s linear;transition-property:background-position}.sek-module .sek-module-inner .alx-tab.thumbs-enabled>li{padding-left:94px}.sek-module .sek-module-inner .widget_hu_tabs ol,.sek-module .sek-module-inner .widget_hu_tabs ul{margin-left:0;margin-bottom:0}.sek-module .sek-module-inner .widget_hu_tabs .alx-tabs-nav{margin-bottom:10px}[data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}.customizer-preview [data-sek-level].sek-level-has-shadow{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0!important}[data-sek-level][data-sek-video-bg-src]{position:relative}[data-sek-level] embed,[data-sek-level] iframe,[data-sek-level] object,[data-sek-level] video{max-width:100%;width:100%;margin:0;line-height:1;border:none}[data-sek-level] .sek-custom-embed{line-height:0}[data-sek-level] .sek-background,[data-sek-level] .sek-bg-video-wrapper{height:100%;width:100%;top:0;left:0;position:absolute!important;overflow:hidden;z-index:0;direction:ltr}[data-sek-level] .sek-bg-video-wrapper{transition:opacity .5s linear;pointer-events:none;opacity:0}[data-sek-level] .sek-bg-video-wrapper.sek-bg-loading{opacity:0;visibility:hidden}[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{max-width:none}[data-sek-level] .sek-background-video-local,[data-sek-level] .sek-background-vimeo-element,[data-sek-level] .sek-bg-youtube-video-wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}[data-sek-level] .sek-background-video-local{-o-object-fit:cover;object-fit:cover}.sek-module-inner .sek-debug-modules{margin:1em;padding:5px;border:1px solid rgba(221,221,221,.43);box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);-webkit-box-shadow:1px 1px 2px 0 rgba(75,75,85,.2);background-color:#fff;font-size:15px;font-weight:400;color:#6d6d6d;background:rgba(255,255,255,.6)}@media (max-width:575px){.customizer-preview [data-sek-video-bg-on-mobile=false] .sek-bg-video-wrapper{display:none}}.sek-animate-candidate{opacity:0}.sek-overflow-hidden-while-animating{overflow:hidden}.sek-module .sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif}.sek-container{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:576px){.sek-container{max-width:540px}}@media (min-width:768px){.sek-container{max-width:720px}}@media (min-width:992px){.sek-container{max-width:960px}}@media (min-width:1200px){.sek-container{max-width:1140px}}.sek-container-fluid{width:100%;padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}.sek-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.sek-container-no-padding{padding-right:0;padding-left:0;overflow-x:hidden}.sek-no-gutters{margin-right:0;margin-left:0}.sek-no-gutters>.sek-col,.sek-no-gutters>[class*=sek-col-]{padding-right:0;padding-left:0}.sek-col,.sek-col-10,.sek-col-100,.sek-col-11,.sek-col-12,.sek-col-14,.sek-col-16,.sek-col-20,.sek-col-25,.sek-col-30,.sek-col-33,.sek-col-40,.sek-col-50,.sek-col-60,.sek-col-66,.sek-col-70,.sek-col-75,.sek-col-8,.sek-col-80,.sek-col-83,.sek-col-9,.sek-col-90,.sek-col-auto,.sek-col-base{position:relative;width:100%;min-height:1px;padding-right:10px;padding-left:10px}.sek-col-base{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.sek-col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}@media (min-width:768px){.sek-col-8{-ms-flex:0 0 8.333%;flex:0 0 8.333%;max-width:8.333%}.sek-col-9{-ms-flex:0 0 9.090909%;flex:0 0 9.090909%;max-width:9.090909%}.sek-col-10{-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%}.sek-col-11{-ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111%}.sek-col-12{-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.sek-col-14{-ms-flex:0 0 14.285%;flex:0 0 14.285%;max-width:14.285%}.sek-col-16{-ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666%}.sek-col-20{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.sek-col-25{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.sek-col-30{-ms-flex:0 0 30%;flex:0 0 30%;max-width:30%}.sek-col-33{-ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333%}.sek-col-40{-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}.sek-col-50{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.sek-col-60{-ms-flex:0 0 60%;flex:0 0 60%;max-width:60%}.sek-col-66{-ms-flex:0 0 66.666%;flex:0 0 66.666%;max-width:66.666%}.sek-col-70{-ms-flex:0 0 70%;flex:0 0 70%;max-width:70%}.sek-col-75{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.sek-col-80{-ms-flex:0 0 80%;flex:0 0 80%;max-width:80%}.sek-col-83{-ms-flex:0 0 83.333%;flex:0 0 83.333%;max-width:83.333%}.sek-col-90{-ms-flex:0 0 90%;flex:0 0 90%;max-width:90%}.sek-col-100{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.sek-order-first{-ms-flex-order:-1;order:-1}.sek-order-last{-ms-flex-order:13;order:13}.sek-order-0{-ms-flex-order:0;order:0}.sek-order-1{-ms-flex-order:1;order:1}.sek-order-2{-ms-flex-order:2;order:2}.sek-order-3{-ms-flex-order:3;order:3}.sek-order-4{-ms-flex-order:4;order:4}.sek-order-5{-ms-flex-order:5;order:5}.sek-order-6{-ms-flex-order:6;order:6}.sek-order-7{-ms-flex-order:7;order:7}.sek-order-8{-ms-flex-order:8;order:8}.sek-order-9{-ms-flex-order:9;order:9}.sek-order-10{-ms-flex-order:10;order:10}.sek-order-11{-ms-flex-order:11;order:11}.sek-order-12{-ms-flex-order:12;order:12}}.sek-fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.sek-fade{transition:none}}.sek-fade:not(.show){opacity:0}.sek-collapse:not(.show){display:none}.sek-clearfix::after{display:block;clear:both;content:""}.sek-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sek-sr-only-focusable:active,.sek-sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.sek-embed{position:relative}.sek-embed::before{display:block;content:''}.sek-embed .sek-embed-inner,.sek-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0}.sektion-wrapper{word-wrap:break-word}.sek-text-right{text-align:right!important}.sek-text-left{text-align:left!important}.sek-module .sek-module-inner ul{list-style:disc}.sek-module .sek-module-inner ol{list-style:decimal}.sek-module .sek-module-inner ol>li::before{content:none}.sek-module .sek-module-inner ol,.sek-module .sek-module-inner ul{padding:0;line-height:1.5;margin:0 0 1.5rem 1.5rem}.sek-module .sek-module-inner ol>li,.sek-module .sek-module-inner ul>li{padding:.25rem .5rem}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.sek-module-inner pre code,.sek-module-inner tt{box-sizing:border-box;font-size:inherit;white-space:pre-wrap!important;background:0 0;border:none;padding:0;font-family:monospace}.sek-module-inner pre{background:#f7f8f9;padding:2.5em;word-wrap:normal;white-space:pre-wrap!important;color:#313131;font-family:monospace!important}.sek-module-inner figure{text-align:center}.sek-module-inner figcaption{text-align:center}.sek-module-inner cite{color:#313131;font-weight:300;font-style:normal;position:relative;display:inline-block}.sek-module-inner .wp-block-table.is-style-stripes tbody tr:nth-child(odd),.sek-module-inner :root .has-subtle-background-background-color,.sek-module-inner caption,.sek-module-inner code,.sek-module-inner kbd,.sek-module-inner samp{background-color:#dbdbdb}.sek-module-inner sub{bottom:-.25em}.sek-module-inner sub,.sek-module-inner sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sek-module-inner table{width:100%;border-collapse:collapse}@media (max-width:767.98px){.sek-module-inner table{table-layout:fixed}}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar){border:2px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{text-transform:uppercase;letter-spacing:2px;font-family:sans-serif}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td,.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) th{font-size:.95em;padding:1.25em;border:1px solid #eceeef}.sek-module-inner table:not([id^=wp-calendar]):not(.ui-datepicker-calendar):not(.tribe-mini-calendar) td{color:#777}.sek-module .sek-module-inner .sek-btn{display:inline-block;font-weight:400;line-height:1.25em;text-align:center;white-space:normal;word-break:break-all;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.5em 1em;border-radius:2px;border-width:2px;border-style:solid;font-size:1em;cursor:pointer;text-decoration:none;text-transform:none;transition:all .2s ease-in-out}.sek-module .sek-module-inner .sek-btn:focus,.sek-module .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-module .sek-module-inner .focus.sek-btn,.sek-module .sek-module-inner .sek-btn:focus{outline:0;box-shadow:0 0 0 2px rgba(2,117,216,.25)}.sek-module .sek-module-inner .disabled.sek-btn,.sek-module .sek-module-inner .sek-btn:disabled{cursor:not-allowed;opacity:.65;box-shadow:none}.sek-module .sek-module-inner .active.sek-btn,.sek-module .sek-module-inner .sek-btn:active{background-image:none;box-shadow:0 0 0 2px rgba(2,117,216,.25)}a.sek-btn.disabled,fieldset[disabled] a.sek-btn{pointer-events:none}.sektion-wrapper [type=button],.sektion-wrapper [type=reset],.sektion-wrapper [type=submit],.sektion-wrapper button{-webkit-appearance:button}.sektion-wrapper [type=button]::-moz-focus-inner,.sektion-wrapper [type=reset]::-moz-focus-inner,.sektion-wrapper [type=submit]::-moz-focus-inner,.sektion-wrapper button::-moz-focus-inner{padding:0;border-style:none}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}[data-sek-level=module] .sek-module-inner .wp-caption figcaption{color:#6d6d6d;font-style:italic;max-width:100%;font-size:14px;font-weight:500;line-height:1.4;padding:4px;margin-top:1rem}[data-sek-level=module] .sek-module-inner figure{display:block}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .aligncenter img{margin-left:auto;margin-right:auto}[data-sek-level=module] .sek-module-inner .alignleft{float:left}[data-sek-level=module] .sek-module-inner .alignright{float:right}[data-sek-level=module] .sek-module-inner .aligncenter,[data-sek-level=module] .sek-module-inner .alignleft,[data-sek-level=module] .sek-module-inner .alignnone,[data-sek-level=module] .sek-module-inner .alignright,[data-sek-level=module] .sek-module-inner .alignwide{margin-top:1.5rem;margin-right:auto;margin-bottom:1.5rem;margin-left:auto}[data-sek-level=module] .sek-module-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:right}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form{float:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form label{position:relative;-ms-flex:1;flex:1;margin-right:5px}[data-sek-level=module] .sek-module-inner [role=search].search-form label input{padding-left:5px;line-height:20px;width:100%;max-width:185px;min-width:80px}@media (max-width:767.98px){[data-sek-level=module] .sek-module-inner [role=search].search-form label input{max-width:none}}[data-sek-level=module] .sek-module-inner [role=search].search-form input[type=submit]{line-height:15px}[data-sek-level=module] .sek-module-inner input[type=submit]{background:grey;color:#fff;padding:10px 10px;font-weight:400;display:inline-block;border:none;cursor:pointer;border-radius:3px}[data-sek-level=module] .sek-module-inner .search-form input[type=search]{margin:0;box-sizing:border-box;border-radius:0;background:#fff;border:2px solid #ddd;color:#777;display:block;max-width:100%;padding:7px 8px}.sektion-wrapper.sek-password-protected{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-direction:column;flex-direction:column}.sektion-wrapper.sek-password-protected form.post-password-form{max-width:450px;height:auto;padding:4em 1em;font-size:1em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6{font-weight:400;line-height:1.5em}.sek-module-inner h1{font-size:2.48em}.sek-module-inner h2{font-size:2.07em}.sek-module-inner h3{font-size:1.73em}.sek-module-inner h4{font-size:1.44em}.sek-module-inner h5{font-size:1.2em}.sek-module-inner h6{font-size:1em}.sek-module-inner .sek-heading{text-align:center;margin:.6em 0;display:block}.sek-module-inner .sek-heading>a{color:inherit;font-size:inherit}.sek-nav-wrap{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.5rem 0}.sek-mobile-menu-expanded-below .sek-nav-wrap{padding:0}.sek-nav-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.sek-module .sek-module-inner .sek-nav{margin-right:-10px!important;margin-left:-10px!important}.sek-module .sek-module-inner .sek-nav,.sek-module .sek-module-inner .sek-nav ul{list-style:none!important;padding:0!important;margin:0!important}.sek-module .sek-module-inner .sek-nav li{list-style:none;margin:0 5px}.sek-module .sek-module-inner .sek-nav li>ul li{padding:0 0 0 .9rem}.sek-nav li a{font-size:16px;line-height:1.5em;padding:.6em .8em;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;color:inherit;overflow:hidden}.sek-nav-wrap .sek-nav li a{text-decoration:none}.sek-nav li a:hover .sek-nav__title{text-decoration:underline}.sek-nav li:not(:last-of-type){border-bottom:1px solid;border-color:rgba(49,49,49,.09)}.sek-nav .menu-item-has-children,.sek-nav .page_item_has_children{position:relative}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{content:"\203A";font-family:"Arial Unicode MS",Arial;moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-weight:900;transition:all .3s ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px;padding:0 .45em;font-size:1em;position:relative;-webkit-transform:translateZ(0) rotate(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(-90deg)!important;transform:translateZ(0) rotate(-90deg)!important;-ms-transform:rotate(-90deg)!important}.sek-nav .children,.sek-nav .sub-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-nav .children,.sek-nav .sub-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.sek-dropdown-submenu>a::after{-webkit-transform:translateZ(0) rotate(0)!important;transform:translateZ(0) rotate(0)!important;-ms-transform:rotate(0)!important}.sek-dropdown-submenu>a[class*=-reverse]::after{top:.1em;-webkit-transform:translateZ(0) rotate(-180deg)!important;transform:translateZ(0) rotate(-180deg)!important;-ms-transform:rotate(-180deg)!important}.nb-loc .sek-module-inner .sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.nb-loc .sek-module-inner .sek-nav-toggler,.nb-loc .sek-module-inner .sek-nav-toggler:focus,.nb-loc .sek-module-inner .sek-nav-toggler:hover{background:0 0;background-color:rgba(0,0,0,0);color:#000;border:none}.sek-ham__span-wrapper{height:12px;position:relative;display:block}.sek-ham__span-wrapper .line{display:block;height:1.5px;position:absolute;left:10px;border-radius:5px;background-clip:padding-box;transition:all ease .35s;-webkit-backface-visibility:hidden;backface-visibility:hidden;border-top:1.5px solid}.sek-ham__span-wrapper .line-1{top:0}.sek-ham__span-wrapper .line-2{top:50%}.sek-ham__span-wrapper .line-3{top:100%}.sek-nav-toggler .line-1{-webkit-transform:translate(-3px,6px) rotate(45deg);transform:translate(-3px,6px) rotate(45deg);width:28px}.sek-nav-toggler .line-2{opacity:0}.sek-nav-toggler .line-3{-webkit-transform:translate(-3px,-6px) rotate(-45deg);transform:translate(-3px,-6px) rotate(-45deg);width:28px}.sek-nav-toggler.sek-collapsed .line{width:20px;-webkit-transform:translate(0,0) rotate(0);transform:translate(0,0) rotate(0);opacity:1}.sek-nav-toggler.sek-collapsed.hovering .line{-webkit-transform:translateX(-3px);transform:translateX(-3px);width:26px}.sek-dropdown-menu{position:static;float:none;list-style:none;border-radius:0;border:0;margin:0;padding:0;font-size:inherit}@media (min-width:768px){.sek-dropdown-menu{position:absolute;display:none;top:100%;left:0;z-index:1000;min-width:10rem;max-width:50vw}}.show>.sek-dropdown-menu{display:block}.sek-dropdown-menu .sek-nav__title{word-break:break-word;white-space:normal}.sek-dropdown-menu.open-right{left:0;right:auto}.sek-dropdown-menu ul.open-right,.sek-dropdown-menu.open-right ul:not(.open-left){left:100%;right:auto}.sek-dropdown-menu.open-left{left:auto;right:0}.sek-dropdown-menu ul.open-left,.sek-dropdown-menu.open-left ul:not(.open-right){right:100%;left:auto}@media (min-width:768px){.sek-nav{-ms-flex-direction:row;flex-direction:row}.sek-nav .menu-item-has-children>a::after,.sek-nav .page_item_has_children>a::after{display:inline-block}.sek-nav>li:not(:last-of-type){border-bottom:none}.sek-nav>li>a{padding:5px}.sek-nav-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.sek-mobile-menu-expanded-below{display:none!important}.sek-nav-toggler{display:none}.sek-dropdown-menu{background:#fff;box-shadow:1px 2px 2px 2px rgba(0,0,0,.15)}.sek-nav .sek-dropdown-menu li{padding:0 10px!important;margin:0!important}.sek-nav .sek-dropdown-menu li a{padding:10px 12px}.sek-dropdown-menu ul{left:100%}.sek-dropdown-menu .sek-menu-link__row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sek-dropdown-menu .sek-nav__title{word-break:normal;white-space:nowrap}.sek-dropdown-submenu .sek-dropdown-menu{top:15px}.sek-submenu-fade .sek-dropdown-menu a{transition:all .25s ease;-webkit-transform:translate(0,0);transform:translate(0,0)}.sek-submenu-fade .sek-dropdown-menu a:hover{-webkit-transform:translate(3px,0);transform:translate(3px,0)}.sek-submenu-fade .menu-item-has-children,.sek-submenu-fade .page_item_has_children{-webkit-perspective:1000px;perspective:1000px}.sek-submenu-fade .menu-item-has-children>ul,.sek-submenu-fade .page_item_has_children>ul{position:fixed;opacity:0;visibility:hidden;display:block;transition:all .25s ease-in-out;-webkit-transform:translate(0,-10px);transform:translate(0,-10px)}.sek-submenu-fade .menu-item-has-children:not(.show),.sek-submenu-fade .page_item_has_children:not(.show){overflow:hidden}.sek-submenu-fade .menu-item-has-children:not(.show) ul,.sek-submenu-fade .page_item_has_children:not(.show) ul{pointer-events:none;cursor:not-allowed}.sek-submenu-fade li.show{-webkit-perspective:none;perspective:none}.sek-submenu-fade li.show>ul{position:absolute;visibility:visible;opacity:1;-webkit-transform:translate(0,0);transform:translate(0,0)}}[data-sek-is-mobile-menu=yes]>.show{overflow:auto;max-height:80vh}[data-sek-is-mobile-menu=yes] li .sub-menu li>a{font-size:.8em;padding:.6em 15px}.nb-module-menu-search{position:relative}[data-sek-is-mobile-menu=yes] .nb-module-menu-search{display:none}.nb-svg-search-icon{cursor:pointer;padding:0}.nb-module-menu-search .nb-search-expand{display:none;background:#fff;position:absolute;z-index:100;top:49px;right:0;left:0;width:340px;box-shadow:0 1px 0 rgba(255,255,255,.1)}.nb-search-expand .nb-search-expand-inner{border:1px solid #eee;box-shadow:0 0 5px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.15);transition:-webkit-transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out;transition:transform .35s ease-in-out,height .25s ease-in-out,background-color .45s ease-in-out,-webkit-transform .35s ease-in-out;padding:15px}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner [role=search].search-form{display:-ms-flexbox;display:flex;float:none}[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner label input[type=search]{max-width:100%}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{margin:0;background:grey;color:#fff}[data-sek-is-mobile-menu=yes] .nb-mobile-search form input[type=submit],[data-sek-is-mobile-menu=yes] .nb-mobile-search input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=search],[data-sek-module-type=czr_menu_module] .nb-search-expand .nb-search-expand-inner input[type=submit]{text-transform:none!important}.nb-mobile-search{display:none}[data-sek-is-mobile-menu=yes] .nb-mobile-search{display:block;padding:6px 14px 15px}[data-sek-is-mobile-menu=yes] .nb-mobile-search input{font-size:16px}[data-sek-module-type=czr_image_module]{text-align:center}[data-sek-module-type=czr_image_module] img{border:0 solid #f2f2f2}[data-sek-module-type=czr_image_module] .box-shadow img{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_image_module] figure img{transition:all .2s ease-out}[data-sek-module-type=czr_image_module] figure.has-custom-height{overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_image_module] figure.has-custom-height img{-o-object-fit:cover;object-fit:cover}.sek-hover-effect-opacity img:hover{opacity:.7}.sek-hover-effect-zoom-out img:hover{-webkit-transform:scale(1.05);transform:scale(1.05)}.sek-hover-effect-zoom-in img:hover{-webkit-transform:scale(.95);transform:scale(.95)}.sek-hover-effect-move-up img:hover{-webkit-transform:translateY(-6px);transform:translateY(-6px)}.sek-hover-effect-move-down img:hover{-webkit-transform:translateY(6px);transform:translateY(6px)}.sek-hover-effect-blur img:hover{-webkit-filter:blur(2px);filter:blur(2px)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-hover-effect-grayscale img:hover{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray}.sek-hover-effect-reverse-grayscale img:hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sek-nimble-image-wrapper{max-width:100%;overflow:hidden;width:100%;position:relative;display:block;background-position:center center;background-size:cover;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.sek-nimble-image-wrapper::before{content:'';display:block;padding-top:100%}.sek-nimble-image-wrapper a{color:#fff}.sek-nimble-image-wrapper a:hover{color:#fff}.sek-nimble-image-wrapper .nb-icon-text-wrapper{position:absolute;width:100%;height:100%;z-index:1;top:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-icon{font-size:80px;line-height:1em;color:#000;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text,.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text *{color:#000;font-size:16px;line-height:1.5em;font-weight:400;transition:all .3s ease}.sek-nimble-image-wrapper .nb-icon-text-wrapper .nb-pro-img-text p{margin:0;padding:0}.sek-nimble-image-wrapper.nb-icon-has-hover-color:hover .nb-pro-img-icon{color:#969696}.sek-nimble-image-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.sek-nimble-image-mask::before{position:absolute;content:'';z-index:1;border:150vw solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-expanded .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand:hover .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink .sek-nimble-image-mask::before{width:88%;padding-bottom:88%}.sek-module-inner .sek-nimble-image-wrapper.nb-mask-always-shrinked .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-expand .sek-nimble-image-mask::before,.sek-module-inner .sek-nimble-image-wrapper.nb-mask-shrink:hover .sek-nimble-image-mask::before{width:63%;padding-bottom:63%}.sek-nimble-image-wrapper.nb-circle-mask .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;background-repeat:no-repeat;z-index:0;top:0}[data-sek-module-type=czr_divider_module]{text-align:center}[data-sek-module-type=czr_divider_module] .sek-module-inner{font-size:0;line-height:0}.sek-module-inner .sek-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.sek-module-inner .sek-spacer{height:20px}[data-sek-module-type=czr_icon_module]{text-align:center;color:#5a5a5a;font-size:15px}[data-sek-module-type=czr_icon_module] a.sek-icon,[data-sek-module-type=czr_icon_module] a.sek-icon.active,[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{color:inherit}[data-sek-module-type=czr_icon_module] .box-shadow .sek-icon-wrapper{box-shadow:rgba(0,0,0,.25) 0 3px 11px 0}[data-sek-module-type=czr_icon_module] .sek-icon i{transition:all .15s ease-in-out}[data-sek-module-type=czr_icon_module] .sek-icon .fab,[data-sek-module-type=czr_icon_module] .sek-icon .far,[data-sek-module-type=czr_icon_module] .sek-icon .fas{width:1em;height:1em;text-align:center}[data-sek-module-type=czr_icon_module] a.sek-icon{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] a.sek-icon:active,[data-sek-module-type=czr_icon_module] a.sek-icon:focus,[data-sek-module-type=czr_icon_module] a.sek-icon:hover{box-shadow:none;-webkit-box-shadow:none}[data-sek-module-type=czr_icon_module] .sek-icon-wrapper{display:inline-block;line-height:1em}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:14px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.sek-quote .sek-quote-content{font-weight:400;font-size:16px;line-height:1.5em;color:inherit}.sek-quote.sek-quote-design{background:0 0;font-style:inherit;margin-right:0;margin-left:0;padding:15px 0;border:none}.sek-quote.sek-quote-design>*{padding:0;margin:0}.sek-quote.sek-quote-design::after,.sek-quote.sek-quote-design::before{display:none}.sek-quote.sek-quote-design .sek-cite{padding:0;font-weight:400}.sek-quote.sek-quote-design .sek-cite::before{display:none}.sek-quote.sek-quote-design .sek-quote-inner{color:inherit;padding-left:calc(10px + .7em)}.sek-quote.sek-quote-design.sek-border-before{padding-left:15px;border-left:5px solid}.sek-quote.sek-quote-design.sek-border-before .sek-cite{clear:both;display:block;margin-top:1.5em;position:relative;padding-left:2.2em;padding-right:.25em}.sek-quote.sek-quote-design.sek-border-before .sek-cite::before{display:block;content:'';top:1em;position:absolute;background:0 0;width:2em;height:auto;left:0;border-top:1px solid}.sek-quote.sek-quote-design.sek-quote-icon-before{position:relative;display:-ms-flexbox;display:flex;font-size:50px}.sek-quote.sek-quote-design.sek-quote-icon-before .sek-quote-content :last-child{margin-bottom:.75em}.sek-quote.sek-quote-design.sek-quote-icon-before::before{content:"\275D";font-family:"Arial Unicode MS",Code2000;color:#ccc;font-style:normal;text-align:center;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;width:auto;margin:0;left:0;position:absolute;top:10px}[data-sek-module-type=czr_button_module] .sek-module-inner{text-align:center}.nb-loc .sek-module .sek-module-inner .sek-btn{background:#020202;color:#fff;padding:.5em 1em}.nb-loc .sek-module .sek-module-inner .sek-btn i{margin:0 8px}.nb-loc .sek-module .sek-module-inner .sek-btn:active,.nb-loc .sek-module .sek-module-inner .sek-btn:focus,.nb-loc .sek-module .sek-module-inner .sek-btn:hover{color:#fff;text-decoration:none}[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:focus,[data-sek-module-type=czr_button_module] .sek-module-inner .sek-btn:hover{text-decoration:none}.sek-btn-inner{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.sek-btn.box-shadow{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-btn.box-shadow.push-effect:active{-webkit-transform:translateY(2px);transform:translateY(2px)}.sek-post-grid-wrapper{margin-top:1.5rem;margin-bottom:1.5rem}.sek-post-grid-wrapper .sek-grid-items{grid-row-gap:25px}.sek-post-grid-wrapper .sek-grid-items.sek-list-layout article>:not(:last-child):not(.sek-pg-thumbnail){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items.sek-grid-layout article>:not(:last-child){margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article>:not(:last-child){margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:not(:last-child){margin-top:0!important;margin-bottom:15px}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:first-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items article .sek-pg-content>:last-child{margin-top:0!important}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article{box-shadow:0 0 40px 0 rgba(0,0,0,.05);transition:all .3s cubic-bezier(.25,.8,.25,1)}.sek-post-grid-wrapper .sek-grid-items.sek-shadow-on-hover article:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px);box-shadow:0 14px 28px rgba(0,0,0,.18),0 10px 10px rgba(0,0,0,.15)}.sek-post-grid-wrapper .sek-pg-thumbnail{box-shadow:0 5px 5px 0 rgba(18,63,82,.035),0 0 0 1px rgba(176,181,193,.2);background-color:#fff;overflow:hidden}.sek-post-grid-wrapper .sek-pg-thumbnail a{display:block;position:relative}.sek-post-grid-wrapper .sek-pg-thumbnail img{display:block;width:100%;height:auto}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:0;padding-top:65%}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail a{height:auto!important;padding-top:inherit!important}}.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{position:absolute;height:100%;width:100%;max-height:none;max-width:none;top:0;left:0;right:0;bottom:0;-o-object-fit:cover;object-fit:cover}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-thumb-custom-height .sek-pg-thumbnail img{height:auto!important;position:relative}}.sek-post-grid-wrapper .sek-pg-metas>span:not(:last-child)::after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.sek-post-grid-wrapper .sek-pg-content{text-align:left}.sek-post-grid-wrapper .sek-excerpt>:last-child{margin-bottom:0}.sek-module-inner .sek-post-grid-wrapper .sek-pg-category a{text-transform:uppercase;font-size:14px;text-decoration:none;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title{font-size:28px;line-height:1.3em}.sek-module-inner .sek-post-grid-wrapper .sek-pg-title a{text-decoration:none;color:#444;font-size:28px;font-weight:400;line-height:1.3em;-ms-word-wrap:break-word;word-wrap:break-word}.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas a,.sek-module-inner .sek-post-grid-wrapper .sek-pg-metas span{text-transform:uppercase;font-size:14px;letter-spacing:1px;color:#767676}.sek-module-inner .sek-post-grid-wrapper .sek-pg-content p{margin:0 0 15px 0;line-height:1.5;font-size:16px;color:#494949}.sek-post-grid-wrapper .sek-list-layout{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout{display:block!important}}.sek-post-grid-wrapper .sek-list-layout article{display:-ms-grid;display:grid;-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr);-ms-grid-rows:1fr;grid-template-rows:1fr;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-list-layout article{display:block!important;padding-top:10px}}.sek-post-grid-wrapper .sek-list-layout article>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-list-layout article.sek-has-thumb{-ms-grid-columns:30% minmax(0,1fr);grid-template-columns:30% minmax(0,1fr)}.sek-post-grid-wrapper .sek-list-layout article .sek-pg-thumbnail{margin-bottom:0;-ms-flex-item-align:start;align-self:flex-start}.sek-post-grid-wrapper .sek-grid-layout{display:-ms-grid;display:grid;-ms-grid-columns:1fr 20px 1fr;grid-template-columns:1fr 1fr;-ms-grid-rows:1fr;grid-template-rows:1fr;grid-row-gap:20px;grid-column-gap:20px}@media all and (-ms-high-contrast:none){.sek-post-grid-wrapper .sek-grid-layout{display:block!important}}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.sek-post-grid-wrapper .sek-grid-layout>:nth-child(2){-ms-grid-row:1;-ms-grid-column:3}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-all-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}@media (min-width:768px){.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-1{-ms-grid-columns:minmax(0,1fr);grid-template-columns:minmax(0,1fr)}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr);grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-desktop-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr);grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-tablet-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-1{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-2{-ms-grid-columns:minmax(0,1fr) 20px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:20px;grid-row-gap:20px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-3{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}.sek-post-grid-wrapper .sek-grid-layout.sek-mobile-col-4{-ms-grid-columns:minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr) 15px minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)!important;grid-column-gap:15px;grid-row-gap:15px}}@media (min-width:576px) and (max-width:767.98px){.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-tablet-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}@media (max-width:575.98px){.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article{-ms-grid-columns:minmax(0,1fr)!important;grid-template-columns:minmax(0,1fr)!important;grid-gap:0}.sek-post-grid-wrapper.sek-has-mobile-breakpoint .sek-list-layout article .sek-pg-thumbnail{margin-bottom:15px}}.sek-post-navigation #sek-nav-below{background-color:#f7f8f9;margin-top:20px;padding:5px}.sek-post-navigation #sek-nav-below .sek-pagination{text-align:center}.sek-post-navigation #sek-nav-below .sek-pagination ul{display:inline-block;vertical-align:middle;margin:0}.sek-post-navigation #sek-nav-below .sek-pagination .page-numbers{font-family:inherit;opacity:.7;text-decoration:none!important}.sek-post-navigation #sek-nav-below .sek-pagination .current{font-weight:600;opacity:1}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list>*{margin:0 5px}.sek-post-navigation #sek-nav-below .sek-pagination .sek-pag-list{margin:0 -5px}.sek-post-navigation #sek-nav-below nav{padding-top:20px;padding-bottom:20px}.sek-post-navigation #sek-nav-below ul.sek-czr-pager{margin:0}.sek-post-navigation #sek-nav-below li{display:inline-block;font-size:16px}.sek-post-navigation #sek-nav-below .sek-meta-nav-title,.sek-post-navigation #sek-nav-below a{text-transform:uppercase;letter-spacing:2px;color:#5a5a5a}.sek-post-navigation #sek-nav-below .sek-meta-nav-title:hover,.sek-post-navigation #sek-nav-below a:hover{color:#3b3b3b;opacity:1!important}.sek-post-navigation #sek-nav-below .sek-czr-pager>li{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir{display:block}.sek-post-navigation #sek-nav-below .sek-nav-dir>a{max-width:100%}.sek-post-navigation #sek-nav-below a i.arrow{font-size:.9em}.sek-post-navigation #sek-nav-below .page-numbers,.sek-post-navigation #sek-nav-below a{font-family:inherit;line-height:30px;height:30px;display:inline-block;vertical-align:middle;transition:all .3s ease;position:relative}.sek-post-navigation #sek-nav-below .sek-meta-nav{display:-ms-flexbox;display:flex;transition:all .2s,.6s ease;opacity:.7}.sek-post-navigation #sek-nav-below a:hover .sek-meta-nav{opacity:1;text-decoration:underline}.sek-post-navigation #sek-nav-below .sek-meta-nav-title{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;font-size:.9em}.sek-simple-form-wrapper input[type=text],.sek-simple-form-wrapper textarea{font-size:16px;width:100%!important;padding:.4em .5em;border-radius:3px;box-sizing:border-box;outline:0;font-weight:400;max-width:100%;border:none;color:#555;background-color:#fff}.sek-simple-form-wrapper textarea{height:auto;max-height:150px}.sek-simple-form-wrapper .sek-form-field{margin-bottom:15px;clear:both}.sek-simple-form-wrapper label{color:#444;font-weight:700;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block}.sek-simple-form-wrapper.use-outset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-outset-shadow .sek-form-field textarea{box-shadow:0 3px 8px rgba(0,0,0,.2)!important}.sek-simple-form-wrapper.use-inset-shadow .sek-form-field input[type=text],.sek-simple-form-wrapper.use-inset-shadow .sek-form-field textarea{box-shadow:0 1px 1px rgba(0,0,0,.075) inset}.sek-simple-form-wrapper #sek-form-respond{padding:20px 0}.sek-simple-form-wrapper input[type=checkbox]+label{display:inline;font-weight:700;margin-left:.5rem}.sek-form-message{padding:10px;margin:10px 0;text-align:center;line-height:1.5em;font-size:16px;border-radius:4px}.sek-form-message.sek-mail-failure{color:red;border:1px solid red;background:0 0;background:rgba(255,0,0,.05)}.sek-form-message.sek-mail-success{color:green;border:1px solid green;background:0 0;background:rgba(0,128,0,.05)}.sek-form-message.sek-mail-aborted{color:orange;border:1px solid orange;background:0 0;background:rgba(255,165,0,.05)}.grecaptcha-badge{z-index:1}.sek-hide-rc-badge .grecaptcha-badge{display:none}[data-sek-module-type=czr_tiny_mce_editor_module] a{text-decoration:underline}[data-sek-module-type=czr_social_icons_module] .sek-module-inner .sek-social-icons-wrapper{margin:10px 0}.nb-loc .sek-module-inner .sek-social-icons-wrapper{text-align:center}.nb-loc .sek-module-inner .sek-social-icons-wrapper>:not(:last-child){padding-right:8px}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li{display:inline-block}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li a{color:#707070}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{font-size:28px;line-height:1.5em}.nb-loc .sek-module-inner .sek-social-icons-wrapper>li .sek-social-icon{transition:all .2s ease-in-out}.sek-column-inner [data-sek-module-type=czr_img_slider_module]{width:calc(100% + 20px);max-width:calc(100% + 20px)}[data-sek-module-type=czr_img_slider_module] .sek-carousel-img [src*="data:image/gif;"]{display:none}[data-sek-module-type=czr_img_slider_module] .sek-swiper-loading .sek-carousel-img img{display:none}[data-sek-module-type=czr_img_slider_module] .swiper-container{width:100%;height:100%}[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:400px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] .swiper-container .swiper-wrapper{height:200px}}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img{height:100%;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=nimble-wizard] .sek-carousel-img img{max-width:none;opacity:0;transition:opacity .15s ease-in-out}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img{height:100%;width:auto;overflow:hidden}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=height-100] .sek-carousel-img img{width:auto;height:100%;max-width:none}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img{height:100%;width:100%;overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-container[data-sek-image-layout=cover] .sek-carousel-img img{width:100%;height:100%;max-width:none;-o-object-fit:cover;object-fit:cover}[data-sek-module-type=czr_img_slider_module] .swiper-slide{text-align:center;font-size:18px;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img{width:100%}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-h-centrd{width:auto!important;max-width:none!important;position:relative;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-carousel-img img.sek-v-centrd{height:auto!important;max-height:none!important;vertical-align:top;position:relative;max-width:none!important;opacity:1}[data-sek-module-type=czr_img_slider_module] .swiper-slide[data-sek-has-overlay=true] .sek-carousel-img::after{content:'';left:0;right:0;bottom:0;top:0;position:absolute;background-color:#000;opacity:.3}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-wrapper{height:100%;width:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);top:50%;left:50%;position:absolute;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content{height:auto;max-height:100%;width:100%;padding:5%;text-align:center;z-index:3;overflow:hidden;color:#e2e2e2;font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-slide .sek-slider-text-content *{font-size:16px;line-height:1.5em}[data-sek-module-type=czr_img_slider_module] .swiper-pagination-bullet-active{background-color:#fff}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav{cursor:pointer}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-chevron{display:inline-block;border-right:2px solid #fff;border-bottom:2px solid #fff;width:11px;height:11px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{left:0;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev .sek-chevron{-webkit-transform:rotate(-225deg);transform:rotate(-225deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next{right:0;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next .sek-chevron{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev{position:absolute;z-index:2;top:calc(50% - 30px);text-align:center;margin-top:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:60px;width:50px;opacity:.6;background-color:rgba(32,32,32,.4);transition:all .3s cubic-bezier(.39,.575,.565,1);line-height:64px;cursor:pointer;font-size:18px}[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-next:hover,[data-sek-module-type=czr_img_slider_module] .sek-swiper-nav .sek-swiper-prev:hover{background-color:rgba(32,32,32,.7);opacity:1;width:100px}@media (max-width:575.98px){[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .swiper-pagination{display:none}[data-sek-module-type=czr_img_slider_module] [data-sek-hide-nav-on-mobile=true] .sek-swiper-nav{display:none}}.sek-accord-wrapper{text-align:left}.sek-accord-wrapper .sek-accord-item{border:1px solid #e3e3e3;overflow:hidden}.sek-accord-wrapper .sek-accord-item:not(:last-child){margin-bottom:0}.sek-accord-wrapper .sek-accord-item .sek-accord-title{cursor:pointer;color:#565656;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:15px 20px;border-top:none;border-right:none;border-left:none;border-bottom:1px solid #e3e3e3;font-size:16px;line-height:1.5em;font-weight:600;-ms-flex-positive:1;flex-grow:1}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover *{color:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title:hover .expander span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title .expander span{background:#1e261f}.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{padding-right:10px;max-width:calc(100% - 30px)}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span,.sek-accord-wrapper .sek-accord-item .sek-accord-title .sek-inner-accord-title{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander{color:#1e261f;width:30px;height:30px;padding:0;margin:0;outline:0;border:0;background:0 0;box-shadow:none;font-size:1.5em;position:relative;cursor:pointer}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title .expander span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] .expander span:first-of-type,[data-sek-expanded=true] .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] .expander span:last-of-type{left:50%;right:50%}[data-sek-has-global-border=true][data-sek-has-title-border=true] [data-sek-expanded=false] .sek-accord-title{border-bottom:none}[data-sek-has-global-border=true][data-sek-has-title-border=true] .sek-accord-item:not(:last-child){border-bottom:none}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title .expander span:last-of-type{left:50%;right:50%}.sek-accord-wrapper .sek-accord-item .sek-accord-content{padding:15px 20px;background:#f2f2f2;color:#1e261f;font-size:16px;line-height:1.5em}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true]>.sek-accord-content{display:block}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=false]>.sek-accord-content{display:none}[data-sek-module-type=czr_shortcode_module] [data-sek-use-flexbox=true]{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.sek-module-inner{line-height:1.5em}.sek-module-inner h1,.sek-module-inner h2,.sek-module-inner h3,.sek-module-inner h4,.sek-module-inner h5,.sek-module-inner h6,.sek-module-inner p{line-height:1.5em}.sek-module-inner p{margin:0 0 1em;padding:0}.sek-module-inner a{text-decoration:none;box-shadow:none}.sek-module-inner img{height:auto;max-width:100%;border:none;border-radius:0;box-shadow:none}[data-sek-module-type=czr_accordion_module] .sek-module-inner a,[data-sek-module-type=czr_shortcode_module] .sek-module-inner a,[data-sek-module-type=czr_simple_html_module] .sek-module-inner a,[data-sek-module-type=czr_tiny_mce_editor_module] .sek-module-inner a{text-decoration:underline}body .sek-module-inner h1:before,body .sek-module-inner h2:before,body .sek-module-inner h3:before,body .sek-module-inner h4:before,body .sek-module-inner h5:before,body .sek-module-inner h6:before{content:none;background:0 0}
|
assets/front/js/ccat-nimble-front.js
CHANGED
@@ -412,236 +412,7 @@ window.nb_.getQueryVariable = function(variable) {
|
|
412 |
};/////////////// callbackFunc
|
413 |
|
414 |
nb_.listenTo('nb-app-ready', callbackFunc );
|
415 |
-
}(window, document))
|
416 |
-
/* ------------------------------------------------------------------------- *
|
417 |
-
* ACCORDION MODULE
|
418 |
-
/* ------------------------------------------------------------------------- */
|
419 |
-
(function(w, d){
|
420 |
-
var callbackFunc = function() {
|
421 |
-
jQuery( function($){
|
422 |
-
$( 'body' ).on( 'click sek-expand-accord-item', '.sek-accord-item > .sek-accord-title', function( evt ) {
|
423 |
-
//evt.preventDefault();
|
424 |
-
//evt.stopPropagation();
|
425 |
-
var $item = $(this).closest( '.sek-accord-item'),
|
426 |
-
$accordion = $(this).closest( '.sek-accord-wrapper');
|
427 |
-
|
428 |
-
// Note : cast the boolean to a string by adding +''
|
429 |
-
if ( "true" == $accordion.data('sek-one-expanded')+'' ) {
|
430 |
-
$accordion.find('.sek-accord-item').not( $item ).each( function() {
|
431 |
-
var $current_item = $(this);
|
432 |
-
$current_item.find('.sek-accord-content').stop( true, true ).slideUp( {
|
433 |
-
duration : 200,
|
434 |
-
start : function() {
|
435 |
-
// If already expanded, make sure inline style display:block is set
|
436 |
-
// otherwise, the CSS style display:none will apply first, making the transition brutal.
|
437 |
-
if ( "true" == $current_item.attr('data-sek-expanded')+'' ) {
|
438 |
-
$current_item.find('.sek-accord-content').css('display', 'block');
|
439 |
-
}
|
440 |
-
$current_item.attr('data-sek-expanded', "false" );
|
441 |
-
}
|
442 |
-
});
|
443 |
-
});
|
444 |
-
}
|
445 |
-
if ( 'sek-expand-accord-item' === evt.type && "true" == $item.attr('data-sek-expanded')+'' ) {
|
446 |
-
return;
|
447 |
-
} else {
|
448 |
-
$item.find('.sek-accord-content').stop( true, true ).slideToggle({
|
449 |
-
duration : 200,
|
450 |
-
start : function() {
|
451 |
-
// If already expanded, make sure inline style display:block is set
|
452 |
-
// otherwise, the CSS style display:none will apply first, making the transition brutal.
|
453 |
-
if ( "true" == $item.attr('data-sek-expanded')+'' ) {
|
454 |
-
$item.find('.sek-accord-content').css('display', 'block');
|
455 |
-
}
|
456 |
-
$item.attr('data-sek-expanded', "false" == $item.attr('data-sek-expanded')+'' ? "true" : "false" );
|
457 |
-
$item.trigger( "true" == $item.attr('data-sek-expanded') ? 'sek-accordion-expanded' : 'sek-accordion-collapsed' );
|
458 |
-
}
|
459 |
-
});
|
460 |
-
}
|
461 |
-
|
462 |
-
});// on 'click'
|
463 |
-
|
464 |
-
// When customizing, expand the currently edited item
|
465 |
-
// @see CZRItemConstructor in api.czrModuleMap.czr_img_slider_collection_child
|
466 |
-
if ( window.wp && ! nb_.isUndefined( wp.customize ) ) {
|
467 |
-
wp.customize.preview.bind('sek-item-focus', function( params ) {
|
468 |
-
|
469 |
-
var $itemEl = $('[data-sek-item-id="' + params.item_id +'"]', '.sek-accord-wrapper').first();
|
470 |
-
if ( 1 > $itemEl.length )
|
471 |
-
return;
|
472 |
-
|
473 |
-
$itemEl.find('.sek-accord-title').trigger('sek-expand-accord-item');
|
474 |
-
});
|
475 |
-
}
|
476 |
-
});//jQuery()
|
477 |
-
|
478 |
-
};/////////////// callbackFunc
|
479 |
-
// on 'nb-app-ready', jQuery is loaded
|
480 |
-
nb_.listenTo('nb-app-ready', callbackFunc );
|
481 |
-
}(window, document));
|
482 |
-
|
483 |
-
|
484 |
-
// global sekFrontLocalized, nimbleListenTo
|
485 |
-
/* ===================================================
|
486 |
-
* jquery.fn.parallaxBg v1.0.0
|
487 |
-
* Created in October 2018.
|
488 |
-
* Inspired from https://github.com/presscustomizr/front-jquery-plugins/blob/master/jqueryParallax.js
|
489 |
-
* ===================================================
|
490 |
-
*/
|
491 |
-
(function(w, d){
|
492 |
-
var callbackFunc = function() {
|
493 |
-
(function ( $, window ) {
|
494 |
-
//defaults
|
495 |
-
var pluginName = 'parallaxBg',
|
496 |
-
defaults = {
|
497 |
-
parallaxForce : 40,
|
498 |
-
oncustom : [],//list of event here
|
499 |
-
matchMedia : 'only screen and (max-width: 800px)'
|
500 |
-
};
|
501 |
-
|
502 |
-
function Plugin( element, options ) {
|
503 |
-
this.element = $(element);
|
504 |
-
//this.element_wrapper = this.element.closest( '.parallax-wrapper' );
|
505 |
-
this.options = $.extend( {}, defaults, options, this.parseElementDataOptions() ) ;
|
506 |
-
this._defaults = defaults;
|
507 |
-
this._name = pluginName;
|
508 |
-
this.init();
|
509 |
-
}
|
510 |
-
|
511 |
-
Plugin.prototype.parseElementDataOptions = function () {
|
512 |
-
return this.element.data();
|
513 |
-
};
|
514 |
-
|
515 |
-
//can access this.element and this.option
|
516 |
-
//@return void
|
517 |
-
Plugin.prototype.init = function () {
|
518 |
-
var self = this;
|
519 |
-
//cache some element
|
520 |
-
this.$_window = nb_.cachedElements.$window;
|
521 |
-
this.doingAnimation = false;
|
522 |
-
this.isVisible = false;
|
523 |
-
this.isBefore = false;//the element is before the scroll point
|
524 |
-
this.isAfter = true;// the element is after the scroll point
|
525 |
-
|
526 |
-
// normalize the parallax ratio
|
527 |
-
// must be a number 0 > ratio > 100
|
528 |
-
if ( 'number' !== typeof( self.options.parallaxForce ) || self.options.parallaxForce < 0 ) {
|
529 |
-
if ( sekFrontLocalized.isDevMode ) {
|
530 |
-
console.log('parallaxBg => the provided parallaxForce is invalid => ' + self.options.parallaxForce );
|
531 |
-
}
|
532 |
-
self.options.parallaxForce = this._defaults.parallaxForce;
|
533 |
-
}
|
534 |
-
if ( self.options.parallaxForce > 100 ) {
|
535 |
-
self.options.parallaxForce = 100;
|
536 |
-
}
|
537 |
-
|
538 |
-
//the scroll event gets throttled with the requestAnimationFrame
|
539 |
-
this.$_window.scroll( function(_evt) { self.maybeParallaxMe(_evt); } );
|
540 |
-
//debounced resize event
|
541 |
-
this.$_window.resize( nb_.debounce( function(_evt) {
|
542 |
-
self.maybeParallaxMe(_evt);
|
543 |
-
}, 100 ) );
|
544 |
-
|
545 |
-
//on load
|
546 |
-
this.checkIfIsVisibleAndCacheProperties();
|
547 |
-
this.setTopPositionAndBackgroundSize();
|
548 |
-
};
|
549 |
-
|
550 |
-
//@see https://www.paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/
|
551 |
-
Plugin.prototype.setTopPositionAndBackgroundSize = function() {
|
552 |
-
var self = this;
|
553 |
-
|
554 |
-
// options.matchMedia is set to 'only screen and (max-width: 768px)' by default
|
555 |
-
// if a match is found, then reset the top position
|
556 |
-
if ( nb_.isFunction( window.matchMedia ) && matchMedia( self.options.matchMedia ).matches ) {
|
557 |
-
this.element.css({'background-position-y' : '', 'background-attachment' : '' });
|
558 |
-
return;
|
559 |
-
}
|
560 |
-
|
561 |
-
var $element = this.element,
|
562 |
-
elemHeight = $element.outerHeight(),
|
563 |
-
winHeight = this.$_window.height(),
|
564 |
-
offsetTop = $element.offset().top,
|
565 |
-
scrollTop = this.$_window.scrollTop(),
|
566 |
-
percentOfPage = 100;
|
567 |
-
|
568 |
-
// the percentOfPage can vary from -1 to 1
|
569 |
-
if ( this.isVisible ) {
|
570 |
-
//percentOfPage = currentDistanceToMiddleScreen / maxDistanceToMiddleScreen;
|
571 |
-
percentOfPage = ( offsetTop - scrollTop ) / winHeight;
|
572 |
-
} else if ( this.isBefore ) {
|
573 |
-
percentOfPage = 1;
|
574 |
-
} else if ( this.isAfter ) {
|
575 |
-
percentOfPage = - 1;
|
576 |
-
}
|
577 |
-
|
578 |
-
var maxBGYMove = this.options.parallaxForce > 0 ? winHeight * ( 100 - this.options.parallaxForce ) / 100 : winHeight,
|
579 |
-
bgPositionY = Math.round( percentOfPage * maxBGYMove );
|
580 |
-
|
581 |
-
this.element.css({
|
582 |
-
'background-position-y' : [
|
583 |
-
'calc(50% ',
|
584 |
-
bgPositionY > 0 ? '+ ' : '- ',
|
585 |
-
Math.abs( bgPositionY ) + 'px)'
|
586 |
-
].join('')
|
587 |
-
});
|
588 |
-
};
|
589 |
-
|
590 |
-
// When does the image enter the viewport ?
|
591 |
-
Plugin.prototype.checkIfIsVisibleAndCacheProperties = function( _evt ) {
|
592 |
-
var $element = this.element;
|
593 |
-
// bail if the level is display:none;
|
594 |
-
// because $.offset() won't work
|
595 |
-
// see because of https://github.com/presscustomizr/nimble-builder/issues/363
|
596 |
-
if ( ! $element.is(':visible') )
|
597 |
-
return false;
|
598 |
-
|
599 |
-
var scrollTop = this.$_window.scrollTop(),
|
600 |
-
wb = scrollTop + this.$_window.height(),
|
601 |
-
offsetTop = $element.offset().top,
|
602 |
-
ib = offsetTop + $element.outerHeight();
|
603 |
-
|
604 |
-
// Cache now
|
605 |
-
this.isVisible = ib >= scrollTop && offsetTop <= wb;
|
606 |
-
this.isBefore = offsetTop > wb ;//the element is before the scroll point
|
607 |
-
this.isAfter = ib < scrollTop;// the element is after the scroll point
|
608 |
-
return this.isVisible;
|
609 |
-
};
|
610 |
-
|
611 |
-
// a throttle is implemented with window.requestAnimationFrame
|
612 |
-
Plugin.prototype.maybeParallaxMe = function(evt) {
|
613 |
-
var self = this;
|
614 |
-
if ( ! this.checkIfIsVisibleAndCacheProperties() )
|
615 |
-
return;
|
616 |
-
|
617 |
-
if ( ! this.doingAnimation ) {
|
618 |
-
this.doingAnimation = true;
|
619 |
-
window.requestAnimationFrame(function() {
|
620 |
-
self.setTopPositionAndBackgroundSize();
|
621 |
-
self.doingAnimation = false;
|
622 |
-
});
|
623 |
-
}
|
624 |
-
};
|
625 |
-
|
626 |
-
// prevents against multiple instantiations
|
627 |
-
$.fn[pluginName] = function ( options ) {
|
628 |
-
return this.each(function () {
|
629 |
-
if (!$.data(this, 'plugin_' + pluginName)) {
|
630 |
-
$.data(this, 'plugin_' + pluginName,
|
631 |
-
new Plugin( this, options ));
|
632 |
-
}
|
633 |
-
});
|
634 |
-
};
|
635 |
-
})( jQuery, window );
|
636 |
-
};/////////////// callbackFunc
|
637 |
-
|
638 |
-
// on 'nb-app-ready', jQuery is loaded
|
639 |
-
nb_.listenTo('nb-app-ready', function(){
|
640 |
-
callbackFunc();
|
641 |
-
nb_.emit('nb-parallax-parsed');
|
642 |
-
});
|
643 |
-
}(window, document));
|
644 |
-
/* ===================================================
|
645 |
* jquerynimbleLazyLoad.js v1.0.0
|
646 |
* ===================================================
|
647 |
*
|
@@ -930,920 +701,6 @@ window.nb_.getQueryVariable = function(variable) {
|
|
930 |
if ( sekFrontLocalized.lazyload_enabled || nb_.isCustomizing() ) { nb_.emit('nb-lazyload-parsed'); }
|
931 |
});
|
932 |
}(window, document));// global sekFrontLocalized, nimbleListenTo
|
933 |
-
/* ------------------------------------------------------------------------- *
|
934 |
-
* MENU
|
935 |
-
/* ------------------------------------------------------------------------- */
|
936 |
-
(function(w, d){
|
937 |
-
var callbackFunc = function() {
|
938 |
-
jQuery( function($){
|
939 |
-
//DROPDOWN
|
940 |
-
var Dropdown = function() {
|
941 |
-
//dropdown
|
942 |
-
var DATA_KEY = 'sek.sekDropdown',
|
943 |
-
EVENT_KEY = '.' + DATA_KEY,
|
944 |
-
Event = {
|
945 |
-
PLACE_ME : 'placeme'+ EVENT_KEY,
|
946 |
-
PLACE_ALL : 'placeall' + EVENT_KEY,
|
947 |
-
SHOWN : 'shown' + EVENT_KEY,
|
948 |
-
SHOW : 'show' + EVENT_KEY,
|
949 |
-
HIDDEN : 'hidden' + EVENT_KEY,
|
950 |
-
HIDE : 'hide' + EVENT_KEY,
|
951 |
-
CLICK : 'click' + EVENT_KEY,
|
952 |
-
TAP : 'tap' + EVENT_KEY,
|
953 |
-
},
|
954 |
-
ClassName = {
|
955 |
-
DROPDOWN : 'sek-dropdown-menu',
|
956 |
-
DROPDOWN_SUBMENU : 'sek-dropdown-submenu',
|
957 |
-
SHOW : 'show',
|
958 |
-
PARENTS : 'menu-item-has-children',
|
959 |
-
},
|
960 |
-
Selector = {
|
961 |
-
DATA_TOGGLE : '[data-toggle="sek-dropdown"]',
|
962 |
-
DATA_SHOWN_TOGGLE_LINK : '.' +ClassName.SHOW+ '> a',
|
963 |
-
HOVER_MENU : '.sek-nav-wrap',
|
964 |
-
HOVER_PARENT : '.sek-nav-wrap .menu-item-has-children',
|
965 |
-
PARENTS : '.sek-nav-wrap .menu-item-has-children',
|
966 |
-
SNAKE_PARENTS : '.sek-nav-wrap .menu-item-has-children',
|
967 |
-
};
|
968 |
-
|
969 |
-
// unify all the dropdowns classes whether the menu is a proper menu or the all pages fall-back
|
970 |
-
$( '.sek-nav .children, .sek-nav .sub-menu' ).addClass( ClassName.DROPDOWN );
|
971 |
-
$( '.sek-nav-wrap .page_item_has_children' ).addClass( ClassName.PARENTS );
|
972 |
-
$( '.sek-nav' + ' .' + ClassName.DROPDOWN + ' .' + ClassName.PARENTS ).addClass( ClassName.DROPDOWN_SUBMENU );
|
973 |
-
|
974 |
-
//Handle dropdown on hover via js
|
975 |
-
var dropdownMenuOnHover = function() {
|
976 |
-
var _dropdown_selector = Selector.HOVER_PARENT;
|
977 |
-
|
978 |
-
function _addOpenClass () {
|
979 |
-
var $_el = $(this);
|
980 |
-
|
981 |
-
//a little delay to balance the one added in removing the open class
|
982 |
-
var _debounced_addOpenClass = nb_.debounce( function() {
|
983 |
-
//do nothing if menu is mobile
|
984 |
-
if( 'static' == $_el.find( '.'+ClassName.DROPDOWN ).css( 'position' ) ) {
|
985 |
-
return false;
|
986 |
-
}
|
987 |
-
if ( ! $_el.hasClass(ClassName.SHOW) ) {
|
988 |
-
$_el.trigger( Event.SHOW )
|
989 |
-
.addClass(ClassName.SHOW)
|
990 |
-
.trigger( Event.SHOWN);
|
991 |
-
|
992 |
-
var $_data_toggle = $_el.children( Selector.DATA_TOGGLE );
|
993 |
-
|
994 |
-
if ( $_data_toggle.length ) {
|
995 |
-
$_data_toggle[0].setAttribute('aria-expanded', 'true');
|
996 |
-
}
|
997 |
-
}
|
998 |
-
}, 30);
|
999 |
-
|
1000 |
-
_debounced_addOpenClass();
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
function _removeOpenClass () {
|
1004 |
-
|
1005 |
-
var $_el = $(this);
|
1006 |
-
|
1007 |
-
//a little delay before closing to avoid closing a parent before accessing the child
|
1008 |
-
var _debounced_removeOpenClass = nb_.debounce( function() {
|
1009 |
-
if ( $_el.find("ul li:hover").length < 1 && ! $_el.closest('ul').find('li:hover').is( $_el ) ) {
|
1010 |
-
$_el.trigger( Event.HIDE )
|
1011 |
-
.removeClass( ClassName.SHOW)
|
1012 |
-
.trigger( Event.HIDDEN );
|
1013 |
-
|
1014 |
-
var $_data_toggle = $_el.children( Selector.DATA_TOGGLE );
|
1015 |
-
|
1016 |
-
if ( $_data_toggle.length ) {
|
1017 |
-
$_data_toggle[0].setAttribute('aria-expanded', 'false');
|
1018 |
-
}
|
1019 |
-
}
|
1020 |
-
}, 30 );
|
1021 |
-
|
1022 |
-
_debounced_removeOpenClass();
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
//BIND
|
1026 |
-
$( document )
|
1027 |
-
.on( 'mouseenter', _dropdown_selector, _addOpenClass )
|
1028 |
-
.on( 'mouseleave', _dropdown_selector , _removeOpenClass );
|
1029 |
-
},
|
1030 |
-
|
1031 |
-
//SNAKE
|
1032 |
-
dropdownPlacement = function() {
|
1033 |
-
var isRTL = 'rtl' === $('html').attr('dir'),
|
1034 |
-
doingAnimation = false;
|
1035 |
-
|
1036 |
-
nb_.cachedElements.$window
|
1037 |
-
//on resize trigger Event.PLACE on active dropdowns
|
1038 |
-
.on( 'resize', function() {
|
1039 |
-
if ( ! doingAnimation ) {
|
1040 |
-
doingAnimation = true;
|
1041 |
-
window.requestAnimationFrame(function() {
|
1042 |
-
//trigger a placement on the open dropdowns
|
1043 |
-
$( Selector.SNAKE_PARENTS+'.'+ClassName.SHOW)
|
1044 |
-
.trigger(Event.PLACE_ME);
|
1045 |
-
doingAnimation = false;
|
1046 |
-
});
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
});
|
1050 |
-
|
1051 |
-
$( document )
|
1052 |
-
.on( Event.PLACE_ALL, function() {
|
1053 |
-
//trigger a placement on all
|
1054 |
-
$( Selector.SNAKE_PARENTS )
|
1055 |
-
.trigger(Event.PLACE_ME);
|
1056 |
-
})
|
1057 |
-
//snake bound on menu-item shown and place
|
1058 |
-
.on( Event.SHOWN+' '+Event.PLACE_ME, Selector.SNAKE_PARENTS, function(evt) {
|
1059 |
-
evt.stopPropagation();
|
1060 |
-
_do_snake( $(this), evt );
|
1061 |
-
});
|
1062 |
-
|
1063 |
-
|
1064 |
-
//snake
|
1065 |
-
//$_el is the menu item with children whose submenu will be 'snaked'
|
1066 |
-
function _do_snake( $_el, evt ) {
|
1067 |
-
if ( !( evt && evt.namespace && DATA_KEY === evt.namespace ) ) {
|
1068 |
-
return;
|
1069 |
-
}
|
1070 |
-
|
1071 |
-
var $_this = $_el,
|
1072 |
-
$_dropdown = $_this.children( '.'+ClassName.DROPDOWN );
|
1073 |
-
|
1074 |
-
if ( !$_dropdown.length ) {
|
1075 |
-
return;
|
1076 |
-
}
|
1077 |
-
|
1078 |
-
//stage
|
1079 |
-
/*
|
1080 |
-
* we display the dropdown so that jQuery is able to retrieve exact size and positioning
|
1081 |
-
* we also hide whatever overflows the menu item with children whose submenu will be 'snaked'
|
1082 |
-
* this to avoid some glitches that would made it lose the focus:
|
1083 |
-
* During RTL testing when a menu item with children reached the left edge of the window
|
1084 |
-
* it happened that while the submenu was showing (because of the show class added, so not depending on the snake)
|
1085 |
-
* this submenu (ul) stole the focus and then released it in a very short time making the mouseleave callback
|
1086 |
-
* defined in dropdownMenuOnHover react, hence closing the whole submenu tree.
|
1087 |
-
* This might be a false positive, as we don't really test RTL with RTL browsers (only the html direction changes),
|
1088 |
-
* but since the 'cure' has no side effects, let's be pedantic!
|
1089 |
-
*/
|
1090 |
-
$_el.css( 'overflow', 'hidden' );
|
1091 |
-
$_dropdown.css( {
|
1092 |
-
'zIndex' : '-100',
|
1093 |
-
'display' : 'block'
|
1094 |
-
});
|
1095 |
-
|
1096 |
-
_maybe_move( $_dropdown, $_el );
|
1097 |
-
|
1098 |
-
//unstage
|
1099 |
-
$_dropdown.css({
|
1100 |
-
'zIndex' : '',
|
1101 |
-
'display' : ''
|
1102 |
-
});
|
1103 |
-
$_el.css( 'overflow', '' );
|
1104 |
-
}//_so_snake
|
1105 |
-
|
1106 |
-
|
1107 |
-
function _maybe_move( $_dropdown, $_el ) {
|
1108 |
-
var Direction = isRTL ? {
|
1109 |
-
//when in RTL we open the submenu by default on the left side
|
1110 |
-
_DEFAULT : 'left',
|
1111 |
-
_OPPOSITE : 'right'
|
1112 |
-
} : {
|
1113 |
-
//when in LTR we open the submenu by default on the right side
|
1114 |
-
_DEFAULT : 'right',
|
1115 |
-
_OPPOSITE : 'left'
|
1116 |
-
},
|
1117 |
-
ClassName = {
|
1118 |
-
OPEN_PREFIX : 'open-',
|
1119 |
-
DD_SUBMENU : 'sek-dropdown-submenu',
|
1120 |
-
CARET_TITLE_FLIP : 'sek-menu-link__row-reverse',
|
1121 |
-
//CARET : 'caret__dropdown-toggler',
|
1122 |
-
DROPDOWN : 'sek-dropdown-menu'
|
1123 |
-
},
|
1124 |
-
_caret_title_maybe_flip = function( $_el, _direction, _old_direction ) {
|
1125 |
-
$.each( $_el, function() {
|
1126 |
-
var $_el = $(this),
|
1127 |
-
$_a = $_el.find( 'a' ).first();
|
1128 |
-
|
1129 |
-
if ( 1 == $_a.length ) {
|
1130 |
-
$_a.toggleClass( ClassName.CARET_TITLE_FLIP, _direction == Direction._OPPOSITE );
|
1131 |
-
}
|
1132 |
-
});
|
1133 |
-
},
|
1134 |
-
_setOpenDirection = function( _direction ) {
|
1135 |
-
//retrieve the old direction => used to remove the old direction class
|
1136 |
-
var _old_direction = _direction == Direction._OPPOSITE ? Direction._DEFAULT : Direction._OPPOSITE;
|
1137 |
-
|
1138 |
-
//tell the dropdown to open on the direction _direction (hence remove the old direction class)
|
1139 |
-
$_dropdown.removeClass( ClassName.OPEN_PREFIX + _old_direction ).addClass( ClassName.OPEN_PREFIX + _direction );
|
1140 |
-
if ( $_el.hasClass( ClassName.DD_SUBMENU ) ) {
|
1141 |
-
_caret_title_maybe_flip( $_el, _direction, _old_direction );
|
1142 |
-
//make the first level submenus caret inherit this
|
1143 |
-
_caret_title_maybe_flip( $_dropdown.children( '.' + ClassName.DD_SUBMENU ), _direction, _old_direction );
|
1144 |
-
}
|
1145 |
-
};
|
1146 |
-
|
1147 |
-
//snake inheritance
|
1148 |
-
if ( $_dropdown.parent().closest( '.'+ClassName.DROPDOWN ).hasClass( ClassName.OPEN_PREFIX + Direction._OPPOSITE ) ) {
|
1149 |
-
//open on the opposite direction
|
1150 |
-
_setOpenDirection( Direction._OPPOSITE );
|
1151 |
-
} else {
|
1152 |
-
//open on the default direction
|
1153 |
-
_setOpenDirection( Direction._DEFAULT );
|
1154 |
-
}
|
1155 |
-
|
1156 |
-
//let's compute on which side open the dropdown
|
1157 |
-
if ( $_dropdown.offset().left + $_dropdown.width() > nb_.cachedElements.$window.width() ) {
|
1158 |
-
//open on the left
|
1159 |
-
_setOpenDirection( 'left' );
|
1160 |
-
} else if ( $_dropdown.offset().left < 0 ) {
|
1161 |
-
//open on the right
|
1162 |
-
_setOpenDirection( 'right' );
|
1163 |
-
}
|
1164 |
-
}//_maybe_move
|
1165 |
-
};//dropdownPlacement
|
1166 |
-
|
1167 |
-
//FireAll
|
1168 |
-
dropdownMenuOnHover();
|
1169 |
-
dropdownPlacement();
|
1170 |
-
},
|
1171 |
-
|
1172 |
-
SimpleCollapse = function() {
|
1173 |
-
var NAME = 'sekCollapse',
|
1174 |
-
DATA_KEY = 'sek.sekCollapse',
|
1175 |
-
EVENT_KEY = "." + DATA_KEY,
|
1176 |
-
TRANSITION_DURATION = 400,
|
1177 |
-
DATA_API_KEY = '.data-api',
|
1178 |
-
Event = {
|
1179 |
-
SHOW: "show" + EVENT_KEY,
|
1180 |
-
SHOWN: "shown" + EVENT_KEY,
|
1181 |
-
HIDE: "hide" + EVENT_KEY,
|
1182 |
-
HIDDEN: "hidden" + EVENT_KEY,
|
1183 |
-
CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
|
1184 |
-
},
|
1185 |
-
ClassName = {
|
1186 |
-
SHOW: 'show',
|
1187 |
-
COLLAPSE: 'sek-collapse',
|
1188 |
-
COLLAPSING: 'sek-collapsing',
|
1189 |
-
COLLAPSED: 'sek-collapsed'
|
1190 |
-
},
|
1191 |
-
Selector = {
|
1192 |
-
ACTIVES: '.show, .sek-collapsing',
|
1193 |
-
DATA_TOGGLE: '[data-sek-toggle="sek-collapse"]'
|
1194 |
-
},
|
1195 |
-
_onSlidingCompleteResetCSS = function( $_el ) {
|
1196 |
-
$_el = $_el ? $_el : $(this);
|
1197 |
-
$_el.css({
|
1198 |
-
'display' : '',
|
1199 |
-
'paddingTop' : '',
|
1200 |
-
'marginTop' : '',
|
1201 |
-
'paddingBottom' : '',
|
1202 |
-
'marginBottom' : '',
|
1203 |
-
'height' : ''
|
1204 |
-
});
|
1205 |
-
};
|
1206 |
-
|
1207 |
-
//bind
|
1208 |
-
$(document).on( Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
|
1209 |
-
// preventDefault only for <a> elements (which change the URL) not inside the collapsible element
|
1210 |
-
if (event.currentTarget.tagName === 'A') {
|
1211 |
-
event.preventDefault();
|
1212 |
-
}
|
1213 |
-
|
1214 |
-
var $toggler = $(this),
|
1215 |
-
//get the data toggle
|
1216 |
-
_collapsible_selector = $toggler.data('target');
|
1217 |
-
|
1218 |
-
$(_collapsible_selector).each( function () {
|
1219 |
-
var $collapsible = $(this),
|
1220 |
-
collapse = $collapsible.hasClass(ClassName.SHOW);
|
1221 |
-
|
1222 |
-
$collapsible.stop()[ collapse ? 'slideUp' : 'slideDown' ]({
|
1223 |
-
duration: TRANSITION_DURATION,
|
1224 |
-
start : function() {
|
1225 |
-
$collapsible.addClass(ClassName.COLLAPSING).trigger( collapse ? Event.HIDE : Event.SHOW );
|
1226 |
-
if ( collapse ) {
|
1227 |
-
$toggler.addClass( ClassName.COLLAPSED ).attr( 'aria-expanded', 'false' );
|
1228 |
-
} else {
|
1229 |
-
$toggler.removeClass( ClassName.COLLAPSED ).attr( 'aria-expanded', 'true' );
|
1230 |
-
}
|
1231 |
-
},
|
1232 |
-
complete: function() {
|
1233 |
-
var removeClass,
|
1234 |
-
addClass,
|
1235 |
-
event;
|
1236 |
-
|
1237 |
-
if ( collapse ) {
|
1238 |
-
removeClass = ClassName.SHOW;
|
1239 |
-
addClass = ClassName.COLLAPSE;
|
1240 |
-
event = Event.HIDDEN;
|
1241 |
-
} else {
|
1242 |
-
removeClass = ClassName.COLLAPSE;
|
1243 |
-
addClass = ClassName.SHOW;
|
1244 |
-
event = Event.SHOWN;
|
1245 |
-
}
|
1246 |
-
$collapsible.removeClass(ClassName.COLLAPSING + ' ' + removeClass).addClass( addClass ).trigger(event);
|
1247 |
-
//remove all the inline style added by the slideUp/Down methods
|
1248 |
-
_onSlidingCompleteResetCSS( $collapsible );
|
1249 |
-
}
|
1250 |
-
});//end slideUp/slideDown
|
1251 |
-
});//end each
|
1252 |
-
});//end document bind
|
1253 |
-
};
|
1254 |
-
|
1255 |
-
|
1256 |
-
Dropdown();
|
1257 |
-
SimpleCollapse();
|
1258 |
-
|
1259 |
-
// handle the mobile hamburger hover effect
|
1260 |
-
$( document )
|
1261 |
-
.on( 'mouseenter', '.sek-nav-toggler', function(){ $(this).addClass( 'hovering' ); } )
|
1262 |
-
.on( 'mouseleave', '.sek-nav-toggler', function(){ $(this).removeClass( 'hovering' ); } )
|
1263 |
-
.on( 'show.sek.sekCollapse hide.sek.sekCollapse', '.sek-nav-collapse', function() {
|
1264 |
-
$('[data-target="#'+$(this).attr('id')+'"]').removeClass( 'hovering' );
|
1265 |
-
nb_.cachedElements.$window.trigger('scroll');
|
1266 |
-
});
|
1267 |
-
|
1268 |
-
// How to have a logo plus an hamburger in mobiles on the same line?
|
1269 |
-
// => clone the menu module, and append it to the closest sektion-inner wrapper
|
1270 |
-
// => this way it will occupy 100% of the width
|
1271 |
-
// => and also the clone inherits the style of the module
|
1272 |
-
// https://github.com/presscustomizr/nimble-builder/issues/368
|
1273 |
-
var _doMobileMenuSetup = function() {
|
1274 |
-
$( '[data-sek-module-type="czr_menu_module"]' ).find('[data-sek-expand-below="yes"]').each( function() {
|
1275 |
-
// make sure we don't do the setup twice when customizing
|
1276 |
-
if ( true === $(this).data('sek-setup-menu-mobile-expanded-below-done') )
|
1277 |
-
return;
|
1278 |
-
|
1279 |
-
var $_mobile_menu_module = $(this).closest('[data-sek-module-type="czr_menu_module"]').clone(true),
|
1280 |
-
//create a new id for the mobile menu nav collapse that will used by the button toggler too
|
1281 |
-
_new_id = $( '.sek-nav-collapse', this ).attr('id') + '-mobile';
|
1282 |
-
|
1283 |
-
$_mobile_menu_module
|
1284 |
-
/// place the mobile menu at the end of this sektion inner
|
1285 |
-
.appendTo( $(this).closest( '.sek-sektion-inner' ) )
|
1286 |
-
//wrap in a convenient div for styling and targeting
|
1287 |
-
.wrap( '<div class="sek-col-base sek-mobile-menu-expanded-below" id="'+_new_id+'-wrapper"></div>');
|
1288 |
-
|
1289 |
-
// assign the new id to the mobile nav collapse
|
1290 |
-
$( '.sek-nav-collapse', '#'+_new_id+'-wrapper' ).attr( 'id', _new_id );
|
1291 |
-
// add a data attribute so we can target the mobile menu with dynamic css rules
|
1292 |
-
// @needed when coding : https://github.com/presscustomizr/nimble-builder/issues/491
|
1293 |
-
$( '.sek-nav-wrap', '#'+_new_id+'-wrapper' ).attr('data-sek-is-mobile-menu', 'yes');
|
1294 |
-
// remove the duplicate button
|
1295 |
-
$( '.sek-nav-toggler', '#'+_new_id+'-wrapper' ).detach();
|
1296 |
-
// update the toggler button so that will now refer to the "cloned" mobile menu
|
1297 |
-
$( '.sek-nav-toggler', this ).data( 'target', '#' + _new_id )
|
1298 |
-
.attr( 'aria-controls', _new_id );
|
1299 |
-
// flag setup done
|
1300 |
-
$(this).data('sek-setup-menu-mobile-expanded-below-done', true );
|
1301 |
-
});//$.each()
|
1302 |
-
};
|
1303 |
-
_doMobileMenuSetup();
|
1304 |
-
// When previewing, react to level refresh
|
1305 |
-
// This can occur to any level. We listen to the bubbling event on 'body' tag
|
1306 |
-
nb_.cachedElements.$body.on('sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added', function( evt ){
|
1307 |
-
// clean the previously duplicated menu if any
|
1308 |
-
$('.sek-mobile-menu-expanded-below').remove();
|
1309 |
-
_doMobileMenuSetup();
|
1310 |
-
});
|
1311 |
-
|
1312 |
-
});//jQuery( function($){})
|
1313 |
-
|
1314 |
-
};/////////////// callbackFunc
|
1315 |
-
// on 'nb-app-ready', jQuery is loaded
|
1316 |
-
nb_.listenTo('nb-app-ready', callbackFunc );
|
1317 |
-
}(window, document));
|
1318 |
-
|
1319 |
-
// global sekFrontLocalized, nimbleListenTo
|
1320 |
-
/* ------------------------------------------------------------------------- *
|
1321 |
-
* SWIPER CAROUSEL implemented for the simple slider module czr_img_slider_module
|
1322 |
-
* doc : https://swiperjs.com/api/
|
1323 |
-
* dependency : $.fn.nimbleCenterImages()
|
1324 |
-
/* ------------------------------------------------------------------------- */
|
1325 |
-
|
1326 |
-
(function(w, d){
|
1327 |
-
var callbackFunc = function() {
|
1328 |
-
jQuery( function($){
|
1329 |
-
var mySwipers = [];
|
1330 |
-
var triggerSimpleLoad = function( $_imgs ) {
|
1331 |
-
if ( 0 === $_imgs.length )
|
1332 |
-
return;
|
1333 |
-
|
1334 |
-
$_imgs.map( function( _ind, _img ) {
|
1335 |
-
$(_img).load( function () {
|
1336 |
-
$(_img).trigger('simple_load');
|
1337 |
-
});//end load
|
1338 |
-
if ( $(_img)[0] && $(_img)[0].complete )
|
1339 |
-
$(_img).load();
|
1340 |
-
} );//end map
|
1341 |
-
};//end of fn
|
1342 |
-
|
1343 |
-
|
1344 |
-
// Each swiper is instantiated with a unique id
|
1345 |
-
// so that if we have several instance on the same page, they are totally independant.
|
1346 |
-
// If we don't use a unique Id for swiper + navigation buttons, a click on a button, make all slider move synchronously.
|
1347 |
-
var doSingleSwiperInstantiation = function() {
|
1348 |
-
var $swiperWrapper = $(this), swiperClass = 'sek-swiper' + $swiperWrapper.data('sek-swiper-id');
|
1349 |
-
var swiperParams = {
|
1350 |
-
// slidesPerView: 3,
|
1351 |
-
// spaceBetween: 30,
|
1352 |
-
loop : true === $swiperWrapper.data('sek-loop') && true === $swiperWrapper.data('sek-is-multislide'),//Set to true to enable continuous loop mode
|
1353 |
-
grabCursor : true === $swiperWrapper.data('sek-is-multislide'),
|
1354 |
-
on : {
|
1355 |
-
init : function() {
|
1356 |
-
// remove the .sek-swiper-loading class from the wrapper => remove the display:none rule
|
1357 |
-
$swiperWrapper.removeClass('sek-swiper-loading');
|
1358 |
-
|
1359 |
-
// remove the css loader
|
1360 |
-
$swiperWrapper.parent().find('.sek-css-loader').remove();
|
1361 |
-
|
1362 |
-
// lazy load the first slider image with Nimble if not done already
|
1363 |
-
// the other images will be lazy loaded by swiper if the option is activated
|
1364 |
-
// if ( sekFrontLocalized.lazyload_enabled && $.fn.nimbleLazyLoad ) {
|
1365 |
-
|
1366 |
-
// }
|
1367 |
-
$swiperWrapper.trigger('nb-trigger-lazyload');
|
1368 |
-
|
1369 |
-
// center images with Nimble wizard when needed
|
1370 |
-
if ( 'nimble-wizard' === $swiperWrapper.data('sek-image-layout') ) {
|
1371 |
-
$swiperWrapper.find('.sek-carousel-img').each( function() {
|
1372 |
-
var $_imgsToSimpleLoad = $(this).nimbleCenterImages({
|
1373 |
-
enableCentering : 1,
|
1374 |
-
zeroTopAdjust: 0,
|
1375 |
-
setOpacityWhenCentered : false,//will set the opacity to 1
|
1376 |
-
oncustom : [ 'simple_load', 'smartload', 'sek-nimble-refreshed', 'recenter']
|
1377 |
-
})
|
1378 |
-
//images with src which starts with "data" are our smartload placeholders
|
1379 |
-
//we don't want to trigger the simple_load on them
|
1380 |
-
//the centering, will be done on the smartload event (see onCustom above)
|
1381 |
-
.find( 'img:not([src^="data"])' );
|
1382 |
-
|
1383 |
-
//trigger the simple load
|
1384 |
-
nb_.delay( function() {
|
1385 |
-
triggerSimpleLoad( $_imgsToSimpleLoad );
|
1386 |
-
}, 50 );
|
1387 |
-
});//each()
|
1388 |
-
}
|
1389 |
-
},// init
|
1390 |
-
// make sure slides are always lazyloaded
|
1391 |
-
slideChange : function(params) {
|
1392 |
-
// when lazy load is active, we want to lazy load the first image of the slider if offscreen
|
1393 |
-
// img to be lazy loaded looks like data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7
|
1394 |
-
$swiperWrapper.trigger('nb-trigger-lazyload');
|
1395 |
-
|
1396 |
-
if ( $swiperWrapper.find('[src*="data:image/gif;"]').length > 0 ) {
|
1397 |
-
// Make sure we load clean lazy loaded slides on change
|
1398 |
-
// for https://github.com/presscustomizr/nimble-builder/issues/677
|
1399 |
-
$swiperWrapper.find('[src*="data:image/gif;"]').each( function() {
|
1400 |
-
var $img = $(this);
|
1401 |
-
if ( $img.attr('data-sek-img-sizes') ) {
|
1402 |
-
$img.attr('sizes', $img.attr('data-sek-img-sizes') );
|
1403 |
-
$img.removeAttr('data-sek-img-sizes');
|
1404 |
-
}
|
1405 |
-
if ( $img.attr('data-src') ) {
|
1406 |
-
$img.attr('src', $img.attr('data-src') );
|
1407 |
-
$img.removeAttr('data-src');
|
1408 |
-
}
|
1409 |
-
if ( $img.attr('data-sek-src') ) {
|
1410 |
-
$img.attr('src', $img.attr('data-sek-src') );
|
1411 |
-
$img.removeAttr('data-sek-src');
|
1412 |
-
}
|
1413 |
-
if ( $img.attr('data-srcset') ) {
|
1414 |
-
$img.attr('srcset', $img.attr('data-srcset') );
|
1415 |
-
$img.removeAttr('data-srcset');
|
1416 |
-
}
|
1417 |
-
});
|
1418 |
-
}
|
1419 |
-
}
|
1420 |
-
}//on
|
1421 |
-
};
|
1422 |
-
|
1423 |
-
// AUTOPLAY
|
1424 |
-
if ( true === $swiperWrapper.data('sek-autoplay') ) {
|
1425 |
-
$.extend( swiperParams, {
|
1426 |
-
autoplay : {
|
1427 |
-
delay : $swiperWrapper.data('sek-autoplay-delay'),
|
1428 |
-
disableOnInteraction : $swiperWrapper.data('sek-pause-on-hover')
|
1429 |
-
}
|
1430 |
-
});
|
1431 |
-
} else {
|
1432 |
-
$.extend( swiperParams, {
|
1433 |
-
autoplay : {
|
1434 |
-
delay : 999999999//<= the autoplay:false doesn't seem to work...
|
1435 |
-
}
|
1436 |
-
});
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
// NAVIGATION ARROWS && PAGINATION DOTS
|
1440 |
-
if ( true === $swiperWrapper.data('sek-is-multislide') ) {
|
1441 |
-
var navType = $swiperWrapper.data('sek-navtype');
|
1442 |
-
if ( 'arrows_dots' === navType || 'arrows' === navType ) {
|
1443 |
-
$.extend( swiperParams, {
|
1444 |
-
navigation: {
|
1445 |
-
nextEl: '.sek-swiper-next' + $swiperWrapper.data('sek-swiper-id'),
|
1446 |
-
prevEl: '.sek-swiper-prev' + $swiperWrapper.data('sek-swiper-id')
|
1447 |
-
}
|
1448 |
-
});
|
1449 |
-
}
|
1450 |
-
if ( 'arrows_dots' === navType || 'dots' === navType ) {
|
1451 |
-
$.extend( swiperParams, {
|
1452 |
-
pagination: {
|
1453 |
-
el: '.swiper-pagination' + $swiperWrapper.data('sek-swiper-id'),
|
1454 |
-
clickable: true,
|
1455 |
-
}
|
1456 |
-
});
|
1457 |
-
}
|
1458 |
-
}
|
1459 |
-
|
1460 |
-
// LAZYLOAD @see https://swiperjs.com/api/#lazy
|
1461 |
-
if ( true === $swiperWrapper.data('sek-lazyload') ) {
|
1462 |
-
$.extend( swiperParams, {
|
1463 |
-
// Disable preloading of all images
|
1464 |
-
preloadImages: false,
|
1465 |
-
lazy : {
|
1466 |
-
// By default, Swiper will load lazy images after transition to this slide, so you may enable this parameter if you need it to start loading of new image in the beginning of transition
|
1467 |
-
loadOnTransitionStart : true
|
1468 |
-
}
|
1469 |
-
});
|
1470 |
-
}
|
1471 |
-
|
1472 |
-
mySwipers.push( new Swiper(
|
1473 |
-
'.' + swiperClass,//$(this)[0],
|
1474 |
-
swiperParams
|
1475 |
-
));
|
1476 |
-
|
1477 |
-
// On Swiper Lazy Loading
|
1478 |
-
// https://swiperjs.com/api/#lazy
|
1479 |
-
$.each( mySwipers, function( ind, _swiperInstance ){
|
1480 |
-
_swiperInstance.on( 'lazyImageReady', function( slideEl, imageEl ) {
|
1481 |
-
$(imageEl).trigger('recenter');
|
1482 |
-
});
|
1483 |
-
_swiperInstance.on( 'lazyImageLoad', function( slideEl, imageEl ) {
|
1484 |
-
// clean the extra attribute added when preprocessing for lazy loading
|
1485 |
-
var $img = $(imageEl);
|
1486 |
-
if ( $img.attr('data-sek-img-sizes') ) {
|
1487 |
-
$img.attr('sizes', $img.attr('data-sek-img-sizes') );
|
1488 |
-
$img.removeAttr('data-sek-img-sizes');
|
1489 |
-
}
|
1490 |
-
});
|
1491 |
-
});
|
1492 |
-
|
1493 |
-
};
|
1494 |
-
|
1495 |
-
var doAllSwiperInstanciation = function() {
|
1496 |
-
$('.sektion-wrapper').find('[data-sek-swiper-id]').each( function() {
|
1497 |
-
doSingleSwiperInstantiation.call($(this));
|
1498 |
-
});
|
1499 |
-
};
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
// On custom events
|
1504 |
-
nb_.cachedElements.$body.on( 'sek-columns-refreshed sek-modules-refreshed sek-section-added sek-level-refreshed', '[data-sek-level="location"]',
|
1505 |
-
function(evt) {
|
1506 |
-
if ( 0 !== mySwipers.length ) {
|
1507 |
-
$.each( mySwipers, function( ind, _swiperInstance ){
|
1508 |
-
_swiperInstance.destroy();
|
1509 |
-
});
|
1510 |
-
}
|
1511 |
-
mySwipers = [];
|
1512 |
-
doAllSwiperInstanciation();
|
1513 |
-
|
1514 |
-
$(this).find('.swiper-container img').each( function() {
|
1515 |
-
$(this).trigger('sek-nimble-refreshed');
|
1516 |
-
});
|
1517 |
-
}
|
1518 |
-
);
|
1519 |
-
|
1520 |
-
// When the stylesheet is refreshed, update the centering with a custom event
|
1521 |
-
// this is needed when setting the custom height of the slider wrapper
|
1522 |
-
nb_.cachedElements.$body.on( 'sek-stylesheet-refreshed', '[data-sek-module-type="czr_img_slider_module"]',
|
1523 |
-
function() {
|
1524 |
-
$(this).find('.swiper-container img').each( function() {
|
1525 |
-
$(this).trigger('sek-nimble-refreshed');
|
1526 |
-
});
|
1527 |
-
}
|
1528 |
-
);
|
1529 |
-
|
1530 |
-
|
1531 |
-
// on load
|
1532 |
-
$('.sektion-wrapper').find('.swiper-container').each( function() {
|
1533 |
-
doAllSwiperInstanciation();
|
1534 |
-
});
|
1535 |
-
|
1536 |
-
|
1537 |
-
// Action on click
|
1538 |
-
// $( 'body').on( 'click', '[data-sek-module-type="czr_img_slider_module"]', function(evt ) {
|
1539 |
-
// // $(this).find('[data-sek-swiper-id]').each( function() {
|
1540 |
-
// // $(this).trigger('sek-nimble-refreshed');
|
1541 |
-
// // });
|
1542 |
-
// }
|
1543 |
-
// );
|
1544 |
-
|
1545 |
-
|
1546 |
-
// Behaviour on mouse hover
|
1547 |
-
// @seehttps://stackoverflow.com/questions/53028089/swiper-autoplay-stop-the-swiper-when-you-move-the-mouse-cursor-and-start-playba
|
1548 |
-
$('.swiper-slide').on('mouseover mouseout', function( evt ) {
|
1549 |
-
var swiperInstance = $(this).closest('.swiper-container')[0].swiper;
|
1550 |
-
if ( ! nb_.isUndefined( swiperInstance ) && true === swiperInstance.params.autoplay.disableOnInteraction ) {
|
1551 |
-
switch( evt.type ) {
|
1552 |
-
case 'mouseover' :
|
1553 |
-
swiperInstance.autoplay.stop();
|
1554 |
-
break;
|
1555 |
-
case 'mouseout' :
|
1556 |
-
swiperInstance.autoplay.start();
|
1557 |
-
break;
|
1558 |
-
}
|
1559 |
-
}
|
1560 |
-
});
|
1561 |
-
|
1562 |
-
// When customizing, focus on the currently expanded / edited item
|
1563 |
-
// @see CZRItemConstructor in api.czrModuleMap.czr_img_slider_collection_child
|
1564 |
-
if ( window.wp && ! nb_.isUndefined( wp.customize ) ) {
|
1565 |
-
wp.customize.preview.bind('sek-item-focus', function( params ) {
|
1566 |
-
|
1567 |
-
var $itemEl = $('[data-sek-item-id="' + params.item_id +'"]', '.swiper-container').first();
|
1568 |
-
if ( 1 > $itemEl.length )
|
1569 |
-
return;
|
1570 |
-
var $swiperContainer = $itemEl.closest('.swiper-container');
|
1571 |
-
if ( 1 > $swiperContainer.length )
|
1572 |
-
return;
|
1573 |
-
|
1574 |
-
var activeSwiperInstance = $itemEl.closest('.swiper-container')[0].swiper;
|
1575 |
-
|
1576 |
-
if ( nb_.isUndefined( activeSwiperInstance ) )
|
1577 |
-
return;
|
1578 |
-
// we can't rely on internal indexing system of swipe, because it uses duplicate item when infinite looping is enabled
|
1579 |
-
// jQuery is our friend
|
1580 |
-
var slideIndex = $( '.swiper-slide', $swiperContainer ).index( $itemEl );
|
1581 |
-
//http://idangero.us/swiper/api/#methods
|
1582 |
-
//mySwiper.slideTo(index, speed, runCallbacks);
|
1583 |
-
activeSwiperInstance.slideTo( slideIndex, 100 );
|
1584 |
-
});
|
1585 |
-
|
1586 |
-
// Trigger a window resize when control send a 'sek-preview-device-changed'
|
1587 |
-
// wp.customize.preview.bind('sek-preview-device-changed', nb_.debounce( function( params ) {
|
1588 |
-
// nb_.cachedElements.$window.trigger('resize');
|
1589 |
-
// }, 1000 ));
|
1590 |
-
}
|
1591 |
-
});
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
/* ===================================================
|
1604 |
-
* jquerynimbleCenterImages.js v1.0.0
|
1605 |
-
* ( inspired by Customizr theme jQuery plugin )
|
1606 |
-
* ===================================================
|
1607 |
-
* (c) 2019 Nicolas Guillaume, Nice, France
|
1608 |
-
* CenterImages plugin may be freely distributed under the terms of the GNU GPL v2.0 or later license.
|
1609 |
-
*
|
1610 |
-
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
1611 |
-
*
|
1612 |
-
* Center images in a specified container
|
1613 |
-
*
|
1614 |
-
* =================================================== */
|
1615 |
-
(function ( $, window ) {
|
1616 |
-
//defaults
|
1617 |
-
var pluginName = 'nimbleCenterImages',
|
1618 |
-
defaults = {
|
1619 |
-
enableCentering : true,
|
1620 |
-
onresize : true,
|
1621 |
-
onInit : true,//<= shall we smartload on init or wait for a custom event, typically smartload ?
|
1622 |
-
oncustom : [],//list of event here
|
1623 |
-
$containerToListen : null,//<= we might want to listen to custom event trigger to a parent container.Should be a jQuery obj
|
1624 |
-
imgSel : 'img',
|
1625 |
-
defaultCSSVal : { width : 'auto' , height : 'auto' },
|
1626 |
-
leftAdjust : 0,
|
1627 |
-
zeroLeftAdjust : 0,
|
1628 |
-
topAdjust : 0,
|
1629 |
-
zeroTopAdjust : -2,//<= top ajustement for sek-h-centrd
|
1630 |
-
useImgAttr:false,//uses the img height and width attributes if not visible (typically used for the customizr slider hidden images)
|
1631 |
-
setOpacityWhenCentered : false,//this can be used to hide the image during the time it is centered
|
1632 |
-
addCenteredClassWithDelay : 0,//<= a small delay can be required when we rely on the sek-v-centrd or sek-h-centrd css classes to set the opacity for example
|
1633 |
-
opacity : 1
|
1634 |
-
};
|
1635 |
-
|
1636 |
-
function Plugin( element, options ) {
|
1637 |
-
var self = this;
|
1638 |
-
this.container = element;
|
1639 |
-
this.options = $.extend( {}, defaults, options) ;
|
1640 |
-
this._defaults = defaults;
|
1641 |
-
this._name = pluginName;
|
1642 |
-
this._customEvt = $.isArray(self.options.oncustom) ? self.options.oncustom : self.options.oncustom.split(' ');
|
1643 |
-
this.init();
|
1644 |
-
}
|
1645 |
-
|
1646 |
-
//can access this.element and this.option
|
1647 |
-
//@return void
|
1648 |
-
Plugin.prototype.init = function () {
|
1649 |
-
var self = this,
|
1650 |
-
_do = function( _event_ ) {
|
1651 |
-
_event_ = _event_ || 'init';
|
1652 |
-
|
1653 |
-
//parses imgs ( if any ) in current container
|
1654 |
-
var $_imgs = $( self.options.imgSel , self.container );
|
1655 |
-
|
1656 |
-
//if no images or centering is not active, only handle the golden ratio on resize event
|
1657 |
-
if ( 1 <= $_imgs.length && self.options.enableCentering ) {
|
1658 |
-
self._parse_imgs( $_imgs, _event_ );
|
1659 |
-
}
|
1660 |
-
};
|
1661 |
-
|
1662 |
-
//fire
|
1663 |
-
if ( self.options.onInit ) {
|
1664 |
-
_do();
|
1665 |
-
}
|
1666 |
-
|
1667 |
-
//bind the container element with custom events if any
|
1668 |
-
//( the images will also be bound )
|
1669 |
-
if ( $.isArray( self._customEvt ) ) {
|
1670 |
-
self._customEvt.map( function( evt ) {
|
1671 |
-
var $_containerToListen = ( self.options.$containerToListen instanceof $ && 1 < self.options.$containerToListen.length ) ? self.options.$containerToListen : $( self.container );
|
1672 |
-
$_containerToListen.bind( evt, {} , function() {
|
1673 |
-
_do( evt );
|
1674 |
-
});
|
1675 |
-
} );
|
1676 |
-
}
|
1677 |
-
};
|
1678 |
-
|
1679 |
-
|
1680 |
-
//@return void
|
1681 |
-
Plugin.prototype._parse_imgs = function( $_imgs, _event_ ) {
|
1682 |
-
var self = this;
|
1683 |
-
$_imgs.each(function ( ind, img ) {
|
1684 |
-
var $_img = $(img);
|
1685 |
-
self._pre_img_cent( $_img, _event_ );
|
1686 |
-
|
1687 |
-
// IMG CENTERING FN ON RESIZE ?
|
1688 |
-
// Parse Img can be fired several times, so bind once
|
1689 |
-
if ( self.options.onresize && ! $_img.data('resize-react-bound' ) ) {
|
1690 |
-
$_img.data('resize-react-bound', true );
|
1691 |
-
nb_.cachedElements.$window.resize( nb_.debounce( function() {
|
1692 |
-
self._pre_img_cent( $_img, 'resize');
|
1693 |
-
}, 100 ) );
|
1694 |
-
}
|
1695 |
-
|
1696 |
-
});//$_imgs.each()
|
1697 |
-
|
1698 |
-
// Mainly designed to check if a container is not getting parsed too many times
|
1699 |
-
if ( $(self.container).attr('data-img-centered-in-container') ) {
|
1700 |
-
var _n = parseInt( $(self.container).attr('data-img-centered-in-container'), 10 ) + 1;
|
1701 |
-
$(self.container).attr('data-img-centered-in-container', _n );
|
1702 |
-
} else {
|
1703 |
-
$(self.container).attr('data-img-centered-in-container', 1 );
|
1704 |
-
}
|
1705 |
-
};
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
//@return void
|
1710 |
-
Plugin.prototype._pre_img_cent = function( $_img ) {
|
1711 |
-
|
1712 |
-
var _state = this._get_current_state( $_img ),
|
1713 |
-
self = this,
|
1714 |
-
_case = _state.current,
|
1715 |
-
_p = _state.prop[_case],
|
1716 |
-
_not_p = _state.prop[ 'h' == _case ? 'v' : 'h'],
|
1717 |
-
_not_p_dir_val = 'h' == _case ? ( this.options.zeroTopAdjust || 0 ) : ( this.options.zeroLeftAdjust || 0 );
|
1718 |
-
|
1719 |
-
var _centerImg = function( $_img ) {
|
1720 |
-
$_img
|
1721 |
-
.css( _p.dim.name , _p.dim.val )
|
1722 |
-
.css( _not_p.dim.name , self.options.defaultCSSVal[ _not_p.dim.name ] || 'auto' )
|
1723 |
-
.css( _p.dir.name, _p.dir.val ).css( _not_p.dir.name, _not_p_dir_val );
|
1724 |
-
|
1725 |
-
if ( 0 !== self.options.addCenteredClassWithDelay && nb_.isNumber( self.options.addCenteredClassWithDelay ) ) {
|
1726 |
-
nb_.delay( function() {
|
1727 |
-
$_img.addClass( _p._class ).removeClass( _not_p._class );
|
1728 |
-
}, self.options.addCenteredClassWithDelay );
|
1729 |
-
} else {
|
1730 |
-
$_img.addClass( _p._class ).removeClass( _not_p._class );
|
1731 |
-
}
|
1732 |
-
|
1733 |
-
// Mainly designed to check if a single image is not getting parsed too many times
|
1734 |
-
if ( $_img.attr('data-img-centered') ) {
|
1735 |
-
var _n = parseInt( $_img.attr('data-img-centered'), 10 ) + 1;
|
1736 |
-
$_img.attr('data-img-centered', _n );
|
1737 |
-
} else {
|
1738 |
-
$_img.attr('data-img-centered', 1 );
|
1739 |
-
}
|
1740 |
-
return $_img;
|
1741 |
-
};
|
1742 |
-
if ( this.options.setOpacityWhenCentered ) {
|
1743 |
-
$.when( _centerImg( $_img ) ).done( function( $_img ) {
|
1744 |
-
$_img.css( 'opacity', self.options.opacity );
|
1745 |
-
});
|
1746 |
-
} else {
|
1747 |
-
nb_.delay(function() { _centerImg( $_img ); }, 0 );
|
1748 |
-
}
|
1749 |
-
};
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
/********
|
1755 |
-
* HELPERS
|
1756 |
-
*********/
|
1757 |
-
//@return object with initial conditions : { current : 'h' or 'v', prop : {} }
|
1758 |
-
Plugin.prototype._get_current_state = function( $_img ) {
|
1759 |
-
var c_x = $_img.closest(this.container).outerWidth(),
|
1760 |
-
c_y = $(this.container).outerHeight(),
|
1761 |
-
i_x = this._get_img_dim( $_img , 'x'),
|
1762 |
-
i_y = this._get_img_dim( $_img , 'y'),
|
1763 |
-
up_i_x = i_y * c_y !== 0 ? Math.round( i_x / i_y * c_y ) : c_x,
|
1764 |
-
up_i_y = i_x * c_x !== 0 ? Math.round( i_y / i_x * c_x ) : c_y,
|
1765 |
-
current = 'h';
|
1766 |
-
//avoid dividing by zero if c_x or i_x === 0
|
1767 |
-
if ( 0 !== c_x * i_x ) {
|
1768 |
-
current = ( c_y / c_x ) >= ( i_y / i_x ) ? 'h' : 'v';
|
1769 |
-
}
|
1770 |
-
|
1771 |
-
var prop = {
|
1772 |
-
h : {
|
1773 |
-
dim : { name : 'height', val : c_y },
|
1774 |
-
dir : { name : 'left', val : ( c_x - up_i_x ) / 2 + ( this.options.leftAdjust || 0 ) },
|
1775 |
-
_class : 'sek-h-centrd'
|
1776 |
-
},
|
1777 |
-
v : {
|
1778 |
-
dim : { name : 'width', val : c_x },
|
1779 |
-
dir : { name : 'top', val : ( c_y - up_i_y ) / 2 + ( this.options.topAdjust || 0 ) },
|
1780 |
-
_class : 'sek-v-centrd'
|
1781 |
-
}
|
1782 |
-
};
|
1783 |
-
|
1784 |
-
return { current : current , prop : prop };
|
1785 |
-
};
|
1786 |
-
|
1787 |
-
//@return img height or width
|
1788 |
-
//uses the img height and width if not visible and set in options
|
1789 |
-
Plugin.prototype._get_img_dim = function( $_img, _dim ) {
|
1790 |
-
if ( ! this.options.useImgAttr )
|
1791 |
-
return 'x' == _dim ? $_img.outerWidth() : $_img.outerHeight();
|
1792 |
-
|
1793 |
-
if ( $_img.is(":visible") ) {
|
1794 |
-
return 'x' == _dim ? $_img.outerWidth() : $_img.outerHeight();
|
1795 |
-
} else {
|
1796 |
-
if ( 'x' == _dim ){
|
1797 |
-
var _width = $_img.originalWidth();
|
1798 |
-
return typeof _width === undefined ? 0 : _width;
|
1799 |
-
}
|
1800 |
-
if ( 'y' == _dim ){
|
1801 |
-
var _height = $_img.originalHeight();
|
1802 |
-
return typeof _height === undefined ? 0 : _height;
|
1803 |
-
}
|
1804 |
-
}
|
1805 |
-
};
|
1806 |
-
|
1807 |
-
/*
|
1808 |
-
* @params string : ids or classes
|
1809 |
-
* @return boolean
|
1810 |
-
*/
|
1811 |
-
Plugin.prototype._is_selector_allowed = function() {
|
1812 |
-
//has requested sel ?
|
1813 |
-
if ( ! $(this.container).attr( 'class' ) )
|
1814 |
-
return true;
|
1815 |
-
|
1816 |
-
var _elSels = $(this.container).attr( 'class' ).split(' '),
|
1817 |
-
_selsToSkip = [],
|
1818 |
-
_filtered = _elSels.filter( function(classe) { return -1 != $.inArray( classe , _selsToSkip ) ;});
|
1819 |
-
|
1820 |
-
//check if the filtered selectors array with the non authorized selectors is empty or not
|
1821 |
-
//if empty => all selectors are allowed
|
1822 |
-
//if not, at least one is not allowed
|
1823 |
-
return 0 === _filtered.length;
|
1824 |
-
};
|
1825 |
-
|
1826 |
-
|
1827 |
-
// prevents against multiple instantiations
|
1828 |
-
$.fn[pluginName] = function ( options ) {
|
1829 |
-
return this.each(function () {
|
1830 |
-
if (!$.data(this, 'plugin_' + pluginName)) {
|
1831 |
-
$.data(this, 'plugin_' + pluginName,
|
1832 |
-
new Plugin( this, options ));
|
1833 |
-
}
|
1834 |
-
});
|
1835 |
-
};
|
1836 |
-
|
1837 |
-
})( jQuery, window );
|
1838 |
-
};/////////////// callbackFunc
|
1839 |
-
|
1840 |
-
// When loaded with defer, we can not be sure that jQuery will be loaded before
|
1841 |
-
// so let's make sure that we have both the plugin and jQuery loaded
|
1842 |
-
nb_.listenTo( 'nb-app-ready', function() {
|
1843 |
-
// on 'nb-app-ready', jQuery is loaded
|
1844 |
-
nb_.listenTo( 'nb-main-swiper-parsed', callbackFunc );
|
1845 |
-
});
|
1846 |
-
}(window, document));// global sekFrontLocalized, nimbleListenTo
|
1847 |
/* ------------------------------------------------------------------------- *
|
1848 |
* SCROLL LISTENER FOR DYNAMIC ASSET LOADING
|
1849 |
/* ------------------------------------------------------------------------- */
|
@@ -2169,7 +1026,7 @@ window.nb_.getQueryVariable = function(variable) {
|
|
2169 |
nb_.listenTo('nb-jmp-parsed', function() {
|
2170 |
jQuery(function($){
|
2171 |
var $linkCandidates = $('[data-sek-module-type="czr_image_module"]').find('.sek-link-to-img-lightbox');
|
2172 |
-
// Abort if no link candidate
|
2173 |
if ( $linkCandidates.length < 1 )
|
2174 |
return;
|
2175 |
|
@@ -2179,7 +1036,7 @@ window.nb_.getQueryVariable = function(variable) {
|
|
2179 |
if ( $linkCandidate.length < 1 || 'string' !== typeof( $linkCandidate[0].protocol ) || -1 !== $linkCandidate[0].protocol.indexOf('javascript') )
|
2180 |
return;
|
2181 |
// Abort if candidate already setup
|
2182 |
-
if (
|
2183 |
return;
|
2184 |
|
2185 |
try { $linkCandidate.magnificPopup({
|
412 |
};/////////////// callbackFunc
|
413 |
|
414 |
nb_.listenTo('nb-app-ready', callbackFunc );
|
415 |
+
}(window, document));/* ===================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
* jquerynimbleLazyLoad.js v1.0.0
|
417 |
* ===================================================
|
418 |
*
|
701 |
if ( sekFrontLocalized.lazyload_enabled || nb_.isCustomizing() ) { nb_.emit('nb-lazyload-parsed'); }
|
702 |
});
|
703 |
}(window, document));// global sekFrontLocalized, nimbleListenTo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
704 |
/* ------------------------------------------------------------------------- *
|
705 |
* SCROLL LISTENER FOR DYNAMIC ASSET LOADING
|
706 |
/* ------------------------------------------------------------------------- */
|
1026 |
nb_.listenTo('nb-jmp-parsed', function() {
|
1027 |
jQuery(function($){
|
1028 |
var $linkCandidates = $('[data-sek-module-type="czr_image_module"]').find('.sek-link-to-img-lightbox');
|
1029 |
+
// Abort if no link candidate
|
1030 |
if ( $linkCandidates.length < 1 )
|
1031 |
return;
|
1032 |
|
1036 |
if ( $linkCandidate.length < 1 || 'string' !== typeof( $linkCandidate[0].protocol ) || -1 !== $linkCandidate[0].protocol.indexOf('javascript') )
|
1037 |
return;
|
1038 |
// Abort if candidate already setup
|
1039 |
+
if ( $linkCandidate.data('nimble-mfp-done') )
|
1040 |
return;
|
1041 |
|
1042 |
try { $linkCandidate.magnificPopup({
|
assets/front/js/ccat-nimble-front.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
void 0===window.nb_&&window.console&&window.console.log&&console.log("Nimble error => window.nb_ global not instantiated"),window.nb_.getQueryVariable=function(e){for(var n=window.location.search.substring(1).split("&"),t=0;t<n.length;t++){var i=n[t].split("=");if(i[0]==e)return i[1]}return!1},window,document,nb_.listenTo("nb-jquery-loaded",function(){jQuery(function(d){jQuery.each(["Arguments","Function","String","Number","Date","RegExp","Error","Symbol","Map","WeakMap","Set","WeakSet"],function(e,n){window.nb_["is"+n]=function(e){return Object.prototype.toString.call(e)==="[object "+n+"]"}});var a,o,u=function(){return Date.now||(new Date).getTime()};d.extend(nb_,{cachedElements:{$window:d(window),$body:d("body")},isMobile:function(){return nb_.isFunction(window.matchMedia)&&matchMedia("only screen and (max-width: 768px)").matches||this.isCustomizing()&&"desktop"!=this.previewedDevice},isCustomizing:function(){return this.cachedElements.$body.hasClass("is-customizing")||"undefined"!=typeof wp&&void 0!==wp.customize},previewedDevice:"desktop",elOrFirstVisibleParentIsInWindow:function(e,n){var t=e instanceof d?e:d(e);if(t instanceof d){if(!n||nb_.isNumber(n)){var i=function(e){if(0<e.length&&e.is(":visible"))return e;var n=e.prev();if(0<n.length&&n.is(":visible"))return n;if(0<n.length&&!n.is(":visible"))return i(n);var t=e.parent();return 0<t.length?i(t):null},a=i(t);if(!a||a.length<1)return!1;var o=this.cachedElements.$window.scrollTop(),s=o+this.cachedElements.$window.height(),r=a.offset().top,l=n||0;return o-l<=r+a.height()&&r<=s+l}nb_.errorLog("invalid threshold in nb_.elOrFirstVisibleParentIsInWindow")}else nb_.errorLog("invalid element in nb_.elOrFirstVisibleParentIsInWindow",t)},has:function(e,n){if(!_.isArray(n))return null!=e&&hasOwnProperty.call(e,n);for(var t=n.length,i=0;i<t;i++){var a=n[i];if(null==e||!Object.prototype.hasOwnProperty.call(e,a))return!1;e=e[a]}return!!t},debounce:function(i,a,o){var s;return function(){var e=this,n=arguments,t=o&&!s;clearTimeout(s),s=setTimeout(function(){s=null,o||i.apply(e,n)},a),t&&i.apply(e,n)}},throttle:function(t,i,a){var o,s,r,l,d=0;a||(a={});var c=function(){d=!1===a.leading?0:u(),o=null,l=t.apply(s,r),o||(s=r=null)},e=function(){var e=u();d||!1!==a.leading||(d=e);var n=i-(e-d);return s=this,r=arguments,n<=0||i<n?(o&&(clearTimeout(o),o=null),d=e,l=t.apply(s,r),o||(s=r=null)):o||!1===a.trailing||(o=setTimeout(c,n)),l};return e.cancel=function(){clearTimeout(o),d=0,o=s=r=null},e},delay:(a=function(e,n,t){return setTimeout(function(){return e.apply(null,t)},n)},o=null==o?a.length-1:+o,function(){for(var e=Math.max(arguments.length-o,0),n=Array(e),t=0;t<e;t++)n[t]=arguments[t+o];switch(o){case 0:return a.call(this,n);case 1:return a.call(this,arguments[0],n);case 2:return a.call(this,arguments[0],arguments[1],n)}var i=Array(o+1);for(t=0;t<o;t++)i[t]=arguments[t];return i[o]=n,a.apply(this,i)})}),nb_.emit("nb-app-ready")})}),window,document,nb_.listenTo("nb-app-ready",function(){var a;(a=jQuery).fn.fitText=function(e,n){var t=e||1,i=a.extend({minFontSize:Number.NEGATIVE_INFINITY,maxFontSize:Number.POSITIVE_INFINITY},n);return this.each(function(){var e=a(this),n=function(){e.css("font-size",Math.max(Math.min(e.width()/(10*t),parseFloat(i.maxFontSize)),parseFloat(i.minFontSize)))};n(),nb_.cachedElements.$window.on("resize.fittext orientationchange.fittext",n)})}}),window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(o){var s=function(e){var n=document.createElement("a");n.href=e,n.href=n.href;for(var t=["host","hostname","hash","href","port","protocol","search"],i=0,a=t.length;i<a;i++)this[t[i]]=n[t[i]];this.pathname=("/"!==n.pathname.charAt(0)?"/":"")+n.pathname},n=o("html, body");window.nb_allImagesLazyLoadedForScrollToAnchor=!1;var r=function(){var e=o(this);"scrollBehavior"in document.documentElement.style?e[0].scrollIntoView({behavior:"smooth"}):n.animate({scrollTop:e.offset().top-150},400)},t=0,l=function(){var e=o(this);o("img[data-sek-src]").not(".sek-lazy-load-error").length<1?(window.nb_allImagesLazyLoadedForScrollToAnchor=!0,r.call(e)):t<20?(t++,nb_.delay(function(){l.call(e)},100),nb_.delay(function(){r.call(e)},200)):r.call(e)},e=function(e){var n=o(this).attr("href");if(""!==n&&null!==n&&"string"==typeof n&&-1!==n.indexOf("#")){var t=new s(n),i=new s(window.document.location.href);if(t.pathname===i.pathname&&"string"==typeof t.hash&&""!==t.hash){var a=o('[data-sek-level="location"]').find('[id="'+t.hash.replace("#","")+'"]');1===a.length&&(e.preventDefault(),sekFrontLocalized.lazyload_enabled&&!1===window.nb_allImagesLazyLoadedForScrollToAnchor&&0<o("img[data-sek-src]").not(".sek-lazy-load-error").length?(o("body").one("smartload","img",function(){l.call(a)}),o("img[data-sek-src]").trigger("sek_load_img")):r.call(a))}}};nb_.cachedElements.$body.find(".menu-item").on("click","a",e),o('[data-sek-level="location"]').on("click","a",e)})}),window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(i){i("body").on("click sek-expand-accord-item",".sek-accord-item > .sek-accord-title",function(e){var n=i(this).closest(".sek-accord-item"),t=i(this).closest(".sek-accord-wrapper");"true"==t.data("sek-one-expanded")+""&&t.find(".sek-accord-item").not(n).each(function(){var e=i(this);e.find(".sek-accord-content").stop(!0,!0).slideUp({duration:200,start:function(){"true"==e.attr("data-sek-expanded")+""&&e.find(".sek-accord-content").css("display","block"),e.attr("data-sek-expanded","false")}})}),"sek-expand-accord-item"===e.type&&"true"==n.attr("data-sek-expanded")+""||n.find(".sek-accord-content").stop(!0,!0).slideToggle({duration:200,start:function(){"true"==n.attr("data-sek-expanded")+""&&n.find(".sek-accord-content").css("display","block"),n.attr("data-sek-expanded","false"==n.attr("data-sek-expanded")+""?"true":"false"),n.trigger("true"==n.attr("data-sek-expanded")?"sek-accordion-expanded":"sek-accordion-collapsed")}})}),window.wp&&!nb_.isUndefined(wp.customize)&&wp.customize.preview.bind("sek-item-focus",function(e){var n=i('[data-sek-item-id="'+e.item_id+'"]',".sek-accord-wrapper").first();n.length<1||n.find(".sek-accord-title").trigger("sek-expand-accord-item")})})}),window,document,nb_.listenTo("nb-app-ready",function(){!function(t,r){var i="parallaxBg",a={parallaxForce:40,oncustom:[],matchMedia:"only screen and (max-width: 800px)"};function n(e,n){this.element=t(e),this.options=t.extend({},a,n,this.parseElementDataOptions()),this._defaults=a,this._name=i,this.init()}n.prototype.parseElementDataOptions=function(){return this.element.data()},n.prototype.init=function(){var n=this;this.$_window=nb_.cachedElements.$window,this.doingAnimation=!1,this.isVisible=!1,this.isBefore=!1,this.isAfter=!0,("number"!=typeof n.options.parallaxForce||n.options.parallaxForce<0)&&(sekFrontLocalized.isDevMode&&console.log("parallaxBg => the provided parallaxForce is invalid => "+n.options.parallaxForce),n.options.parallaxForce=this._defaults.parallaxForce),100<n.options.parallaxForce&&(n.options.parallaxForce=100),this.$_window.scroll(function(e){n.maybeParallaxMe(e)}),this.$_window.resize(nb_.debounce(function(e){n.maybeParallaxMe(e)},100)),this.checkIfIsVisibleAndCacheProperties(),this.setTopPositionAndBackgroundSize()},n.prototype.setTopPositionAndBackgroundSize=function(){if(nb_.isFunction(r.matchMedia)&&matchMedia(this.options.matchMedia).matches)this.element.css({"background-position-y":"","background-attachment":""});else{var e=this.element,n=(e.outerHeight(),this.$_window.height()),t=e.offset().top,i=this.$_window.scrollTop(),a=100;this.isVisible?a=(t-i)/n:this.isBefore?a=1:this.isAfter&&(a=-1);var o=0<this.options.parallaxForce?n*(100-this.options.parallaxForce)/100:n,s=Math.round(a*o);this.element.css({"background-position-y":["calc(50% ",0<s?"+ ":"- ",Math.abs(s)+"px)"].join("")})}},n.prototype.checkIfIsVisibleAndCacheProperties=function(e){var n=this.element;if(!n.is(":visible"))return!1;var t=this.$_window.scrollTop(),i=t+this.$_window.height(),a=n.offset().top,o=a+n.outerHeight();return this.isVisible=t<=o&&a<=i,this.isBefore=i<a,this.isAfter=o<t,this.isVisible},n.prototype.maybeParallaxMe=function(e){var n=this;this.checkIfIsVisibleAndCacheProperties()&&(this.doingAnimation||(this.doingAnimation=!0,r.requestAnimationFrame(function(){n.setTopPositionAndBackgroundSize(),n.doingAnimation=!1})))},t.fn[i]=function(e){return this.each(function(){t.data(this,"plugin_"+i)||t.data(this,"plugin_"+i,new n(this,e))})}}(jQuery,window),nb_.emit("nb-parallax-parsed")}),window,document,nb_.listenTo("nb-app-ready",function(){!function(r,t){var a="nimbleLazyLoad",o={load_all_images_on_first_scroll:!1,threshold:100,fadeIn_options:{duration:400},delaySmartLoadEvent:0,candidateSelectors:"[data-sek-src], [data-sek-iframe-src]",force:!1},l="sek-lazy-loaded";function n(e,n){this.element=e,this.options=r.extend({},o,n);var t=sekFrontLocalized.lazyload_enabled;if(this.options.force&&(t=!0),t)if(r(this.element).data("nimbleLazyLoadDone"))r(this.element).trigger("nb-trigger-lazyload");else{this._defaults=o,this._name=a;var i=this;r(this.element).on("nb-trigger-lazyload",function(){i._maybe_trigger_load("nb-trigger-lazyload")}),this.init()}}n.prototype._getCandidateEls=function(){return r(this.options.candidateSelectors,this.element)},n.prototype.init=function(){var n=this;r("body").on("sek_load_img sek_load_iframe",n.options.candidateSelectors,function(e){!0!==r(this).data("sek-lazy-loaded")&&("sek_load_img"===e.type?n._load_img(this):"sek_load_iframe"===e.type&&n._load_iframe(this))}),nb_.cachedElements.$window.scroll(function(e){n._better_scroll_event_handler(e)}),nb_.cachedElements.$window.resize(nb_.debounce(function(e){n._maybe_trigger_load(e)},100)),this._maybe_trigger_load("dom-ready"),r(this.element).data("nimbleLazyLoadDone",!0)},n.prototype._better_scroll_event_handler=function(e){var n=this;this.doingAnimation||(this.doingAnimation=!0,t.requestAnimationFrame(function(){n._maybe_trigger_load(e),n.doingAnimation=!1}))},n.prototype._maybe_trigger_load=function(t){var i=this,e=i._getCandidateEls(),a=t&&"scroll"===t.type?this.options.threshold:0;_visible_list=e.filter(function(e,n){return!(!t||"scroll"!=t.type||!i.options.load_all_images_on_first_scroll)||nb_.elOrFirstVisibleParentIsInWindow(n,a)}),_visible_list.map(function(e,n){!0!==r(n).data("sek-lazy-loaded")&&("IFRAME"===r(n).prop("tagName")?r(n).trigger("sek_load_iframe"):r(n).trigger("sek_load_img"))})},n.prototype._load_img=function(e){var t=r(e);if(t.attr("data-sek-src")&&!t.hasClass(l)&&!t.hasClass("lazy-loading")){var n=t.attr("data-sek-src"),i=t.attr("data-sek-srcset"),a=t.attr("data-sek-sizes"),o=this,s=r("<img />",{src:n});t.addClass("lazy-loading"),t.unbind("sek_load_img"),s.on("load",function(){t.removeAttr(["data-sek-src","data-sek-srcset","data-sek-sizes"].join(" ")),t.data("sek-lazy-bg")?t.css("backgroundImage","url("+n+")"):(t.attr("src",n),i&&t.attr("srcset",i),a&&t.attr("sizes",a)),t.hasClass(l)||t.addClass(l),t.trigger("smartload"),t.data("sek-lazy-loaded",!0),o._clean_css_loader(t)}).on("error",function(e,n){t.addClass("sek-lazy-load-error")}),s[0].complete&&s.trigger("load"),t.removeClass("lazy-loading")}},n.prototype._clean_css_loader=function(e){r.each([e.find(".sek-css-loader"),e.parent().find(".sek-css-loader")],function(e,n){0<n.length&&n.remove()})},n.prototype._load_iframe=function(e){var n=r(e);n.unbind("sek_load_iframe"),n.attr("src",function(){var e=r(this).attr("data-sek-iframe-src");return r(this).removeAttr("data-sek-iframe-src"),n.data("sek-lazy-loaded",!0),n.trigger("smartload"),n.hasClass(l)||n.addClass(l),e})},r.fn[a]=function(e){return this.each(function(){r.data(this,"plugin_"+a)||r.data(this,"plugin_"+a,new n(this,e))})}}(jQuery,window),(sekFrontLocalized.lazyload_enabled||nb_.isCustomizing())&&nb_.emit("nb-lazyload-parsed")}),window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(d){var e,o,s,r,l,c,n,u,t,h,i,a,p,f,m,_,g,b,w;a={PLACE_ME:"placeme"+(i="."+(h="sek.sekDropdown")),PLACE_ALL:"placeall"+i,SHOWN:"shown"+i,SHOW:"show"+i,HIDDEN:"hidden"+i,HIDE:"hide"+i,CLICK:"click"+i,TAP:"tap"+i},p="sek-dropdown-menu",f="sek-dropdown-submenu",m="show",_="menu-item-has-children",g='[data-toggle="sek-dropdown"]',w=b=".sek-nav-wrap .menu-item-has-children",d(".sek-nav .children, .sek-nav .sub-menu").addClass(p),d(".sek-nav-wrap .page_item_has_children").addClass(_),d(".sek-nav ."+p+" ."+_).addClass(f),n=b,d(document).on("mouseenter",n,function(){var n=d(this);nb_.debounce(function(){if("static"==n.find("."+p).css("position"))return!1;if(!n.hasClass(m)){n.trigger(a.SHOW).addClass(m).trigger(a.SHOWN);var e=n.children(g);e.length&&e[0].setAttribute("aria-expanded","true")}},30)()}).on("mouseleave",n,function(){var n=d(this);nb_.debounce(function(){if(n.find("ul li:hover").length<1&&!n.closest("ul").find("li:hover").is(n)){n.trigger(a.HIDE).removeClass(m).trigger(a.HIDDEN);var e=n.children(g);e.length&&e[0].setAttribute("aria-expanded","false")}},30)()}),u="rtl"===d("html").attr("dir"),t=!1,nb_.cachedElements.$window.on("resize",function(){t||(t=!0,window.requestAnimationFrame(function(){d(w+"."+m).trigger(a.PLACE_ME),t=!1}))}),d(document).on(a.PLACE_ALL,function(){d(w).trigger(a.PLACE_ME)}).on(a.SHOWN+" "+a.PLACE_ME,w,function(e){e.stopPropagation(),function(e,n){if(n&&n.namespace&&h===n.namespace){var t,i,a,o,s,r,l=e.children("."+p);l.length&&(e.css("overflow","hidden"),l.css({zIndex:"-100",display:"block"}),i=e,a=u?{_DEFAULT:"left",_OPPOSITE:"right"}:{_DEFAULT:"right",_OPPOSITE:"left"},o={OPEN_PREFIX:"open-",DD_SUBMENU:"sek-dropdown-submenu",CARET_TITLE_FLIP:"sek-menu-link__row-reverse",DROPDOWN:"sek-dropdown-menu"},s=function(e,t,n){d.each(e,function(){var e=d(this),n=e.find("a").first();1==n.length&&n.toggleClass(o.CARET_TITLE_FLIP,t==a._OPPOSITE)})},r=function(e){var n=e==a._OPPOSITE?a._DEFAULT:a._OPPOSITE;t.removeClass(o.OPEN_PREFIX+n).addClass(o.OPEN_PREFIX+e),i.hasClass(o.DD_SUBMENU)&&(s(i,e,n),s(t.children("."+o.DD_SUBMENU),e,n))},(t=l).parent().closest("."+o.DROPDOWN).hasClass(o.OPEN_PREFIX+a._OPPOSITE)?r(a._OPPOSITE):r(a._DEFAULT),t.offset().left+t.width()>nb_.cachedElements.$window.width()?r("left"):t.offset().left<0&&r("right"),l.css({zIndex:"",display:""}),e.css("overflow",""))}}(d(this),e)}),o={SHOW:"show"+(e=".sek.sekCollapse"),SHOWN:"shown"+e,HIDE:"hide"+e,HIDDEN:"hidden"+e,CLICK_DATA_API:"click"+e+".data-api"},s="show",r="sek-collapse",l="sek-collapsing",c="sek-collapsed",d(document).on(o.CLICK_DATA_API,'[data-sek-toggle="sek-collapse"]',function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var n=d(this),t=n.data("target");d(t).each(function(){var i=d(this),a=i.hasClass(s);i.stop()[a?"slideUp":"slideDown"]({duration:400,start:function(){i.addClass(l).trigger(a?o.HIDE:o.SHOW),a?n.addClass(c).attr("aria-expanded","false"):n.removeClass(c).attr("aria-expanded","true")},complete:function(){var e,n,t;t=a?(e=s,n=r,o.HIDDEN):(e=r,n=s,o.SHOWN),i.removeClass(l+" "+e).addClass(n).trigger(t),function(e){(e=e||d(this)).css({display:"",paddingTop:"",marginTop:"",paddingBottom:"",marginBottom:"",height:""})}(i)}})})}),d(document).on("mouseenter",".sek-nav-toggler",function(){d(this).addClass("hovering")}).on("mouseleave",".sek-nav-toggler",function(){d(this).removeClass("hovering")}).on("show.sek.sekCollapse hide.sek.sekCollapse",".sek-nav-collapse",function(){d('[data-target="#'+d(this).attr("id")+'"]').removeClass("hovering"),nb_.cachedElements.$window.trigger("scroll")});var k=function(){d('[data-sek-module-type="czr_menu_module"]').find('[data-sek-expand-below="yes"]').each(function(){if(!0!==d(this).data("sek-setup-menu-mobile-expanded-below-done")){var e=d(this).closest('[data-sek-module-type="czr_menu_module"]').clone(!0),n=d(".sek-nav-collapse",this).attr("id")+"-mobile";e.appendTo(d(this).closest(".sek-sektion-inner")).wrap('<div class="sek-col-base sek-mobile-menu-expanded-below" id="'+n+'-wrapper"></div>'),d(".sek-nav-collapse","#"+n+"-wrapper").attr("id",n),d(".sek-nav-wrap","#"+n+"-wrapper").attr("data-sek-is-mobile-menu","yes"),d(".sek-nav-toggler","#"+n+"-wrapper").detach(),d(".sek-nav-toggler",this).data("target","#"+n).attr("aria-controls",n),d(this).data("sek-setup-menu-mobile-expanded-below-done",!0)}})};k(),nb_.cachedElements.$body.on("sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added",function(e){d(".sek-mobile-menu-expanded-below").remove(),k()})})}),function(e,n){var t=function(){jQuery(function(o){var a=[],e=function(){var n=o(this),e="sek-swiper"+n.data("sek-swiper-id"),t={loop:!0===n.data("sek-loop")&&!0===n.data("sek-is-multislide"),grabCursor:!0===n.data("sek-is-multislide"),on:{init:function(){n.removeClass("sek-swiper-loading"),n.parent().find(".sek-css-loader").remove(),n.trigger("nb-trigger-lazyload"),"nimble-wizard"===n.data("sek-image-layout")&&n.find(".sek-carousel-img").each(function(){var n=o(this).nimbleCenterImages({enableCentering:1,zeroTopAdjust:0,setOpacityWhenCentered:!1,oncustom:["simple_load","smartload","sek-nimble-refreshed","recenter"]}).find('img:not([src^="data"])');nb_.delay(function(){var e;0!==(e=n).length&&e.map(function(e,n){o(n).load(function(){o(n).trigger("simple_load")}),o(n)[0]&&o(n)[0].complete&&o(n).load()})},50)})},slideChange:function(e){n.trigger("nb-trigger-lazyload"),0<n.find('[src*="data:image/gif;"]').length&&n.find('[src*="data:image/gif;"]').each(function(){var e=o(this);e.attr("data-sek-img-sizes")&&(e.attr("sizes",e.attr("data-sek-img-sizes")),e.removeAttr("data-sek-img-sizes")),e.attr("data-src")&&(e.attr("src",e.attr("data-src")),e.removeAttr("data-src")),e.attr("data-sek-src")&&(e.attr("src",e.attr("data-sek-src")),e.removeAttr("data-sek-src")),e.attr("data-srcset")&&(e.attr("srcset",e.attr("data-srcset")),e.removeAttr("data-srcset"))})}}};if(!0===n.data("sek-autoplay")?o.extend(t,{autoplay:{delay:n.data("sek-autoplay-delay"),disableOnInteraction:n.data("sek-pause-on-hover")}}):o.extend(t,{autoplay:{delay:999999999}}),!0===n.data("sek-is-multislide")){var i=n.data("sek-navtype");"arrows_dots"!==i&&"arrows"!==i||o.extend(t,{navigation:{nextEl:".sek-swiper-next"+n.data("sek-swiper-id"),prevEl:".sek-swiper-prev"+n.data("sek-swiper-id")}}),"arrows_dots"!==i&&"dots"!==i||o.extend(t,{pagination:{el:".swiper-pagination"+n.data("sek-swiper-id"),clickable:!0}})}!0===n.data("sek-lazyload")&&o.extend(t,{preloadImages:!1,lazy:{loadOnTransitionStart:!0}}),a.push(new Swiper("."+e,t)),o.each(a,function(e,n){n.on("lazyImageReady",function(e,n){o(n).trigger("recenter")}),n.on("lazyImageLoad",function(e,n){var t=o(n);t.attr("data-sek-img-sizes")&&(t.attr("sizes",t.attr("data-sek-img-sizes")),t.removeAttr("data-sek-img-sizes"))})})},n=function(){o(".sektion-wrapper").find("[data-sek-swiper-id]").each(function(){e.call(o(this))})};nb_.cachedElements.$body.on("sek-columns-refreshed sek-modules-refreshed sek-section-added sek-level-refreshed",'[data-sek-level="location"]',function(e){0!==a.length&&o.each(a,function(e,n){n.destroy()}),a=[],n(),o(this).find(".swiper-container img").each(function(){o(this).trigger("sek-nimble-refreshed")})}),nb_.cachedElements.$body.on("sek-stylesheet-refreshed",'[data-sek-module-type="czr_img_slider_module"]',function(){o(this).find(".swiper-container img").each(function(){o(this).trigger("sek-nimble-refreshed")})}),o(".sektion-wrapper").find(".swiper-container").each(function(){n()}),o(".swiper-slide").on("mouseover mouseout",function(e){var n=o(this).closest(".swiper-container")[0].swiper;if(!nb_.isUndefined(n)&&!0===n.params.autoplay.disableOnInteraction)switch(e.type){case"mouseover":n.autoplay.stop();break;case"mouseout":n.autoplay.start()}}),window.wp&&!nb_.isUndefined(wp.customize)&&wp.customize.preview.bind("sek-item-focus",function(e){var n=o('[data-sek-item-id="'+e.item_id+'"]',".swiper-container").first();if(!(n.length<1)){var t=n.closest(".swiper-container");if(!(t.length<1)){var i=n.closest(".swiper-container")[0].swiper;if(!nb_.isUndefined(i)){var a=o(".swiper-slide",t).index(n);i.slideTo(a,100)}}}})}),function(l,e){var t="nimbleCenterImages",i={enableCentering:!0,onresize:!0,onInit:!0,oncustom:[],$containerToListen:null,imgSel:"img",defaultCSSVal:{width:"auto",height:"auto"},leftAdjust:0,zeroLeftAdjust:0,topAdjust:0,zeroTopAdjust:-2,useImgAttr:!1,setOpacityWhenCentered:!1,addCenteredClassWithDelay:0,opacity:1};function n(e,n){this.container=e,this.options=l.extend({},i,n),this._defaults=i,this._name=t,this._customEvt=l.isArray(this.options.oncustom)?this.options.oncustom:this.options.oncustom.split(" "),this.init()}n.prototype.init=function(){var t=this,n=function(e){e=e||"init";var n=l(t.options.imgSel,t.container);1<=n.length&&t.options.enableCentering&&t._parse_imgs(n,e)};t.options.onInit&&n(),l.isArray(t._customEvt)&&t._customEvt.map(function(e){(t.options.$containerToListen instanceof l&&1<t.options.$containerToListen.length?t.options.$containerToListen:l(t.container)).bind(e,{},function(){n(e)})})},n.prototype._parse_imgs=function(e,i){var a=this;if(e.each(function(e,n){var t=l(n);a._pre_img_cent(t,i),a.options.onresize&&!t.data("resize-react-bound")&&(t.data("resize-react-bound",!0),nb_.cachedElements.$window.resize(nb_.debounce(function(){a._pre_img_cent(t,"resize")},100)))}),l(a.container).attr("data-img-centered-in-container")){var n=parseInt(l(a.container).attr("data-img-centered-in-container"),10)+1;l(a.container).attr("data-img-centered-in-container",n)}else l(a.container).attr("data-img-centered-in-container",1)},n.prototype._pre_img_cent=function(e){var n=this._get_current_state(e),t=this,i=n.current,a=n.prop[i],o=n.prop["h"==i?"v":"h"],s="h"==i?this.options.zeroTopAdjust||0:this.options.zeroLeftAdjust||0,r=function(e){if(e.css(a.dim.name,a.dim.val).css(o.dim.name,t.options.defaultCSSVal[o.dim.name]||"auto").css(a.dir.name,a.dir.val).css(o.dir.name,s),0!==t.options.addCenteredClassWithDelay&&nb_.isNumber(t.options.addCenteredClassWithDelay)?nb_.delay(function(){e.addClass(a._class).removeClass(o._class)},t.options.addCenteredClassWithDelay):e.addClass(a._class).removeClass(o._class),e.attr("data-img-centered")){var n=parseInt(e.attr("data-img-centered"),10)+1;e.attr("data-img-centered",n)}else e.attr("data-img-centered",1);return e};this.options.setOpacityWhenCentered?l.when(r(e)).done(function(e){e.css("opacity",t.options.opacity)}):nb_.delay(function(){r(e)},0)},n.prototype._get_current_state=function(e){var n=e.closest(this.container).outerWidth(),t=l(this.container).outerHeight(),i=this._get_img_dim(e,"x"),a=this._get_img_dim(e,"y"),o=a*t!=0?Math.round(i/a*t):n,s=i*n!=0?Math.round(a/i*n):t,r="h";return 0!=n*i&&(r=a/i<=t/n?"h":"v"),{current:r,prop:{h:{dim:{name:"height",val:t},dir:{name:"left",val:(n-o)/2+(this.options.leftAdjust||0)},_class:"sek-h-centrd"},v:{dim:{name:"width",val:n},dir:{name:"top",val:(t-s)/2+(this.options.topAdjust||0)},_class:"sek-v-centrd"}}}},n.prototype._get_img_dim=function(e,n){if(!this.options.useImgAttr)return"x"==n?e.outerWidth():e.outerHeight();if(e.is(":visible"))return"x"==n?e.outerWidth():e.outerHeight();if("x"==n){var t=e.originalWidth();return void 0===typeof t?0:t}if("y"==n){var i=e.originalHeight();return void 0===typeof i?0:i}},n.prototype._is_selector_allowed=function(){if(!l(this.container).attr("class"))return!0;var e=l(this.container).attr("class").split(" "),n=[];return 0===e.filter(function(e){return-1!=l.inArray(e,n)}).length},l.fn[t]=function(e){return this.each(function(){l.data(this,"plugin_"+t)||l.data(this,"plugin_"+t,new n(this,e))})}}(jQuery,window)};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-main-swiper-parsed",t)})}(window,document),window,document,nb_.loadAssetWhenElementVisible=function(a,n){jQuery(function(t){if(!nb_.scrollHandlers[a].loaded){nb_.scrollHandlers[a].loaded=!1;var e=n.elements,i=n.func;t.each(e,function(e,n){!nb_.scrollHandlers[a].loaded&&nb_.elOrFirstVisibleParentIsInWindow(t(n))&&(i(),nb_.scrollHandlers[a].loaded=!0)}),n.scrollHandler&&nb_.scrollHandlers[a].loaded&&nb_.cachedElements.$window.unbind("scroll",n.scrollHandler)}})},nb_.loopOnScrollHandlers=function(){jQuery(function(e){e.each(nb_.scrollHandlers,function(e,n){if(n.loaded)return!0;var t=sekFrontLocalized.load_front_assets_on_scroll;if(!0===n.force_loading&&(t=!0),t){if(n.elements.length<1)return!0;try{nb_.loadAssetWhenElementVisible(e,n)}catch(e){nb_.errorLog("Nimble error => nb_.loopOnScrollHandlers",e,n)}nb_.isFunction(n.func)&&nb_.isUndefined(n.scrollHandler)?(n.scrollHandler=nb_.throttle(function(){try{nb_.loadAssetWhenElementVisible(e,n)}catch(e){nb_.errorLog("Nimble error => nb_.loopOnScrollHandlers",e,n)}},100),nb_.cachedElements.$window.on("scroll",n.scrollHandler)):nb_.isFunction(n.func)||nb_.errorLog("Nimble error => nb_.loopOnScrollHandlers => wrong callback func param",n)}})})},nb_.listenTo("nb-app-ready",function(){jQuery(function(e){nb_.listenTo("nimble-new-scroll-handler-added",nb_.loopOnScrollHandlers)})}),window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(t){nb_.maybeLoadAssetsWhenSelectorInScreen=function(e){if((e=t.extend({id:"",elements:"",func:""},e)).id.length<1)nb_.errorLog("Nimble error => maybeLoadAssetsWhenSelectorInScreen => missing id",e);else if(!(t(e.elements).length<1)&&nb_.isFunction(e.func)){nb_.scrollHandlers=nb_.scrollHandlers||{};var n={elements:e.elements,func:e.func,force_loading:e.force_loading};nb_.scrollHandlers[e.id]=n,nb_.emit("nimble-new-scroll-handler-added",{fire_once:!1})}},nb_.emit("nimble-ready-to-load-assets-on-scroll")})}),function(e,n){var t=function(){jQuery(function(e){if(sekFrontLocalized.load_front_assets_on_scroll){var n=e('[data-sek-module-type="czr_image_module"]').find(".sek-link-to-img-lightbox");if(!(n.length<1)){nb_.maybeLoadAssetsWhenSelectorInScreen({id:"magnific-popup",elements:n,func:function(){e("head").find("#czr-magnific-popup").length<1&&e("head").append(e("<link/>",{rel:"stylesheet",id:"czr-magnific-popup",type:"text/css",href:sekFrontLocalized.frontAssetsPath+"css/libs/magnific-popup.min.css?"+sekFrontLocalized.assetVersion})),!nb_.isFunction(e.fn.magnificPopup)&&sekFrontLocalized.load_front_assets_on_scroll&&nb_.ajaxLoadScript({path:"js/libs/jquery-magnific-popup.min.js",loadcheck:function(){return nb_.isFunction(e.fn.magnificPopup)}})}})}}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-magnific-popup",t)})}(window,document),function(e,n){var t=function(){jQuery(function(e){if(sekFrontLocalized.load_front_assets_on_scroll){if(!nb_.isFunction(window.Swiper)){var n=e('[data-sek-module-type="czr_img_slider_module"]');n.length<1||nb_.maybeLoadAssetsWhenSelectorInScreen({id:"swiper",elements:n,func:function(){e("head").find("#czr-swiper").length<1&&e("head").append(e("<link/>",{rel:"stylesheet",id:"czr-swiper",type:"text/css",href:sekFrontLocalized.frontAssetsPath+"css/libs/swiper.min.css?"+sekFrontLocalized.assetVersion})),nb_.ajaxLoadScript({path:"js/libs/swiper.min.js?"+sekFrontLocalized.assetVersion,loadcheck:function(){return nb_.isFunction(window.Swiper)}})}})}}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-swiper",t)})}(window,document),function(e,n){var t=function(){jQuery(function(e){if(sekFrontLocalized.load_front_assets_on_scroll){var n=e("[data-sek-video-bg-src]");n.length<1||nb_.maybeLoadAssetsWhenSelectorInScreen({id:"nb-video-bg",elements:n,func:function(){nb_.ajaxLoadScript({path:"js/libs/nimble-video-bg.min.js?"+sekFrontLocalized.assetVersion})}})}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-videobg-js",t)})}(window,document),function(e,n){var t=function(){jQuery(function(n){if(!sekFrontLocalized.fontAwesomeAlreadyEnqueued&&sekFrontLocalized.load_front_assets_on_scroll){var e=n("i[class*=fa-]");if(!(e.length<1)){nb_.maybeLoadAssetsWhenSelectorInScreen({id:"font-awesome",elements:e,func:function(){if(n("head").find("#czr-font-awesome").length<1){var e=document.createElement("link");e.setAttribute("href",sekFrontLocalized.frontAssetsPath+"fonts/css/fontawesome-all.min.css?"+sekFrontLocalized.assetVersion),e.setAttribute("id","czr-font-awesome"),e.setAttribute("rel",nb_.hasPreloadSupport()?"preload":"stylesheet"),e.setAttribute("as","style"),e.onload=function(){this.onload=null,nb_.hasPreloadSupport()&&(this.rel="stylesheet")},document.getElementsByTagName("head")[0].appendChild(e)}}})}}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-fa",t)})}(window,document),window,document,nb_.listenTo("nb-jmp-parsed",function(){jQuery(function(e){var n=e('[data-sek-module-type="czr_image_module"]').find(".sek-link-to-img-lightbox");n.length<1||n.each(function(){if($linkCandidate=e(this),!($linkCandidate.length<1||"string"!=typeof $linkCandidate[0].protocol||-1!==$linkCandidate[0].protocol.indexOf("javascript"))&&!0!==$linkCandidate.data("nimble-mfp-done")){try{$linkCandidate.magnificPopup({type:"image",closeOnContentClick:!0,closeBtnInside:!0,fixedContentPos:!0,mainClass:"mfp-no-margins mfp-with-zoom",image:{verticalFit:!0},zoom:{enabled:!0,duration:300}})}catch(e){nb_.errorLog("error in callback of nimble-magnific-popup-loaded => ",e)}$linkCandidate.data("nimble-mfp-done",!0)}})})}),window,document,nb_.listenTo("nb-lazyload-parsed",function(){jQuery(function(n){var t=function(e){n(this).each(function(){try{(function(){n(this).data("nimbleLazyLoadDone")?n(this).trigger("nb-trigger-lazyload"):n(this).nimbleLazyLoad({force:nb_.isCustomizing()})}).call(n(this))}catch(e){nb_.errorLog("error with nimbleLazyLoad => ",e)}})};t.call(n(".sektion-wrapper")),nb_.cachedElements.$body.on("sek-section-added sek-level-refreshed sek-location-refreshed sek-columns-refreshed sek-modules-refreshed",'[data-sek-level="location"]',function(e){t.call(n(this),e),_.delay(function(){nb_.cachedElements.$window.trigger("resize")},200)})})}),window,document,nb_.listenTo("nb-parallax-parsed",function(){jQuery(function(n){n('[data-sek-bg-parallax="true"]').each(function(){n(this).parallaxBg({parallaxForce:n(this).data("sek-parallax-force")})});var t=function(){n(this).parallaxBg({parallaxForce:n(this).data("sek-parallax-force")}),setTimeout(function(){nb_.cachedElements.$body.trigger("resize")},500)};nb_.cachedElements.$body.on("sek-level-refreshed sek-section-added",function(e){"true"===n(this).data("sek-bg-parallax")?t.call(this):n(this).find('[data-sek-bg-parallax="true"]').each(function(){t.call(this)})})})}),nb_.listenTo("nb-docready",function(){if(window.nb_&&window.nb_.getQueryVariable){var e=window.nb_.getQueryVariable("go_to"),n=document.getElementById(e);e&&n&&setTimeout(function(){n.scrollIntoView()},200)}});
|
1 |
+
void 0===window.nb_&&window.console&&window.console.log&&console.log("Nimble error => window.nb_ global not instantiated"),window.nb_.getQueryVariable=function(e){for(var n=window.location.search.substring(1).split("&"),t=0;t<n.length;t++){var o=n[t].split("=");if(o[0]==e)return o[1]}return!1},window,document,nb_.listenTo("nb-jquery-loaded",function(){jQuery(function(d){jQuery.each(["Arguments","Function","String","Number","Date","RegExp","Error","Symbol","Map","WeakMap","Set","WeakSet"],function(e,n){window.nb_["is"+n]=function(e){return Object.prototype.toString.call(e)==="[object "+n+"]"}});var a,i,u=function(){return Date.now||(new Date).getTime()};d.extend(nb_,{cachedElements:{$window:d(window),$body:d("body")},isMobile:function(){return nb_.isFunction(window.matchMedia)&&matchMedia("only screen and (max-width: 768px)").matches||this.isCustomizing()&&"desktop"!=this.previewedDevice},isCustomizing:function(){return this.cachedElements.$body.hasClass("is-customizing")||"undefined"!=typeof wp&&void 0!==wp.customize},previewedDevice:"desktop",elOrFirstVisibleParentIsInWindow:function(e,n){var t=e instanceof d?e:d(e);if(t instanceof d){if(!n||nb_.isNumber(n)){var o=function(e){if(0<e.length&&e.is(":visible"))return e;var n=e.prev();if(0<n.length&&n.is(":visible"))return n;if(0<n.length&&!n.is(":visible"))return o(n);var t=e.parent();return 0<t.length?o(t):null},a=o(t);if(!a||a.length<1)return!1;var i=this.cachedElements.$window.scrollTop(),r=i+this.cachedElements.$window.height(),l=a.offset().top,s=n||0;return i-s<=l+a.height()&&l<=r+s}nb_.errorLog("invalid threshold in nb_.elOrFirstVisibleParentIsInWindow")}else nb_.errorLog("invalid element in nb_.elOrFirstVisibleParentIsInWindow",t)},has:function(e,n){if(!_.isArray(n))return null!=e&&hasOwnProperty.call(e,n);for(var t=n.length,o=0;o<t;o++){var a=n[o];if(null==e||!Object.prototype.hasOwnProperty.call(e,a))return!1;e=e[a]}return!!t},debounce:function(o,a,i){var r;return function(){var e=this,n=arguments,t=i&&!r;clearTimeout(r),r=setTimeout(function(){r=null,i||o.apply(e,n)},a),t&&o.apply(e,n)}},throttle:function(t,o,a){var i,r,l,s,d=0;a||(a={});var c=function(){d=!1===a.leading?0:u(),i=null,s=t.apply(r,l),i||(r=l=null)},e=function(){var e=u();d||!1!==a.leading||(d=e);var n=o-(e-d);return r=this,l=arguments,n<=0||o<n?(i&&(clearTimeout(i),i=null),d=e,s=t.apply(r,l),i||(r=l=null)):i||!1===a.trailing||(i=setTimeout(c,n)),s};return e.cancel=function(){clearTimeout(i),d=0,i=r=l=null},e},delay:(a=function(e,n,t){return setTimeout(function(){return e.apply(null,t)},n)},i=null==i?a.length-1:+i,function(){for(var e=Math.max(arguments.length-i,0),n=Array(e),t=0;t<e;t++)n[t]=arguments[t+i];switch(i){case 0:return a.call(this,n);case 1:return a.call(this,arguments[0],n);case 2:return a.call(this,arguments[0],arguments[1],n)}var o=Array(i+1);for(t=0;t<i;t++)o[t]=arguments[t];return o[i]=n,a.apply(this,o)})}),nb_.emit("nb-app-ready")})}),window,document,nb_.listenTo("nb-app-ready",function(){var a;(a=jQuery).fn.fitText=function(e,n){var t=e||1,o=a.extend({minFontSize:Number.NEGATIVE_INFINITY,maxFontSize:Number.POSITIVE_INFINITY},n);return this.each(function(){var e=a(this),n=function(){e.css("font-size",Math.max(Math.min(e.width()/(10*t),parseFloat(o.maxFontSize)),parseFloat(o.minFontSize)))};n(),nb_.cachedElements.$window.on("resize.fittext orientationchange.fittext",n)})}}),window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(i){var r=function(e){var n=document.createElement("a");n.href=e,n.href=n.href;for(var t=["host","hostname","hash","href","port","protocol","search"],o=0,a=t.length;o<a;o++)this[t[o]]=n[t[o]];this.pathname=("/"!==n.pathname.charAt(0)?"/":"")+n.pathname},n=i("html, body");window.nb_allImagesLazyLoadedForScrollToAnchor=!1;var l=function(){var e=i(this);"scrollBehavior"in document.documentElement.style?e[0].scrollIntoView({behavior:"smooth"}):n.animate({scrollTop:e.offset().top-150},400)},t=0,s=function(){var e=i(this);i("img[data-sek-src]").not(".sek-lazy-load-error").length<1?(window.nb_allImagesLazyLoadedForScrollToAnchor=!0,l.call(e)):t<20?(t++,nb_.delay(function(){s.call(e)},100),nb_.delay(function(){l.call(e)},200)):l.call(e)},e=function(e){var n=i(this).attr("href");if(""!==n&&null!==n&&"string"==typeof n&&-1!==n.indexOf("#")){var t=new r(n),o=new r(window.document.location.href);if(t.pathname===o.pathname&&"string"==typeof t.hash&&""!==t.hash){var a=i('[data-sek-level="location"]').find('[id="'+t.hash.replace("#","")+'"]');1===a.length&&(e.preventDefault(),sekFrontLocalized.lazyload_enabled&&!1===window.nb_allImagesLazyLoadedForScrollToAnchor&&0<i("img[data-sek-src]").not(".sek-lazy-load-error").length?(i("body").one("smartload","img",function(){s.call(a)}),i("img[data-sek-src]").trigger("sek_load_img")):l.call(a))}}};nb_.cachedElements.$body.find(".menu-item").on("click","a",e),i('[data-sek-level="location"]').on("click","a",e)})}),window,document,nb_.listenTo("nb-app-ready",function(){!function(l,t){var a="nimbleLazyLoad",i={load_all_images_on_first_scroll:!1,threshold:100,fadeIn_options:{duration:400},delaySmartLoadEvent:0,candidateSelectors:"[data-sek-src], [data-sek-iframe-src]",force:!1},s="sek-lazy-loaded";function n(e,n){this.element=e,this.options=l.extend({},i,n);var t=sekFrontLocalized.lazyload_enabled;if(this.options.force&&(t=!0),t)if(l(this.element).data("nimbleLazyLoadDone"))l(this.element).trigger("nb-trigger-lazyload");else{this._defaults=i,this._name=a;var o=this;l(this.element).on("nb-trigger-lazyload",function(){o._maybe_trigger_load("nb-trigger-lazyload")}),this.init()}}n.prototype._getCandidateEls=function(){return l(this.options.candidateSelectors,this.element)},n.prototype.init=function(){var n=this;l("body").on("sek_load_img sek_load_iframe",n.options.candidateSelectors,function(e){!0!==l(this).data("sek-lazy-loaded")&&("sek_load_img"===e.type?n._load_img(this):"sek_load_iframe"===e.type&&n._load_iframe(this))}),nb_.cachedElements.$window.scroll(function(e){n._better_scroll_event_handler(e)}),nb_.cachedElements.$window.resize(nb_.debounce(function(e){n._maybe_trigger_load(e)},100)),this._maybe_trigger_load("dom-ready"),l(this.element).data("nimbleLazyLoadDone",!0)},n.prototype._better_scroll_event_handler=function(e){var n=this;this.doingAnimation||(this.doingAnimation=!0,t.requestAnimationFrame(function(){n._maybe_trigger_load(e),n.doingAnimation=!1}))},n.prototype._maybe_trigger_load=function(t){var o=this,e=o._getCandidateEls(),a=t&&"scroll"===t.type?this.options.threshold:0;_visible_list=e.filter(function(e,n){return!(!t||"scroll"!=t.type||!o.options.load_all_images_on_first_scroll)||nb_.elOrFirstVisibleParentIsInWindow(n,a)}),_visible_list.map(function(e,n){!0!==l(n).data("sek-lazy-loaded")&&("IFRAME"===l(n).prop("tagName")?l(n).trigger("sek_load_iframe"):l(n).trigger("sek_load_img"))})},n.prototype._load_img=function(e){var t=l(e);if(t.attr("data-sek-src")&&!t.hasClass(s)&&!t.hasClass("lazy-loading")){var n=t.attr("data-sek-src"),o=t.attr("data-sek-srcset"),a=t.attr("data-sek-sizes"),i=this,r=l("<img />",{src:n});t.addClass("lazy-loading"),t.unbind("sek_load_img"),r.on("load",function(){t.removeAttr(["data-sek-src","data-sek-srcset","data-sek-sizes"].join(" ")),t.data("sek-lazy-bg")?t.css("backgroundImage","url("+n+")"):(t.attr("src",n),o&&t.attr("srcset",o),a&&t.attr("sizes",a)),t.hasClass(s)||t.addClass(s),t.trigger("smartload"),t.data("sek-lazy-loaded",!0),i._clean_css_loader(t)}).on("error",function(e,n){t.addClass("sek-lazy-load-error")}),r[0].complete&&r.trigger("load"),t.removeClass("lazy-loading")}},n.prototype._clean_css_loader=function(e){l.each([e.find(".sek-css-loader"),e.parent().find(".sek-css-loader")],function(e,n){0<n.length&&n.remove()})},n.prototype._load_iframe=function(e){var n=l(e);n.unbind("sek_load_iframe"),n.attr("src",function(){var e=l(this).attr("data-sek-iframe-src");return l(this).removeAttr("data-sek-iframe-src"),n.data("sek-lazy-loaded",!0),n.trigger("smartload"),n.hasClass(s)||n.addClass(s),e})},l.fn[a]=function(e){return this.each(function(){l.data(this,"plugin_"+a)||l.data(this,"plugin_"+a,new n(this,e))})}}(jQuery,window),(sekFrontLocalized.lazyload_enabled||nb_.isCustomizing())&&nb_.emit("nb-lazyload-parsed")}),window,document,nb_.loadAssetWhenElementVisible=function(a,n){jQuery(function(t){if(!nb_.scrollHandlers[a].loaded){nb_.scrollHandlers[a].loaded=!1;var e=n.elements,o=n.func;t.each(e,function(e,n){!nb_.scrollHandlers[a].loaded&&nb_.elOrFirstVisibleParentIsInWindow(t(n))&&(o(),nb_.scrollHandlers[a].loaded=!0)}),n.scrollHandler&&nb_.scrollHandlers[a].loaded&&nb_.cachedElements.$window.unbind("scroll",n.scrollHandler)}})},nb_.loopOnScrollHandlers=function(){jQuery(function(e){e.each(nb_.scrollHandlers,function(e,n){if(n.loaded)return!0;var t=sekFrontLocalized.load_front_assets_on_scroll;if(!0===n.force_loading&&(t=!0),t){if(n.elements.length<1)return!0;try{nb_.loadAssetWhenElementVisible(e,n)}catch(e){nb_.errorLog("Nimble error => nb_.loopOnScrollHandlers",e,n)}nb_.isFunction(n.func)&&nb_.isUndefined(n.scrollHandler)?(n.scrollHandler=nb_.throttle(function(){try{nb_.loadAssetWhenElementVisible(e,n)}catch(e){nb_.errorLog("Nimble error => nb_.loopOnScrollHandlers",e,n)}},100),nb_.cachedElements.$window.on("scroll",n.scrollHandler)):nb_.isFunction(n.func)||nb_.errorLog("Nimble error => nb_.loopOnScrollHandlers => wrong callback func param",n)}})})},nb_.listenTo("nb-app-ready",function(){jQuery(function(e){nb_.listenTo("nimble-new-scroll-handler-added",nb_.loopOnScrollHandlers)})}),window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(t){nb_.maybeLoadAssetsWhenSelectorInScreen=function(e){if((e=t.extend({id:"",elements:"",func:""},e)).id.length<1)nb_.errorLog("Nimble error => maybeLoadAssetsWhenSelectorInScreen => missing id",e);else if(!(t(e.elements).length<1)&&nb_.isFunction(e.func)){nb_.scrollHandlers=nb_.scrollHandlers||{};var n={elements:e.elements,func:e.func,force_loading:e.force_loading};nb_.scrollHandlers[e.id]=n,nb_.emit("nimble-new-scroll-handler-added",{fire_once:!1})}},nb_.emit("nimble-ready-to-load-assets-on-scroll")})}),function(e,n){var t=function(){jQuery(function(e){if(sekFrontLocalized.load_front_assets_on_scroll){var n=e('[data-sek-module-type="czr_image_module"]').find(".sek-link-to-img-lightbox");if(!(n.length<1)){nb_.maybeLoadAssetsWhenSelectorInScreen({id:"magnific-popup",elements:n,func:function(){e("head").find("#czr-magnific-popup").length<1&&e("head").append(e("<link/>",{rel:"stylesheet",id:"czr-magnific-popup",type:"text/css",href:sekFrontLocalized.frontAssetsPath+"css/libs/magnific-popup.min.css?"+sekFrontLocalized.assetVersion})),!nb_.isFunction(e.fn.magnificPopup)&&sekFrontLocalized.load_front_assets_on_scroll&&nb_.ajaxLoadScript({path:"js/libs/jquery-magnific-popup.min.js",loadcheck:function(){return nb_.isFunction(e.fn.magnificPopup)}})}})}}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-magnific-popup",t)})}(window,document),function(e,n){var t=function(){jQuery(function(e){if(sekFrontLocalized.load_front_assets_on_scroll){if(!nb_.isFunction(window.Swiper)){var n=e('[data-sek-module-type="czr_img_slider_module"]');n.length<1||nb_.maybeLoadAssetsWhenSelectorInScreen({id:"swiper",elements:n,func:function(){e("head").find("#czr-swiper").length<1&&e("head").append(e("<link/>",{rel:"stylesheet",id:"czr-swiper",type:"text/css",href:sekFrontLocalized.frontAssetsPath+"css/libs/swiper.min.css?"+sekFrontLocalized.assetVersion})),nb_.ajaxLoadScript({path:"js/libs/swiper.min.js?"+sekFrontLocalized.assetVersion,loadcheck:function(){return nb_.isFunction(window.Swiper)}})}})}}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-swiper",t)})}(window,document),function(e,n){var t=function(){jQuery(function(e){if(sekFrontLocalized.load_front_assets_on_scroll){var n=e("[data-sek-video-bg-src]");n.length<1||nb_.maybeLoadAssetsWhenSelectorInScreen({id:"nb-video-bg",elements:n,func:function(){nb_.ajaxLoadScript({path:"js/libs/nimble-video-bg.min.js?"+sekFrontLocalized.assetVersion})}})}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-videobg-js",t)})}(window,document),function(e,n){var t=function(){jQuery(function(n){if(!sekFrontLocalized.fontAwesomeAlreadyEnqueued&&sekFrontLocalized.load_front_assets_on_scroll){var e=n("i[class*=fa-]");if(!(e.length<1)){nb_.maybeLoadAssetsWhenSelectorInScreen({id:"font-awesome",elements:e,func:function(){if(n("head").find("#czr-font-awesome").length<1){var e=document.createElement("link");e.setAttribute("href",sekFrontLocalized.frontAssetsPath+"fonts/css/fontawesome-all.min.css?"+sekFrontLocalized.assetVersion),e.setAttribute("id","czr-font-awesome"),e.setAttribute("rel",nb_.hasPreloadSupport()?"preload":"stylesheet"),e.setAttribute("as","style"),e.onload=function(){this.onload=null,nb_.hasPreloadSupport()&&(this.rel="stylesheet")},document.getElementsByTagName("head")[0].appendChild(e)}}})}}})};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-needs-fa",t)})}(window,document),window,document,nb_.listenTo("nb-jmp-parsed",function(){jQuery(function(e){var n=e('[data-sek-module-type="czr_image_module"]').find(".sek-link-to-img-lightbox");n.length<1||n.each(function(){if($linkCandidate=e(this),!($linkCandidate.length<1||"string"!=typeof $linkCandidate[0].protocol||-1!==$linkCandidate[0].protocol.indexOf("javascript")||$linkCandidate.data("nimble-mfp-done"))){try{$linkCandidate.magnificPopup({type:"image",closeOnContentClick:!0,closeBtnInside:!0,fixedContentPos:!0,mainClass:"mfp-no-margins mfp-with-zoom",image:{verticalFit:!0},zoom:{enabled:!0,duration:300}})}catch(e){nb_.errorLog("error in callback of nimble-magnific-popup-loaded => ",e)}$linkCandidate.data("nimble-mfp-done",!0)}})})}),window,document,nb_.listenTo("nb-lazyload-parsed",function(){jQuery(function(n){var t=function(e){n(this).each(function(){try{(function(){n(this).data("nimbleLazyLoadDone")?n(this).trigger("nb-trigger-lazyload"):n(this).nimbleLazyLoad({force:nb_.isCustomizing()})}).call(n(this))}catch(e){nb_.errorLog("error with nimbleLazyLoad => ",e)}})};t.call(n(".sektion-wrapper")),nb_.cachedElements.$body.on("sek-section-added sek-level-refreshed sek-location-refreshed sek-columns-refreshed sek-modules-refreshed",'[data-sek-level="location"]',function(e){t.call(n(this),e),_.delay(function(){nb_.cachedElements.$window.trigger("resize")},200)})})}),window,document,nb_.listenTo("nb-parallax-parsed",function(){jQuery(function(n){n('[data-sek-bg-parallax="true"]').each(function(){n(this).parallaxBg({parallaxForce:n(this).data("sek-parallax-force")})});var t=function(){n(this).parallaxBg({parallaxForce:n(this).data("sek-parallax-force")}),setTimeout(function(){nb_.cachedElements.$body.trigger("resize")},500)};nb_.cachedElements.$body.on("sek-level-refreshed sek-section-added",function(e){"true"===n(this).data("sek-bg-parallax")?t.call(this):n(this).find('[data-sek-bg-parallax="true"]').each(function(){t.call(this)})})})}),nb_.listenTo("nb-docready",function(){if(window.nb_&&window.nb_.getQueryVariable){var e=window.nb_.getQueryVariable("go_to"),n=document.getElementById(e);e&&n&&setTimeout(function(){n.scrollIntoView()},200)}});
|
assets/front/js/partials/accordion-module.js
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// global sekFrontLocalized, nimbleListenTo
|
2 |
+
/* ------------------------------------------------------------------------- *
|
3 |
+
* ACCORDION MODULE
|
4 |
+
/* ------------------------------------------------------------------------- */
|
5 |
+
(function(w, d){
|
6 |
+
var callbackFunc = function() {
|
7 |
+
jQuery( function($){
|
8 |
+
$( 'body' ).on( 'click sek-expand-accord-item', '.sek-accord-item > .sek-accord-title', function( evt ) {
|
9 |
+
//evt.preventDefault();
|
10 |
+
//evt.stopPropagation();
|
11 |
+
var $item = $(this).closest( '.sek-accord-item'),
|
12 |
+
$accordion = $(this).closest( '.sek-accord-wrapper');
|
13 |
+
|
14 |
+
// Note : cast the boolean to a string by adding +''
|
15 |
+
if ( "true" == $accordion.data('sek-one-expanded')+'' ) {
|
16 |
+
$accordion.find('.sek-accord-item').not( $item ).each( function() {
|
17 |
+
var $current_item = $(this);
|
18 |
+
$current_item.find('.sek-accord-content').stop( true, true ).slideUp( {
|
19 |
+
duration : 200,
|
20 |
+
start : function() {
|
21 |
+
// If already expanded, make sure inline style display:block is set
|
22 |
+
// otherwise, the CSS style display:none will apply first, making the transition brutal.
|
23 |
+
if ( "true" == $current_item.attr('data-sek-expanded')+'' ) {
|
24 |
+
$current_item.find('.sek-accord-content').css('display', 'block');
|
25 |
+
}
|
26 |
+
$current_item.attr('data-sek-expanded', "false" );
|
27 |
+
}
|
28 |
+
});
|
29 |
+
});
|
30 |
+
}
|
31 |
+
if ( 'sek-expand-accord-item' === evt.type && "true" == $item.attr('data-sek-expanded')+'' ) {
|
32 |
+
return;
|
33 |
+
} else {
|
34 |
+
$item.find('.sek-accord-content').stop( true, true ).slideToggle({
|
35 |
+
duration : 200,
|
36 |
+
start : function() {
|
37 |
+
// If already expanded, make sure inline style display:block is set
|
38 |
+
// otherwise, the CSS style display:none will apply first, making the transition brutal.
|
39 |
+
if ( "true" == $item.attr('data-sek-expanded')+'' ) {
|
40 |
+
$item.find('.sek-accord-content').css('display', 'block');
|
41 |
+
}
|
42 |
+
$item.attr('data-sek-expanded', "false" == $item.attr('data-sek-expanded')+'' ? "true" : "false" );
|
43 |
+
$item.trigger( "true" == $item.attr('data-sek-expanded') ? 'sek-accordion-expanded' : 'sek-accordion-collapsed' );
|
44 |
+
}
|
45 |
+
});
|
46 |
+
}
|
47 |
+
|
48 |
+
});// on 'click'
|
49 |
+
|
50 |
+
// When customizing, expand the currently edited item
|
51 |
+
// @see CZRItemConstructor in api.czrModuleMap.czr_img_slider_collection_child
|
52 |
+
if ( window.wp && ! nb_.isUndefined( wp.customize ) ) {
|
53 |
+
wp.customize.preview.bind('sek-item-focus', function( params ) {
|
54 |
+
|
55 |
+
var $itemEl = $('[data-sek-item-id="' + params.item_id +'"]', '.sek-accord-wrapper').first();
|
56 |
+
if ( 1 > $itemEl.length )
|
57 |
+
return;
|
58 |
+
|
59 |
+
$itemEl.find('.sek-accord-title').trigger('sek-expand-accord-item');
|
60 |
+
});
|
61 |
+
}
|
62 |
+
});//jQuery()
|
63 |
+
|
64 |
+
};/////////////// callbackFunc
|
65 |
+
// on 'nb-app-ready', jQuery is loaded
|
66 |
+
nb_.listenTo('nb-app-ready', callbackFunc );
|
67 |
+
}(window, document));
|
68 |
+
|
69 |
+
|
assets/front/js/partials/accordion-module.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(d){d("body").on("click sek-expand-accord-item",".sek-accord-item > .sek-accord-title",function(e){var t=d(this).closest(".sek-accord-item"),a=d(this).closest(".sek-accord-wrapper");"true"==a.data("sek-one-expanded")+""&&a.find(".sek-accord-item").not(t).each(function(){var e=d(this);e.find(".sek-accord-content").stop(!0,!0).slideUp({duration:200,start:function(){"true"==e.attr("data-sek-expanded")+""&&e.find(".sek-accord-content").css("display","block"),e.attr("data-sek-expanded","false")}})}),"sek-expand-accord-item"===e.type&&"true"==t.attr("data-sek-expanded")+""||t.find(".sek-accord-content").stop(!0,!0).slideToggle({duration:200,start:function(){"true"==t.attr("data-sek-expanded")+""&&t.find(".sek-accord-content").css("display","block"),t.attr("data-sek-expanded","false"==t.attr("data-sek-expanded")+""?"true":"false"),t.trigger("true"==t.attr("data-sek-expanded")?"sek-accordion-expanded":"sek-accordion-collapsed")}})}),window.wp&&!nb_.isUndefined(wp.customize)&&wp.customize.preview.bind("sek-item-focus",function(e){var t=d('[data-sek-item-id="'+e.item_id+'"]',".sek-accord-wrapper").first();t.length<1||t.find(".sek-accord-title").trigger("sek-expand-accord-item")})})});
|
assets/front/js/partials/front-parallax.js
ADDED
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// global sekFrontLocalized, nimbleListenTo
|
2 |
+
/* ===================================================
|
3 |
+
* jquery.fn.parallaxBg v1.0.0
|
4 |
+
* Created in October 2018.
|
5 |
+
* Inspired from https://github.com/presscustomizr/front-jquery-plugins/blob/master/jqueryParallax.js
|
6 |
+
* ===================================================
|
7 |
+
*/
|
8 |
+
(function(w, d){
|
9 |
+
var callbackFunc = function() {
|
10 |
+
(function ( $, window ) {
|
11 |
+
//defaults
|
12 |
+
var pluginName = 'parallaxBg',
|
13 |
+
defaults = {
|
14 |
+
parallaxForce : 40,
|
15 |
+
oncustom : [],//list of event here
|
16 |
+
matchMedia : 'only screen and (max-width: 800px)'
|
17 |
+
};
|
18 |
+
|
19 |
+
function Plugin( element, options ) {
|
20 |
+
this.element = $(element);
|
21 |
+
//this.element_wrapper = this.element.closest( '.parallax-wrapper' );
|
22 |
+
this.options = $.extend( {}, defaults, options, this.parseElementDataOptions() ) ;
|
23 |
+
this._defaults = defaults;
|
24 |
+
this._name = pluginName;
|
25 |
+
this.init();
|
26 |
+
}
|
27 |
+
|
28 |
+
Plugin.prototype.parseElementDataOptions = function () {
|
29 |
+
return this.element.data();
|
30 |
+
};
|
31 |
+
|
32 |
+
//can access this.element and this.option
|
33 |
+
//@return void
|
34 |
+
Plugin.prototype.init = function () {
|
35 |
+
var self = this;
|
36 |
+
//cache some element
|
37 |
+
this.$_window = nb_.cachedElements.$window;
|
38 |
+
this.doingAnimation = false;
|
39 |
+
this.isVisible = false;
|
40 |
+
this.isBefore = false;//the element is before the scroll point
|
41 |
+
this.isAfter = true;// the element is after the scroll point
|
42 |
+
|
43 |
+
// normalize the parallax ratio
|
44 |
+
// must be a number 0 > ratio > 100
|
45 |
+
if ( 'number' !== typeof( self.options.parallaxForce ) || self.options.parallaxForce < 0 ) {
|
46 |
+
if ( sekFrontLocalized.isDevMode ) {
|
47 |
+
console.log('parallaxBg => the provided parallaxForce is invalid => ' + self.options.parallaxForce );
|
48 |
+
}
|
49 |
+
self.options.parallaxForce = this._defaults.parallaxForce;
|
50 |
+
}
|
51 |
+
if ( self.options.parallaxForce > 100 ) {
|
52 |
+
self.options.parallaxForce = 100;
|
53 |
+
}
|
54 |
+
|
55 |
+
//the scroll event gets throttled with the requestAnimationFrame
|
56 |
+
this.$_window.scroll( function(_evt) { self.maybeParallaxMe(_evt); } );
|
57 |
+
//debounced resize event
|
58 |
+
this.$_window.resize( nb_.debounce( function(_evt) {
|
59 |
+
self.maybeParallaxMe(_evt);
|
60 |
+
}, 100 ) );
|
61 |
+
|
62 |
+
//on load
|
63 |
+
this.checkIfIsVisibleAndCacheProperties();
|
64 |
+
this.setTopPositionAndBackgroundSize();
|
65 |
+
};
|
66 |
+
|
67 |
+
//@see https://www.paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/
|
68 |
+
Plugin.prototype.setTopPositionAndBackgroundSize = function() {
|
69 |
+
var self = this;
|
70 |
+
|
71 |
+
// options.matchMedia is set to 'only screen and (max-width: 768px)' by default
|
72 |
+
// if a match is found, then reset the top position
|
73 |
+
if ( nb_.isFunction( window.matchMedia ) && matchMedia( self.options.matchMedia ).matches ) {
|
74 |
+
this.element.css({'background-position-y' : '', 'background-attachment' : '' });
|
75 |
+
return;
|
76 |
+
}
|
77 |
+
|
78 |
+
var $element = this.element,
|
79 |
+
elemHeight = $element.outerHeight(),
|
80 |
+
winHeight = this.$_window.height(),
|
81 |
+
offsetTop = $element.offset().top,
|
82 |
+
scrollTop = this.$_window.scrollTop(),
|
83 |
+
percentOfPage = 100;
|
84 |
+
|
85 |
+
// the percentOfPage can vary from -1 to 1
|
86 |
+
if ( this.isVisible ) {
|
87 |
+
//percentOfPage = currentDistanceToMiddleScreen / maxDistanceToMiddleScreen;
|
88 |
+
percentOfPage = ( offsetTop - scrollTop ) / winHeight;
|
89 |
+
} else if ( this.isBefore ) {
|
90 |
+
percentOfPage = 1;
|
91 |
+
} else if ( this.isAfter ) {
|
92 |
+
percentOfPage = - 1;
|
93 |
+
}
|
94 |
+
|
95 |
+
var maxBGYMove = this.options.parallaxForce > 0 ? winHeight * ( 100 - this.options.parallaxForce ) / 100 : winHeight,
|
96 |
+
bgPositionY = Math.round( percentOfPage * maxBGYMove );
|
97 |
+
|
98 |
+
this.element.css({
|
99 |
+
'background-position-y' : [
|
100 |
+
'calc(50% ',
|
101 |
+
bgPositionY > 0 ? '+ ' : '- ',
|
102 |
+
Math.abs( bgPositionY ) + 'px)'
|
103 |
+
].join('')
|
104 |
+
});
|
105 |
+
};
|
106 |
+
|
107 |
+
// When does the image enter the viewport ?
|
108 |
+
Plugin.prototype.checkIfIsVisibleAndCacheProperties = function( _evt ) {
|
109 |
+
var $element = this.element;
|
110 |
+
// bail if the level is display:none;
|
111 |
+
// because $.offset() won't work
|
112 |
+
// see because of https://github.com/presscustomizr/nimble-builder/issues/363
|
113 |
+
if ( ! $element.is(':visible') )
|
114 |
+
return false;
|
115 |
+
|
116 |
+
var scrollTop = this.$_window.scrollTop(),
|
117 |
+
wb = scrollTop + this.$_window.height(),
|
118 |
+
offsetTop = $element.offset().top,
|
119 |
+
ib = offsetTop + $element.outerHeight();
|
120 |
+
|
121 |
+
// Cache now
|
122 |
+
this.isVisible = ib >= scrollTop && offsetTop <= wb;
|
123 |
+
this.isBefore = offsetTop > wb ;//the element is before the scroll point
|
124 |
+
this.isAfter = ib < scrollTop;// the element is after the scroll point
|
125 |
+
return this.isVisible;
|
126 |
+
};
|
127 |
+
|
128 |
+
// a throttle is implemented with window.requestAnimationFrame
|
129 |
+
Plugin.prototype.maybeParallaxMe = function(evt) {
|
130 |
+
var self = this;
|
131 |
+
if ( ! this.checkIfIsVisibleAndCacheProperties() )
|
132 |
+
return;
|
133 |
+
|
134 |
+
if ( ! this.doingAnimation ) {
|
135 |
+
this.doingAnimation = true;
|
136 |
+
window.requestAnimationFrame(function() {
|
137 |
+
self.setTopPositionAndBackgroundSize();
|
138 |
+
self.doingAnimation = false;
|
139 |
+
});
|
140 |
+
}
|
141 |
+
};
|
142 |
+
|
143 |
+
// prevents against multiple instantiations
|
144 |
+
$.fn[pluginName] = function ( options ) {
|
145 |
+
return this.each(function () {
|
146 |
+
if (!$.data(this, 'plugin_' + pluginName)) {
|
147 |
+
$.data(this, 'plugin_' + pluginName,
|
148 |
+
new Plugin( this, options ));
|
149 |
+
}
|
150 |
+
});
|
151 |
+
};
|
152 |
+
})( jQuery, window );
|
153 |
+
};/////////////// callbackFunc
|
154 |
+
|
155 |
+
// on 'nb-app-ready', jQuery is loaded
|
156 |
+
nb_.listenTo('nb-app-ready', function(){
|
157 |
+
callbackFunc();
|
158 |
+
nb_.emit('nb-parallax-parsed');
|
159 |
+
});
|
160 |
+
}(window, document));
|
assets/front/js/partials/front-parallax.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
window,document,nb_.listenTo("nb-app-ready",function(){!function(e,r){var o="parallaxBg",n={parallaxForce:40,oncustom:[],matchMedia:"only screen and (max-width: 800px)"};function t(i,t){this.element=e(i),this.options=e.extend({},n,t,this.parseElementDataOptions()),this._defaults=n,this._name=o,this.init()}t.prototype.parseElementDataOptions=function(){return this.element.data()},t.prototype.init=function(){var t=this;this.$_window=nb_.cachedElements.$window,this.doingAnimation=!1,this.isVisible=!1,this.isBefore=!1,this.isAfter=!0,("number"!=typeof t.options.parallaxForce||t.options.parallaxForce<0)&&(sekFrontLocalized.isDevMode&&console.log("parallaxBg => the provided parallaxForce is invalid => "+t.options.parallaxForce),t.options.parallaxForce=this._defaults.parallaxForce),100<t.options.parallaxForce&&(t.options.parallaxForce=100),this.$_window.scroll(function(i){t.maybeParallaxMe(i)}),this.$_window.resize(nb_.debounce(function(i){t.maybeParallaxMe(i)},100)),this.checkIfIsVisibleAndCacheProperties(),this.setTopPositionAndBackgroundSize()},t.prototype.setTopPositionAndBackgroundSize=function(){if(nb_.isFunction(r.matchMedia)&&matchMedia(this.options.matchMedia).matches)this.element.css({"background-position-y":"","background-attachment":""});else{var i=this.element,t=(i.outerHeight(),this.$_window.height()),e=i.offset().top,o=this.$_window.scrollTop(),n=100;this.isVisible?n=(e-o)/t:this.isBefore?n=1:this.isAfter&&(n=-1);var s=0<this.options.parallaxForce?t*(100-this.options.parallaxForce)/100:t,a=Math.round(n*s);this.element.css({"background-position-y":["calc(50% ",0<a?"+ ":"- ",Math.abs(a)+"px)"].join("")})}},t.prototype.checkIfIsVisibleAndCacheProperties=function(i){var t=this.element;if(!t.is(":visible"))return!1;var e=this.$_window.scrollTop(),o=e+this.$_window.height(),n=t.offset().top,s=n+t.outerHeight();return this.isVisible=e<=s&&n<=o,this.isBefore=o<n,this.isAfter=s<e,this.isVisible},t.prototype.maybeParallaxMe=function(i){var t=this;this.checkIfIsVisibleAndCacheProperties()&&(this.doingAnimation||(this.doingAnimation=!0,r.requestAnimationFrame(function(){t.setTopPositionAndBackgroundSize(),t.doingAnimation=!1})))},e.fn[o]=function(i){return this.each(function(){e.data(this,"plugin_"+o)||e.data(this,"plugin_"+o,new t(this,i))})}}(jQuery,window),nb_.emit("nb-parallax-parsed")});
|
assets/front/js/partials/menu-module.js
ADDED
@@ -0,0 +1,387 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// global sekFrontLocalized, nimbleListenTo
|
2 |
+
/* ------------------------------------------------------------------------- *
|
3 |
+
* MENU
|
4 |
+
/* ------------------------------------------------------------------------- */
|
5 |
+
(function(w, d){
|
6 |
+
var callbackFunc = function() {
|
7 |
+
jQuery( function($){
|
8 |
+
//DROPDOWN
|
9 |
+
var Dropdown = function() {
|
10 |
+
//dropdown
|
11 |
+
var DATA_KEY = 'sek.sekDropdown',
|
12 |
+
EVENT_KEY = '.' + DATA_KEY,
|
13 |
+
Event = {
|
14 |
+
PLACE_ME : 'placeme'+ EVENT_KEY,
|
15 |
+
PLACE_ALL : 'placeall' + EVENT_KEY,
|
16 |
+
SHOWN : 'shown' + EVENT_KEY,
|
17 |
+
SHOW : 'show' + EVENT_KEY,
|
18 |
+
HIDDEN : 'hidden' + EVENT_KEY,
|
19 |
+
HIDE : 'hide' + EVENT_KEY,
|
20 |
+
CLICK : 'click' + EVENT_KEY,
|
21 |
+
TAP : 'tap' + EVENT_KEY,
|
22 |
+
},
|
23 |
+
ClassName = {
|
24 |
+
DROPDOWN : 'sek-dropdown-menu',
|
25 |
+
DROPDOWN_SUBMENU : 'sek-dropdown-submenu',
|
26 |
+
SHOW : 'show',
|
27 |
+
PARENTS : 'menu-item-has-children',
|
28 |
+
},
|
29 |
+
Selector = {
|
30 |
+
DATA_TOGGLE : '[data-toggle="sek-dropdown"]',
|
31 |
+
DATA_SHOWN_TOGGLE_LINK : '.' +ClassName.SHOW+ '> a',
|
32 |
+
HOVER_MENU : '.sek-nav-wrap',
|
33 |
+
HOVER_PARENT : '.sek-nav-wrap .menu-item-has-children',
|
34 |
+
PARENTS : '.sek-nav-wrap .menu-item-has-children',
|
35 |
+
SNAKE_PARENTS : '.sek-nav-wrap .menu-item-has-children',
|
36 |
+
};
|
37 |
+
|
38 |
+
// unify all the dropdowns classes whether the menu is a proper menu or the all pages fall-back
|
39 |
+
$( '.sek-nav .children, .sek-nav .sub-menu' ).addClass( ClassName.DROPDOWN );
|
40 |
+
$( '.sek-nav-wrap .page_item_has_children' ).addClass( ClassName.PARENTS );
|
41 |
+
$( '.sek-nav' + ' .' + ClassName.DROPDOWN + ' .' + ClassName.PARENTS ).addClass( ClassName.DROPDOWN_SUBMENU );
|
42 |
+
|
43 |
+
//Handle dropdown on hover via js
|
44 |
+
var dropdownMenuOnHover = function() {
|
45 |
+
var _dropdown_selector = Selector.HOVER_PARENT;
|
46 |
+
|
47 |
+
function _addOpenClass () {
|
48 |
+
var $_el = $(this);
|
49 |
+
|
50 |
+
//a little delay to balance the one added in removing the open class
|
51 |
+
var _debounced_addOpenClass = nb_.debounce( function() {
|
52 |
+
//do nothing if menu is mobile
|
53 |
+
if( 'static' == $_el.find( '.'+ClassName.DROPDOWN ).css( 'position' ) ) {
|
54 |
+
return false;
|
55 |
+
}
|
56 |
+
if ( ! $_el.hasClass(ClassName.SHOW) ) {
|
57 |
+
$_el.trigger( Event.SHOW )
|
58 |
+
.addClass(ClassName.SHOW)
|
59 |
+
.trigger( Event.SHOWN);
|
60 |
+
|
61 |
+
var $_data_toggle = $_el.children( Selector.DATA_TOGGLE );
|
62 |
+
|
63 |
+
if ( $_data_toggle.length ) {
|
64 |
+
$_data_toggle[0].setAttribute('aria-expanded', 'true');
|
65 |
+
}
|
66 |
+
}
|
67 |
+
}, 30);
|
68 |
+
|
69 |
+
_debounced_addOpenClass();
|
70 |
+
}
|
71 |
+
|
72 |
+
function _removeOpenClass () {
|
73 |
+
|
74 |
+
var $_el = $(this);
|
75 |
+
|
76 |
+
//a little delay before closing to avoid closing a parent before accessing the child
|
77 |
+
var _debounced_removeOpenClass = nb_.debounce( function() {
|
78 |
+
if ( $_el.find("ul li:hover").length < 1 && ! $_el.closest('ul').find('li:hover').is( $_el ) ) {
|
79 |
+
$_el.trigger( Event.HIDE )
|
80 |
+
.removeClass( ClassName.SHOW)
|
81 |
+
.trigger( Event.HIDDEN );
|
82 |
+
|
83 |
+
var $_data_toggle = $_el.children( Selector.DATA_TOGGLE );
|
84 |
+
|
85 |
+
if ( $_data_toggle.length ) {
|
86 |
+
$_data_toggle[0].setAttribute('aria-expanded', 'false');
|
87 |
+
}
|
88 |
+
}
|
89 |
+
}, 30 );
|
90 |
+
|
91 |
+
_debounced_removeOpenClass();
|
92 |
+
}
|
93 |
+
|
94 |
+
//BIND
|
95 |
+
$( document )
|
96 |
+
.on( 'mouseenter', _dropdown_selector, _addOpenClass )
|
97 |
+
.on( 'mouseleave', _dropdown_selector , _removeOpenClass );
|
98 |
+
},
|
99 |
+
|
100 |
+
//SNAKE
|
101 |
+
dropdownPlacement = function() {
|
102 |
+
var isRTL = 'rtl' === $('html').attr('dir'),
|
103 |
+
doingAnimation = false;
|
104 |
+
|
105 |
+
nb_.cachedElements.$window
|
106 |
+
//on resize trigger Event.PLACE on active dropdowns
|
107 |
+
.on( 'resize', function() {
|
108 |
+
if ( ! doingAnimation ) {
|
109 |
+
doingAnimation = true;
|
110 |
+
window.requestAnimationFrame(function() {
|
111 |
+
//trigger a placement on the open dropdowns
|
112 |
+
$( Selector.SNAKE_PARENTS+'.'+ClassName.SHOW)
|
113 |
+
.trigger(Event.PLACE_ME);
|
114 |
+
doingAnimation = false;
|
115 |
+
});
|
116 |
+
}
|
117 |
+
|
118 |
+
});
|
119 |
+
|
120 |
+
$( document )
|
121 |
+
.on( Event.PLACE_ALL, function() {
|
122 |
+
//trigger a placement on all
|
123 |
+
$( Selector.SNAKE_PARENTS )
|
124 |
+
.trigger(Event.PLACE_ME);
|
125 |
+
})
|
126 |
+
//snake bound on menu-item shown and place
|
127 |
+
.on( Event.SHOWN+' '+Event.PLACE_ME, Selector.SNAKE_PARENTS, function(evt) {
|
128 |
+
evt.stopPropagation();
|
129 |
+
_do_snake( $(this), evt );
|
130 |
+
});
|
131 |
+
|
132 |
+
|
133 |
+
//snake
|
134 |
+
//$_el is the menu item with children whose submenu will be 'snaked'
|
135 |
+
function _do_snake( $_el, evt ) {
|
136 |
+
if ( !( evt && evt.namespace && DATA_KEY === evt.namespace ) ) {
|
137 |
+
return;
|
138 |
+
}
|
139 |
+
|
140 |
+
var $_this = $_el,
|
141 |
+
$_dropdown = $_this.children( '.'+ClassName.DROPDOWN );
|
142 |
+
|
143 |
+
if ( !$_dropdown.length ) {
|
144 |
+
return;
|
145 |
+
}
|
146 |
+
|
147 |
+
//stage
|
148 |
+
/*
|
149 |
+
* we display the dropdown so that jQuery is able to retrieve exact size and positioning
|
150 |
+
* we also hide whatever overflows the menu item with children whose submenu will be 'snaked'
|
151 |
+
* this to avoid some glitches that would made it lose the focus:
|
152 |
+
* During RTL testing when a menu item with children reached the left edge of the window
|
153 |
+
* it happened that while the submenu was showing (because of the show class added, so not depending on the snake)
|
154 |
+
* this submenu (ul) stole the focus and then released it in a very short time making the mouseleave callback
|
155 |
+
* defined in dropdownMenuOnHover react, hence closing the whole submenu tree.
|
156 |
+
* This might be a false positive, as we don't really test RTL with RTL browsers (only the html direction changes),
|
157 |
+
* but since the 'cure' has no side effects, let's be pedantic!
|
158 |
+
*/
|
159 |
+
$_el.css( 'overflow', 'hidden' );
|
160 |
+
$_dropdown.css( {
|
161 |
+
'zIndex' : '-100',
|
162 |
+
'display' : 'block'
|
163 |
+
});
|
164 |
+
|
165 |
+
_maybe_move( $_dropdown, $_el );
|
166 |
+
|
167 |
+
//unstage
|
168 |
+
$_dropdown.css({
|
169 |
+
'zIndex' : '',
|
170 |
+
'display' : ''
|
171 |
+
});
|
172 |
+
$_el.css( 'overflow', '' );
|
173 |
+
}//_so_snake
|
174 |
+
|
175 |
+
|
176 |
+
function _maybe_move( $_dropdown, $_el ) {
|
177 |
+
var Direction = isRTL ? {
|
178 |
+
//when in RTL we open the submenu by default on the left side
|
179 |
+
_DEFAULT : 'left',
|
180 |
+
_OPPOSITE : 'right'
|
181 |
+
} : {
|
182 |
+
//when in LTR we open the submenu by default on the right side
|
183 |
+
_DEFAULT : 'right',
|
184 |
+
_OPPOSITE : 'left'
|
185 |
+
},
|
186 |
+
ClassName = {
|
187 |
+
OPEN_PREFIX : 'open-',
|
188 |
+
DD_SUBMENU : 'sek-dropdown-submenu',
|
189 |
+
CARET_TITLE_FLIP : 'sek-menu-link__row-reverse',
|
190 |
+
//CARET : 'caret__dropdown-toggler',
|
191 |
+
DROPDOWN : 'sek-dropdown-menu'
|
192 |
+
},
|
193 |
+
_caret_title_maybe_flip = function( $_el, _direction, _old_direction ) {
|
194 |
+
$.each( $_el, function() {
|
195 |
+
var $_el = $(this),
|
196 |
+
$_a = $_el.find( 'a' ).first();
|
197 |
+
|
198 |
+
if ( 1 == $_a.length ) {
|
199 |
+
$_a.toggleClass( ClassName.CARET_TITLE_FLIP, _direction == Direction._OPPOSITE );
|
200 |
+
}
|
201 |
+
});
|
202 |
+
},
|
203 |
+
_setOpenDirection = function( _direction ) {
|
204 |
+
//retrieve the old direction => used to remove the old direction class
|
205 |
+
var _old_direction = _direction == Direction._OPPOSITE ? Direction._DEFAULT : Direction._OPPOSITE;
|
206 |
+
|
207 |
+
//tell the dropdown to open on the direction _direction (hence remove the old direction class)
|
208 |
+
$_dropdown.removeClass( ClassName.OPEN_PREFIX + _old_direction ).addClass( ClassName.OPEN_PREFIX + _direction );
|
209 |
+
if ( $_el.hasClass( ClassName.DD_SUBMENU ) ) {
|
210 |
+
_caret_title_maybe_flip( $_el, _direction, _old_direction );
|
211 |
+
//make the first level submenus caret inherit this
|
212 |
+
_caret_title_maybe_flip( $_dropdown.children( '.' + ClassName.DD_SUBMENU ), _direction, _old_direction );
|
213 |
+
}
|
214 |
+
};
|
215 |
+
|
216 |
+
//snake inheritance
|
217 |
+
if ( $_dropdown.parent().closest( '.'+ClassName.DROPDOWN ).hasClass( ClassName.OPEN_PREFIX + Direction._OPPOSITE ) ) {
|
218 |
+
//open on the opposite direction
|
219 |
+
_setOpenDirection( Direction._OPPOSITE );
|
220 |
+
} else {
|
221 |
+
//open on the default direction
|
222 |
+
_setOpenDirection( Direction._DEFAULT );
|
223 |
+
}
|
224 |
+
|
225 |
+
//let's compute on which side open the dropdown
|
226 |
+
if ( $_dropdown.offset().left + $_dropdown.width() > nb_.cachedElements.$window.width() ) {
|
227 |
+
//open on the left
|
228 |
+
_setOpenDirection( 'left' );
|
229 |
+
} else if ( $_dropdown.offset().left < 0 ) {
|
230 |
+
//open on the right
|
231 |
+
_setOpenDirection( 'right' );
|
232 |
+
}
|
233 |
+
}//_maybe_move
|
234 |
+
};//dropdownPlacement
|
235 |
+
|
236 |
+
//FireAll
|
237 |
+
dropdownMenuOnHover();
|
238 |
+
dropdownPlacement();
|
239 |
+
},
|
240 |
+
|
241 |
+
SimpleCollapse = function() {
|
242 |
+
var NAME = 'sekCollapse',
|
243 |
+
DATA_KEY = 'sek.sekCollapse',
|
244 |
+
EVENT_KEY = "." + DATA_KEY,
|
245 |
+
TRANSITION_DURATION = 400,
|
246 |
+
DATA_API_KEY = '.data-api',
|
247 |
+
Event = {
|
248 |
+
SHOW: "show" + EVENT_KEY,
|
249 |
+
SHOWN: "shown" + EVENT_KEY,
|
250 |
+
HIDE: "hide" + EVENT_KEY,
|
251 |
+
HIDDEN: "hidden" + EVENT_KEY,
|
252 |
+
CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
|
253 |
+
},
|
254 |
+
ClassName = {
|
255 |
+
SHOW: 'show',
|
256 |
+
COLLAPSE: 'sek-collapse',
|
257 |
+
COLLAPSING: 'sek-collapsing',
|
258 |
+
COLLAPSED: 'sek-collapsed'
|
259 |
+
},
|
260 |
+
Selector = {
|
261 |
+
ACTIVES: '.show, .sek-collapsing',
|
262 |
+
DATA_TOGGLE: '[data-sek-toggle="sek-collapse"]'
|
263 |
+
},
|
264 |
+
_onSlidingCompleteResetCSS = function( $_el ) {
|
265 |
+
$_el = $_el ? $_el : $(this);
|
266 |
+
$_el.css({
|
267 |
+
'display' : '',
|
268 |
+
'paddingTop' : '',
|
269 |
+
'marginTop' : '',
|
270 |
+
'paddingBottom' : '',
|
271 |
+
'marginBottom' : '',
|
272 |
+
'height' : ''
|
273 |
+
});
|
274 |
+
};
|
275 |
+
|
276 |
+
//bind
|
277 |
+
$(document).on( Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
|
278 |
+
// preventDefault only for <a> elements (which change the URL) not inside the collapsible element
|
279 |
+
if (event.currentTarget.tagName === 'A') {
|
280 |
+
event.preventDefault();
|
281 |
+
}
|
282 |
+
|
283 |
+
var $toggler = $(this),
|
284 |
+
//get the data toggle
|
285 |
+
_collapsible_selector = $toggler.data('target');
|
286 |
+
|
287 |
+
$(_collapsible_selector).each( function () {
|
288 |
+
var $collapsible = $(this),
|
289 |
+
collapse = $collapsible.hasClass(ClassName.SHOW);
|
290 |
+
|
291 |
+
$collapsible.stop()[ collapse ? 'slideUp' : 'slideDown' ]({
|
292 |
+
duration: TRANSITION_DURATION,
|
293 |
+
start : function() {
|
294 |
+
$collapsible.addClass(ClassName.COLLAPSING).trigger( collapse ? Event.HIDE : Event.SHOW );
|
295 |
+
if ( collapse ) {
|
296 |
+
$toggler.addClass( ClassName.COLLAPSED ).attr( 'aria-expanded', 'false' );
|
297 |
+
} else {
|
298 |
+
$toggler.removeClass( ClassName.COLLAPSED ).attr( 'aria-expanded', 'true' );
|
299 |
+
}
|
300 |
+
},
|
301 |
+
complete: function() {
|
302 |
+
var removeClass,
|
303 |
+
addClass,
|
304 |
+
event;
|
305 |
+
|
306 |
+
if ( collapse ) {
|
307 |
+
removeClass = ClassName.SHOW;
|
308 |
+
addClass = ClassName.COLLAPSE;
|
309 |
+
event = Event.HIDDEN;
|
310 |
+
} else {
|
311 |
+
removeClass = ClassName.COLLAPSE;
|
312 |
+
addClass = ClassName.SHOW;
|
313 |
+
event = Event.SHOWN;
|
314 |
+
}
|
315 |
+
$collapsible.removeClass(ClassName.COLLAPSING + ' ' + removeClass).addClass( addClass ).trigger(event);
|
316 |
+
//remove all the inline style added by the slideUp/Down methods
|
317 |
+
_onSlidingCompleteResetCSS( $collapsible );
|
318 |
+
}
|
319 |
+
});//end slideUp/slideDown
|
320 |
+
});//end each
|
321 |
+
});//end document bind
|
322 |
+
};
|
323 |
+
|
324 |
+
|
325 |
+
Dropdown();
|
326 |
+
SimpleCollapse();
|
327 |
+
|
328 |
+
// handle the mobile hamburger hover effect
|
329 |
+
$( document )
|
330 |
+
.on( 'mouseenter', '.sek-nav-toggler', function(){ $(this).addClass( 'hovering' ); } )
|
331 |
+
.on( 'mouseleave', '.sek-nav-toggler', function(){ $(this).removeClass( 'hovering' ); } )
|
332 |
+
.on( 'show.sek.sekCollapse hide.sek.sekCollapse', '.sek-nav-collapse', function() {
|
333 |
+
$('[data-target="#'+$(this).attr('id')+'"]').removeClass( 'hovering' );
|
334 |
+
nb_.cachedElements.$window.trigger('scroll');
|
335 |
+
});
|
336 |
+
|
337 |
+
// How to have a logo plus an hamburger in mobiles on the same line?
|
338 |
+
// => clone the menu module, and append it to the closest sektion-inner wrapper
|
339 |
+
// => this way it will occupy 100% of the width
|
340 |
+
// => and also the clone inherits the style of the module
|
341 |
+
// https://github.com/presscustomizr/nimble-builder/issues/368
|
342 |
+
var _doMobileMenuSetup = function() {
|
343 |
+
$( '[data-sek-module-type="czr_menu_module"]' ).find('[data-sek-expand-below="yes"]').each( function() {
|
344 |
+
// make sure we don't do the setup twice when customizing
|
345 |
+
if ( true === $(this).data('sek-setup-menu-mobile-expanded-below-done') )
|
346 |
+
return;
|
347 |
+
|
348 |
+
var $_mobile_menu_module = $(this).closest('[data-sek-module-type="czr_menu_module"]').clone(true),
|
349 |
+
//create a new id for the mobile menu nav collapse that will used by the button toggler too
|
350 |
+
_new_id = $( '.sek-nav-collapse', this ).attr('id') + '-mobile';
|
351 |
+
|
352 |
+
$_mobile_menu_module
|
353 |
+
/// place the mobile menu at the end of this sektion inner
|
354 |
+
.appendTo( $(this).closest( '.sek-sektion-inner' ) )
|
355 |
+
//wrap in a convenient div for styling and targeting
|
356 |
+
.wrap( '<div class="sek-col-base sek-mobile-menu-expanded-below" id="'+_new_id+'-wrapper"></div>');
|
357 |
+
|
358 |
+
// assign the new id to the mobile nav collapse
|
359 |
+
$( '.sek-nav-collapse', '#'+_new_id+'-wrapper' ).attr( 'id', _new_id );
|
360 |
+
// add a data attribute so we can target the mobile menu with dynamic css rules
|
361 |
+
// @needed when coding : https://github.com/presscustomizr/nimble-builder/issues/491
|
362 |
+
$( '.sek-nav-wrap', '#'+_new_id+'-wrapper' ).attr('data-sek-is-mobile-menu', 'yes');
|
363 |
+
// remove the duplicate button
|
364 |
+
$( '.sek-nav-toggler', '#'+_new_id+'-wrapper' ).detach();
|
365 |
+
// update the toggler button so that will now refer to the "cloned" mobile menu
|
366 |
+
$( '.sek-nav-toggler', this ).data( 'target', '#' + _new_id )
|
367 |
+
.attr( 'aria-controls', _new_id );
|
368 |
+
// flag setup done
|
369 |
+
$(this).data('sek-setup-menu-mobile-expanded-below-done', true );
|
370 |
+
});//$.each()
|
371 |
+
};
|
372 |
+
_doMobileMenuSetup();
|
373 |
+
// When previewing, react to level refresh
|
374 |
+
// This can occur to any level. We listen to the bubbling event on 'body' tag
|
375 |
+
nb_.cachedElements.$body.on('sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added', function( evt ){
|
376 |
+
// clean the previously duplicated menu if any
|
377 |
+
$('.sek-mobile-menu-expanded-below').remove();
|
378 |
+
_doMobileMenuSetup();
|
379 |
+
});
|
380 |
+
|
381 |
+
});//jQuery( function($){})
|
382 |
+
|
383 |
+
};/////////////// callbackFunc
|
384 |
+
// on 'nb-app-ready', jQuery is loaded
|
385 |
+
nb_.listenTo('nb-app-ready', callbackFunc );
|
386 |
+
}(window, document));
|
387 |
+
|
assets/front/js/partials/menu-module.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
window,document,nb_.listenTo("nb-app-ready",function(){jQuery(function(l){var e,o,i,d,r,c,s,u,n,h,a,t,p,m,g,f,k,E,_;t={PLACE_ME:"placeme"+(a="."+(h="sek.sekDropdown")),PLACE_ALL:"placeall"+a,SHOWN:"shown"+a,SHOW:"show"+a,HIDDEN:"hidden"+a,HIDE:"hide"+a,CLICK:"click"+a,TAP:"tap"+a},p="sek-dropdown-menu",m="sek-dropdown-submenu",g="show",f="menu-item-has-children",k='[data-toggle="sek-dropdown"]',_=E=".sek-nav-wrap .menu-item-has-children",l(".sek-nav .children, .sek-nav .sub-menu").addClass(p),l(".sek-nav-wrap .page_item_has_children").addClass(f),l(".sek-nav ."+p+" ."+f).addClass(m),s=E,l(document).on("mouseenter",s,function(){var s=l(this);nb_.debounce(function(){if("static"==s.find("."+p).css("position"))return!1;if(!s.hasClass(g)){s.trigger(t.SHOW).addClass(g).trigger(t.SHOWN);var e=s.children(k);e.length&&e[0].setAttribute("aria-expanded","true")}},30)()}).on("mouseleave",s,function(){var s=l(this);nb_.debounce(function(){if(s.find("ul li:hover").length<1&&!s.closest("ul").find("li:hover").is(s)){s.trigger(t.HIDE).removeClass(g).trigger(t.HIDDEN);var e=s.children(k);e.length&&e[0].setAttribute("aria-expanded","false")}},30)()}),u="rtl"===l("html").attr("dir"),n=!1,nb_.cachedElements.$window.on("resize",function(){n||(n=!0,window.requestAnimationFrame(function(){l(_+"."+g).trigger(t.PLACE_ME),n=!1}))}),l(document).on(t.PLACE_ALL,function(){l(_).trigger(t.PLACE_ME)}).on(t.SHOWN+" "+t.PLACE_ME,_,function(e){e.stopPropagation(),function(e,s){if(s&&s.namespace&&h===s.namespace){var n,a,t,o,i,d,r=e.children("."+p);r.length&&(e.css("overflow","hidden"),r.css({zIndex:"-100",display:"block"}),a=e,t=u?{_DEFAULT:"left",_OPPOSITE:"right"}:{_DEFAULT:"right",_OPPOSITE:"left"},o={OPEN_PREFIX:"open-",DD_SUBMENU:"sek-dropdown-submenu",CARET_TITLE_FLIP:"sek-menu-link__row-reverse",DROPDOWN:"sek-dropdown-menu"},i=function(e,n,s){l.each(e,function(){var e=l(this),s=e.find("a").first();1==s.length&&s.toggleClass(o.CARET_TITLE_FLIP,n==t._OPPOSITE)})},d=function(e){var s=e==t._OPPOSITE?t._DEFAULT:t._OPPOSITE;n.removeClass(o.OPEN_PREFIX+s).addClass(o.OPEN_PREFIX+e),a.hasClass(o.DD_SUBMENU)&&(i(a,e,s),i(n.children("."+o.DD_SUBMENU),e,s))},(n=r).parent().closest("."+o.DROPDOWN).hasClass(o.OPEN_PREFIX+t._OPPOSITE)?d(t._OPPOSITE):d(t._DEFAULT),n.offset().left+n.width()>nb_.cachedElements.$window.width()?d("left"):n.offset().left<0&&d("right"),r.css({zIndex:"",display:""}),e.css("overflow",""))}}(l(this),e)}),o={SHOW:"show"+(e=".sek.sekCollapse"),SHOWN:"shown"+e,HIDE:"hide"+e,HIDDEN:"hidden"+e,CLICK_DATA_API:"click"+e+".data-api"},i="show",d="sek-collapse",r="sek-collapsing",c="sek-collapsed",l(document).on(o.CLICK_DATA_API,'[data-sek-toggle="sek-collapse"]',function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var s=l(this),n=s.data("target");l(n).each(function(){var a=l(this),t=a.hasClass(i);a.stop()[t?"slideUp":"slideDown"]({duration:400,start:function(){a.addClass(r).trigger(t?o.HIDE:o.SHOW),t?s.addClass(c).attr("aria-expanded","false"):s.removeClass(c).attr("aria-expanded","true")},complete:function(){var e,s,n;n=t?(e=i,s=d,o.HIDDEN):(e=d,s=i,o.SHOWN),a.removeClass(r+" "+e).addClass(s).trigger(n),function(e){(e=e||l(this)).css({display:"",paddingTop:"",marginTop:"",paddingBottom:"",marginBottom:"",height:""})}(a)}})})}),l(document).on("mouseenter",".sek-nav-toggler",function(){l(this).addClass("hovering")}).on("mouseleave",".sek-nav-toggler",function(){l(this).removeClass("hovering")}).on("show.sek.sekCollapse hide.sek.sekCollapse",".sek-nav-collapse",function(){l('[data-target="#'+l(this).attr("id")+'"]').removeClass("hovering"),nb_.cachedElements.$window.trigger("scroll")});var v=function(){l('[data-sek-module-type="czr_menu_module"]').find('[data-sek-expand-below="yes"]').each(function(){if(!0!==l(this).data("sek-setup-menu-mobile-expanded-below-done")){var e=l(this).closest('[data-sek-module-type="czr_menu_module"]').clone(!0),s=l(".sek-nav-collapse",this).attr("id")+"-mobile";e.appendTo(l(this).closest(".sek-sektion-inner")).wrap('<div class="sek-col-base sek-mobile-menu-expanded-below" id="'+s+'-wrapper"></div>'),l(".sek-nav-collapse","#"+s+"-wrapper").attr("id",s),l(".sek-nav-wrap","#"+s+"-wrapper").attr("data-sek-is-mobile-menu","yes"),l(".sek-nav-toggler","#"+s+"-wrapper").detach(),l(".sek-nav-toggler",this).data("target","#"+s).attr("aria-controls",s),l(this).data("sek-setup-menu-mobile-expanded-below-done",!0)}})};v(),nb_.cachedElements.$body.on("sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added",function(e){l(".sek-mobile-menu-expanded-below").remove(),v()})})});
|
assets/front/js/partials/slider-module.js
ADDED
@@ -0,0 +1,528 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// global sekFrontLocalized, nimbleListenTo
|
2 |
+
/* ------------------------------------------------------------------------- *
|
3 |
+
* SWIPER CAROUSEL implemented for the simple slider module czr_img_slider_module
|
4 |
+
* doc : https://swiperjs.com/api/
|
5 |
+
* dependency : $.fn.nimbleCenterImages()
|
6 |
+
/* ------------------------------------------------------------------------- */
|
7 |
+
|
8 |
+
(function(w, d){
|
9 |
+
var callbackFunc = function() {
|
10 |
+
jQuery( function($){
|
11 |
+
var mySwipers = [];
|
12 |
+
var triggerSimpleLoad = function( $_imgs ) {
|
13 |
+
if ( 0 === $_imgs.length )
|
14 |
+
return;
|
15 |
+
|
16 |
+
$_imgs.map( function( _ind, _img ) {
|
17 |
+
$(_img).load( function () {
|
18 |
+
$(_img).trigger('simple_load');
|
19 |
+
});//end load
|
20 |
+
if ( $(_img)[0] && $(_img)[0].complete )
|
21 |
+
$(_img).load();
|
22 |
+
} );//end map
|
23 |
+
};//end of fn
|
24 |
+
|
25 |
+
|
26 |
+
// Each swiper is instantiated with a unique id
|
27 |
+
// so that if we have several instance on the same page, they are totally independant.
|
28 |
+
// If we don't use a unique Id for swiper + navigation buttons, a click on a button, make all slider move synchronously.
|
29 |
+
var doSingleSwiperInstantiation = function() {
|
30 |
+
var $swiperWrapper = $(this), swiperClass = 'sek-swiper' + $swiperWrapper.data('sek-swiper-id');
|
31 |
+
var swiperParams = {
|
32 |
+
// slidesPerView: 3,
|
33 |
+
// spaceBetween: 30,
|
34 |
+
loop : true === $swiperWrapper.data('sek-loop') && true === $swiperWrapper.data('sek-is-multislide'),//Set to true to enable continuous loop mode
|
35 |
+
grabCursor : true === $swiperWrapper.data('sek-is-multislide'),
|
36 |
+
on : {
|
37 |
+
init : function() {
|
38 |
+
// remove the .sek-swiper-loading class from the wrapper => remove the display:none rule
|
39 |
+
$swiperWrapper.removeClass('sek-swiper-loading');
|
40 |
+
|
41 |
+
// remove the css loader
|
42 |
+
$swiperWrapper.parent().find('.sek-css-loader').remove();
|
43 |
+
|
44 |
+
// lazy load the first slider image with Nimble if not done already
|
45 |
+
// the other images will be lazy loaded by swiper if the option is activated
|
46 |
+
// if ( sekFrontLocalized.lazyload_enabled && $.fn.nimbleLazyLoad ) {
|
47 |
+
|
48 |
+
// }
|
49 |
+
$swiperWrapper.trigger('nb-trigger-lazyload');
|
50 |
+
|
51 |
+
// center images with Nimble wizard when needed
|
52 |
+
if ( 'nimble-wizard' === $swiperWrapper.data('sek-image-layout') ) {
|
53 |
+
$swiperWrapper.find('.sek-carousel-img').each( function() {
|
54 |
+
var $_imgsToSimpleLoad = $(this).nimbleCenterImages({
|
55 |
+
enableCentering : 1,
|
56 |
+
zeroTopAdjust: 0,
|
57 |
+
setOpacityWhenCentered : false,//will set the opacity to 1
|
58 |
+
oncustom : [ 'simple_load', 'smartload', 'sek-nimble-refreshed', 'recenter']
|
59 |
+
})
|
60 |
+
//images with src which starts with "data" are our smartload placeholders
|
61 |
+
//we don't want to trigger the simple_load on them
|
62 |
+
//the centering, will be done on the smartload event (see onCustom above)
|
63 |
+
.find( 'img:not([src^="data"])' );
|
64 |
+
|
65 |
+
//trigger the simple load
|
66 |
+
nb_.delay( function() {
|
67 |
+
triggerSimpleLoad( $_imgsToSimpleLoad );
|
68 |
+
}, 50 );
|
69 |
+
});//each()
|
70 |
+
}
|
71 |
+
},// init
|
72 |
+
// make sure slides are always lazyloaded
|
73 |
+
slideChange : function(params) {
|
74 |
+
// when lazy load is active, we want to lazy load the first image of the slider if offscreen
|
75 |
+
// img to be lazy loaded looks like data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7
|
76 |
+
$swiperWrapper.trigger('nb-trigger-lazyload');
|
77 |
+
|
78 |
+
if ( $swiperWrapper.find('[src*="data:image/gif;"]').length > 0 ) {
|
79 |
+
// Make sure we load clean lazy loaded slides on change
|
80 |
+
// for https://github.com/presscustomizr/nimble-builder/issues/677
|
81 |
+
$swiperWrapper.find('[src*="data:image/gif;"]').each( function() {
|
82 |
+
var $img = $(this);
|
83 |
+
if ( $img.attr('data-sek-img-sizes') ) {
|
84 |
+
$img.attr('sizes', $img.attr('data-sek-img-sizes') );
|
85 |
+
$img.removeAttr('data-sek-img-sizes');
|
86 |
+
}
|
87 |
+
if ( $img.attr('data-src') ) {
|
88 |
+
$img.attr('src', $img.attr('data-src') );
|
89 |
+
$img.removeAttr('data-src');
|
90 |
+
}
|
91 |
+
if ( $img.attr('data-sek-src') ) {
|
92 |
+
$img.attr('src', $img.attr('data-sek-src') );
|
93 |
+
$img.removeAttr('data-sek-src');
|
94 |
+
}
|
95 |
+
if ( $img.attr('data-srcset') ) {
|
96 |
+
$img.attr('srcset', $img.attr('data-srcset') );
|
97 |
+
$img.removeAttr('data-srcset');
|
98 |
+
}
|
99 |
+
});
|
100 |
+
}
|
101 |
+
}
|
102 |
+
}//on
|
103 |
+
};
|
104 |
+
|
105 |
+
// AUTOPLAY
|
106 |
+
if ( true === $swiperWrapper.data('sek-autoplay') ) {
|
107 |
+
$.extend( swiperParams, {
|
108 |
+
autoplay : {
|
109 |
+
delay : $swiperWrapper.data('sek-autoplay-delay'),
|
110 |
+
disableOnInteraction : $swiperWrapper.data('sek-pause-on-hover')
|
111 |
+
}
|
112 |
+
});
|
113 |
+
} else {
|
114 |
+
$.extend( swiperParams, {
|
115 |
+
autoplay : {
|
116 |
+
delay : 999999999//<= the autoplay:false doesn't seem to work...
|
117 |
+
}
|
118 |
+
});
|
119 |
+
}
|
120 |
+
|
121 |
+
// NAVIGATION ARROWS && PAGINATION DOTS
|
122 |
+
if ( true === $swiperWrapper.data('sek-is-multislide') ) {
|
123 |
+
var navType = $swiperWrapper.data('sek-navtype');
|
124 |
+
if ( 'arrows_dots' === navType || 'arrows' === navType ) {
|
125 |
+
$.extend( swiperParams, {
|
126 |
+
navigation: {
|
127 |
+
nextEl: '.sek-swiper-next' + $swiperWrapper.data('sek-swiper-id'),
|
128 |
+
prevEl: '.sek-swiper-prev' + $swiperWrapper.data('sek-swiper-id')
|
129 |
+
}
|
130 |
+
});
|
131 |
+
}
|
132 |
+
if ( 'arrows_dots' === navType || 'dots' === navType ) {
|
133 |
+
$.extend( swiperParams, {
|
134 |
+
pagination: {
|
135 |
+
el: '.swiper-pagination' + $swiperWrapper.data('sek-swiper-id'),
|
136 |
+
clickable: true,
|
137 |
+
}
|
138 |
+
});
|
139 |
+
}
|
140 |
+
}
|
141 |
+
|
142 |
+
// LAZYLOAD @see https://swiperjs.com/api/#lazy
|
143 |
+
if ( true === $swiperWrapper.data('sek-lazyload') ) {
|
144 |
+
$.extend( swiperParams, {
|
145 |
+
// Disable preloading of all images
|
146 |
+
preloadImages: false,
|
147 |
+
lazy : {
|
148 |
+
// By default, Swiper will load lazy images after transition to this slide, so you may enable this parameter if you need it to start loading of new image in the beginning of transition
|
149 |
+
loadOnTransitionStart : true
|
150 |
+
}
|
151 |
+
});
|
152 |
+
}
|
153 |
+
|
154 |
+
mySwipers.push( new Swiper(
|
155 |
+
'.' + swiperClass,//$(this)[0],
|
156 |
+
swiperParams
|
157 |
+
));
|
158 |
+
|
159 |
+
// On Swiper Lazy Loading
|
160 |
+
// https://swiperjs.com/api/#lazy
|
161 |
+
$.each( mySwipers, function( ind, _swiperInstance ){
|
162 |
+
_swiperInstance.on( 'lazyImageReady', function( slideEl, imageEl ) {
|
163 |
+
$(imageEl).trigger('recenter');
|
164 |
+
});
|
165 |
+
_swiperInstance.on( 'lazyImageLoad', function( slideEl, imageEl ) {
|
166 |
+
// clean the extra attribute added when preprocessing for lazy loading
|
167 |
+
var $img = $(imageEl);
|
168 |
+
if ( $img.attr('data-sek-img-sizes') ) {
|
169 |
+
$img.attr('sizes', $img.attr('data-sek-img-sizes') );
|
170 |
+
$img.removeAttr('data-sek-img-sizes');
|
171 |
+
}
|
172 |
+
});
|
173 |
+
});
|
174 |
+
|
175 |
+
};
|
176 |
+
|
177 |
+
var doAllSwiperInstanciation = function() {
|
178 |
+
$('.sektion-wrapper').find('[data-sek-swiper-id]').each( function() {
|
179 |
+
doSingleSwiperInstantiation.call($(this));
|
180 |
+
});
|
181 |
+
};
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
// On custom events
|
186 |
+
nb_.cachedElements.$body.on( 'sek-columns-refreshed sek-modules-refreshed sek-section-added sek-level-refreshed', '[data-sek-level="location"]',
|
187 |
+
function(evt) {
|
188 |
+
if ( 0 !== mySwipers.length ) {
|
189 |
+
$.each( mySwipers, function( ind, _swiperInstance ){
|
190 |
+
_swiperInstance.destroy();
|
191 |
+
});
|
192 |
+
}
|
193 |
+
mySwipers = [];
|
194 |
+
doAllSwiperInstanciation();
|
195 |
+
|
196 |
+
$(this).find('.swiper-container img').each( function() {
|
197 |
+
$(this).trigger('sek-nimble-refreshed');
|
198 |
+
});
|
199 |
+
}
|
200 |
+
);
|
201 |
+
|
202 |
+
// When the stylesheet is refreshed, update the centering with a custom event
|
203 |
+
// this is needed when setting the custom height of the slider wrapper
|
204 |
+
nb_.cachedElements.$body.on( 'sek-stylesheet-refreshed', '[data-sek-module-type="czr_img_slider_module"]',
|
205 |
+
function() {
|
206 |
+
$(this).find('.swiper-container img').each( function() {
|
207 |
+
$(this).trigger('sek-nimble-refreshed');
|
208 |
+
});
|
209 |
+
}
|
210 |
+
);
|
211 |
+
|
212 |
+
|
213 |
+
// on load
|
214 |
+
$('.sektion-wrapper').find('.swiper-container').each( function() {
|
215 |
+
doAllSwiperInstanciation();
|
216 |
+
});
|
217 |
+
|
218 |
+
|
219 |
+
// Action on click
|
220 |
+
// $( 'body').on( 'click', '[data-sek-module-type="czr_img_slider_module"]', function(evt ) {
|
221 |
+
// // $(this).find('[data-sek-swiper-id]').each( function() {
|
222 |
+
// // $(this).trigger('sek-nimble-refreshed');
|
223 |
+
// // });
|
224 |
+
// }
|
225 |
+
// );
|
226 |
+
|
227 |
+
|
228 |
+
// Behaviour on mouse hover
|
229 |
+
// @seehttps://stackoverflow.com/questions/53028089/swiper-autoplay-stop-the-swiper-when-you-move-the-mouse-cursor-and-start-playba
|
230 |
+
$('.swiper-slide').on('mouseover mouseout', function( evt ) {
|
231 |
+
var swiperInstance = $(this).closest('.swiper-container')[0].swiper;
|
232 |
+
if ( ! nb_.isUndefined( swiperInstance ) && true === swiperInstance.params.autoplay.disableOnInteraction ) {
|
233 |
+
switch( evt.type ) {
|
234 |
+
case 'mouseover' :
|
235 |
+
swiperInstance.autoplay.stop();
|
236 |
+
break;
|
237 |
+
case 'mouseout' :
|
238 |
+
swiperInstance.autoplay.start();
|
239 |
+
break;
|
240 |
+
}
|
241 |
+
}
|
242 |
+
});
|
243 |
+
|
244 |
+
// When customizing, focus on the currently expanded / edited item
|
245 |
+
// @see CZRItemConstructor in api.czrModuleMap.czr_img_slider_collection_child
|
246 |
+
if ( window.wp && ! nb_.isUndefined( wp.customize ) ) {
|
247 |
+
wp.customize.preview.bind('sek-item-focus', function( params ) {
|
248 |
+
|
249 |
+
var $itemEl = $('[data-sek-item-id="' + params.item_id +'"]', '.swiper-container').first();
|
250 |
+
if ( 1 > $itemEl.length )
|
251 |
+
return;
|
252 |
+
var $swiperContainer = $itemEl.closest('.swiper-container');
|
253 |
+
if ( 1 > $swiperContainer.length )
|
254 |
+
return;
|
255 |
+
|
256 |
+
var activeSwiperInstance = $itemEl.closest('.swiper-container')[0].swiper;
|
257 |
+
|
258 |
+
if ( nb_.isUndefined( activeSwiperInstance ) )
|
259 |
+
return;
|
260 |
+
// we can't rely on internal indexing system of swipe, because it uses duplicate item when infinite looping is enabled
|
261 |
+
// jQuery is our friend
|
262 |
+
var slideIndex = $( '.swiper-slide', $swiperContainer ).index( $itemEl );
|
263 |
+
//http://idangero.us/swiper/api/#methods
|
264 |
+
//mySwiper.slideTo(index, speed, runCallbacks);
|
265 |
+
activeSwiperInstance.slideTo( slideIndex, 100 );
|
266 |
+
});
|
267 |
+
|
268 |
+
// Trigger a window resize when control send a 'sek-preview-device-changed'
|
269 |
+
// wp.customize.preview.bind('sek-preview-device-changed', nb_.debounce( function( params ) {
|
270 |
+
// nb_.cachedElements.$window.trigger('resize');
|
271 |
+
// }, 1000 ));
|
272 |
+
}
|
273 |
+
});
|
274 |
+
|
275 |
+
|
276 |
+
|
277 |
+
|
278 |
+
|
279 |
+
|
280 |
+
|
281 |
+
|
282 |
+
|
283 |
+
|
284 |
+
|
285 |
+
/* ===================================================
|
286 |
+
* jquerynimbleCenterImages.js v1.0.0
|
287 |
+
* ( inspired by Customizr theme jQuery plugin )
|
288 |
+
* ===================================================
|
289 |
+
* (c) 2019 Nicolas Guillaume, Nice, France
|
290 |
+
* CenterImages plugin may be freely distributed under the terms of the GNU GPL v2.0 or later license.
|
291 |
+
*
|
292 |
+
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
293 |
+
*
|
294 |
+
* Center images in a specified container
|
295 |
+
*
|
296 |
+
* =================================================== */
|
297 |
+
(function ( $, window ) {
|
298 |
+
//defaults
|
299 |
+
var pluginName = 'nimbleCenterImages',
|
300 |
+
defaults = {
|
301 |
+
enableCentering : true,
|
302 |
+
onresize : true,
|
303 |
+
onInit : true,//<= shall we smartload on init or wait for a custom event, typically smartload ?
|
304 |
+
oncustom : [],//list of event here
|
305 |
+
$containerToListen : null,//<= we might want to listen to custom event trigger to a parent container.Should be a jQuery obj
|
306 |
+
imgSel : 'img',
|
307 |
+
defaultCSSVal : { width : 'auto' , height : 'auto' },
|
308 |
+
leftAdjust : 0,
|
309 |
+
zeroLeftAdjust : 0,
|
310 |
+
topAdjust : 0,
|
311 |
+
zeroTopAdjust : -2,//<= top ajustement for sek-h-centrd
|
312 |
+
useImgAttr:false,//uses the img height and width attributes if not visible (typically used for the customizr slider hidden images)
|
313 |
+
setOpacityWhenCentered : false,//this can be used to hide the image during the time it is centered
|
314 |
+
addCenteredClassWithDelay : 0,//<= a small delay can be required when we rely on the sek-v-centrd or sek-h-centrd css classes to set the opacity for example
|
315 |
+
opacity : 1
|
316 |
+
};
|
317 |
+
|
318 |
+
function Plugin( element, options ) {
|
319 |
+
var self = this;
|
320 |
+
this.container = element;
|
321 |
+
this.options = $.extend( {}, defaults, options) ;
|
322 |
+
this._defaults = defaults;
|
323 |
+
this._name = pluginName;
|
324 |
+
this._customEvt = $.isArray(self.options.oncustom) ? self.options.oncustom : self.options.oncustom.split(' ');
|
325 |
+
this.init();
|
326 |
+
}
|
327 |
+
|
328 |
+
//can access this.element and this.option
|
329 |
+
//@return void
|
330 |
+
Plugin.prototype.init = function () {
|
331 |
+
var self = this,
|
332 |
+
_do = function( _event_ ) {
|
333 |
+
_event_ = _event_ || 'init';
|
334 |
+
|
335 |
+
//parses imgs ( if any ) in current container
|
336 |
+
var $_imgs = $( self.options.imgSel , self.container );
|
337 |
+
|
338 |
+
//if no images or centering is not active, only handle the golden ratio on resize event
|
339 |
+
if ( 1 <= $_imgs.length && self.options.enableCentering ) {
|
340 |
+
self._parse_imgs( $_imgs, _event_ );
|
341 |
+
}
|
342 |
+
};
|
343 |
+
|
344 |
+
//fire
|
345 |
+
if ( self.options.onInit ) {
|
346 |
+
_do();
|
347 |
+
}
|
348 |
+
|
349 |
+
//bind the container element with custom events if any
|
350 |
+
//( the images will also be bound )
|
351 |
+
if ( $.isArray( self._customEvt ) ) {
|
352 |
+
self._customEvt.map( function( evt ) {
|
353 |
+
var $_containerToListen = ( self.options.$containerToListen instanceof $ && 1 < self.options.$containerToListen.length ) ? self.options.$containerToListen : $( self.container );
|
354 |
+
$_containerToListen.bind( evt, {} , function() {
|
355 |
+
_do( evt );
|
356 |
+
});
|
357 |
+
} );
|
358 |
+
}
|
359 |
+
};
|
360 |
+
|
361 |
+
|
362 |
+
//@return void
|
363 |
+
Plugin.prototype._parse_imgs = function( $_imgs, _event_ ) {
|
364 |
+
var self = this;
|
365 |
+
$_imgs.each(function ( ind, img ) {
|
366 |
+
var $_img = $(img);
|
367 |
+
self._pre_img_cent( $_img, _event_ );
|
368 |
+
|
369 |
+
// IMG CENTERING FN ON RESIZE ?
|
370 |
+
// Parse Img can be fired several times, so bind once
|
371 |
+
if ( self.options.onresize && ! $_img.data('resize-react-bound' ) ) {
|
372 |
+
$_img.data('resize-react-bound', true );
|
373 |
+
nb_.cachedElements.$window.resize( nb_.debounce( function() {
|
374 |
+
self._pre_img_cent( $_img, 'resize');
|
375 |
+
}, 100 ) );
|
376 |
+
}
|
377 |
+
|
378 |
+
});//$_imgs.each()
|
379 |
+
|
380 |
+
// Mainly designed to check if a container is not getting parsed too many times
|
381 |
+
if ( $(self.container).attr('data-img-centered-in-container') ) {
|
382 |
+
var _n = parseInt( $(self.container).attr('data-img-centered-in-container'), 10 ) + 1;
|
383 |
+
$(self.container).attr('data-img-centered-in-container', _n );
|
384 |
+
} else {
|
385 |
+
$(self.container).attr('data-img-centered-in-container', 1 );
|
386 |
+
}
|
387 |
+
};
|
388 |
+
|
389 |
+
|
390 |
+
|
391 |
+
//@return void
|
392 |
+
Plugin.prototype._pre_img_cent = function( $_img ) {
|
393 |
+
|
394 |
+
var _state = this._get_current_state( $_img ),
|
395 |
+
self = this,
|
396 |
+
_case = _state.current,
|
397 |
+
_p = _state.prop[_case],
|
398 |
+
_not_p = _state.prop[ 'h' == _case ? 'v' : 'h'],
|
399 |
+
_not_p_dir_val = 'h' == _case ? ( this.options.zeroTopAdjust || 0 ) : ( this.options.zeroLeftAdjust || 0 );
|
400 |
+
|
401 |
+
var _centerImg = function( $_img ) {
|
402 |
+
$_img
|
403 |
+
.css( _p.dim.name , _p.dim.val )
|
404 |
+
.css( _not_p.dim.name , self.options.defaultCSSVal[ _not_p.dim.name ] || 'auto' )
|
405 |
+
.css( _p.dir.name, _p.dir.val ).css( _not_p.dir.name, _not_p_dir_val );
|
406 |
+
|
407 |
+
if ( 0 !== self.options.addCenteredClassWithDelay && nb_.isNumber( self.options.addCenteredClassWithDelay ) ) {
|
408 |
+
nb_.delay( function() {
|
409 |
+
$_img.addClass( _p._class ).removeClass( _not_p._class );
|
410 |
+
}, self.options.addCenteredClassWithDelay );
|
411 |
+
} else {
|
412 |
+
$_img.addClass( _p._class ).removeClass( _not_p._class );
|
413 |
+
}
|
414 |
+
|
415 |
+
// Mainly designed to check if a single image is not getting parsed too many times
|
416 |
+
if ( $_img.attr('data-img-centered') ) {
|
417 |
+
var _n = parseInt( $_img.attr('data-img-centered'), 10 ) + 1;
|
418 |
+
$_img.attr('data-img-centered', _n );
|
419 |
+
} else {
|
420 |
+
$_img.attr('data-img-centered', 1 );
|
421 |
+
}
|
422 |
+
return $_img;
|
423 |
+
};
|
424 |
+
if ( this.options.setOpacityWhenCentered ) {
|
425 |
+
$.when( _centerImg( $_img ) ).done( function( $_img ) {
|
426 |
+
$_img.css( 'opacity', self.options.opacity );
|
427 |
+
});
|
428 |
+
} else {
|
429 |
+
nb_.delay(function() { _centerImg( $_img ); }, 0 );
|
430 |
+
}
|
431 |
+
};
|
432 |
+
|
433 |
+
|
434 |
+
|
435 |
+
|
436 |
+
/********
|
437 |
+
* HELPERS
|
438 |
+
*********/
|
439 |
+
//@return object with initial conditions : { current : 'h' or 'v', prop : {} }
|
440 |
+
Plugin.prototype._get_current_state = function( $_img ) {
|
441 |
+
var c_x = $_img.closest(this.container).outerWidth(),
|
442 |
+
c_y = $(this.container).outerHeight(),
|
443 |
+
i_x = this._get_img_dim( $_img , 'x'),
|
444 |
+
i_y = this._get_img_dim( $_img , 'y'),
|
445 |
+
up_i_x = i_y * c_y !== 0 ? Math.round( i_x / i_y * c_y ) : c_x,
|
446 |
+
up_i_y = i_x * c_x !== 0 ? Math.round( i_y / i_x * c_x ) : c_y,
|
447 |
+
current = 'h';
|
448 |
+
//avoid dividing by zero if c_x or i_x === 0
|
449 |
+
if ( 0 !== c_x * i_x ) {
|
450 |
+
current = ( c_y / c_x ) >= ( i_y / i_x ) ? 'h' : 'v';
|
451 |
+
}
|
452 |
+
|
453 |
+
var prop = {
|
454 |
+
h : {
|
455 |
+
dim : { name : 'height', val : c_y },
|
456 |
+
dir : { name : 'left', val : ( c_x - up_i_x ) / 2 + ( this.options.leftAdjust || 0 ) },
|
457 |
+
_class : 'sek-h-centrd'
|
458 |
+
},
|
459 |
+
v : {
|
460 |
+
dim : { name : 'width', val : c_x },
|
461 |
+
dir : { name : 'top', val : ( c_y - up_i_y ) / 2 + ( this.options.topAdjust || 0 ) },
|
462 |
+
_class : 'sek-v-centrd'
|
463 |
+
}
|
464 |
+
};
|
465 |
+
|
466 |
+
return { current : current , prop : prop };
|
467 |
+
};
|
468 |
+
|
469 |
+
//@return img height or width
|
470 |
+
//uses the img height and width if not visible and set in options
|
471 |
+
Plugin.prototype._get_img_dim = function( $_img, _dim ) {
|
472 |
+
if ( ! this.options.useImgAttr )
|
473 |
+
return 'x' == _dim ? $_img.outerWidth() : $_img.outerHeight();
|
474 |
+
|
475 |
+
if ( $_img.is(":visible") ) {
|
476 |
+
return 'x' == _dim ? $_img.outerWidth() : $_img.outerHeight();
|
477 |
+
} else {
|
478 |
+
if ( 'x' == _dim ){
|
479 |
+
var _width = $_img.originalWidth();
|
480 |
+
return typeof _width === undefined ? 0 : _width;
|
481 |
+
}
|
482 |
+
if ( 'y' == _dim ){
|
483 |
+
var _height = $_img.originalHeight();
|
484 |
+
return typeof _height === undefined ? 0 : _height;
|
485 |
+
}
|
486 |
+
}
|
487 |
+
};
|
488 |
+
|
489 |
+
/*
|
490 |
+
* @params string : ids or classes
|
491 |
+
* @return boolean
|
492 |
+
*/
|
493 |
+
Plugin.prototype._is_selector_allowed = function() {
|
494 |
+
//has requested sel ?
|
495 |
+
if ( ! $(this.container).attr( 'class' ) )
|
496 |
+
return true;
|
497 |
+
|
498 |
+
var _elSels = $(this.container).attr( 'class' ).split(' '),
|
499 |
+
_selsToSkip = [],
|
500 |
+
_filtered = _elSels.filter( function(classe) { return -1 != $.inArray( classe , _selsToSkip ) ;});
|
501 |
+
|
502 |
+
//check if the filtered selectors array with the non authorized selectors is empty or not
|
503 |
+
//if empty => all selectors are allowed
|
504 |
+
//if not, at least one is not allowed
|
505 |
+
return 0 === _filtered.length;
|
506 |
+
};
|
507 |
+
|
508 |
+
|
509 |
+
// prevents against multiple instantiations
|
510 |
+
$.fn[pluginName] = function ( options ) {
|
511 |
+
return this.each(function () {
|
512 |
+
if (!$.data(this, 'plugin_' + pluginName)) {
|
513 |
+
$.data(this, 'plugin_' + pluginName,
|
514 |
+
new Plugin( this, options ));
|
515 |
+
}
|
516 |
+
});
|
517 |
+
};
|
518 |
+
|
519 |
+
})( jQuery, window );
|
520 |
+
};/////////////// callbackFunc
|
521 |
+
|
522 |
+
// When loaded with defer, we can not be sure that jQuery will be loaded before
|
523 |
+
// so let's make sure that we have both the plugin and jQuery loaded
|
524 |
+
nb_.listenTo( 'nb-app-ready', function() {
|
525 |
+
// on 'nb-app-ready', jQuery is loaded
|
526 |
+
nb_.listenTo( 'nb-main-swiper-parsed', callbackFunc );
|
527 |
+
});
|
528 |
+
}(window, document));
|
assets/front/js/partials/slider-module.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(e,t){var i=function(){jQuery(function(s){var a=[],e=function(){var t=s(this),e="sek-swiper"+t.data("sek-swiper-id"),i={loop:!0===t.data("sek-loop")&&!0===t.data("sek-is-multislide"),grabCursor:!0===t.data("sek-is-multislide"),on:{init:function(){t.removeClass("sek-swiper-loading"),t.parent().find(".sek-css-loader").remove(),t.trigger("nb-trigger-lazyload"),"nimble-wizard"===t.data("sek-image-layout")&&t.find(".sek-carousel-img").each(function(){var t=s(this).nimbleCenterImages({enableCentering:1,zeroTopAdjust:0,setOpacityWhenCentered:!1,oncustom:["simple_load","smartload","sek-nimble-refreshed","recenter"]}).find('img:not([src^="data"])');nb_.delay(function(){var e;0!==(e=t).length&&e.map(function(e,t){s(t).load(function(){s(t).trigger("simple_load")}),s(t)[0]&&s(t)[0].complete&&s(t).load()})},50)})},slideChange:function(e){t.trigger("nb-trigger-lazyload"),0<t.find('[src*="data:image/gif;"]').length&&t.find('[src*="data:image/gif;"]').each(function(){var e=s(this);e.attr("data-sek-img-sizes")&&(e.attr("sizes",e.attr("data-sek-img-sizes")),e.removeAttr("data-sek-img-sizes")),e.attr("data-src")&&(e.attr("src",e.attr("data-src")),e.removeAttr("data-src")),e.attr("data-sek-src")&&(e.attr("src",e.attr("data-sek-src")),e.removeAttr("data-sek-src")),e.attr("data-srcset")&&(e.attr("srcset",e.attr("data-srcset")),e.removeAttr("data-srcset"))})}}};if(!0===t.data("sek-autoplay")?s.extend(i,{autoplay:{delay:t.data("sek-autoplay-delay"),disableOnInteraction:t.data("sek-pause-on-hover")}}):s.extend(i,{autoplay:{delay:999999999}}),!0===t.data("sek-is-multislide")){var n=t.data("sek-navtype");"arrows_dots"!==n&&"arrows"!==n||s.extend(i,{navigation:{nextEl:".sek-swiper-next"+t.data("sek-swiper-id"),prevEl:".sek-swiper-prev"+t.data("sek-swiper-id")}}),"arrows_dots"!==n&&"dots"!==n||s.extend(i,{pagination:{el:".swiper-pagination"+t.data("sek-swiper-id"),clickable:!0}})}!0===t.data("sek-lazyload")&&s.extend(i,{preloadImages:!1,lazy:{loadOnTransitionStart:!0}}),a.push(new Swiper("."+e,i)),s.each(a,function(e,t){t.on("lazyImageReady",function(e,t){s(t).trigger("recenter")}),t.on("lazyImageLoad",function(e,t){var i=s(t);i.attr("data-sek-img-sizes")&&(i.attr("sizes",i.attr("data-sek-img-sizes")),i.removeAttr("data-sek-img-sizes"))})})},t=function(){s(".sektion-wrapper").find("[data-sek-swiper-id]").each(function(){e.call(s(this))})};nb_.cachedElements.$body.on("sek-columns-refreshed sek-modules-refreshed sek-section-added sek-level-refreshed",'[data-sek-level="location"]',function(e){0!==a.length&&s.each(a,function(e,t){t.destroy()}),a=[],t(),s(this).find(".swiper-container img").each(function(){s(this).trigger("sek-nimble-refreshed")})}),nb_.cachedElements.$body.on("sek-stylesheet-refreshed",'[data-sek-module-type="czr_img_slider_module"]',function(){s(this).find(".swiper-container img").each(function(){s(this).trigger("sek-nimble-refreshed")})}),s(".sektion-wrapper").find(".swiper-container").each(function(){t()}),s(".swiper-slide").on("mouseover mouseout",function(e){var t=s(this).closest(".swiper-container")[0].swiper;if(!nb_.isUndefined(t)&&!0===t.params.autoplay.disableOnInteraction)switch(e.type){case"mouseover":t.autoplay.stop();break;case"mouseout":t.autoplay.start()}}),window.wp&&!nb_.isUndefined(wp.customize)&&wp.customize.preview.bind("sek-item-focus",function(e){var t=s('[data-sek-item-id="'+e.item_id+'"]',".swiper-container").first();if(!(t.length<1)){var i=t.closest(".swiper-container");if(!(i.length<1)){var n=t.closest(".swiper-container")[0].swiper;if(!nb_.isUndefined(n)){var a=s(".swiper-slide",i).index(t);n.slideTo(a,100)}}}})}),function(d,e){var n="nimbleCenterImages",a={enableCentering:!0,onresize:!0,onInit:!0,oncustom:[],$containerToListen:null,imgSel:"img",defaultCSSVal:{width:"auto",height:"auto"},leftAdjust:0,zeroLeftAdjust:0,topAdjust:0,zeroTopAdjust:-2,useImgAttr:!1,setOpacityWhenCentered:!1,addCenteredClassWithDelay:0,opacity:1};function t(e,t){var i=this;this.container=e,this.options=d.extend({},a,t),this._defaults=a,this._name=n,this._customEvt=d.isArray(i.options.oncustom)?i.options.oncustom:i.options.oncustom.split(" "),this.init()}t.prototype.init=function(){var i=this,t=function(e){e=e||"init";var t=d(i.options.imgSel,i.container);1<=t.length&&i.options.enableCentering&&i._parse_imgs(t,e)};i.options.onInit&&t(),d.isArray(i._customEvt)&&i._customEvt.map(function(e){(i.options.$containerToListen instanceof d&&1<i.options.$containerToListen.length?i.options.$containerToListen:d(i.container)).bind(e,{},function(){t(e)})})},t.prototype._parse_imgs=function(e,n){var a=this;if(e.each(function(e,t){var i=d(t);a._pre_img_cent(i,n),a.options.onresize&&!i.data("resize-react-bound")&&(i.data("resize-react-bound",!0),nb_.cachedElements.$window.resize(nb_.debounce(function(){a._pre_img_cent(i,"resize")},100)))}),d(a.container).attr("data-img-centered-in-container")){var t=parseInt(d(a.container).attr("data-img-centered-in-container"),10)+1;d(a.container).attr("data-img-centered-in-container",t)}else d(a.container).attr("data-img-centered-in-container",1)},t.prototype._pre_img_cent=function(e){var t=this._get_current_state(e),i=this,n=t.current,a=t.prop[n],s=t.prop["h"==n?"v":"h"],r="h"==n?this.options.zeroTopAdjust||0:this.options.zeroLeftAdjust||0,o=function(e){if(e.css(a.dim.name,a.dim.val).css(s.dim.name,i.options.defaultCSSVal[s.dim.name]||"auto").css(a.dir.name,a.dir.val).css(s.dir.name,r),0!==i.options.addCenteredClassWithDelay&&nb_.isNumber(i.options.addCenteredClassWithDelay)?nb_.delay(function(){e.addClass(a._class).removeClass(s._class)},i.options.addCenteredClassWithDelay):e.addClass(a._class).removeClass(s._class),e.attr("data-img-centered")){var t=parseInt(e.attr("data-img-centered"),10)+1;e.attr("data-img-centered",t)}else e.attr("data-img-centered",1);return e};this.options.setOpacityWhenCentered?d.when(o(e)).done(function(e){e.css("opacity",i.options.opacity)}):nb_.delay(function(){o(e)},0)},t.prototype._get_current_state=function(e){var t=e.closest(this.container).outerWidth(),i=d(this.container).outerHeight(),n=this._get_img_dim(e,"x"),a=this._get_img_dim(e,"y"),s=a*i!=0?Math.round(n/a*i):t,r=n*t!=0?Math.round(a/n*t):i,o="h";return 0!=t*n&&(o=a/n<=i/t?"h":"v"),{current:o,prop:{h:{dim:{name:"height",val:i},dir:{name:"left",val:(t-s)/2+(this.options.leftAdjust||0)},_class:"sek-h-centrd"},v:{dim:{name:"width",val:t},dir:{name:"top",val:(i-r)/2+(this.options.topAdjust||0)},_class:"sek-v-centrd"}}}},t.prototype._get_img_dim=function(e,t){if(!this.options.useImgAttr)return"x"==t?e.outerWidth():e.outerHeight();if(e.is(":visible"))return"x"==t?e.outerWidth():e.outerHeight();if("x"==t){var i=e.originalWidth();return void 0===typeof i?0:i}if("y"==t){var n=e.originalHeight();return void 0===typeof n?0:n}},t.prototype._is_selector_allowed=function(){if(!d(this.container).attr("class"))return!0;var e=d(this.container).attr("class").split(" "),t=[];return 0===e.filter(function(e){return-1!=d.inArray(e,t)}).length},d.fn[n]=function(e){return this.each(function(){d.data(this,"plugin_"+n)||d.data(this,"plugin_"+n,new t(this,e))})}}(jQuery,window)};nb_.listenTo("nb-app-ready",function(){nb_.listenTo("nb-main-swiper-parsed",i)})}(window,document);
|
inc/admin/system-info.php
CHANGED
@@ -138,7 +138,7 @@ function sek_config_infos() {
|
|
138 |
$return .= 'PHP Version: ' . PHP_VERSION . "\n";
|
139 |
$return .= 'MySQL Version: ' . $wpdb->db_version() . "\n";
|
140 |
$return .= 'Webserver Info: ' . $_SERVER['SERVER_SOFTWARE'] . "\n";
|
141 |
-
$return .= '
|
142 |
|
143 |
// PHP configs
|
144 |
$return .= "\n\n" . '------------ PHP CONFIG' . "\n";
|
@@ -190,6 +190,7 @@ function sek_let_to_num( $v ) {
|
|
190 |
function sek_get_write_permissions_status() {
|
191 |
$permission_issues = array();
|
192 |
$writing_path_candidates = array();
|
|
|
193 |
$wp_upload_dir = wp_upload_dir();
|
194 |
if ( $wp_upload_dir['error'] ) {
|
195 |
$permission_issues[] = 'WordPress root uploads folder';
|
@@ -208,6 +209,12 @@ function sek_get_write_permissions_status() {
|
|
208 |
}
|
209 |
}
|
210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
if ( $permission_issues ) {
|
212 |
$message = 'NOK => issues with : ';
|
213 |
$message .= implode( ' and ', $permission_issues );
|
138 |
$return .= 'PHP Version: ' . PHP_VERSION . "\n";
|
139 |
$return .= 'MySQL Version: ' . $wpdb->db_version() . "\n";
|
140 |
$return .= 'Webserver Info: ' . $_SERVER['SERVER_SOFTWARE'] . "\n";
|
141 |
+
$return .= 'Write/Read permissions: ' . sek_get_write_permissions_status() . "\n";
|
142 |
|
143 |
// PHP configs
|
144 |
$return .= "\n\n" . '------------ PHP CONFIG' . "\n";
|
190 |
function sek_get_write_permissions_status() {
|
191 |
$permission_issues = array();
|
192 |
$writing_path_candidates = array();
|
193 |
+
|
194 |
$wp_upload_dir = wp_upload_dir();
|
195 |
if ( $wp_upload_dir['error'] ) {
|
196 |
$permission_issues[] = 'WordPress root uploads folder';
|
209 |
}
|
210 |
}
|
211 |
|
212 |
+
// oct 2020, for https://github.com/presscustomizr/nimble-builder/issues/749
|
213 |
+
$base_module_css_uri = NIMBLE_BASE_PATH . '/assets/front/css/modules/';
|
214 |
+
if ( !is_readable($base_module_css_uri) ) {
|
215 |
+
$permission_issues[] = 'module css folder not readable';
|
216 |
+
}
|
217 |
+
|
218 |
if ( $permission_issues ) {
|
219 |
$message = 'NOK => issues with : ';
|
220 |
$message .= implode( ' and ', $permission_issues );
|
inc/czr-base-fmk/assets/js/_0_ccat_czr-base-fmk.js
CHANGED
@@ -2482,7 +2482,7 @@ $.extend( CZRInputMths , {
|
|
2482 |
// }
|
2483 |
czrFormatContentSelected: function ( item ) {
|
2484 |
if ( item.loading ) return item.text;
|
2485 |
-
var markup = "<div class='content-picker-item
|
2486 |
"<div class='content-item-bar'>" +
|
2487 |
"<span class='czr-picker-item-title'>" + item.title + "</span>";
|
2488 |
|
2482 |
// }
|
2483 |
czrFormatContentSelected: function ( item ) {
|
2484 |
if ( item.loading ) return item.text;
|
2485 |
+
var markup = "<div class='content-picker-item'>" +
|
2486 |
"<div class='content-item-bar'>" +
|
2487 |
"<span class='czr-picker-item-title'>" + item.title + "</span>";
|
2488 |
|
inc/czr-base-fmk/assets/js/_0_ccat_czr-base-fmk.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
"function"!=typeof jQuery.fn.iCheck&&function(v){function _(e,t,n){var i=e[0],r=/er/.test(n)?$:/bl/.test(n)?x:I,o=n==E?{checked:i[I],disabled:i[x],indeterminate:"true"==e.attr($)||"false"==e.attr(S)}:i[r];if(/^(ch|di|in)/.test(n)&&!o)y(e,r);else if(/^(un|en|de)/.test(n)&&o)b(e,r);else if(n==E)for(r in o)o[r]?y(e,r,!0):b(e,r,!0);else t&&"toggle"!=n||(t||e[k]("ifClicked"),o?i[A]!==z&&b(e,r):y(e,r))}function y(e,t,n){var i=e[0],r=e.parent(),o=t==I,s=t==$,a=t==x,l=s?S:o?g:"enabled",c=h(e,l+m(i[A])),d=h(e,t+m(i[A]));if(!0!==i[t]){if(!n&&t==I&&i[A]==z&&i.name){var u=e.closest("form"),p='input[name="'+i.name+'"]';(p=u.length?u.find(p):v(p)).each(function(){this!==i&&v(this).data(w)&&b(v(this),t)})}s?(i[t]=!0,i[I]&&b(e,I,"force")):(n||(i[t]=!0),o&&i[$]&&b(e,$,!1)),f(e,o,t,n)}i[x]&&h(e,D,!0)&&r.find("."+M).css(D,"default"),r[R](d||h(e,t)||""),a?r.attr("aria-disabled","true"):r.attr("aria-checked",s?"mixed":"true"),r[O](c||h(e,l)||"")}function b(e,t,n){var i=e[0],r=e.parent(),o=t==I,s=t==$,a=t==x,l=s?S:o?g:"enabled",c=h(e,l+m(i[A])),d=h(e,t+m(i[A]));!1!==i[t]&&((s||!n||"force"==n)&&(i[t]=!1),f(e,o,l,n)),!i[x]&&h(e,D,!0)&&r.find("."+M).css(D,"pointer"),r[O](d||h(e,t)||""),a?r.attr("aria-disabled","false"):r.attr("aria-checked","false"),r[R](c||h(e,l)||"")}function C(e,t){e.data(w)&&(e.parent().html(e.attr("style",e.data(w).s||"")),t&&e[k](t),e.off(".i").unwrap(),v(P+'[for="'+e[0].id+'"]').add(e.closest(P)).off(".i"))}function h(e,t,n){return e.data(w)?e.data(w).o[t+(n?"":"Class")]:void 0}function m(e){return e.charAt(0).toUpperCase()+e.slice(1)}function f(e,t,n,i){i||(t&&e[k]("ifToggled"),e[k]("ifChanged")[k]("if"+m(n)))}var w="iCheck",M=w+"-helper",z="radio",I="checked",g="un"+I,x="disabled",S="determinate",$="in"+S,E="update",A="type",R="addClass",O="removeClass",k="trigger",P="label",D="cursor",j=/ipad|iphone|ipod|android|blackberry|windows phone|opera mini|silk/i.test(navigator.userAgent);v.fn[w]=function(t,n){var i='input[type="checkbox"], input[type="'+z+'"]',r=v(),e=function(e){e.each(function(){var e=v(this);r=e.is(i)?r.add(e):r.add(e.find(i))})};if(/^(check|uncheck|toggle|indeterminate|determinate|disable|enable|update|destroy)$/i.test(t))return t=t.toLowerCase(),e(this),r.each(function(){var e=v(this);"destroy"==t?C(e,"ifDestroyed"):_(e,!0,t),v.isFunction(n)&&n()});if("object"!=typeof t&&t)return this;var d=v.extend({checkedClass:I,disabledClass:x,indeterminateClass:$,labelHover:!0,aria:!1},t),o=d.handle,u=d.hoverClass||"hover",p=d.focusClass||"focus",h=d.activeClass||"active",m=!!d.labelHover,f=d.labelHoverClass||"hover",g=0|(""+d.increaseArea).replace("%","");return("checkbox"==o||o==z)&&(i='input[type="'+o+'"]'),g<-50&&(g=-50),e(this),r.each(function(){var i=v(this);C(i);var r=this,e=r.id,t={position:"absolute",top:n=-g+"%",left:n,display:"block",width:t=100+2*g+"%",height:t,margin:0,padding:0,background:"#fff",border:0,opacity:0},n=j?{position:"absolute",visibility:"hidden"}:g?t:{position:"absolute",opacity:0},o="checkbox"==r[A]?d.checkboxClass||"icheckbox":d.radioClass||"i"+z,s=v(P+'[for="'+e+'"]').add(i.closest(P)),a=!!d.aria,l=w+"-"+Math.random().toString(36).substr(2,6),c='<div class="'+o+'" '+(a?'role="'+r[A]+'" ':"");a&&s.each(function(){c+='aria-labelledby="',this.id?c+=this.id:(this.id=l,c+=l),c+='"'}),c=i.wrap(c+"/>")[k]("ifCreated").parent().append(d.insert),t=v('<ins class="'+M+'"/>').css(t).appendTo(c),i.data(w,{o:d,s:i.attr("style")}).css(n),d.inheritClass&&c[R](r.className||""),d.inheritID&&e&&c.attr("id",w+"-"+e),"static"==c.css("position")&&c.css("position","relative"),_(i,!0,E),s.length&&s.on("click.i mouseover.i mouseout.i touchbegin.i touchend.i",function(e){var t=e[A],n=v(this);if(!r[x]){if("click"==t){if(v(e.target).is("a"))return;_(i,!1,!0)}else m&&(/ut|nd/.test(t)?(c[O](u),n[O](f)):(c[R](u),n[R](f)));if(!j)return!1;e.stopPropagation()}}),i.on("click.i focus.i blur.i keyup.i keydown.i keypress.i",function(e){var t=e[A];return e=e.keyCode,"click"!=t&&("keydown"==t&&32==e?(r[A]==z&&r[I]||(r[I]?b(i,I):y(i,I)),!1):void("keyup"==t&&r[A]==z?!r[I]&&y(i,I):/us|ur/.test(t)&&c["blur"==t?O:R](p)))}),t.on("click mousedown mouseup mouseover mouseout touchbegin.i touchend.i",function(e){var t=e[A],n=/wn|up/.test(t)?h:u;if(!r[x]){if("click"==t?_(i,!1,!0):(/wn|er|in/.test(t)?c[R](n):c[O](n+" "+h),s.length&&m&&n==u&&s[/ut|nd/.test(t)?O:R](f)),!j)return!1;e.stopPropagation()}})})}}(window.jQuery||window.Zepto),"function"!=typeof jQuery.fn.selecter&&function(d,r){"use strict";function o(e,t){if(!e.hasClass("selecter-element")){(t=d.extend({},t,e.data("selecter-options"))).external&&(t.links=!0);var n=e.find("option, optgroup"),i=n.filter("option"),r=i.filter(":selected"),o=""!==t.label?-1:i.index(r),s=t.links?"nav":"div";t.tabIndex=e[0].tabIndex,e[0].tabIndex=-1,t.multiple=e.prop("multiple"),t.disabled=e.is(":disabled");var a="<"+s+' class="selecter '+t.customClass;C?a+=" mobile":t.cover&&(a+=" cover"),a+=t.multiple?" multiple":" closed",t.disabled&&(a+=" disabled"),a+='" tabindex="'+t.tabIndex+'">',t.multiple||(a+='<span class="selecter-selected'+(""!==t.label?" placeholder":"")+'">',a+=d("<span></span").text(y(""!==t.label?t.label:r.text(),t.trim)).html(),a+="</span>"),a+='<div class="selecter-options">',a+="</div>",a+="</"+s+">",e.addClass("selecter-element").after(a);var l=e.next(".selecter"),c=d.extend({$select:e,$allOptions:n,$options:i,$selecter:l,$selected:l.find(".selecter-selected"),$itemsWrapper:l.find(".selecter-options"),index:-1,guid:b++},t);u(c),_(o,c),void 0!==d.fn.scroller&&c.$itemsWrapper.scroller(),c.$selecter.on("touchstart.selecter click.selecter",".selecter-selected",c,p).on("click.selecter",".selecter-item",c,m).on("close.selecter",c,h).data("selecter",c),c.$select.on("change.selecter",c,f),C||(c.$selecter.on("focus.selecter",c,g).on("blur.selecter",c,v),c.$select.on("focus.selecter",c,function(e){e.data.$selecter.trigger("focus")}))}}function u(e){for(var t="",n=e.links?"a":"span",i=0,r=e.$allOptions.length;i<r;i++){var o=e.$allOptions.eq(i);if("OPTGROUP"===o[0].tagName)t+='<span class="selecter-group',o.is(":disabled")&&(t+=" disabled"),t+='">'+o.attr("label")+"</span>";else{var s=o.val();o.attr("value")||o.attr("value",s),t+="<"+n+' class="selecter-item',o.is(":selected")&&""===e.label&&(t+=" selected"),o.is(":disabled")&&(t+=" disabled"),t+='" ',t+=e.links?'href="'+s+'"':'data-value="'+s+'"',t+=">"+d("<span></span>").text(y(o.text(),e.trim)).html()+"</"+n+">",0}}e.$itemsWrapper.html(t),e.$items=e.$selecter.find(".selecter-item")}function p(e){e.preventDefault(),e.stopPropagation();var t=e.data;if(!t.$select.is(":disabled"))if(d(".selecter").not(t.$selecter).trigger("close.selecter",[t]),C){var n=t.$select[0];if(r.document.createEvent){var i=r.document.createEvent("MouseEvents");i.initMouseEvent("mousedown",!1,!0,r,0,0,0,0,0,!1,!1,!1,!1,0,null),n.dispatchEvent(i)}else n.fireEvent&&n.fireEvent("onmousedown")}else t.$selecter.hasClass("closed")?function(e){e.preventDefault(),e.stopPropagation();var t=e.data;if(!t.$selecter.hasClass("open")){var n=t.$selecter.offset(),i=c.outerHeight(),r=t.$itemsWrapper.outerHeight(!0),o=0<=t.index?t.$items.eq(t.index).position():{left:0,top:0};n.top+r>i&&t.$selecter.addClass("bottom"),t.$itemsWrapper.show(),t.$selecter.removeClass("closed").addClass("open"),c.on("click.selecter-"+t.guid,":not(.selecter-options)",t,s),void 0!==d.fn.scroller?t.$itemsWrapper.scroller("scroll",t.$itemsWrapper.find(".scroller-content").scrollTop()+o.top,0).scroller("reset"):t.$itemsWrapper.scrollTop(t.$itemsWrapper.scrollTop()+o.top)}}(e):t.$selecter.hasClass("open")&&h(e)}function s(e){e.preventDefault(),e.stopPropagation(),0===d(e.currentTarget).parents(".selecter").length&&h(e)}function h(e){e.preventDefault(),e.stopPropagation();var t=e.data;t.$selecter.hasClass("open")&&(t.$itemsWrapper.hide(),t.$selecter.removeClass("open bottom").addClass("closed"),c.off(".selecter-"+t.guid))}function m(e){e.preventDefault(),e.stopPropagation();var t=d(this),n=e.data;if(!n.$select.is(":disabled")){if(n.$itemsWrapper.is(":visible"))_(n.$items.index(t),n),a(n);n.multiple||h(e)}}function f(e,t){var n=d(this),i=e.data;t||i.multiple||(_(i.$options.index(i.$options.filter("[value='"+n.val().replace(/([;&,\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1")+"']")),i),a(i))}function g(e){e.preventDefault(),e.stopPropagation();var t=e.data;t.$select.is(":disabled")||t.multiple||(t.$selecter.addClass("focus").on("keydown.selecter"+t.guid,t,n),d(".selecter").not(t.$selecter).trigger("close.selecter",[t]))}function v(e){e.preventDefault(),e.stopPropagation();var t=e.data;t.$selecter.removeClass("focus").off("keydown.selecter"+t.guid+" keyup.selecter"+t.guid),d(".selecter").not(t.$selecter).trigger("close.selecter",[t])}function n(e){var t=e.data;if(13===e.keyCode)t.$selecter.hasClass("open")&&(h(e),_(t.index,t)),a(t);else if(!(9===e.keyCode||e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)){e.preventDefault(),e.stopPropagation();var n=t.$items.length-1,i=t.index<0?0:t.index;if(-1<d.inArray(e.keyCode,l?[38,40,37,39]:[38,40]))(i+=38===e.keyCode||l&&37===e.keyCode?-1:1)<0&&(i=0),n<i&&(i=n);else{var r,o=String.fromCharCode(e.keyCode).toUpperCase();for(r=t.index+1;r<=n;r++)if(t.$options.eq(r).text().charAt(0).toUpperCase()===o){i=r;break}if(i<0)for(r=0;r<=n;r++)if(t.$options.eq(r).text().charAt(0).toUpperCase()===o){i=r;break}}0<=i&&_(i,t)}}function _(e,t){var n=t.$items.eq(e),i=n.hasClass("selected");if(!n.hasClass("disabled")){if(-1===e&&""!==t.label)t.$selected.html(t.label);else if(i)t.multiple&&(t.$options.eq(e).prop("selected",null),n.removeClass("selected"));else{var r=n.html();n.data("value"),t.multiple?t.$options.eq(e).prop("selected",!0):(t.$selected.html(r).removeClass("placeholder"),t.$items.filter(".selected").removeClass("selected"),t.$select[0].selectedIndex=e),n.addClass("selected")}(!i||t.multiple)&&(t.index=e)}}function a(e){var t,n;e.links?(n=(t=e).$select.val(),t.external?r.open(n):r.location.href=n):(e.callback.call(e.$selecter,e.$select.val(),e.index),e.$select.trigger("change",[!0]))}function y(e,t){return 0===t?e:e.length>t?e.substring(0,t)+"...":e}var b=0,l=-1<r.navigator.userAgent.toLowerCase().indexOf("firefox"),C=/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(r.navigator.userAgent||r.navigator.vendor||r.opera),c=null,w={callback:d.noop,cover:!1,customClass:"",label:"",external:!1,links:!1,trim:0},t={defaults:function(e){return w=d.extend(w,e||{}),d(this)},disable:function(r){return d(this).each(function(e,t){var n=d(t).next(".selecter").data("selecter");if(n)if(void 0!==r){var i=n.$items.index(n.$items.filter("[data-value="+r+"]"));n.$items.eq(i).addClass("disabled"),n.$options.eq(i).prop("disabled",!0)}else n.$selecter.hasClass("open")&&n.$selecter.find(".selecter-selected").trigger("click.selecter"),n.$selecter.addClass("disabled"),n.$select.prop("disabled",!0)})},enable:function(r){return d(this).each(function(e,t){var n=d(t).next(".selecter").data("selecter");if(n)if(void 0!==r){var i=n.$items.index(n.$items.filter("[data-value="+r+"]"));n.$items.eq(i).removeClass("disabled"),n.$options.eq(i).prop("disabled",!1)}else n.$selecter.removeClass("disabled"),n.$select.prop("disabled",!1)})},destroy:function(){return d(this).each(function(e,t){var n=d(t).next(".selecter").data("selecter");n&&(n.$selecter.hasClass("open")&&n.$selecter.find(".selecter-selected").trigger("click.selecter"),void 0!==d.fn.scroller&&n.$selecter.find(".selecter-options").scroller("destroy"),n.$select[0].tabIndex=n.tabIndex,n.$select.off(".selecter").removeClass("selecter-element").show(),n.$selecter.off(".selecter").remove())})},refresh:function(){return d(this).each(function(e,t){var n=d(t).next(".selecter").data("selecter");if(n){var i=n.index;n.$allOptions=n.$select.find("option, optgroup"),n.$options=n.$allOptions.filter("option"),n.index=-1,i=n.$options.index(n.$options.filter(":selected")),u(n),_(i,n)}})}};d.fn.selecter=function(e){return t[e]?t[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?this:function(e){e=d.extend({},w,e||{}),null===c&&(c=d("body"));for(var t=d(this),n=0,i=t.length;n<i;n++)o(t.eq(n),e);return t}.apply(this,arguments)},d.selecter=function(e){"defaults"===e&&t.defaults.apply(this,Array.prototype.slice.call(arguments,1))}}(jQuery,window),"function"!=typeof jQuery.fn.stepper&&function(c){"use strict";function r(e,t){if(!e.hasClass("stepper-input")){t=c.extend({},t,e.data("stepper-options"));var n=parseFloat(e.attr("min")),i=parseFloat(e.attr("max")),r=parseFloat(e.attr("step"))||1;e.addClass("stepper-input").wrap('<div class="stepper '+t.customClass+'" />').after('<span class="stepper-arrow up">'+t.labels.up+'</span><span class="stepper-arrow down">'+t.labels.down+"</span>");var o=e.parent(".stepper"),s=c.extend({$stepper:o,$input:e,$arrow:o.find(".stepper-arrow"),min:void 0!==typeof n&&!isNaN(n)&&n,max:void 0!==typeof i&&!isNaN(i)&&i,step:void 0===typeof r||isNaN(r)?1:r,timer:null},t);s.digits=(a=s.step,-1<(l=String(a)).indexOf(".")?l.length-l.indexOf(".")-1:0),e.is(":disabled")&&o.addClass("disabled"),o.on("touchstart.stepper mousedown.stepper",".stepper-arrow",s,d).data("stepper",s)}var a,l}function d(e){e.preventDefault(),e.stopPropagation(),s(e);var t,n,i,r=e.data;if(!r.$input.is(":disabled")&&!r.$stepper.hasClass("disabled")){var o=c(e.target).hasClass("up")?r.step:-r.step;r.timer=(t=r.timer,n=125,i=function(){a(r,o)},l(t),setInterval(i,n)),a(r,o),c("body").on("touchend.stepper mouseup.stepper",r,s)}}function s(e){e.preventDefault(),e.stopPropagation(),l(e.data.timer),c("body").off(".stepper")}function a(e,t){var n=parseFloat(e.$input.val()),i=t;void 0===typeof n||isNaN(n)?i=!1!==e.min?e.min:0:!1!==e.min&&n<e.min?i=e.min:i+=n;var r,o,s,a=(i-e.min)%e.step;0!==a&&(i-=a),!1!==e.min&&i<e.min&&(i=e.min),!1!==e.max&&i>e.max&&(i-=e.step),i!==n&&(r=i,o=e.digits,s=Math.pow(10,o),i=Math.round(r*s)/s,e.$input.val(i).trigger("change"))}function l(e){e&&(clearInterval(e),e=null)}var o={customClass:"",labels:{up:"Up",down:"Down"}},t={defaults:function(e){return o=c.extend(o,e||{}),c(this)},destroy:function(){return c(this).each(function(){var e=c(this).data("stepper");e&&(e.$stepper.off(".stepper").find(".stepper-arrow").remove(),e.$input.unwrap().removeClass("stepper-input"))})},disable:function(){return c(this).each(function(){var e=c(this).data("stepper");e&&(e.$input.attr("disabled","disabled"),e.$stepper.addClass("disabled"))})},enable:function(){return c(this).each(function(){var e=c(this).data("stepper");e&&(e.$input.attr("disabled",null),e.$stepper.removeClass("disabled"))})}};c.fn.stepper=function(e){return t[e]?t[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?this:function(e){e=c.extend({},o,e||{});for(var t=c(this),n=0,i=t.length;n<i;n++)r(t.eq(n),e);return t}.apply(this,arguments)},c.stepper=function(e){"defaults"===e&&t.defaults.apply(this,Array.prototype.slice.call(arguments,1))}}(jQuery),function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e("object"==typeof exports?require("jquery"):jQuery)}(function(n){var e=function(){if(n&&n.fn&&n.fn.czrSelect2&&n.fn.czrSelect2.amd)var e=n.fn.czrSelect2.amd;var t,r,c;return e&&e.requirejs||(e?r=e:e={},function(p){function h(e,t){return n.call(e,t)}function s(e,t){var n,i,r,o,s,a,l,c,d,u,p,h=t&&t.split("/"),m=C.map,f=m&&m["*"]||{};if(e&&"."===e.charAt(0))if(t){for(s=(e=e.split("/")).length-1,C.nodeIdCompat&&M.test(e[s])&&(e[s]=e[s].replace(M,"")),e=h.slice(0,h.length-1).concat(e),d=0;d<e.length;d+=1)if("."===(p=e[d]))e.splice(d,1),d-=1;else if(".."===p){if(1===d&&(".."===e[2]||".."===e[0]))break;0<d&&(e.splice(d-1,2),d-=2)}e=e.join("/")}else 0===e.indexOf("./")&&(e=e.substring(2));if((h||f)&&m){for(d=(n=e.split("/")).length;0<d;d-=1){if(i=n.slice(0,d).join("/"),h)for(u=h.length;0<u;u-=1)if((r=m[h.slice(0,u).join("/")])&&(r=r[i])){o=r,a=d;break}if(o)break;!l&&f&&f[i]&&(l=f[i],c=d)}!o&&l&&(o=l,a=c),o&&(n.splice(0,a,o),e=n.join("/"))}return e}function m(t,n){return function(){var e=i.call(arguments,0);return"string"!=typeof e[0]&&1===e.length&&e.push(null),l.apply(p,e.concat([t,n]))}}function f(t){return function(e){y[t]=e}}function g(e){if(h(b,e)){var t=b[e];delete b[e],w[e]=!0,o.apply(p,t)}if(!h(y,e)&&!h(w,e))throw new Error("No "+e);return y[e]}function a(e){var t,n=e?e.indexOf("!"):-1;return-1<n&&(t=e.substring(0,n),e=e.substring(n+1,e.length)),[t,e]}var o,l,v,_,y={},b={},C={},w={},n=Object.prototype.hasOwnProperty,i=[].slice,M=/\.js$/;v=function(e,t){var n,i,r=a(e),o=r[0];return e=r[1],o&&(n=g(o=s(o,t))),o?e=n&&n.normalize?n.normalize(e,(i=t,function(e){return s(e,i)})):s(e,t):(o=(r=a(e=s(e,t)))[0],e=r[1],o&&(n=g(o))),{f:o?o+"!"+e:e,n:e,pr:o,p:n}},_={require:function(e){return m(e)},exports:function(e){var t=y[e];return void 0!==t?t:y[e]={}},module:function(e){return{id:e,uri:"",exports:y[e],config:(t=e,function(){return C&&C.config&&C.config[t]||{}})};var t}},o=function(e,t,n,i){var r,o,s,a,l,c,d=[],u=typeof n;if(i=i||e,"undefined"===u||"function"===u){for(t=!t.length&&n.length?["require","exports","module"]:t,l=0;l<t.length;l+=1)if("require"===(o=(a=v(t[l],i)).f))d[l]=_.require(e);else if("exports"===o)d[l]=_.exports(e),c=!0;else if("module"===o)r=d[l]=_.module(e);else if(h(y,o)||h(b,o)||h(w,o))d[l]=g(o);else{if(!a.p)throw new Error(e+" missing "+o);a.p.load(a.n,m(i,!0),f(o),{}),d[l]=y[o]}s=n?n.apply(y[e],d):void 0,e&&(r&&r.exports!==p&&r.exports!==y[e]?y[e]=r.exports:s===p&&c||(y[e]=s))}else e&&(y[e]=n)},t=r=l=function(e,t,n,i,r){if("string"==typeof e)return _[e]?_[e](t):g(v(e,t).f);if(!e.splice){if((C=e).deps&&l(C.deps,C.callback),!t)return;t.splice?(e=t,t=n,n=null):e=p}return t=t||function(){},"function"==typeof n&&(n=i,i=r),i?o(p,e,t,n):setTimeout(function(){o(p,e,t,n)},4),l},l.config=function(e){return l(e)},t._defined=y,(c=function(e,t,n){if("string"!=typeof e)throw new Error("See almond README: incorrect module build, no module name");t.splice||(n=t,t=[]),h(y,e)||h(b,e)||(b[e]=[e,t,n])}).amd={jQuery:!0}}(),e.requirejs=t,e.require=r,e.define=c),e.define("almond",function(){}),e.define("jquery",[],function(){var e=n||$;return null==e&&console&&console.error&&console.error("CzrSelect2: An instance of jQuery or a jQuery-compatible library was not found. Make sure that you are including jQuery before CzrSelect2 on your web page."),e}),e.define("czrSelect2/utils",["jquery"],function(o){function d(e){var t=e.prototype,n=[];for(var i in t){"function"==typeof t[i]&&"constructor"!==i&&n.push(i)}return n}var e={Extend:function(e,t){function n(){this.constructor=e}var i={}.hasOwnProperty;for(var r in t)i.call(t,r)&&(e[r]=t[r]);return n.prototype=t.prototype,e.prototype=new n,e.__super__=t.prototype,e},Decorate:function(i,r){function o(){var e=Array.prototype.unshift,t=r.prototype.constructor.length,n=i.prototype.constructor;0<t&&(e.call(arguments,i.prototype.constructor),n=r.prototype.constructor),n.apply(this,arguments)}var e=d(r),t=d(i);r.displayName=i.displayName,o.prototype=new function(){this.constructor=o};for(var n=0;n<t.length;n++){var s=t[n];o.prototype[s]=i.prototype[s]}for(var a=function(e){var t=function(){};e in o.prototype&&(t=o.prototype[e]);var n=r.prototype[e];return function(){return Array.prototype.unshift.call(arguments,t),n.apply(this,arguments)}},l=0;l<e.length;l++){var c=e[l];o.prototype[c]=a(c)}return o}},t=function(){this.listeners={}};return t.prototype.on=function(e,t){this.listeners=this.listeners||{},e in this.listeners?this.listeners[e].push(t):this.listeners[e]=[t]},t.prototype.trigger=function(e){var t=Array.prototype.slice,n=t.call(arguments,1);this.listeners=this.listeners||{},null==n&&(n=[]),0===n.length&&n.push({}),(n[0]._type=e)in this.listeners&&this.invoke(this.listeners[e],t.call(arguments,1)),"*"in this.listeners&&this.invoke(this.listeners["*"],arguments)},t.prototype.invoke=function(e,t){for(var n=0,i=e.length;n<i;n++)e[n].apply(this,t)},e.Observable=t,e.generateChars=function(e){for(var t="",n=0;n<e;n++){t+=Math.floor(36*Math.random()).toString(36)}return t},e.bind=function(e,t){return function(){e.apply(t,arguments)}},e._convertData=function(e){for(var t in e){var n=t.split("-"),i=e;if(1!==n.length){for(var r=0;r<n.length;r++){var o=n[r];(o=o.substring(0,1).toLowerCase()+o.substring(1))in i||(i[o]={}),r==n.length-1&&(i[o]=e[t]),i=i[o]}delete e[t]}}return e},e.hasScroll=function(e,t){var n=o(t),i=t.style.overflowX,r=t.style.overflowY;return(i!==r||"hidden"!==r&&"visible"!==r)&&("scroll"===i||"scroll"===r||(n.innerHeight()<t.scrollHeight||n.innerWidth()<t.scrollWidth))},e.escapeMarkup=function(e){var t={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return"string"!=typeof e?e:String(e).replace(/[&<>"'\/\\]/g,function(e){return t[e]})},e.appendMany=function(e,t){if("1.7"===o.fn.jquery.substr(0,3)){var n=o();o.map(t,function(e){n=n.add(e)}),t=n}e.append(t)},e}),e.define("czrSelect2/results",["jquery","./utils"],function(p,e){function i(e,t,n){this.$element=e,this.data=n,this.options=t,i.__super__.constructor.call(this)}return e.Extend(i,e.Observable),i.prototype.render=function(){var e=p('<ul class="czrSelect2-results__options" role="tree"></ul>');return this.options.get("multiple")&&e.attr("aria-multiselectable","true"),this.$results=e},i.prototype.clear=function(){this.$results.empty()},i.prototype.displayMessage=function(e){var t=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var n=p('<li role="treeitem" aria-live="assertive" class="czrSelect2-results__option"></li>'),i=this.options.get("translations").get(e.message);n.append(t(i(e.args))),n[0].className+=" czrSelect2-results__message",this.$results.append(n)},i.prototype.hideMessages=function(){this.$results.find(".czrSelect2-results__message").remove()},i.prototype.append=function(e){this.hideLoading();var t=[];if(null!=e.results&&0!==e.results.length){e.results=this.sort(e.results);for(var n=0;n<e.results.length;n++){var i=e.results[n],r=this.option(i);t.push(r)}this.$results.append(t)}else 0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"})},i.prototype.position=function(e,t){t.find(".czrSelect2-results").append(e)},i.prototype.sort=function(e){return this.options.get("sorter")(e)},i.prototype.highlightFirstItem=function(){var e=this.$results.find(".czrSelect2-results__option[aria-selected]"),t=e.filter("[aria-selected=true]");0<t.length?t.first().trigger("mouseenter"):e.first().trigger("mouseenter"),this.ensureHighlightVisible()},i.prototype.setClasses=function(){var t=this;this.data.current(function(e){var i=p.map(e,function(e){return e.id.toString()});t.$results.find(".czrSelect2-results__option[aria-selected]").each(function(){var e=p(this),t=p.data(this,"data"),n=""+t.id;null!=t.element&&t.element.selected||null==t.element&&-1<p.inArray(n,i)?e.attr("aria-selected","true"):e.attr("aria-selected","false")})})},i.prototype.showLoading=function(e){this.hideLoading();var t={disabled:!0,loading:!0,text:this.options.get("translations").get("searching")(e)},n=this.option(t);n.className+=" loading-results",this.$results.prepend(n)},i.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},i.prototype.option=function(e){var t=document.createElement("li");t.className="czrSelect2-results__option";var n={role:"treeitem","aria-selected":"false"};for(var i in e.disabled&&(delete n["aria-selected"],n["aria-disabled"]="true"),null==e.id&&delete n["aria-selected"],null!=e._resultId&&(t.id=e._resultId),e.title&&(t.title=e.title),e.children&&(n.role="group",n["aria-label"]=e.text,delete n["aria-selected"]),n){var r=n[i];t.setAttribute(i,r)}if(e.children){var o=p(t),s=document.createElement("strong");s.className="czrSelect2-results__group",p(s),this.template(e,s);for(var a=[],l=0;l<e.children.length;l++){var c=e.children[l],d=this.option(c);a.push(d)}var u=p("<ul></ul>",{class:"czrSelect2-results__options czrSelect2-results__options--nested"});u.append(a),o.append(s),o.append(u)}else this.template(e,t);return p.data(t,"data",e),t},i.prototype.bind=function(t,e){var l=this,n=t.id+"-results";this.$results.attr("id",n),t.on("results:all",function(e){l.clear(),l.append(e.data),t.isOpen()&&(l.setClasses(),l.highlightFirstItem())}),t.on("results:append",function(e){l.append(e.data),t.isOpen()&&l.setClasses()}),t.on("query",function(e){l.hideMessages(),l.showLoading(e)}),t.on("select",function(){t.isOpen()&&(l.setClasses(),l.highlightFirstItem())}),t.on("unselect",function(){t.isOpen()&&(l.setClasses(),l.highlightFirstItem())}),t.on("open",function(){l.$results.attr("aria-expanded","true"),l.$results.attr("aria-hidden","false"),l.setClasses(),l.ensureHighlightVisible()}),t.on("close",function(){l.$results.attr("aria-expanded","false"),l.$results.attr("aria-hidden","true"),l.$results.removeAttr("aria-activedescendant")}),t.on("results:toggle",function(){var e=l.getHighlightedResults();0!==e.length&&e.trigger("mouseup")}),t.on("results:select",function(){var e=l.getHighlightedResults();if(0!==e.length){var t=e.data("data");"true"==e.attr("aria-selected")?l.trigger("close",{}):l.trigger("select",{data:t})}}),t.on("results:previous",function(){var e=l.getHighlightedResults(),t=l.$results.find("[aria-selected]"),n=t.index(e);if(0!==n){var i=n-1;0===e.length&&(i=0);var r=t.eq(i);r.trigger("mouseenter");var o=l.$results.offset().top,s=r.offset().top,a=l.$results.scrollTop()+(s-o);0===i?l.$results.scrollTop(0):s-o<0&&l.$results.scrollTop(a)}}),t.on("results:next",function(){var e=l.getHighlightedResults(),t=l.$results.find("[aria-selected]"),n=t.index(e)+1;if(!(n>=t.length)){var i=t.eq(n);i.trigger("mouseenter");var r=l.$results.offset().top+l.$results.outerHeight(!1),o=i.offset().top+i.outerHeight(!1),s=l.$results.scrollTop()+o-r;0===n?l.$results.scrollTop(0):r<o&&l.$results.scrollTop(s)}}),t.on("results:focus",function(e){e.element.addClass("czrSelect2-results__option--highlighted")}),t.on("results:message",function(e){l.displayMessage(e)}),p.fn.mousewheel&&this.$results.on("mousewheel",function(e){var t=l.$results.scrollTop(),n=l.$results.get(0).scrollHeight-t+e.deltaY,i=0<e.deltaY&&t-e.deltaY<=0,r=e.deltaY<0&&n<=l.$results.height();i?(l.$results.scrollTop(0),e.preventDefault(),e.stopPropagation()):r&&(l.$results.scrollTop(l.$results.get(0).scrollHeight-l.$results.height()),e.preventDefault(),e.stopPropagation())}),this.$results.on("mouseup",".czrSelect2-results__option[aria-selected]",function(e){var t=p(this),n=t.data("data");return"true"===t.attr("aria-selected")?void(l.options.get("multiple")?l.trigger("unselect",{originalEvent:e,data:n}):l.trigger("close",{})):void l.trigger("select",{originalEvent:e,data:n})}),this.$results.on("mouseenter",".czrSelect2-results__option[aria-selected]",function(e){var t=p(this).data("data");l.getHighlightedResults().removeClass("czrSelect2-results__option--highlighted"),l.trigger("results:focus",{data:t,element:p(this)})})},i.prototype.getHighlightedResults=function(){return this.$results.find(".czrSelect2-results__option--highlighted")},i.prototype.destroy=function(){this.$results.remove()},i.prototype.ensureHighlightVisible=function(){var e=this.getHighlightedResults();if(0!==e.length){var t=this.$results.find("[aria-selected]").index(e),n=this.$results.offset().top,i=e.offset().top,r=this.$results.scrollTop()+(i-n),o=i-n;r-=2*e.outerHeight(!1),t<=2?this.$results.scrollTop(0):(o>this.$results.outerHeight()||o<0)&&this.$results.scrollTop(r)}},i.prototype.template=function(e,t){var n=this.options.get("templateResult"),i=this.options.get("escapeMarkup"),r=n(e,t);null==r?t.style.display="none":"string"==typeof r?t.innerHTML=i(r):p(t).append(r)},i}),e.define("czrSelect2/keys",[],function(){return{BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46}}),e.define("czrSelect2/selection/base",["jquery","../utils","../keys"],function(n,e,r){function i(e,t){this.$element=e,this.options=t,i.__super__.constructor.call(this)}return e.Extend(i,e.Observable),i.prototype.render=function(){var e=n('<span class="czrSelect2-selection" role="combobox" aria-haspopup="true" aria-expanded="false"></span>');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),e.attr("title",this.$element.attr("title")),e.attr("tabindex",this._tabindex),this.$selection=e},i.prototype.bind=function(e,t){var n=this,i=(e.id,e.id+"-results");this.container=e,this.$selection.on("focus",function(e){n.trigger("focus",e)}),this.$selection.on("blur",function(e){n._handleBlur(e)}),this.$selection.on("keydown",function(e){n.trigger("keypress",e),e.which===r.SPACE&&e.preventDefault()}),e.on("results:focus",function(e){n.$selection.attr("aria-activedescendant",e.data._resultId)}),e.on("selection:update",function(e){n.update(e.data)}),e.on("open",function(){n.$selection.attr("aria-expanded","true"),n.$selection.attr("aria-owns",i),n._attachCloseHandler(e)}),e.on("close",function(){n.$selection.attr("aria-expanded","false"),n.$selection.removeAttr("aria-activedescendant"),n.$selection.removeAttr("aria-owns"),n.$selection.focus(),n._detachCloseHandler(e)}),e.on("enable",function(){n.$selection.attr("tabindex",n._tabindex)}),e.on("disable",function(){n.$selection.attr("tabindex","-1")})},i.prototype._handleBlur=function(e){var t=this;window.setTimeout(function(){document.activeElement==t.$selection[0]||n.contains(t.$selection[0],document.activeElement)||t.trigger("blur",e)},1)},i.prototype._attachCloseHandler=function(e){n(document.body).on("mousedown.czrSelect2."+e.id,function(e){var t=n(e.target).closest(".czrSelect2");n(".czrSelect2.czrSelect2-container--open").each(function(){var e=n(this);this!=t[0]&&e.data("element").czrSelect2("close")})})},i.prototype._detachCloseHandler=function(e){n(document.body).off("mousedown.czrSelect2."+e.id)},i.prototype.position=function(e,t){t.find(".selection").append(e)},i.prototype.destroy=function(){this._detachCloseHandler(this.container)},i.prototype.update=function(e){throw new Error("The `update` method must be defined in child classes.")},i}),e.define("czrSelect2/selection/single",["jquery","./base","../utils","../keys"],function(e,t,n,i){function r(){r.__super__.constructor.apply(this,arguments)}return n.Extend(r,t),r.prototype.render=function(){var e=r.__super__.render.call(this);return e.addClass("czrSelect2-selection--single"),e.html('<span class="czrSelect2-selection__rendered"></span><span class="czrSelect2-selection__arrow" role="presentation"><b role="presentation"></b></span>'),e},r.prototype.bind=function(t,e){var n=this;r.__super__.bind.apply(this,arguments);var i=t.id+"-container";this.$selection.find(".czrSelect2-selection__rendered").attr("id",i),this.$selection.attr("aria-labelledby",i),this.$selection.on("mousedown",function(e){1===e.which&&n.trigger("toggle",{originalEvent:e})}),this.$selection.on("focus",function(e){}),this.$selection.on("blur",function(e){}),t.on("focus",function(e){t.isOpen()||n.$selection.focus()}),t.on("selection:update",function(e){n.update(e.data)})},r.prototype.clear=function(){this.$selection.find(".czrSelect2-selection__rendered").empty()},r.prototype.display=function(e,t){var n=this.options.get("templateSelection");return this.options.get("escapeMarkup")(n(e,t))},r.prototype.selectionContainer=function(){return e("<span></span>")},r.prototype.update=function(e){if(0!==e.length){var t=e[0],n=this.$selection.find(".czrSelect2-selection__rendered"),i=this.display(t,n);n.empty().append(i),n.prop("title",t.title||t.text)}else this.clear()},r}),e.define("czrSelect2/selection/multiple",["jquery","./base","../utils"],function(i,e,a){function r(e,t){r.__super__.constructor.apply(this,arguments)}return a.Extend(r,e),r.prototype.render=function(){var e=r.__super__.render.call(this);return e.addClass("czrSelect2-selection--multiple"),e.html('<ul class="czrSelect2-selection__rendered"></ul>'),e},r.prototype.bind=function(e,t){var n=this;r.__super__.bind.apply(this,arguments),this.$selection.on("click",function(e){n.trigger("toggle",{originalEvent:e})}),this.$selection.on("click",".czrSelect2-selection__choice__remove",function(e){if(!n.options.get("disabled")){var t=i(this).parent().data("data");n.trigger("unselect",{originalEvent:e,data:t})}})},r.prototype.clear=function(){this.$selection.find(".czrSelect2-selection__rendered").empty()},r.prototype.display=function(e,t){var n=this.options.get("templateSelection");return this.options.get("escapeMarkup")(n(e,t))},r.prototype.selectionContainer=function(){return i('<li class="czrSelect2-selection__choice"><span class="czrSelect2-selection__choice__remove" role="presentation">×</span></li>')},r.prototype.update=function(e){if(this.clear(),0!==e.length){for(var t=[],n=0;n<e.length;n++){var i=e[n],r=this.selectionContainer(),o=this.display(i,r);r.append(o),r.prop("title",i.title||i.text),r.data("data",i),t.push(r)}var s=this.$selection.find(".czrSelect2-selection__rendered");a.appendMany(s,t)}},r}),e.define("czrSelect2/selection/placeholder",["../utils"],function(e){function t(e,t,n){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n)}return t.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},t.prototype.createPlaceholder=function(e,t){var n=this.selectionContainer();return n.html(this.display(t)),n.addClass("czrSelect2-selection__placeholder").removeClass("czrSelect2-selection__choice"),n},t.prototype.update=function(e,t){var n=1==t.length&&t[0].id!=this.placeholder.id;if(1<t.length||n)return e.call(this,t);this.clear();var i=this.createPlaceholder(this.placeholder);this.$selection.find(".czrSelect2-selection__rendered").append(i)},t}),e.define("czrSelect2/selection/allowClear",["jquery","../keys"],function(i,r){function e(){}return e.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("CzrSelect2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".czrSelect2-selection__clear",function(e){i._handleClear(e)}),t.on("keypress",function(e){i._handleKeyboardClear(e,t)})},e.prototype._handleClear=function(e,t){if(!this.options.get("disabled")){var n=this.$selection.find(".czrSelect2-selection__clear");if(0!==n.length){t.stopPropagation();for(var i=n.data("data"),r=0;r<i.length;r++){var o={data:i[r]};if(this.trigger("unselect",o),o.prevented)return}this.$element.val(this.placeholder.id).trigger("change"),this.trigger("toggle",{})}}},e.prototype._handleKeyboardClear=function(e,t,n){n.isOpen()||(t.which==r.DELETE||t.which==r.BACKSPACE)&&this._handleClear(t)},e.prototype.update=function(e,t){if(e.call(this,t),!(0<this.$selection.find(".czrSelect2-selection__placeholder").length||0===t.length)){var n=i('<span class="czrSelect2-selection__clear">×</span>');n.data("data",t),this.$selection.find(".czrSelect2-selection__rendered").prepend(n)}},e}),e.define("czrSelect2/selection/search",["jquery","../utils","../keys"],function(i,e,s){function t(e,t,n){e.call(this,t,n)}return t.prototype.render=function(e){var t=i('<li class="czrSelect2-search czrSelect2-search--inline"><input class="czrSelect2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" /></li>');this.$searchContainer=t,this.$search=t.find("input");var n=e.call(this);return this._transferTabIndex(),n},t.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),t.on("open",function(){i.$search.trigger("focus")}),t.on("close",function(){i.$search.val(""),i.$search.removeAttr("aria-activedescendant"),i.$search.trigger("focus")}),t.on("enable",function(){i.$search.prop("disabled",!1),i._transferTabIndex()}),t.on("disable",function(){i.$search.prop("disabled",!0)}),t.on("focus",function(e){i.$search.trigger("focus")}),t.on("results:focus",function(e){i.$search.attr("aria-activedescendant",e.id)}),this.$selection.on("focusin",".czrSelect2-search--inline",function(e){i.trigger("focus",e)}),this.$selection.on("focusout",".czrSelect2-search--inline",function(e){i._handleBlur(e)}),this.$selection.on("keydown",".czrSelect2-search--inline",function(e){if(e.stopPropagation(),i.trigger("keypress",e),i._keyUpPrevented=e.isDefaultPrevented(),e.which===s.BACKSPACE&&""===i.$search.val()){var t=i.$searchContainer.prev(".czrSelect2-selection__choice");if(0<t.length){var n=t.data("data");i.searchRemoveChoice(n),e.preventDefault()}}});var r=document.documentMode,o=r&&r<=11;this.$selection.on("input.searchcheck",".czrSelect2-search--inline",function(e){return o?void i.$selection.off("input.search input.searchcheck"):void i.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".czrSelect2-search--inline",function(e){if(o&&"input"===e.type)i.$selection.off("input.search input.searchcheck");else{var t=e.which;t!=s.SHIFT&&t!=s.CTRL&&t!=s.ALT&&t!=s.TAB&&i.handleSearch(e)}})},t.prototype._transferTabIndex=function(e){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},t.prototype.createPlaceholder=function(e,t){this.$search.attr("placeholder",t.text)},t.prototype.update=function(e,t){var n=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),e.call(this,t),this.$selection.find(".czrSelect2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),n&&this.$search.focus()},t.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var e=this.$search.val();this.trigger("query",{term:e})}this._keyUpPrevented=!1},t.prototyp
|
|