Nimble Page Builder - Version 1.8.18

Version Description

: September 3rd 2019 = * fixed : using Nimble generated Html structure in a module content can break the UI generation in the preview frame when customizing.

Download this release

Release Info

Developer nikeo
Plugin Icon 128x128 Nimble Page Builder
Version 1.8.18
Comparing to
See all releases

Code changes from version 1.8.17 to 1.8.18

assets/admin/css/nimble-admin.css CHANGED
@@ -90,6 +90,9 @@ a.czr-rating-link:hover {
90
  display: inline-block;
91
  }
92
  #wpadminbar .sek-nimble-icon img {
 
 
 
93
  -webkit-filter: grayscale(100%);
94
  filter: grayscale(100%);
95
  -webkit-filter: gray;
@@ -99,6 +102,8 @@ a.czr-rating-link:hover {
99
  -ms-transition: all, 0.3s ease-in-out;
100
  -o-transition: all, 0.3s ease-in-out;
101
  transition: all 0.3s ease-in-out;
 
 
102
  }
103
  #wpadminbar .sek-nimble-icon:hover img {
104
  -webkit-filter: none;
@@ -106,11 +111,6 @@ a.czr-rating-link:hover {
106
  -webkit-filter: none;
107
  filter: none;
108
  }
109
- #wpadminbar .sek-nimble-icon img {
110
- width:28px;
111
- position:absolute;
112
- top: 2px;
113
- }
114
  #wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{
115
  padding-left:30px
116
  }
90
  display: inline-block;
91
  }
92
  #wpadminbar .sek-nimble-icon img {
93
+ width:28px;
94
+ position:absolute;
95
+ top: 2px;
96
  -webkit-filter: grayscale(100%);
97
  filter: grayscale(100%);
98
  -webkit-filter: gray;
102
  -ms-transition: all, 0.3s ease-in-out;
103
  -o-transition: all, 0.3s ease-in-out;
104
  transition: all 0.3s ease-in-out;
105
+ -webkit-box-shadow: none;
106
+ box-shadow: none;
107
  }
108
  #wpadminbar .sek-nimble-icon:hover img {
109
  -webkit-filter: none;
111
  -webkit-filter: none;
112
  filter: none;
113
  }
 
 
 
 
 
114
  #wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title{
115
  padding-left:30px
116
  }
assets/czr/sek/js/ccat-sek-preview.js CHANGED
@@ -922,6 +922,14 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
922
  });
923
  },//printLevelUI()
924
 
 
 
 
 
 
 
 
 
925
  // Fired on Dom Ready, in ::initialize()
926
  setupUiHoverVisibility : function() {
927
  var self = this;
@@ -1151,20 +1159,24 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
1151
  // If the ui is expanded, remove after a delay to let user access all ui buttons, even those outside the $level.
1152
  // => the ui can be "outside" ( <=> out vertically and horizontally ) when columns are narrow.
1153
  var _sniffLevelsAndPrintUI = function( position, $candidateForRemoval ) {
1154
- var $levelsToWalk, sniffCase;
1155
  if ( _.isUndefined( $candidateForRemoval ) || $candidateForRemoval.length < 1 ) {
1156
- $levelsToWalk = $('body').find('[data-sek-level]');
 
 
 
 
1157
  sniffCase = 'printOrScheduleRemoval';
1158
  } else {
1159
- $levelsToWalk = $candidateForRemoval;
1160
  sniffCase = 'mayBeRemove';
1161
  }
1162
 
1163
- $levelsToWalk.each( function() {
1164
- var levelWrapperRect = $(this)[0].getBoundingClientRect(),
1165
  isInHorizontally = position.x <= levelWrapperRect.right && levelWrapperRect.left <= position.x,
1166
  isInVertically = position.y >= levelWrapperRect.top && levelWrapperRect.bottom >= position.y,
1167
- $levelEl = $(this);
1168
 
1169
  switch( sniffCase ) {
1170
  case 'mayBeRemove' :
@@ -1194,7 +1206,7 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
1194
  }
1195
  break;
1196
  }
1197
- });
1198
  };
1199
 
1200
 
@@ -1270,15 +1282,16 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
1270
  // implemented for double-click insertion https://github.com/presscustomizr/nimble-builder/issues/317
1271
  api.preview.send( 'sek-clean-target-drop-zone' );
1272
 
1273
- var clickedOn = '',
1274
  $el = $(evt.target),
1275
- $hook_location = $el.closest('[data-sek-level="location"]'),
1276
- $closestLevelWrapper = $el.closest('[data-sek-level]'),
1277
  $closestActionIcon = $el.closest('[data-sek-click-on]'),
1278
  _action,
1279
- _location = $hook_location.data('sek-id'),
1280
  _level = $closestLevelWrapper.data('sek-level'),
1281
  _id = $closestLevelWrapper.data('sek-id');
 
1282
  if ( 'add-content' == $el.data('sek-click-on') || ( $el.closest('[data-sek-click-on]').length > 0 && 'add-content' == $el.closest('[data-sek-click-on]').data('sek-click-on') ) ) {
1283
  clickedOn = 'addContentButton';
1284
  } else if ( ! _.isEmpty( $el.data( 'sek-click-on' ) ) || $closestActionIcon.length > 0 ) {
@@ -1303,12 +1316,16 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
1303
  clickedOn = 'inactiveZone';
1304
  }
1305
 
 
 
 
 
1306
  switch( clickedOn ) {
1307
  case 'addContentButton' :
1308
  var is_first_section = true === $el.closest('[data-sek-is-first-section]').data('sek-is-first-section');
1309
 
1310
  api.preview.send( 'sek-add-section', {
1311
- location : _location,
1312
  level : 'section',
1313
  before_section : $el.closest('[data-sek-before-section]').data('sek-before-section'),
1314
  after_section : $el.closest('[data-sek-after-section]').data('sek-after-section'),
@@ -1317,7 +1334,6 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
1317
  });
1318
  break;
1319
  case 'UIIcon' :
1320
-
1321
  if ( 1 > $closestLevelWrapper.length ) {
1322
  throw new Error( 'ERROR => sek-front-preview => No valid level dom element found' );
1323
  }
@@ -1331,7 +1347,7 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
1331
  }
1332
  self._send_( $el, {
1333
  action : _action,
1334
- location : _location,
1335
  level : _level,
1336
  id : _id,
1337
  was_triggered : false //<= indicates that the user clicked.
@@ -1359,14 +1375,14 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
1359
  case 'sectionOutsideColumns' :
1360
  self._send_( $el, {
1361
  action : 'edit-options',
1362
- location : _location,
1363
  level : _level,
1364
  id : _id
1365
  });
1366
  break;
1367
  case 'addSektion' :
1368
  api.preview.send( 'sek-add-section', {
1369
- location : _location,
1370
  level : $el.data('sek-add')
1371
  });
1372
  break;
@@ -2507,6 +2523,13 @@ var SekPreviewPrototype = SekPreviewPrototype || {};
2507
  return dfd.resolve().promise();
2508
  }
2509
 
 
 
 
 
 
 
 
2510
  $.post( ajaxUrl, _query_ )
2511
  .done( function( _r ) {
2512
  // Check if the user is logged out.
922
  });
923
  },//printLevelUI()
924
 
925
+
926
+
927
+
928
+
929
+
930
+
931
+
932
+
933
  // Fired on Dom Ready, in ::initialize()
934
  setupUiHoverVisibility : function() {
935
  var self = this;
1159
  // If the ui is expanded, remove after a delay to let user access all ui buttons, even those outside the $level.
1160
  // => the ui can be "outside" ( <=> out vertically and horizontally ) when columns are narrow.
1161
  var _sniffLevelsAndPrintUI = function( position, $candidateForRemoval ) {
1162
+ var collectionOfLevelsToWalk = [], sniffCase;
1163
  if ( _.isUndefined( $candidateForRemoval ) || $candidateForRemoval.length < 1 ) {
1164
+ // data-sek-preview-level-guid has been introduced in https://github.com/presscustomizr/nimble-builder/issues/494
1165
+ // to fix a wrong UI generation leading to user unable to edit content
1166
+ $('body').find('[data-sek-level][data-sek-preview-level-guid="' + sekPreviewLocalized.previewLevelGuid +'"]').each( function() {
1167
+ collectionOfLevelsToWalk.push( $(this) );
1168
+ });
1169
  sniffCase = 'printOrScheduleRemoval';
1170
  } else {
1171
+ collectionOfLevelsToWalk.push( $candidateForRemoval );
1172
  sniffCase = 'mayBeRemove';
1173
  }
1174
 
1175
+ _.each( collectionOfLevelsToWalk, function( $levelToWalk ) {
1176
+ var levelWrapperRect = $levelToWalk[0].getBoundingClientRect(),
1177
  isInHorizontally = position.x <= levelWrapperRect.right && levelWrapperRect.left <= position.x,
1178
  isInVertically = position.y >= levelWrapperRect.top && levelWrapperRect.bottom >= position.y,
1179
+ $levelEl = $levelToWalk;
1180
 
1181
  switch( sniffCase ) {
1182
  case 'mayBeRemove' :
1206
  }
1207
  break;
1208
  }
1209
+ });//collectionOfLevelsToWalk.each
1210
  };
1211
 
1212
 
1282
  // implemented for double-click insertion https://github.com/presscustomizr/nimble-builder/issues/317
1283
  api.preview.send( 'sek-clean-target-drop-zone' );
1284
 
1285
+ var clickedOn = 'inactiveZone',
1286
  $el = $(evt.target),
1287
+ $hookLocation = $el.closest('[data-sek-level="location"][data-sek-preview-level-guid="' + sekPreviewLocalized.previewLevelGuid +'"]'),
1288
+ $closestLevelWrapper = $el.closest('[data-sek-preview-level-guid="' + sekPreviewLocalized.previewLevelGuid +'"]'),
1289
  $closestActionIcon = $el.closest('[data-sek-click-on]'),
1290
  _action,
1291
+ _location_id = $hookLocation.data('sek-id'),
1292
  _level = $closestLevelWrapper.data('sek-level'),
1293
  _id = $closestLevelWrapper.data('sek-id');
1294
+
1295
  if ( 'add-content' == $el.data('sek-click-on') || ( $el.closest('[data-sek-click-on]').length > 0 && 'add-content' == $el.closest('[data-sek-click-on]').data('sek-click-on') ) ) {
1296
  clickedOn = 'addContentButton';
1297
  } else if ( ! _.isEmpty( $el.data( 'sek-click-on' ) ) || $closestActionIcon.length > 0 ) {
1316
  clickedOn = 'inactiveZone';
1317
  }
1318
 
1319
+ if ( _.isEmpty( _location_id ) ) {
1320
+ self.errare( '::scheduleUiClickReactions => error location id can not be empty' );
1321
+ }
1322
+
1323
  switch( clickedOn ) {
1324
  case 'addContentButton' :
1325
  var is_first_section = true === $el.closest('[data-sek-is-first-section]').data('sek-is-first-section');
1326
 
1327
  api.preview.send( 'sek-add-section', {
1328
+ location : _location_id,
1329
  level : 'section',
1330
  before_section : $el.closest('[data-sek-before-section]').data('sek-before-section'),
1331
  after_section : $el.closest('[data-sek-after-section]').data('sek-after-section'),
1334
  });
1335
  break;
1336
  case 'UIIcon' :
 
1337
  if ( 1 > $closestLevelWrapper.length ) {
1338
  throw new Error( 'ERROR => sek-front-preview => No valid level dom element found' );
1339
  }
1347
  }
1348
  self._send_( $el, {
1349
  action : _action,
1350
+ location : _location_id,
1351
  level : _level,
1352
  id : _id,
1353
  was_triggered : false //<= indicates that the user clicked.
1375
  case 'sectionOutsideColumns' :
1376
  self._send_( $el, {
1377
  action : 'edit-options',
1378
+ location : _location_id,
1379
  level : _level,
1380
  id : _id
1381
  });
1382
  break;
1383
  case 'addSektion' :
1384
  api.preview.send( 'sek-add-section', {
1385
+ location : _location_id,
1386
  level : $el.data('sek-add')
1387
  });
1388
  break;
2523
  return dfd.resolve().promise();
2524
  }
2525
 
2526
+ // introduced for https://github.com/presscustomizr/nimble-builder/issues/494
2527
+ // september 2019
2528
+ // this guid is used to differentiate dynamically rendered content from static content that may include a Nimble generated HTML structure
2529
+ // an attribute "data-sek-preview-level-guid" is added to each rendered level when customizing or ajaxing
2530
+ // otherwise the preview UI can be broken
2531
+ _query_[ 'preview-level-guid' ] = sekPreviewLocalized.previewLevelGuid;
2532
+
2533
  $.post( ajaxUrl, _query_ )
2534
  .done( function( _r ) {
2535
  // Check if the user is logged out.
assets/czr/sek/js/ccat-sek-preview.min.js CHANGED
@@ -1 +1 @@
1
- var SekPreviewPrototype=SekPreviewPrototype||{};!function(a,s,i){s.extend(SekPreviewPrototype,{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()}),s("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(),s("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=[];s('[data-sek-level="location"]').each(function(){e.push(s(this).data("sek-id"))}),a.preview.send("sek-active-locations-in-preview",{active_locations:e})};a.preview.bind("sek-request-active-locations",e),e()},deactivateLinks:function(e){e=e||{};s("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).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.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"),0<i.length&&i.removeClass("sek-active-ui sek-highlight-active-ui"),n.activeUIChangedRecently(Date.now())}),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,p,h){p.extend(SekPreviewPrototype,{setupSortable:function(){var a=this;return this.sortableDefaultParams={placeholder:"sortable-placeholder",over:function(e,t){},cursorAt:{top:0,left:0},tolerance:"pointer"},p('[data-sek-level="location"]').each(function(){a.makeSektionsSortableInLocation(p(this).data("sek-id"))}),p("body").on("sek-section-added sek-level-refreshed",'[data-sek-level="location"]',function(e,t){a.makeSektionsSortableInLocation(p(this).data("sek-id"))}),p('[data-sek-level="location"]').each(function(){p(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(p(this).data("sek-id"))})}),p("body").on("sek-columns-refreshed sek-section-added",'[data-sek-level="section"]',function(e){a.makeColumnsSortableInSektion(p(this).data("sek-id"))}),p("body").on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){p(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(p(this).data("sek-id"))})}),p('[data-sek-level="location"]').each(function(){p(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),p("body").on("sek-modules-refreshed",'[data-sek-level="column"]',function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))}),p("body").on("sek-columns-refreshed",'[data-sek-level="section"]',function(){p(this).find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),p("body").on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){p(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),p("body").on("sek-section-added",'[data-sek-level="location"]',function(e,t){p(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),this},makeSektionsSortableInLocation:function(e){var a,i,t,n=this,s=[],o=[];p('[data-sek-id="'+e+'"]').each(function(){!0!==p(this).data("sek-is-global-location")&&(t=p.extend(!0,{},n.sortableDefaultParams),p(this).sortable(h.extend(t,{handle:".sek-move-section",connectWith:'[data-sek-is-global-location="false"]',placeholder:{element:function(e){return p('<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){p("body").addClass("sek-moving-section"),$sourceLocation=t.item.closest('[data-sek-level="location"]'),a=$sourceLocation.data("sek-id"),$sourceLocation.children('[data-sek-level="section"]').each(function(){s.push(p(this).data("sek-id"))})},stop:function(e,t){p("body").removeClass("sek-moving-section"),o=[],$targetLocation=t.item.closest('[data-sek-level="location"]'),i=$targetLocation.data("sek-id"),$targetLocation.children('[data-sek-level="section"]').each(function(){o.push(p(this).data("sek-id"))}),m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"section",newOrder:o,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=p.extend(!0,{},o.sortableDefaultParams),r=[],d=[],l=p('[data-sek-id="'+e+'"]').find(".sek-sektion-inner").first(),c=function(e){if(e=p.extend({forTarget:!0},e||{}),!h.isEmpty(p(this).data("_sortable_columns_css_classes_")))return p(this).data("_sortable_columns_css_classes_");var t,a=p(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 p(this).data("_sortable_columns_css_classes_",n),n};l.sortable(h.extend(t,{handle:".sek-move-column",connectWith:".sek-sektion-inner",over:function(e,t){var a,i=p(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==p(this).data("sek-is-sender")?(a=c.call(p(this)),h.isEmpty(a)||i.each(function(){p(this).removeClass(a.current).addClass(a.next)})):(a=c.call(p(this),{forTarget:!1}),h.isEmpty(a)||i.each(function(){p(this).addClass(a.current).removeClass(a.next)}))},out:function(e,t){var a,i=p(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==p(this).data("sek-is-sender")?(a=c.call(p(this)),h.isEmpty(a)||i.each(function(){p(this).addClass(a.current).removeClass(a.next)})):(a=c.call(p(this),{forTarget:!1}),h.isEmpty(a)||i.each(function(){p(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"),r=[],d=[],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(){r.push(p(this).data("sek-id"))}),p(this).data("sek-is-sender",!0),h.isEmpty(r)&&o.errare("column sortable => startOrder should not be empty")},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(){d.push(p(this).data("sek-id"))});var a,i=p(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==p(this).data("sek-is-sender")?(a=c.call(p(this)),h.isEmpty(a)||i.each(function(){p(this).removeClass(a.current).addClass(a.next)})):(a=c.call(p(this),{forTarget:!1}),h.isEmpty(a)||i.each(function(){p(this).addClass(a.current).removeClass(a.next)})),p('[data-sek-level="section"]').find(".sek-sektion-inner").each(function(){p(this).data("sek-is-sender",null).data("_sortable_columns_css_classes_",null)}),h.isEmpty(d)?o.errare("column sortable => newOrder should not be empty"):h.isEqual(d,r)&&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:d,from_sektion:from_sektion,to_sektion:to_sektion}),p('div[data-sek-id="'+from_sektion+'"]').trigger("sek-level-refreshed"),from_sektion!==to_sektion&&p('div[data-sek-id="'+to_sektion+'"]').trigger("sek-level-refreshed"))}}))},makeModulesSortableInColumn:function(e){var a,i,n,s,t,o,r,d,l,c=[],k=[],u=this;t=p.extend(!0,{},u.sortableDefaultParams),p('[data-sek-id="'+e+'"]').find(".sek-column-inner").first().sortable(h.extend(t,{handle:".sek-move-module",connectWith:".sek-column-inner",over:function(e,t){p('[data-sek-level="location"]').find(".sek-sortable-overing").each(function(){p(this).removeClass("sek-sortable-overing")}),p(e.target).addClass("sek-sortable-overing")},remove:function(e,t){d=t.item.closest('[data-sek-level="location"]'),to_location=d.data("sek-id"),l=!0===d.data("sek-is-global-location");var a=to_location!=from_location;return!(r!==l||!0===r&&!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"),r=!0===o.data("sek-is-global-location"),c=[],k=[],p("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(p(this).data("sek-id"))}),h.isEmpty(c)&&u.errare("makeModulesSortableInColumn => startOrder should not be empty")},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(p(this).data("sek-id"))}),h.isEmpty(k)?u.errare("makeModulesSortableInColumn => newOrder should not be empty"):h.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")}),p("body").removeClass("sek-dragging-element"))}}))}})}(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)}),c("body").on("sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added",'[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,r,d,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");d=n.index()+1==o,r=d?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:r.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(l,p,h){p.extend(SekPreviewPrototype,{printLevelUI:function(e){var t,a,i,n;if((h.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 r,d,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&&(r=c.find(".sek-column-inner").first().children("div[data-sek-level]").length==n.index()+1,d=0===n.index()):0<l.length&&(r=l.children('div[data-sek-level="section"]').length==n.index()+1,d=0===n.index()),i=h.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:r,is_first_section_in_parent:d,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=h.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=h.extend(i,{module_name:"not_set"!=m?m:""})}!0===p(".sektion-wrapper").data("sek-resizing-columns")&&h.contains(["column","module"],a)||(t=this.parseTemplate("#sek-dyn-ui-tmpl-"+a),p.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,t,o=this,r=function(){(e=p(this)).children(".sek-dyn-ui-wrapper").length<1||sekPreviewLocalized.isPreviewUIDebugMode||(e.data("UIisFadingOut",!0),e.children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){p(this).remove(),e.data("UIisFadingOut",!1)}}))},a=function(){var e=p(this);clearTimeout(e.data("_toggle_ui_menu_")),e.data("_toggle_ui_menu_",setTimeout(function(){n.call(e)},1e4))},n=function(e){var t=p(this),a=p(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())};p("body").on("click",".sek-dyn-ui-location-inner",function(e){var t=p(this).find(".sek-dyn-ui-hamb-menu-wrapper");p(this).closest('[data-sek-level="section"]').find(".sek-dyn-ui-hamb-menu-wrapper").each(function(){n.call(p(this))}),n.call(t,!0),a.call(t)}),p("body").on("mouseenter mouseover mouseleave",".sek-dyn-ui-wrapper",h.throttle(function(e){var t=p(this).find(".sek-dyn-ui-hamb-menu-wrapper");h.isUndefined(t.data("_toggle_ui_menu_"))||t.hasClass("sek-collapsed")||0<t.length&&a.call(t)},50)),p("body").on("click",".sek-minimize-ui",function(e){p(this).closest(".sek-dyn-ui-location-type").slideToggle("fast")}),p("body").on("mouseenter",".sek-wp-content-wrapper",function(e){0<(t=p(this)).children(".sek-dyn-ui-wrapper").length&&!0!==t.data("UIisFadingOut")||(i=o.parseTemplate("#sek-dyn-ui-tmpl-wp-content"),p.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){p(this).data("UIisFadingOut",!0),t=p(this),p(this).children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){p(this).remove(),t.data("UIisFadingOut",!1)}})});var d=function(n,e){var t,s;h.isUndefined(e)||e.length<1?(t=p("body").find("[data-sek-level]"),s="printOrScheduleRemoval"):(t=e,s="mayBeRemove"),t.each(function(){var e=p(this)[0].getBoundingClientRect(),t=n.x<=e.right&&e.left<=n.x,a=n.y>=e.top&&e.bottom>=n.y,i=p(this);switch(s){case"mayBeRemove":i.data("sek-ui-removal-scheduled",!1),t&&a||r.call(i);break;case"printOrScheduleRemoval":t&&a?(i.data("sek-ui-removal-scheduled",!1),o.printLevelUI(i)):!0!==i.data("sek-ui-removal-scheduled")&&(i.data("sek-ui-removal-scheduled",!0),i.children(".sek-dyn-ui-wrapper").find(".sek-is-expanded").length<1?d(n,i):h.delay(function(){!0===i.data("sek-ui-removal-scheduled")&&d(o.mouseMovedRecently(),i)},3500))}})};o.mouseMovedRecently=new l.Value({}),o.mouseMovedRecently.bind(function(e){var k,t,a;h.isEmpty(e)?(p("body").stop(!0,!0).find(".sek-add-content-button").each(function(){p(this).fadeOut({duration:200,complete:function(){p(this).remove()}})}),p("body").stop(!0,!0).find("[data-sek-level]").each(function(){p(this).children(".sek-dyn-ui-wrapper").find(".sek-is-expanded").length<1&&r.call(p(this))})):(p("body").find('div[data-sek-level="location"]').each(function(){var e;$sectionCollection=p(this).children('div[data-sek-level="section"]'),i=o.parseTemplate("#sek-tmpl-add-content-button"),t=p(this).data("sek-id"),a=!0===p(this).data("sek-is-global-location"),$sectionCollection.each(function(){0<p(this).find(".sek-add-content-button").length||(p.when(p(this).prepend(i({location:t,is_global_location:a}))).done(function(){e=p(this).find(".sek-add-content-button"),p(this).data("sek-id")&&e.attr("data-sek-before-section",p(this).data("sek-id")),e.fadeIn(300)}),$sectionCollection.length==p(this).index()+1&&p.when(p(this).append(i({is_last:!0,location:t,is_global_location:a}))).done(function(){e=p(this).find(".sek-add-content-button").last(),p(this).data("sek-id")&&e.attr("data-sek-after-section",p(this).data("sek-id")),e.fadeIn(300)}))})}),p(".sek-empty-location-placeholder").each(function(){0<p(this).find(".sek-add-content-button").length||(t=p(this).closest('div[data-sek-level="location"]').data("sek-id"),a=!0===p(this).closest('div[data-sek-level="location"]').data("sek-is-global-location"),p.when(p(this).append(i({location:t,is_global_location:a}))).done(function(){$btn_el=p(this).find(".sek-add-content-button"),$btn_el.attr("data-sek-is-first-section",!0),$btn_el.fadeIn(300)}))}),k=e,p("body").find(".sek-add-content-button").each(function(){var e=p(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,r=i<40||n<40,d=0<s&&s<40||0<o&&o<40,l=a<=e.right&&e.left<=a,c=t>=e.top&&e.bottom>=t;p(this).toggleClass("sek-mouse-is-close",(r||c)&&(d||l))}),d(e))});var s=function(){clearTimeout(p(window).data("_scroll_move_timer_")),o.mouseMovedRecently.set({})};return p(window).on("mousemove scroll",h.throttle(function(e){o.mouseMovedRecently({x:e.clientX,y:e.clientY}),clearTimeout(p(window).data("_scroll_move_timer_")),p(window).data("_scroll_move_timer_",setTimeout(function(){o.mouseMovedRecently.set({})},4e3))},50)),l.preview.bind("sek-drag-start",function(){s()}),p("body").on("sek-section-added",'[data-sek-level="location"]',function(e,t){s()}),this}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(u,m,p){m.extend(SekPreviewPrototype,{scheduleUiClickReactions:function(){var k=this;m("body").on("click",function(e){u.preview.send("sek-clean-target-drop-zone");var t,a=m(e.target),i=a.closest('[data-sek-level="location"]'),n=a.closest("[data-sek-level]"),s=a.closest("[data-sek-click-on]"),o=i.data("sek-id"),r=n.data("sek-level"),d=n.data("sek-id");switch("add-content"==a.data("sek-click-on")||0<a.closest("[data-sek-click-on]").length&&"add-content"==a.closest("[data-sek-click-on]").data("sek-click-on")?"addContentButton":!p.isEmpty(a.data("sek-click-on"))||0<s.length?"UIIcon":"module"==n.data("sek-level")?"moduleWrapper":"column"==n.data("sek-level")&&!0===n.data("sek-no-modules")?"noModulesColumn":a.hasClass("sek-to-json")?"sekToJson":"column"==n.data("sek-level")?"columnOutsideModules":"section"==n.data("sek-level")?"sectionOutsideColumns":p.isEmpty(a.data("sek-add"))?a.hasClass("sek-wp-content-wrapper")||a.hasClass("sek-wp-content-dyn-ui")?"wpContent":a.hasClass("sek-edit-wp-content")?"editWpContent":"inactiveZone":"addSektion"){case"addContentButton":var l=!0===a.closest("[data-sek-is-first-section]").data("sek-is-first-section");u.preview.send("sek-add-section",{location:o,level:"section",before_section:a.closest("[data-sek-before-section]").data("sek-before-section"),after_section:a.closest("[data-sek-after-section]").data("sek-after-section"),is_first_section:l,send_to_preview:!l});break;case"UIIcon":if(n.length<1)throw new Error("ERROR => sek-front-preview => No valid level dom element found");if(t=a.closest("[data-sek-click-on]").data("sek-click-on"),p.isEmpty(t))throw new Error("Invalid action");if(p.isEmpty(r)||p.isEmpty(d))throw new Error("ERROR => sek-front-preview => No valid level id found");k._send_(a,{action:t,location:o,level:r,id:d,was_triggered:!1});break;case"moduleWrapper":if(0<a.parent(".sek-dyn-ui-icons").length)return;k._send_(a,{action:"edit-module",level:r,id:d});break;case"noModulesColumn":if(0<a.parent(".sek-dyn-ui-icons").length)return;k._send_(a,{action:"pick-content",content_type:"module",level:r,id:d});break;case"columnOutsideModules":case"sectionOutsideColumns":k._send_(a,{action:"edit-options",location:o,level:r,id:d});break;case"addSektion":u.preview.send("sek-add-section",{location:o,level:a.data("sek-add")});break;case"sekToJson":u.preview.send("sek-to-json",{id:d});break;case"wpContent":u.preview.send("sek-notify",{type:"info",duration:8e3,message:sekPreviewLocalized.i18n["This content has been created with the WordPress editor."]});break;case"editWpContent":var c=a.closest("[data-sek-wp-edit-link]").data("sek-wp-edit-link");p.isEmpty(c)||window.open(c,"_blank");break;case"inactiveZone":u.preview.send("sek-click-on-inactive-zone")}})},_send_:function(e,t){var a=m.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"):""),u.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>',s("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){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()},4e3)))}if(!0===e.fullPageLoader){var n=s("<div>",{id:"nimble-full-page-loader-wrapper",class:"white-loader"});s("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})},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(r,d,l){d.extend(SekPreviewPrototype,{schedulePanelMsgReactions:function(){var o=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{o.mayBePrintLoader(e)}catch(e){r.errare("sek-clean-loader => error",e)}},"sek-clean-loader":function(e){try{o.cleanLoader(e)}catch(e){r.errare("sek-clean-loader => error",e)}},"sek-remove":function(e){var t,a=e.apiParams.id,i=d('div[data-sek-id="'+a+'"]');switch(e.apiParams.action){case"sek-remove-section":o.mayBePrintLoader({loader_located_in_level_id:e.apiParams.location}),!0===e.apiParams.is_nested?t=o.ajaxRefreshModulesAndNestedSections(e):((l.isEmpty(a)||i.length<1)&&o.errare("reactToPanelMsg => sek-remove => invalid candidate id => ",a),d("body").find(i).remove(),d('[data-sek-id="'+e.apiParams.location+'"]').trigger("sek-level-refreshed"));break;case"sek-remove-column":t=o.ajaxRefreshColumns(e);break;case"sek-remove-module":t=o.ajaxRefreshModulesAndNestedSections(e)}return l.isEmpty(t)?d.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=o.ajaxAddSektion(e);break;case"sek-duplicate-column":e.apiParams.id=e.cloneId,t=o.ajaxRefreshColumns(e);break;case"sek-duplicate-module":e.apiParams.id=e.cloneId,t=o.ajaxRefreshModulesAndNestedSections(e)}return t},"sek-refresh-level":function(s){return o.mayBePrintLoader({loader_located_in_level_id:s.apiParams.id}),o.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){o.errare("ERROR reactToPanelMsg => sek-refresh-level => ",e),d('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-ajax-error")}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(o.errare("SekPreviewPrototype::sek-refresh-level => ajax_response.data.contents is undefined ",e),o.errare("params ?",s));var a='<span class="sek-placeholder" data-sek-placeholder-for="'+s.apiParams.id+'"></span>',i=d('div[data-sek-id="'+s.apiParams.id+'"]');if(i.length<1)o.errare("reactToPanelMsg => sek-refresh-level ajax done => the level to refresh is not rendered in the page",e);else{i.before(a);var n=d('[data-sek-placeholder-for="'+s.apiParams.id+'"]');i.remove(),l.isUndefined(t)?o.errare("reactToPanelMsg => sek-refresh-level ajax done => missing html_content",e):n.after(t),n.remove(),d('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-level-refreshed",{level:s.apiParams.level,id:s.apiParams.id}),s.apiParams.moved_level_id&&r.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=d.extend(!0,{},e),a=d.extend(!0,{},e);d('[data-sek-id="'+e.apiParams.from_sektion+'"]',".sektion-wrapper").find('div[data-sek-level="column"]').length<1?r.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"}),o.ajaxRefreshColumns(t)),a.apiParams=l.extend(a.apiParams,{in_sektion:e.apiParams.to_sektion,action:"sek-refresh-columns-in-sektion"}),o.ajaxRefreshColumns(a)}break;case"sek-move-module":var i=d.extend(!0,{},e),n=d.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"}),o.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"}),o.ajaxRefreshModulesAndNestedSections(n),d('[data-sek-id="'+e.apiParams.to_column+'"]',".sektion-wrapper").find(".sek-column-inner").sortable("refresh")}},"sek-edit-options":function(e){o.activeLevelUI(e.uiParams.id)},"sek-edit-module":function(e){o.activeLevelUI(e.uiParams.id)},"sek-drag-start":function(n){var s=1,o=!1;d('[data-sek-level="location"]').children('[data-sek-level="section"]').each(function(){var e=d(this).data("sek-id"),t=d(this).find('[data-sek-level="column"]').length,a=d(this).find('[data-sek-level="module"]').length,i=t<2&&a<1;!o&&!i&&d('[data-drop-zone-before-section="'+e+'"]').length<1&&d(this).before('<div class="sek-content-'+n.type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-sections" data-drop-zone-before-section="'+e+'"></div>'),i||s!=d(".sektion-wrapper").children('[data-sek-level="section"]').length||d(this).after('<div class="sek-content-'+n.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}),d(".sek-empty-location-placeholder").each(function(){d.when(d(this).append('<div class="sek-content-'+n.type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="in-empty-location"></div>'))}),"module"==n.type&&d('[data-sek-level="column"]').each(function(){var e=d(this).children(".sek-column-inner").children('[data-sek-level="module"]'),t=d(this).children(".sek-column-inner").children('[data-sek-is-nested="true"]');e=e.add(t);var a=1;e.each(function(){d('[data-drop-zone-before-module-or-nested-section="'+d(this).data("sek-id")+'"]').length<1&&d(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="'+d(this).data("sek-id")+'"></div>'),a==e.length&&d('[data-drop-zone-after-module-or-nested-section="'+d(this).data("sek-id")+'"]').length<1&&d(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="'+d(this).data("sek-id")+'"></div>'),a++})}),d("body").addClass("sek-dragging"),l.delay(function(){d(".sek-dynamic-drop-zone").css({opacity:1})},100)},"sek-drag-stop":function(e){d("body").removeClass("sek-dragging"),d(".sortable-placeholder").remove(),d(".sek-dynamic-drop-zone").remove()},"sek-animate-to-level":function(e){var t=d('[data-sek-id="'+e.id+'"]');0<t.length&&d("html, body").animate({scrollTop:t.offset().top-100},200)},"sek-clean-level-uis":function(e){d(".sek-dyn-ui-wrapper").each(function(){d(this).remove()})},"sek-display-level-ui":function(e){var t=d('[data-sek-id="'+e.id+'"]');0<t.length&&o.printLevelUI(t)},"sek-set-double-click-target":function(e){if(d(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion"),l.isObject(e)&&e.id){var t=d('[data-sek-id="'+e.id+'"]');1===t.length&&t.addClass("sek-target-for-double-click-insertion")}},"sek-reset-double-click-target":function(e){d(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion")},"sek-update-html-in-selector":function(e){var t,a=d('[data-sek-id="'+e.id+'"]');t=l.isEmpty(e.changed_item_id)?d(e.selector,a):d('[data-sek-item-id="'+e.changed_item_id+'"] '+e.selector,a),0<a.length&&0<t.length?t.html(e.html):o.errare("reactToPanelMsg => sek-update-html-in-selector => missing level or target dom element",e)}};l.each(e,function(e,i){r.preview.bind(i,function(a){a=l.extend({location_skope_id:"",apiParams:{},uiParams:{}},a||{});d("body").addClass(i);try{d.when(l.isFunction(e)?e(a):o[e].call(o,a)).done(function(e){var t;t=e,r.preview.send([i,"done"].join("_"),a),a.apiParams.is_multi_items&&"sek-refresh-level"===a.apiParams.action&&r.preview.send("multi-items-module-refreshed",a),l.isUndefined(t)||t.data&&t.data.setting_validities&&r.preview.send("selective-refresh-setting-validities",t.data.setting_validities)}).fail(function(){r.preview.send("sek-notify",{type:"error",duration:1e4,message:sekPreviewLocalized.i18n["Something went wrong, please refresh this page."]})}).always(function(e){d("body").removeClass(i)}).then(function(){r.preview.trigger("control-panel-requested-action-done",{action:i,args:a})})}catch(e){o.errare("reactToPanelMsg => Error when firing the callback of "+i,e),d("body").removeClass(i)}})})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,r){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||r.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+'"]'),!r.isEmpty(n.apiParams.before_section)&&0<$beforeCandidate.length?$beforeCandidate.before(a):!r.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)}).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,r,e){r.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=r('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(),r(".sektion-wrapper").find(".sek-placeholder").after(t),r(".sektion-wrapper").find(".sek-placeholder").remove(),o.preview.trigger("sek-refresh-stylesheet",n),r('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),r('[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)),r('[data-sek-id="'+a.apiParams.resized_column+'"]').css({width:"",height:""}),i.appendDynStyleSheet(a.location_skope_id,t),r('div[data-sek-id="'+a.apiParams.in_sektion+'"]').trigger("sek-columns-refreshed")}).fail(function(e){i.errare("ERROR reactToPanelMsg => sek-resize-columns => ",e),r('[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?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,r){o.extend(SekPreviewPrototype,{parseTemplate:r.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||r.template(o(t).html(),n)}catch(e){i.errare("preview => parseTemplate => problem when parsing tmpl =>"+t,e)}return a(e)}}),_prettyPrintLog:function(e){e=r.extend({bgCol:"#5ed1f5",textCol:"#000",consoleArguments:[]},e);var t,a=Array.from(e.consoleArguments);return a=r.isEmpty(r.filter(a,function(e){return!r.isString(e)}))?a.join(" "):JSON.stringify(a.join(" ")),["%c "+(t=a,r.isString(t)?300<t.length?t.substr(0,299)+"...":t:""),["background:"+e.bgCol,"color:"+e.textCol,"display: block;"].join(";")]},_wrapLogInsideTags:function(e,t,a){r.isUndefined(console)&&"function"!=typeof window.console.log||(sekPreviewLocalized.isDevMode?r.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||(r.isObject(e)?e:{})).ajaxUrl||sekPreviewLocalized.ajaxUrl,i=sekPreviewLocalized.frontNonce,n=o.Deferred(),s=r.extend({action:"",withNonce:!1},e);return"https:"==document.location.protocol&&(a=a.replace("http://","https://")),r.isEmpty(s.action)||!r.isString(s.action)?(t.errare("self.doAjax : unproper action provided"),n.resolve().promise()):(s[i.id]=i.handle,!r.isObject(i)||r.isUndefined(i.id)||r.isUndefined(i.handle)?(t.errare("self.doAjax : unproper nonce"),n.resolve().promise()):(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&&!r.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 r.isUndefined(e)&&a.errare("getLevelModel => a collection must be provided"),r.each(e,function(e){"no_match"==i&&(t===e.id?i=e:r.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,{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()}),s("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(),s("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=[];s('[data-sek-level="location"]').each(function(){e.push(s(this).data("sek-id"))}),a.preview.send("sek-active-locations-in-preview",{active_locations:e})};a.preview.bind("sek-request-active-locations",e),e()},deactivateLinks:function(e){e=e||{};s("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).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.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"),0<i.length&&i.removeClass("sek-active-ui sek-highlight-active-ui"),n.activeUIChangedRecently(Date.now())}),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,p,h){p.extend(SekPreviewPrototype,{setupSortable:function(){var a=this;return this.sortableDefaultParams={placeholder:"sortable-placeholder",over:function(e,t){},cursorAt:{top:0,left:0},tolerance:"pointer"},p('[data-sek-level="location"]').each(function(){a.makeSektionsSortableInLocation(p(this).data("sek-id"))}),p("body").on("sek-section-added sek-level-refreshed",'[data-sek-level="location"]',function(e,t){a.makeSektionsSortableInLocation(p(this).data("sek-id"))}),p('[data-sek-level="location"]').each(function(){p(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(p(this).data("sek-id"))})}),p("body").on("sek-columns-refreshed sek-section-added",'[data-sek-level="section"]',function(e){a.makeColumnsSortableInSektion(p(this).data("sek-id"))}),p("body").on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){p(this).find('[data-sek-level="section"]').each(function(){a.makeColumnsSortableInSektion(p(this).data("sek-id"))})}),p('[data-sek-level="location"]').each(function(){p(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),p("body").on("sek-modules-refreshed",'[data-sek-level="column"]',function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))}),p("body").on("sek-columns-refreshed",'[data-sek-level="section"]',function(){p(this).find(".sek-sektion-inner").first().children('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),p("body").on("sek-level-refreshed",'[data-sek-level="location"]',function(e,t){p(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),p("body").on("sek-section-added",'[data-sek-level="location"]',function(e,t){p(this).find('[data-sek-level="column"]').each(function(){a.makeModulesSortableInColumn(p(this).data("sek-id"))})}),this},makeSektionsSortableInLocation:function(e){var a,i,t,n=this,s=[],o=[];p('[data-sek-id="'+e+'"]').each(function(){!0!==p(this).data("sek-is-global-location")&&(t=p.extend(!0,{},n.sortableDefaultParams),p(this).sortable(h.extend(t,{handle:".sek-move-section",connectWith:'[data-sek-is-global-location="false"]',placeholder:{element:function(e){return p('<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){p("body").addClass("sek-moving-section"),$sourceLocation=t.item.closest('[data-sek-level="location"]'),a=$sourceLocation.data("sek-id"),$sourceLocation.children('[data-sek-level="section"]').each(function(){s.push(p(this).data("sek-id"))})},stop:function(e,t){p("body").removeClass("sek-moving-section"),o=[],$targetLocation=t.item.closest('[data-sek-level="location"]'),i=$targetLocation.data("sek-id"),$targetLocation.children('[data-sek-level="section"]').each(function(){o.push(p(this).data("sek-id"))}),m.preview.send("sek-move",{id:t.item.data("sek-id"),level:"section",newOrder:o,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=p.extend(!0,{},o.sortableDefaultParams),r=[],d=[],l=p('[data-sek-id="'+e+'"]').find(".sek-sektion-inner").first(),c=function(e){if(e=p.extend({forTarget:!0},e||{}),!h.isEmpty(p(this).data("_sortable_columns_css_classes_")))return p(this).data("_sortable_columns_css_classes_");var t,a=p(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 p(this).data("_sortable_columns_css_classes_",n),n};l.sortable(h.extend(t,{handle:".sek-move-column",connectWith:".sek-sektion-inner",over:function(e,t){var a,i=p(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==p(this).data("sek-is-sender")?(a=c.call(p(this)),h.isEmpty(a)||i.each(function(){p(this).removeClass(a.current).addClass(a.next)})):(a=c.call(p(this),{forTarget:!1}),h.isEmpty(a)||i.each(function(){p(this).addClass(a.current).removeClass(a.next)}))},out:function(e,t){var a,i=p(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==p(this).data("sek-is-sender")?(a=c.call(p(this)),h.isEmpty(a)||i.each(function(){p(this).addClass(a.current).removeClass(a.next)})):(a=c.call(p(this),{forTarget:!1}),h.isEmpty(a)||i.each(function(){p(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"),r=[],d=[],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(){r.push(p(this).data("sek-id"))}),p(this).data("sek-is-sender",!0),h.isEmpty(r)&&o.errare("column sortable => startOrder should not be empty")},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(){d.push(p(this).data("sek-id"))});var a,i=p(this).closest('[data-sek-level="section"]').find(".sek-sektion-inner").first().children('[data-sek-level="column"]');!0!==p(this).data("sek-is-sender")?(a=c.call(p(this)),h.isEmpty(a)||i.each(function(){p(this).removeClass(a.current).addClass(a.next)})):(a=c.call(p(this),{forTarget:!1}),h.isEmpty(a)||i.each(function(){p(this).addClass(a.current).removeClass(a.next)})),p('[data-sek-level="section"]').find(".sek-sektion-inner").each(function(){p(this).data("sek-is-sender",null).data("_sortable_columns_css_classes_",null)}),h.isEmpty(d)?o.errare("column sortable => newOrder should not be empty"):h.isEqual(d,r)&&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:d,from_sektion:from_sektion,to_sektion:to_sektion}),p('div[data-sek-id="'+from_sektion+'"]').trigger("sek-level-refreshed"),from_sektion!==to_sektion&&p('div[data-sek-id="'+to_sektion+'"]').trigger("sek-level-refreshed"))}}))},makeModulesSortableInColumn:function(e){var a,i,n,s,t,o,r,d,l,c=[],k=[],u=this;t=p.extend(!0,{},u.sortableDefaultParams),p('[data-sek-id="'+e+'"]').find(".sek-column-inner").first().sortable(h.extend(t,{handle:".sek-move-module",connectWith:".sek-column-inner",over:function(e,t){p('[data-sek-level="location"]').find(".sek-sortable-overing").each(function(){p(this).removeClass("sek-sortable-overing")}),p(e.target).addClass("sek-sortable-overing")},remove:function(e,t){d=t.item.closest('[data-sek-level="location"]'),to_location=d.data("sek-id"),l=!0===d.data("sek-is-global-location");var a=to_location!=from_location;return!(r!==l||!0===r&&!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"),r=!0===o.data("sek-is-global-location"),c=[],k=[],p("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(p(this).data("sek-id"))}),h.isEmpty(c)&&u.errare("makeModulesSortableInColumn => startOrder should not be empty")},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(p(this).data("sek-id"))}),h.isEmpty(k)?u.errare("makeModulesSortableInColumn => newOrder should not be empty"):h.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")}),p("body").removeClass("sek-dragging-element"))}}))}})}(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)}),c("body").on("sek-level-refreshed sek-modules-refreshed sek-columns-refreshed sek-section-added",'[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,r,d,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");d=n.index()+1==o,r=d?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:r.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(o,p,h){p.extend(SekPreviewPrototype,{printLevelUI:function(e){var t,a,i,n;if((h.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 r,d,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&&(r=c.find(".sek-column-inner").first().children("div[data-sek-level]").length==n.index()+1,d=0===n.index()):0<l.length&&(r=l.children('div[data-sek-level="section"]').length==n.index()+1,d=0===n.index()),i=h.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:r,is_first_section_in_parent:d,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=h.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=h.extend(i,{module_name:"not_set"!=m?m:""})}!0===p(".sektion-wrapper").data("sek-resizing-columns")&&h.contains(["column","module"],a)||(t=this.parseTemplate("#sek-dyn-ui-tmpl-"+a),p.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,t,r=this,d=function(){(e=p(this)).children(".sek-dyn-ui-wrapper").length<1||sekPreviewLocalized.isPreviewUIDebugMode||(e.data("UIisFadingOut",!0),e.children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){p(this).remove(),e.data("UIisFadingOut",!1)}}))},a=function(){var e=p(this);clearTimeout(e.data("_toggle_ui_menu_")),e.data("_toggle_ui_menu_",setTimeout(function(){n.call(e)},1e4))},n=function(e){var t=p(this),a=p(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())};p("body").on("click",".sek-dyn-ui-location-inner",function(e){var t=p(this).find(".sek-dyn-ui-hamb-menu-wrapper");p(this).closest('[data-sek-level="section"]').find(".sek-dyn-ui-hamb-menu-wrapper").each(function(){n.call(p(this))}),n.call(t,!0),a.call(t)}),p("body").on("mouseenter mouseover mouseleave",".sek-dyn-ui-wrapper",h.throttle(function(e){var t=p(this).find(".sek-dyn-ui-hamb-menu-wrapper");h.isUndefined(t.data("_toggle_ui_menu_"))||t.hasClass("sek-collapsed")||0<t.length&&a.call(t)},50)),p("body").on("click",".sek-minimize-ui",function(e){p(this).closest(".sek-dyn-ui-location-type").slideToggle("fast")}),p("body").on("mouseenter",".sek-wp-content-wrapper",function(e){0<(t=p(this)).children(".sek-dyn-ui-wrapper").length&&!0!==t.data("UIisFadingOut")||(i=r.parseTemplate("#sek-dyn-ui-tmpl-wp-content"),p.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){p(this).data("UIisFadingOut",!0),t=p(this),p(this).children(".sek-dyn-ui-wrapper").stop(!0,!0).fadeOut({duration:150,complete:function(){p(this).remove(),t.data("UIisFadingOut",!1)}})});var l=function(s,e){var o,t=[];h.isUndefined(e)||e.length<1?(p("body").find('[data-sek-level][data-sek-preview-level-guid="'+sekPreviewLocalized.previewLevelGuid+'"]').each(function(){t.push(p(this))}),o="printOrScheduleRemoval"):(t.push(e),o="mayBeRemove"),h.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||d.call(n);break;case"printOrScheduleRemoval":a&&i?(n.data("sek-ui-removal-scheduled",!1),r.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):h.delay(function(){!0===n.data("sek-ui-removal-scheduled")&&l(r.mouseMovedRecently(),n)},3500))}})};r.mouseMovedRecently=new o.Value({}),r.mouseMovedRecently.bind(function(e){var k,t,a;h.isEmpty(e)?(p("body").stop(!0,!0).find(".sek-add-content-button").each(function(){p(this).fadeOut({duration:200,complete:function(){p(this).remove()}})}),p("body").stop(!0,!0).find("[data-sek-level]").each(function(){p(this).children(".sek-dyn-ui-wrapper").find(".sek-is-expanded").length<1&&d.call(p(this))})):(p("body").find('div[data-sek-level="location"]').each(function(){var e;$sectionCollection=p(this).children('div[data-sek-level="section"]'),i=r.parseTemplate("#sek-tmpl-add-content-button"),t=p(this).data("sek-id"),a=!0===p(this).data("sek-is-global-location"),$sectionCollection.each(function(){0<p(this).find(".sek-add-content-button").length||(p.when(p(this).prepend(i({location:t,is_global_location:a}))).done(function(){e=p(this).find(".sek-add-content-button"),p(this).data("sek-id")&&e.attr("data-sek-before-section",p(this).data("sek-id")),e.fadeIn(300)}),$sectionCollection.length==p(this).index()+1&&p.when(p(this).append(i({is_last:!0,location:t,is_global_location:a}))).done(function(){e=p(this).find(".sek-add-content-button").last(),p(this).data("sek-id")&&e.attr("data-sek-after-section",p(this).data("sek-id")),e.fadeIn(300)}))})}),p(".sek-empty-location-placeholder").each(function(){0<p(this).find(".sek-add-content-button").length||(t=p(this).closest('div[data-sek-level="location"]').data("sek-id"),a=!0===p(this).closest('div[data-sek-level="location"]').data("sek-is-global-location"),p.when(p(this).append(i({location:t,is_global_location:a}))).done(function(){$btn_el=p(this).find(".sek-add-content-button"),$btn_el.attr("data-sek-is-first-section",!0),$btn_el.fadeIn(300)}))}),k=e,p("body").find(".sek-add-content-button").each(function(){var e=p(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,r=i<40||n<40,d=0<s&&s<40||0<o&&o<40,l=a<=e.right&&e.left<=a,c=t>=e.top&&e.bottom>=t;p(this).toggleClass("sek-mouse-is-close",(r||c)&&(d||l))}),l(e))});var s=function(){clearTimeout(p(window).data("_scroll_move_timer_")),r.mouseMovedRecently.set({})};return p(window).on("mousemove scroll",h.throttle(function(e){r.mouseMovedRecently({x:e.clientX,y:e.clientY}),clearTimeout(p(window).data("_scroll_move_timer_")),p(window).data("_scroll_move_timer_",setTimeout(function(){r.mouseMovedRecently.set({})},4e3))},50)),o.preview.bind("sek-drag-start",function(){s()}),p("body").on("sek-section-added",'[data-sek-level="location"]',function(e,t){s()}),this}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(m,p,h){p.extend(SekPreviewPrototype,{scheduleUiClickReactions:function(){var u=this;p("body").on("click",function(e){m.preview.send("sek-clean-target-drop-zone");var t,a="inactiveZone",i=p(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]"),r=n.data("sek-id"),d=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":!h.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":h.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",h.isEmpty(r)&&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:r,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"),h.isEmpty(t))throw new Error("Invalid action");if(h.isEmpty(d)||h.isEmpty(l))throw new Error("ERROR => sek-front-preview => No valid level id found");u._send_(i,{action:t,location:r,level:d,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:d,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:d,id:l});break;case"columnOutsideModules":case"sectionOutsideColumns":u._send_(i,{action:"edit-options",location:r,level:d,id:l});break;case"addSektion":m.preview.send("sek-add-section",{location:r,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");h.isEmpty(k)||window.open(k,"_blank");break;case"inactiveZone":m.preview.send("sek-click-on-inactive-zone")}})},_send_:function(e,t){var a=p.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,h.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>',s("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){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()},4e3)))}if(!0===e.fullPageLoader){var n=s("<div>",{id:"nimble-full-page-loader-wrapper",class:"white-loader"});s("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})},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(r,d,l){d.extend(SekPreviewPrototype,{schedulePanelMsgReactions:function(){var o=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{o.mayBePrintLoader(e)}catch(e){r.errare("sek-clean-loader => error",e)}},"sek-clean-loader":function(e){try{o.cleanLoader(e)}catch(e){r.errare("sek-clean-loader => error",e)}},"sek-remove":function(e){var t,a=e.apiParams.id,i=d('div[data-sek-id="'+a+'"]');switch(e.apiParams.action){case"sek-remove-section":o.mayBePrintLoader({loader_located_in_level_id:e.apiParams.location}),!0===e.apiParams.is_nested?t=o.ajaxRefreshModulesAndNestedSections(e):((l.isEmpty(a)||i.length<1)&&o.errare("reactToPanelMsg => sek-remove => invalid candidate id => ",a),d("body").find(i).remove(),d('[data-sek-id="'+e.apiParams.location+'"]').trigger("sek-level-refreshed"));break;case"sek-remove-column":t=o.ajaxRefreshColumns(e);break;case"sek-remove-module":t=o.ajaxRefreshModulesAndNestedSections(e)}return l.isEmpty(t)?d.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=o.ajaxAddSektion(e);break;case"sek-duplicate-column":e.apiParams.id=e.cloneId,t=o.ajaxRefreshColumns(e);break;case"sek-duplicate-module":e.apiParams.id=e.cloneId,t=o.ajaxRefreshModulesAndNestedSections(e)}return t},"sek-refresh-level":function(s){return o.mayBePrintLoader({loader_located_in_level_id:s.apiParams.id}),o.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){o.errare("ERROR reactToPanelMsg => sek-refresh-level => ",e),d('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-ajax-error")}).done(function(e){var t="";e.data&&e.data.contents?t=e.data.contents:(o.errare("SekPreviewPrototype::sek-refresh-level => ajax_response.data.contents is undefined ",e),o.errare("params ?",s));var a='<span class="sek-placeholder" data-sek-placeholder-for="'+s.apiParams.id+'"></span>',i=d('div[data-sek-id="'+s.apiParams.id+'"]');if(i.length<1)o.errare("reactToPanelMsg => sek-refresh-level ajax done => the level to refresh is not rendered in the page",e);else{i.before(a);var n=d('[data-sek-placeholder-for="'+s.apiParams.id+'"]');i.remove(),l.isUndefined(t)?o.errare("reactToPanelMsg => sek-refresh-level ajax done => missing html_content",e):n.after(t),n.remove(),d('[data-sek-id="'+s.apiParams.id+'"]').trigger("sek-level-refreshed",{level:s.apiParams.level,id:s.apiParams.id}),s.apiParams.moved_level_id&&r.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=d.extend(!0,{},e),a=d.extend(!0,{},e);d('[data-sek-id="'+e.apiParams.from_sektion+'"]',".sektion-wrapper").find('div[data-sek-level="column"]').length<1?r.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"}),o.ajaxRefreshColumns(t)),a.apiParams=l.extend(a.apiParams,{in_sektion:e.apiParams.to_sektion,action:"sek-refresh-columns-in-sektion"}),o.ajaxRefreshColumns(a)}break;case"sek-move-module":var i=d.extend(!0,{},e),n=d.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"}),o.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"}),o.ajaxRefreshModulesAndNestedSections(n),d('[data-sek-id="'+e.apiParams.to_column+'"]',".sektion-wrapper").find(".sek-column-inner").sortable("refresh")}},"sek-edit-options":function(e){o.activeLevelUI(e.uiParams.id)},"sek-edit-module":function(e){o.activeLevelUI(e.uiParams.id)},"sek-drag-start":function(n){var s=1,o=!1;d('[data-sek-level="location"]').children('[data-sek-level="section"]').each(function(){var e=d(this).data("sek-id"),t=d(this).find('[data-sek-level="column"]').length,a=d(this).find('[data-sek-level="module"]').length,i=t<2&&a<1;!o&&!i&&d('[data-drop-zone-before-section="'+e+'"]').length<1&&d(this).before('<div class="sek-content-'+n.type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="between-sections" data-drop-zone-before-section="'+e+'"></div>'),i||s!=d(".sektion-wrapper").children('[data-sek-level="section"]').length||d(this).after('<div class="sek-content-'+n.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}),d(".sek-empty-location-placeholder").each(function(){d.when(d(this).append('<div class="sek-content-'+n.type+'-drop-zone sek-dynamic-drop-zone sek-drop-zone" data-sek-location="in-empty-location"></div>'))}),"module"==n.type&&d('[data-sek-level="column"]').each(function(){var e=d(this).children(".sek-column-inner").children('[data-sek-level="module"]'),t=d(this).children(".sek-column-inner").children('[data-sek-is-nested="true"]');e=e.add(t);var a=1;e.each(function(){d('[data-drop-zone-before-module-or-nested-section="'+d(this).data("sek-id")+'"]').length<1&&d(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="'+d(this).data("sek-id")+'"></div>'),a==e.length&&d('[data-drop-zone-after-module-or-nested-section="'+d(this).data("sek-id")+'"]').length<1&&d(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="'+d(this).data("sek-id")+'"></div>'),a++})}),d("body").addClass("sek-dragging"),l.delay(function(){d(".sek-dynamic-drop-zone").css({opacity:1})},100)},"sek-drag-stop":function(e){d("body").removeClass("sek-dragging"),d(".sortable-placeholder").remove(),d(".sek-dynamic-drop-zone").remove()},"sek-animate-to-level":function(e){var t=d('[data-sek-id="'+e.id+'"]');0<t.length&&d("html, body").animate({scrollTop:t.offset().top-100},200)},"sek-clean-level-uis":function(e){d(".sek-dyn-ui-wrapper").each(function(){d(this).remove()})},"sek-display-level-ui":function(e){var t=d('[data-sek-id="'+e.id+'"]');0<t.length&&o.printLevelUI(t)},"sek-set-double-click-target":function(e){if(d(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion"),l.isObject(e)&&e.id){var t=d('[data-sek-id="'+e.id+'"]');1===t.length&&t.addClass("sek-target-for-double-click-insertion")}},"sek-reset-double-click-target":function(e){d(".sek-target-for-double-click-insertion").removeClass("sek-target-for-double-click-insertion")},"sek-update-html-in-selector":function(e){var t,a=d('[data-sek-id="'+e.id+'"]');t=l.isEmpty(e.changed_item_id)?d(e.selector,a):d('[data-sek-item-id="'+e.changed_item_id+'"] '+e.selector,a),0<a.length&&0<t.length?t.html(e.html):o.errare("reactToPanelMsg => sek-update-html-in-selector => missing level or target dom element",e)}};l.each(e,function(e,i){r.preview.bind(i,function(a){a=l.extend({location_skope_id:"",apiParams:{},uiParams:{}},a||{});d("body").addClass(i);try{d.when(l.isFunction(e)?e(a):o[e].call(o,a)).done(function(e){var t;t=e,r.preview.send([i,"done"].join("_"),a),a.apiParams.is_multi_items&&"sek-refresh-level"===a.apiParams.action&&r.preview.send("multi-items-module-refreshed",a),l.isUndefined(t)||t.data&&t.data.setting_validities&&r.preview.send("selective-refresh-setting-validities",t.data.setting_validities)}).fail(function(){r.preview.send("sek-notify",{type:"error",duration:1e4,message:sekPreviewLocalized.i18n["Something went wrong, please refresh this page."]})}).always(function(e){d("body").removeClass(i)}).then(function(){r.preview.trigger("control-panel-requested-action-done",{action:i,args:a})})}catch(e){o.errare("reactToPanelMsg => Error when firing the callback of "+i,e),d("body").removeClass(i)}})})}})}(wp.customize,jQuery,_);SekPreviewPrototype=SekPreviewPrototype||{};!function(e,o,r){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||r.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+'"]'),!r.isEmpty(n.apiParams.before_section)&&0<$beforeCandidate.length?$beforeCandidate.before(a):!r.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)}).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,r,e){r.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=r('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(),r(".sektion-wrapper").find(".sek-placeholder").after(t),r(".sektion-wrapper").find(".sek-placeholder").remove(),o.preview.trigger("sek-refresh-stylesheet",n),r('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),r('[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)),r('[data-sek-id="'+a.apiParams.resized_column+'"]').css({width:"",height:""}),i.appendDynStyleSheet(a.location_skope_id,t),r('div[data-sek-id="'+a.apiParams.in_sektion+'"]').trigger("sek-columns-refreshed")}).fail(function(e){i.errare("ERROR reactToPanelMsg => sek-resize-columns => ",e),r('[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?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,r){o.extend(SekPreviewPrototype,{parseTemplate:r.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||r.template(o(t).html(),n)}catch(e){i.errare("preview => parseTemplate => problem when parsing tmpl =>"+t,e)}return a(e)}}),_prettyPrintLog:function(e){e=r.extend({bgCol:"#5ed1f5",textCol:"#000",consoleArguments:[]},e);var t,a=Array.from(e.consoleArguments);return a=r.isEmpty(r.filter(a,function(e){return!r.isString(e)}))?a.join(" "):JSON.stringify(a.join(" ")),["%c "+(t=a,r.isString(t)?300<t.length?t.substr(0,299)+"...":t:""),["background:"+e.bgCol,"color:"+e.textCol,"display: block;"].join(";")]},_wrapLogInsideTags:function(e,t,a){r.isUndefined(console)&&"function"!=typeof window.console.log||(sekPreviewLocalized.isDevMode?r.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||(r.isObject(e)?e:{})).ajaxUrl||sekPreviewLocalized.ajaxUrl,i=sekPreviewLocalized.frontNonce,n=o.Deferred(),s=r.extend({action:"",withNonce:!1},e);return"https:"==document.location.protocol&&(a=a.replace("http://","https://")),r.isEmpty(s.action)||!r.isString(s.action)?(t.errare("self.doAjax : unproper action provided"),n.resolve().promise()):(s[i.id]=i.handle,!r.isObject(i)||r.isUndefined(i.id)||r.isUndefined(i.handle)?(t.errare("self.doAjax : unproper nonce"),n.resolve().promise()):(s["preview-level-guid"]=sekPreviewLocalized.previewLevelGuid,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&&!r.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 r.isUndefined(e)&&a.errare("getLevelModel => a collection must be provided"),r.each(e,function(e){"no_match"==i&&(t===e.id?i=e:r.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/sek-base-rtl.css CHANGED
@@ -2415,11 +2415,15 @@ body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-mo
2415
  }
2416
 
2417
  #wpadminbar .sek-nimble-icon img {
 
 
 
2418
  -webkit-filter: grayscale(100%);
2419
  filter: grayscale(100%);
2420
  -webkit-filter: gray;
2421
  filter: gray;
2422
  transition: all 0.3s ease-in-out;
 
2423
  }
2424
 
2425
  #wpadminbar .sek-nimble-icon:hover img {
@@ -2429,12 +2433,6 @@ body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-mo
2429
  filter: none;
2430
  }
2431
 
2432
- #wpadminbar .sek-nimble-icon img {
2433
- width: 28px;
2434
- position: absolute;
2435
- top: 2px;
2436
- }
2437
-
2438
  #wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
2439
  padding-left: 30px;
2440
  }
2415
  }
2416
 
2417
  #wpadminbar .sek-nimble-icon img {
2418
+ width: 28px;
2419
+ position: absolute;
2420
+ top: 2px;
2421
  -webkit-filter: grayscale(100%);
2422
  filter: grayscale(100%);
2423
  -webkit-filter: gray;
2424
  filter: gray;
2425
  transition: all 0.3s ease-in-out;
2426
+ box-shadow: none;
2427
  }
2428
 
2429
  #wpadminbar .sek-nimble-icon:hover img {
2433
  filter: none;
2434
  }
2435
 
 
 
 
 
 
 
2436
  #wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
2437
  padding-left: 30px;
2438
  }
assets/front/css/sek-base-rtl.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../scss/_reboot.scss","../scss/_typography.scss","../scss/_variables.scss","../scss/_grid.scss","../scss/mixins/_grid.scss","../scss/mixins/_breakpoints.scss","sek-base-rtl.css","../scss/mixins/_grid-framework.scss","../scss/_transitions.scss","../scss/mixins/_transition.scss","../scss/mixins/_clearfix.scss","../scss/utilities/_screenreaders.scss","../scss/mixins/_screen-reader.scss","../scss/utilities/_embed.scss","../scss/_formatting.scss","../scss/_buttons.scss","../scss/mixins/_utilities.scss","../scss/modules/_heading.scss","../scss/modules/_menu.scss","../scss/modules/_featured_pages.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.scss","../scss/sek-base.scss"],"names":[],"mappings":"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","file":"sek-base-rtl.css","sourcesContent":[null,null,null,null,null,null,".sektion-wrapper *,\n.sektion-wrapper *::before,\n.sektion-wrapper *::after {\n box-sizing: border-box;\n}\n\n.sektion-wrapper img {\n max-width: 100%;\n vertical-align: middle;\n border-style: none;\n}\n\n.sektion-wrapper svg:not(:root) {\n overflow: hidden;\n}\n\n.sektion-wrapper figure {\n margin: 0;\n}\n\n.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {\n max-width: 100%;\n}\n\n.sek-service-font, .sek-module-inner .sek-btn {\n font-family: sans-serif;\n letter-spacing: 1px;\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-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: 0;\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 .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\n.sektion-wrapper button::-moz-focus-inner .sek-btn,\n.sektion-wrapper [type=\"button\"]::-moz-focus-inner .sek-btn,\n.sektion-wrapper [type=\"reset\"]::-moz-focus-inner .sek-btn,\n.sektion-wrapper [type=\"submit\"]::-moz-focus-inner .sek-btn {\n padding: 0.5em 1em;\n border-style: solid;\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.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: space-between;\n justify-content: center;\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 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: \"\\f107\";\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-family: 'Font Awesome 5 Free';\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: .8em;\n top: .1em;\n position: relative;\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(180deg) !important;\n -ms-transform: rotate(180deg) !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(90deg);\n -ms-transform: rotate(90deg);\n}\n\n.sek-dropdown-submenu > a[class*=-reverse]::after {\n transform: translateZ(0) rotate(270deg);\n -ms-transform: rotate(270deg);\n}\n\n.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-nav-toggler, .sek-nav-toggler:hover, .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}\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[class*=sek__r-w] {\n position: relative;\n display: block;\n padding: 0;\n overflow: hidden;\n backface-visibility: hidden;\n transform-style: preserve-3d;\n}\n\n[class*=sek__r-w]::before {\n display: block;\n content: \"\";\n}\n\n.sek__r-wFP::before {\n padding-top: 92.592593%;\n}\n\n.sek-fp-widget {\n text-align: center;\n margin: auto !important;\n}\n\n.sek-fp-widget .sek-fp-button-holder, .sek-fp-widget .sek-fp-title, .sek-fp-widget .sek-fp-text {\n width: 90%;\n margin-left: auto;\n margin-right: auto;\n}\n\n.sek-fp-widget .sek-fp-title {\n color: #5a5a5a;\n line-height: 1.25em;\n margin-top: .625em;\n margin-bottom: 1.25em;\n word-break: break-word;\n position: relative;\n font-weight: 500;\n font-size: 1.44em;\n}\n\n.sek-fp-widget .sek-fp-title::after {\n content: \"\";\n position: absolute;\n width: 1.25em;\n background: #5a5a5a;\n height: 2px;\n top: 100%;\n left: 0;\n right: 0;\n margin: .3125em auto 0;\n transition: all .6s ease;\n}\n\n.sek-link-mask-p:hover .sek-fp-title::after {\n width: 2.5em;\n}\n\n.sek-fp-widget .sek-fp-text {\n color: #777;\n line-height: 1.55em;\n margin: 1.5em auto;\n word-wrap: break-word;\n}\n\n.sek-fp-widget .sek-fp-text > a {\n padding: 0 !important;\n display: inline !important;\n line-height: 1em !important;\n}\n\n.sek-fp-widget .sek-fp-btn-link {\n text-transform: uppercase;\n margin-bottom: 1.25em;\n white-space: normal;\n word-break: break-word;\n outline: 0;\n background-color: #3b3b3b;\n color: #fff;\n border-color: #3b3b3b;\n font-size: .75em;\n line-height: 2.5em;\n padding: 0 2.5em;\n}\n\n.sek-fp-widget .sek-fp-btn-link:hover, .sek-fp-widget .sek-fp-btn-link:focus, .sek-fp-widget .sek-fp-btn-link:active {\n color: #3b3b3b;\n background: transparent;\n}\n\n.sek-fp-widget .sek-fp-thumb-wrapper {\n max-width: 270px;\n margin: 8px auto;\n}\n\n.sek-fp-widget img {\n transform: translate3d(0, 0, 0);\n -ms-transform: translate(0, 0);\n transform-style: preserve-3d;\n backface-visibility: hidden;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 0;\n}\n\n.js-center-images-disabled .sek-fp-widget img {\n transform: translate(-50%, -50%);\n transform: translate3d(-50%, -50%, 0);\n -ms-transform: translate(-50%, -50%);\n top: 50%;\n left: 50%;\n max-width: 100%;\n}\n\n.sek-fp-widget img.h-centered {\n width: auto !important;\n max-width: none !important;\n}\n\n.sek-fp-widget img.v-centered {\n height: auto !important;\n max-height: none !important;\n max-width: none !important;\n vertical-align: top;\n}\n\n.sek-link-mask {\n position: absolute;\n border-color: white;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n overflow: hidden;\n z-index: 1;\n}\n\n.sek-link-mask.no-effect {\n border: none;\n}\n\n.sek-link-mask::before {\n position: absolute;\n width: 63%;\n padding-bottom: 63%;\n content: '';\n z-index: 1;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n transform: translate3d(-50%, -50%, 0);\n /* end of centering */\n border: 150px solid;\n border-color: inherit;\n box-sizing: content-box;\n transition: all .3s ease;\n}\n\n.round .sek-link-mask::before {\n border-radius: 50%;\n}\n\n.sek-link-mask-p:hover .sek-link-mask::before {\n transform: translate(-50%, -50%) scale(1.4);\n /* fallback for those browsers w/o translate3d transform property*/\n transform: translate3d(-50%, -50%, 0) scale(1.4);\n -ms-transform: translate(-50%, -50%) scale(1.4);\n}\n\n.no-cssanimations .sek-link-mask {\n border: transparent;\n}\n\n.no-cssanimations .sek-fp-thumb-wrapper {\n opacity: .7;\n}\n\n.no-cssanimations .sek-fp-thumb-wrapper:hover {\n opacity: 1;\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.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-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 width: 63%;\n padding-bottom: 63%;\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-nimble-image-wrapper.expanded .sek-nimble-image-mask::before,\n.sek-nimble-image-wrapper.hover .sek-nimble-image-mask::before,\n.sek-nimble-image-wrapper:hover .sek-nimble-image-mask::before {\n transform: scale(1.4);\n}\n\n.sek-nimble-image-wrapper.round .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 z-index: 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-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-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}\n\n.sek-quote p {\n margin: 0 0 .5em;\n padding: 0;\n}\n\n.sek-quote .sek-cite {\n font-size: 13px;\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-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 + 1.3em);\n}\n\n.sek-quote.sek-quote-design .sek-quote-content {\n font-weight: 400;\n font-size: 16px;\n color: inherit;\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: 32px;\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: '\\f10d';\n color: #ccc;\n font-weight: 900;\n font-style: normal;\n text-align: center;\n font-family: 'Font Awesome 5 Free';\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n font-variant: normal;\n text-rendering: auto;\n display: flex;\n position: static;\n width: auto;\n margin: 0;\n right: 0;\n position: absolute;\n top: 0;\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.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.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.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-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-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 .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[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\"] .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 height: 100%;\n width: auto;\n max-width: none;\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 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 button 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 button 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 button 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 button {\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}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title button 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 button 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 button span:last-of-type {\n left: 25%;\n right: 25%;\n height: 10%;\n top: 45%;\n}\n\n[data-sek-expanded=\"true\"] button span:first-of-type, [data-sek-expanded=\"true\"] button 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\"] button 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 button span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title button 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 button 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.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\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/* 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@font-face {\n font-family: 'Material Icons';\n font-style: normal;\n font-weight: 400;\n src: url(\"../fonts/material-icons/MaterialIcons-Regular.eot\");\n /* For IE6-8 */\n 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\");\n}\n\n.material-icons {\n font-family: 'Material Icons';\n font-weight: normal;\n font-style: normal;\n font-size: 24px;\n /* Preferred icon size */\n display: inline-block;\n line-height: 1;\n text-transform: none;\n letter-spacing: normal;\n word-wrap: normal;\n white-space: nowrap;\n direction: ltr;\n /* Support for all WebKit browsers. */\n -webkit-font-smoothing: antialiased;\n /* Support for Safari and Chrome. */\n text-rendering: optimizeLegibility;\n /* Support for Firefox. */\n -moz-osx-font-smoothing: grayscale;\n /* Support for IE. */\n font-feature-settings: 'liga';\n}\n\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@media (min-width: 767px) {\n [data-sek-level=\"location\"] .sek-hidden-on-desktops {\n display: none;\n }\n}\n\n@media (min-width: 575px) and (max-width: 768px) {\n [data-sek-level=\"location\"] .sek-hidden-on-tablets {\n display: none;\n }\n}\n\n@media (max-width: 575px) {\n [data-sek-level=\"location\"] .sek-hidden-on-mobiles {\n display: none;\n }\n}\n\n/* NIMBLE TEMPLATE GENERAL STYLING */\n/* <inspired by Twenty Seventeed WP theme> */\n.sek-screen-reader-text {\n clip: rect(1px, 1px, 1px, 1px);\n height: 1px;\n overflow: hidden;\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 -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}\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 img {\n width: 28px;\n position: absolute;\n top: 2px;\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@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/*# 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]}
1
+ {"version":3,"sources":["../scss/_reboot.scss","../scss/_typography.scss","../scss/_variables.scss","../scss/_grid.scss","../scss/mixins/_grid.scss","../scss/mixins/_breakpoints.scss","sek-base-rtl.css","../scss/mixins/_grid-framework.scss","../scss/_transitions.scss","../scss/mixins/_transition.scss","../scss/mixins/_clearfix.scss","../scss/utilities/_screenreaders.scss","../scss/mixins/_screen-reader.scss","../scss/utilities/_embed.scss","../scss/_formatting.scss","../scss/_buttons.scss","../scss/mixins/_utilities.scss","../scss/modules/_heading.scss","../scss/modules/_menu.scss","../scss/modules/_featured_pages.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.scss","../scss/sek-base.scss"],"names":[],"mappings":"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","file":"sek-base-rtl.css","sourcesContent":[null,null,null,null,null,null,".sektion-wrapper *,\n.sektion-wrapper *::before,\n.sektion-wrapper *::after {\n box-sizing: border-box;\n}\n\n.sektion-wrapper img {\n max-width: 100%;\n vertical-align: middle;\n border-style: none;\n}\n\n.sektion-wrapper svg:not(:root) {\n overflow: hidden;\n}\n\n.sektion-wrapper figure {\n margin: 0;\n}\n\n.sektion-wrapper embed, .sektion-wrapper iframe, .sektion-wrapper object {\n max-width: 100%;\n}\n\n.sek-service-font, .sek-module-inner .sek-btn {\n font-family: sans-serif;\n letter-spacing: 1px;\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-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: 0;\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 .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\n.sektion-wrapper button::-moz-focus-inner .sek-btn,\n.sektion-wrapper [type=\"button\"]::-moz-focus-inner .sek-btn,\n.sektion-wrapper [type=\"reset\"]::-moz-focus-inner .sek-btn,\n.sektion-wrapper [type=\"submit\"]::-moz-focus-inner .sek-btn {\n padding: 0.5em 1em;\n border-style: solid;\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.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: space-between;\n justify-content: center;\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 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: \"\\f107\";\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-family: 'Font Awesome 5 Free';\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: .8em;\n top: .1em;\n position: relative;\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(180deg) !important;\n -ms-transform: rotate(180deg) !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(90deg);\n -ms-transform: rotate(90deg);\n}\n\n.sek-dropdown-submenu > a[class*=-reverse]::after {\n transform: translateZ(0) rotate(270deg);\n -ms-transform: rotate(270deg);\n}\n\n.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-nav-toggler, .sek-nav-toggler:hover, .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}\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[class*=sek__r-w] {\n position: relative;\n display: block;\n padding: 0;\n overflow: hidden;\n backface-visibility: hidden;\n transform-style: preserve-3d;\n}\n\n[class*=sek__r-w]::before {\n display: block;\n content: \"\";\n}\n\n.sek__r-wFP::before {\n padding-top: 92.592593%;\n}\n\n.sek-fp-widget {\n text-align: center;\n margin: auto !important;\n}\n\n.sek-fp-widget .sek-fp-button-holder, .sek-fp-widget .sek-fp-title, .sek-fp-widget .sek-fp-text {\n width: 90%;\n margin-left: auto;\n margin-right: auto;\n}\n\n.sek-fp-widget .sek-fp-title {\n color: #5a5a5a;\n line-height: 1.25em;\n margin-top: .625em;\n margin-bottom: 1.25em;\n word-break: break-word;\n position: relative;\n font-weight: 500;\n font-size: 1.44em;\n}\n\n.sek-fp-widget .sek-fp-title::after {\n content: \"\";\n position: absolute;\n width: 1.25em;\n background: #5a5a5a;\n height: 2px;\n top: 100%;\n left: 0;\n right: 0;\n margin: .3125em auto 0;\n transition: all .6s ease;\n}\n\n.sek-link-mask-p:hover .sek-fp-title::after {\n width: 2.5em;\n}\n\n.sek-fp-widget .sek-fp-text {\n color: #777;\n line-height: 1.55em;\n margin: 1.5em auto;\n word-wrap: break-word;\n}\n\n.sek-fp-widget .sek-fp-text > a {\n padding: 0 !important;\n display: inline !important;\n line-height: 1em !important;\n}\n\n.sek-fp-widget .sek-fp-btn-link {\n text-transform: uppercase;\n margin-bottom: 1.25em;\n white-space: normal;\n word-break: break-word;\n outline: 0;\n background-color: #3b3b3b;\n color: #fff;\n border-color: #3b3b3b;\n font-size: .75em;\n line-height: 2.5em;\n padding: 0 2.5em;\n}\n\n.sek-fp-widget .sek-fp-btn-link:hover, .sek-fp-widget .sek-fp-btn-link:focus, .sek-fp-widget .sek-fp-btn-link:active {\n color: #3b3b3b;\n background: transparent;\n}\n\n.sek-fp-widget .sek-fp-thumb-wrapper {\n max-width: 270px;\n margin: 8px auto;\n}\n\n.sek-fp-widget img {\n transform: translate3d(0, 0, 0);\n -ms-transform: translate(0, 0);\n transform-style: preserve-3d;\n backface-visibility: hidden;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 0;\n}\n\n.js-center-images-disabled .sek-fp-widget img {\n transform: translate(-50%, -50%);\n transform: translate3d(-50%, -50%, 0);\n -ms-transform: translate(-50%, -50%);\n top: 50%;\n left: 50%;\n max-width: 100%;\n}\n\n.sek-fp-widget img.h-centered {\n width: auto !important;\n max-width: none !important;\n}\n\n.sek-fp-widget img.v-centered {\n height: auto !important;\n max-height: none !important;\n max-width: none !important;\n vertical-align: top;\n}\n\n.sek-link-mask {\n position: absolute;\n border-color: white;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n overflow: hidden;\n z-index: 1;\n}\n\n.sek-link-mask.no-effect {\n border: none;\n}\n\n.sek-link-mask::before {\n position: absolute;\n width: 63%;\n padding-bottom: 63%;\n content: '';\n z-index: 1;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n transform: translate3d(-50%, -50%, 0);\n /* end of centering */\n border: 150px solid;\n border-color: inherit;\n box-sizing: content-box;\n transition: all .3s ease;\n}\n\n.round .sek-link-mask::before {\n border-radius: 50%;\n}\n\n.sek-link-mask-p:hover .sek-link-mask::before {\n transform: translate(-50%, -50%) scale(1.4);\n /* fallback for those browsers w/o translate3d transform property*/\n transform: translate3d(-50%, -50%, 0) scale(1.4);\n -ms-transform: translate(-50%, -50%) scale(1.4);\n}\n\n.no-cssanimations .sek-link-mask {\n border: transparent;\n}\n\n.no-cssanimations .sek-fp-thumb-wrapper {\n opacity: .7;\n}\n\n.no-cssanimations .sek-fp-thumb-wrapper:hover {\n opacity: 1;\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.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-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 width: 63%;\n padding-bottom: 63%;\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-nimble-image-wrapper.expanded .sek-nimble-image-mask::before,\n.sek-nimble-image-wrapper.hover .sek-nimble-image-mask::before,\n.sek-nimble-image-wrapper:hover .sek-nimble-image-mask::before {\n transform: scale(1.4);\n}\n\n.sek-nimble-image-wrapper.round .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 z-index: 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-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-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}\n\n.sek-quote p {\n margin: 0 0 .5em;\n padding: 0;\n}\n\n.sek-quote .sek-cite {\n font-size: 13px;\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-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 + 1.3em);\n}\n\n.sek-quote.sek-quote-design .sek-quote-content {\n font-weight: 400;\n font-size: 16px;\n color: inherit;\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: 32px;\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: '\\f10d';\n color: #ccc;\n font-weight: 900;\n font-style: normal;\n text-align: center;\n font-family: 'Font Awesome 5 Free';\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n font-variant: normal;\n text-rendering: auto;\n display: flex;\n position: static;\n width: auto;\n margin: 0;\n right: 0;\n position: absolute;\n top: 0;\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.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.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.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-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-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 .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[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\"] .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 height: 100%;\n width: auto;\n max-width: none;\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 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 button 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 button 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 button 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 button {\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}\n\n.sek-accord-wrapper .sek-accord-item .sek-accord-title button 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 button 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 button span:last-of-type {\n left: 25%;\n right: 25%;\n height: 10%;\n top: 45%;\n}\n\n[data-sek-expanded=\"true\"] button span:first-of-type, [data-sek-expanded=\"true\"] button 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\"] button 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 button span:first-of-type, .sek-accord-wrapper .sek-accord-item[data-sek-expanded=\"true\"] .sek-accord-title button 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 button 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.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\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/* 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@font-face {\n font-family: 'Material Icons';\n font-style: normal;\n font-weight: 400;\n src: url(\"../fonts/material-icons/MaterialIcons-Regular.eot\");\n /* For IE6-8 */\n 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\");\n}\n\n.material-icons {\n font-family: 'Material Icons';\n font-weight: normal;\n font-style: normal;\n font-size: 24px;\n /* Preferred icon size */\n display: inline-block;\n line-height: 1;\n text-transform: none;\n letter-spacing: normal;\n word-wrap: normal;\n white-space: nowrap;\n direction: ltr;\n /* Support for all WebKit browsers. */\n -webkit-font-smoothing: antialiased;\n /* Support for Safari and Chrome. */\n text-rendering: optimizeLegibility;\n /* Support for Firefox. */\n -moz-osx-font-smoothing: grayscale;\n /* Support for IE. */\n font-feature-settings: 'liga';\n}\n\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@media (min-width: 767px) {\n [data-sek-level=\"location\"] .sek-hidden-on-desktops {\n display: none;\n }\n}\n\n@media (min-width: 575px) and (max-width: 768px) {\n [data-sek-level=\"location\"] .sek-hidden-on-tablets {\n display: none;\n }\n}\n\n@media (max-width: 575px) {\n [data-sek-level=\"location\"] .sek-hidden-on-mobiles {\n display: none;\n }\n}\n\n/* NIMBLE TEMPLATE GENERAL STYLING */\n/* <inspired by Twenty Seventeed WP theme> */\n.sek-screen-reader-text {\n clip: rect(1px, 1px, 1px, 1px);\n height: 1px;\n overflow: hidden;\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@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/*# 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]}
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 img{max-width:100%;vertical-align:middle;border-style:none}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper figure{margin:0}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif;letter-spacing:1px}.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-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:0}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.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}.sektion-wrapper [type=button]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=reset]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=submit]::-moz-focus-inner .sek-btn,.sektion-wrapper button::-moz-focus-inner .sek-btn{padding:.5em 1em;border-style:solid}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}.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:justify;justify-content:space-between;-ms-flex-pack:center;justify-content:center;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{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:"\f107";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-family:'Font Awesome 5 Free';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:.8em;top:.1em;position:relative}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(180deg)!important;transform:translateZ(0) rotate(180deg)!important;-ms-transform:rotate(180deg)!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(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-dropdown-submenu>a[class*=-reverse]::after{-webkit-transform:translateZ(0) rotate(270deg);transform:translateZ(0) rotate(270deg);-ms-transform:rotate(270deg)}.sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.sek-nav-toggler,.sek-nav-toggler:focus,.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}.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)}}[class*=sek__r-w]{position:relative;display:block;padding:0;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}[class*=sek__r-w]::before{display:block;content:""}.sek__r-wFP::before{padding-top:92.592593%}.sek-fp-widget{text-align:center;margin:auto!important}.sek-fp-widget .sek-fp-button-holder,.sek-fp-widget .sek-fp-text,.sek-fp-widget .sek-fp-title{width:90%;margin-left:auto;margin-right:auto}.sek-fp-widget .sek-fp-title{color:#5a5a5a;line-height:1.25em;margin-top:.625em;margin-bottom:1.25em;word-break:break-word;position:relative;font-weight:500;font-size:1.44em}.sek-fp-widget .sek-fp-title::after{content:"";position:absolute;width:1.25em;background:#5a5a5a;height:2px;top:100%;left:0;right:0;margin:.3125em auto 0;transition:all .6s ease}.sek-link-mask-p:hover .sek-fp-title::after{width:2.5em}.sek-fp-widget .sek-fp-text{color:#777;line-height:1.55em;margin:1.5em auto;word-wrap:break-word}.sek-fp-widget .sek-fp-text>a{padding:0!important;display:inline!important;line-height:1em!important}.sek-fp-widget .sek-fp-btn-link{text-transform:uppercase;margin-bottom:1.25em;white-space:normal;word-break:break-word;outline:0;background-color:#3b3b3b;color:#fff;border-color:#3b3b3b;font-size:.75em;line-height:2.5em;padding:0 2.5em}.sek-fp-widget .sek-fp-btn-link:active,.sek-fp-widget .sek-fp-btn-link:focus,.sek-fp-widget .sek-fp-btn-link:hover{color:#3b3b3b;background:0 0}.sek-fp-widget .sek-fp-thumb-wrapper{max-width:270px;margin:8px auto}.sek-fp-widget img{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-ms-transform:translate(0,0);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute;top:0;left:0;z-index:0}.js-center-images-disabled .sek-fp-widget img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-ms-transform:translate(-50%,-50%);top:50%;left:50%;max-width:100%}.sek-fp-widget img.h-centered{width:auto!important;max-width:none!important}.sek-fp-widget img.v-centered{height:auto!important;max-height:none!important;max-width:none!important;vertical-align:top}.sek-link-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1}.sek-link-mask.no-effect{border:none}.sek-link-mask::before{position:absolute;width:63%;padding-bottom:63%;content:'';z-index:1;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);border:150px solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease}.round .sek-link-mask::before{border-radius:50%}.sek-link-mask-p:hover .sek-link-mask::before{-webkit-transform:translate(-50%,-50%) scale(1.4);transform:translate(-50%,-50%) scale(1.4);-webkit-transform:translate3d(-50%,-50%,0) scale(1.4);transform:translate3d(-50%,-50%,0) scale(1.4);-ms-transform:translate(-50%,-50%) scale(1.4)}.no-cssanimations .sek-link-mask{border:transparent}.no-cssanimations .sek-fp-thumb-wrapper{opacity:.7}.no-cssanimations .sek-fp-thumb-wrapper:hover{opacity:1}[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}.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-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;width:63%;padding-bottom:63%;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-nimble-image-wrapper.expanded .sek-nimble-image-mask::before,.sek-nimble-image-wrapper.hover .sek-nimble-image-mask::before,.sek-nimble-image-wrapper:hover .sek-nimble-image-mask::before{-webkit-transform:scale(1.4);transform:scale(1.4)}.sek-nimble-image-wrapper.round .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;z-index: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-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.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{webkit-transition:all .15s ease-in-out;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}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:13px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.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 + 1.3em)}.sek-quote.sek-quote-design .sek-quote-content{font-weight:400;font-size:16px;color:inherit}.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:32px}.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:'\f10d';color:#ccc;font-weight:900;font-style:normal;text-align:center;font-family:'Font Awesome 5 Free';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;position:static;width:auto;margin:0;right:0;position:absolute;top:0}[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}.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)}.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}.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-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-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 .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}[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{height:100%;width:auto;max-width:none}[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;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 button span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title button 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 .sek-inner-accord-title,.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title button{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}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] button span:first-of-type,[data-sek-expanded=true] button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] button 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 button span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button 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}.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}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}[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}@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;-webkit-font-feature-settings:'liga';font-feature-settings:'liga'}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}@media (min-width:767px){[data-sek-level=location] .sek-hidden-on-desktops{display:none}}@media (min-width:575px) and (max-width:768px){[data-sek-level=location] .sek-hidden-on-tablets{display:none}}@media (max-width:575px){[data-sek-level=location] .sek-hidden-on-mobiles{display:none}}.sek-screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;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{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;transition:all .3s ease-in-out}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px}#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}@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}
1
+ .sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper figure{margin:0}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif;letter-spacing:1px}.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-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:0}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.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}.sektion-wrapper [type=button]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=reset]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=submit]::-moz-focus-inner .sek-btn,.sektion-wrapper button::-moz-focus-inner .sek-btn{padding:.5em 1em;border-style:solid}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}.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:justify;justify-content:space-between;-ms-flex-pack:center;justify-content:center;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{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:"\f107";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-family:'Font Awesome 5 Free';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:.8em;top:.1em;position:relative}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(180deg)!important;transform:translateZ(0) rotate(180deg)!important;-ms-transform:rotate(180deg)!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(90deg);transform:translateZ(0) rotate(90deg);-ms-transform:rotate(90deg)}.sek-dropdown-submenu>a[class*=-reverse]::after{-webkit-transform:translateZ(0) rotate(270deg);transform:translateZ(0) rotate(270deg);-ms-transform:rotate(270deg)}.sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.sek-nav-toggler,.sek-nav-toggler:focus,.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}.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)}}[class*=sek__r-w]{position:relative;display:block;padding:0;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}[class*=sek__r-w]::before{display:block;content:""}.sek__r-wFP::before{padding-top:92.592593%}.sek-fp-widget{text-align:center;margin:auto!important}.sek-fp-widget .sek-fp-button-holder,.sek-fp-widget .sek-fp-text,.sek-fp-widget .sek-fp-title{width:90%;margin-left:auto;margin-right:auto}.sek-fp-widget .sek-fp-title{color:#5a5a5a;line-height:1.25em;margin-top:.625em;margin-bottom:1.25em;word-break:break-word;position:relative;font-weight:500;font-size:1.44em}.sek-fp-widget .sek-fp-title::after{content:"";position:absolute;width:1.25em;background:#5a5a5a;height:2px;top:100%;left:0;right:0;margin:.3125em auto 0;transition:all .6s ease}.sek-link-mask-p:hover .sek-fp-title::after{width:2.5em}.sek-fp-widget .sek-fp-text{color:#777;line-height:1.55em;margin:1.5em auto;word-wrap:break-word}.sek-fp-widget .sek-fp-text>a{padding:0!important;display:inline!important;line-height:1em!important}.sek-fp-widget .sek-fp-btn-link{text-transform:uppercase;margin-bottom:1.25em;white-space:normal;word-break:break-word;outline:0;background-color:#3b3b3b;color:#fff;border-color:#3b3b3b;font-size:.75em;line-height:2.5em;padding:0 2.5em}.sek-fp-widget .sek-fp-btn-link:active,.sek-fp-widget .sek-fp-btn-link:focus,.sek-fp-widget .sek-fp-btn-link:hover{color:#3b3b3b;background:0 0}.sek-fp-widget .sek-fp-thumb-wrapper{max-width:270px;margin:8px auto}.sek-fp-widget img{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-ms-transform:translate(0,0);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute;top:0;left:0;z-index:0}.js-center-images-disabled .sek-fp-widget img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-ms-transform:translate(-50%,-50%);top:50%;left:50%;max-width:100%}.sek-fp-widget img.h-centered{width:auto!important;max-width:none!important}.sek-fp-widget img.v-centered{height:auto!important;max-height:none!important;max-width:none!important;vertical-align:top}.sek-link-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1}.sek-link-mask.no-effect{border:none}.sek-link-mask::before{position:absolute;width:63%;padding-bottom:63%;content:'';z-index:1;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);border:150px solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease}.round .sek-link-mask::before{border-radius:50%}.sek-link-mask-p:hover .sek-link-mask::before{-webkit-transform:translate(-50%,-50%) scale(1.4);transform:translate(-50%,-50%) scale(1.4);-webkit-transform:translate3d(-50%,-50%,0) scale(1.4);transform:translate3d(-50%,-50%,0) scale(1.4);-ms-transform:translate(-50%,-50%) scale(1.4)}.no-cssanimations .sek-link-mask{border:transparent}.no-cssanimations .sek-fp-thumb-wrapper{opacity:.7}.no-cssanimations .sek-fp-thumb-wrapper:hover{opacity:1}[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}.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-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;width:63%;padding-bottom:63%;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-nimble-image-wrapper.expanded .sek-nimble-image-mask::before,.sek-nimble-image-wrapper.hover .sek-nimble-image-mask::before,.sek-nimble-image-wrapper:hover .sek-nimble-image-mask::before{-webkit-transform:scale(1.4);transform:scale(1.4)}.sek-nimble-image-wrapper.round .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;z-index: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-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.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{webkit-transition:all .15s ease-in-out;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}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:13px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.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 + 1.3em)}.sek-quote.sek-quote-design .sek-quote-content{font-weight:400;font-size:16px;color:inherit}.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:32px}.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:'\f10d';color:#ccc;font-weight:900;font-style:normal;text-align:center;font-family:'Font Awesome 5 Free';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;position:static;width:auto;margin:0;right:0;position:absolute;top:0}[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}.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)}.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}.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-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-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 .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}[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{height:100%;width:auto;max-width:none}[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;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 button span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title button 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 .sek-inner-accord-title,.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title button{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}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] button span:first-of-type,[data-sek-expanded=true] button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] button 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 button span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button 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}.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}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}[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}@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;-webkit-font-feature-settings:'liga';font-feature-settings:'liga'}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}@media (min-width:767px){[data-sek-level=location] .sek-hidden-on-desktops{display:none}}@media (min-width:575px) and (max-width:768px){[data-sek-level=location] .sek-hidden-on-tablets{display:none}}@media (max-width:575px){[data-sek-level=location] .sek-hidden-on-mobiles{display:none}}.sek-screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;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}@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}
assets/front/css/sek-base.css CHANGED
@@ -2414,11 +2414,15 @@ body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-mo
2414
  }
2415
 
2416
  #wpadminbar .sek-nimble-icon img {
 
 
 
2417
  -webkit-filter: grayscale(100%);
2418
  filter: grayscale(100%);
2419
  -webkit-filter: gray;
2420
  filter: gray;
2421
  transition: all 0.3s ease-in-out;
 
2422
  }
2423
 
2424
  #wpadminbar .sek-nimble-icon:hover img {
@@ -2428,12 +2432,6 @@ body .sek-module-inner h1:before, body .sek-module-inner h2:before, body .sek-mo
2428
  filter: none;
2429
  }
2430
 
2431
- #wpadminbar .sek-nimble-icon img {
2432
- width: 28px;
2433
- position: absolute;
2434
- top: 2px;
2435
- }
2436
-
2437
  #wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
2438
  padding-left: 30px;
2439
  }
2414
  }
2415
 
2416
  #wpadminbar .sek-nimble-icon img {
2417
+ width: 28px;
2418
+ position: absolute;
2419
+ top: 2px;
2420
  -webkit-filter: grayscale(100%);
2421
  filter: grayscale(100%);
2422
  -webkit-filter: gray;
2423
  filter: gray;
2424
  transition: all 0.3s ease-in-out;
2425
+ box-shadow: none;
2426
  }
2427
 
2428
  #wpadminbar .sek-nimble-icon:hover img {
2432
  filter: none;
2433
  }
2434
 
 
 
 
 
 
 
2435
  #wpadminbar .sek-nimble-icon .sek-nimble-admin-bar-title {
2436
  padding-left: 30px;
2437
  }
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 img{max-width:100%;vertical-align:middle;border-style:none}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper figure{margin:0}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif;letter-spacing:1px}.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-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:0}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.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}.sektion-wrapper [type=button]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=reset]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=submit]::-moz-focus-inner .sek-btn,.sektion-wrapper button::-moz-focus-inner .sek-btn{padding:.5em 1em;border-style:solid}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}.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:justify;justify-content:space-between;-ms-flex-pack:center;justify-content:center;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{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:"\f107";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-family:'Font Awesome 5 Free';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:.8em;top:.1em;position:relative}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(-180deg)!important;transform:translateZ(0) rotate(-180deg)!important;-ms-transform:rotate(-180deg)!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(-90deg);transform:translateZ(0) rotate(-90deg);-ms-transform:rotate(-90deg)}.sek-dropdown-submenu>a[class*=-reverse]::after{-webkit-transform:translateZ(0) rotate(-270deg);transform:translateZ(0) rotate(-270deg)}.sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.sek-nav-toggler,.sek-nav-toggler:focus,.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}.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)}}[class*=sek__r-w]{position:relative;display:block;padding:0;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}[class*=sek__r-w]::before{display:block;content:""}.sek__r-wFP::before{padding-top:92.592593%}.sek-fp-widget{text-align:center;margin:auto!important}.sek-fp-widget .sek-fp-button-holder,.sek-fp-widget .sek-fp-text,.sek-fp-widget .sek-fp-title{width:90%;margin-left:auto;margin-right:auto}.sek-fp-widget .sek-fp-title{color:#5a5a5a;line-height:1.25em;margin-top:.625em;margin-bottom:1.25em;word-break:break-word;position:relative;font-weight:500;font-size:1.44em}.sek-fp-widget .sek-fp-title::after{content:"";position:absolute;width:1.25em;background:#5a5a5a;height:2px;top:100%;left:0;right:0;margin:.3125em auto 0;transition:all .6s ease}.sek-link-mask-p:hover .sek-fp-title::after{width:2.5em}.sek-fp-widget .sek-fp-text{color:#777;line-height:1.55em;margin:1.5em auto;word-wrap:break-word}.sek-fp-widget .sek-fp-text>a{padding:0!important;display:inline!important;line-height:1em!important}.sek-fp-widget .sek-fp-btn-link{text-transform:uppercase;margin-bottom:1.25em;white-space:normal;word-break:break-word;outline:0;background-color:#3b3b3b;color:#fff;border-color:#3b3b3b;font-size:.75em;line-height:2.5em;padding:0 2.5em}.sek-fp-widget .sek-fp-btn-link:active,.sek-fp-widget .sek-fp-btn-link:focus,.sek-fp-widget .sek-fp-btn-link:hover{color:#3b3b3b;background:0 0}.sek-fp-widget .sek-fp-thumb-wrapper{max-width:270px;margin:8px auto}.sek-fp-widget img{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-ms-transform:translate(0,0);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute;top:0;left:0;z-index:0}.js-center-images-disabled .sek-fp-widget img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-ms-transform:translate(-50%,-50%);top:50%;left:50%;max-width:100%}.sek-fp-widget img.h-centered{width:auto!important;max-width:none!important}.sek-fp-widget img.v-centered{height:auto!important;max-height:none!important;max-width:none!important;vertical-align:top}.sek-link-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1}.sek-link-mask.no-effect{border:none}.sek-link-mask::before{position:absolute;width:63%;padding-bottom:63%;content:'';z-index:1;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);border:150px solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease}.round .sek-link-mask::before{border-radius:50%}.sek-link-mask-p:hover .sek-link-mask::before{-webkit-transform:translate(-50%,-50%) scale(1.4);transform:translate(-50%,-50%) scale(1.4);-webkit-transform:translate3d(-50%,-50%,0) scale(1.4);transform:translate3d(-50%,-50%,0) scale(1.4);-ms-transform:translate(-50%,-50%) scale(1.4)}.no-cssanimations .sek-link-mask{border:transparent}.no-cssanimations .sek-fp-thumb-wrapper{opacity:.7}.no-cssanimations .sek-fp-thumb-wrapper:hover{opacity:1}[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}.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-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;width:63%;padding-bottom:63%;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-nimble-image-wrapper.expanded .sek-nimble-image-mask::before,.sek-nimble-image-wrapper.hover .sek-nimble-image-mask::before,.sek-nimble-image-wrapper:hover .sek-nimble-image-mask::before{-webkit-transform:scale(1.4);transform:scale(1.4)}.sek-nimble-image-wrapper.round .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;z-index: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-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.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{webkit-transition:all .15s ease-in-out;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}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:13px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.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 + 1.3em)}.sek-quote.sek-quote-design .sek-quote-content{font-weight:400;font-size:16px;color:inherit}.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:32px}.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:'\f10d';color:#ccc;font-weight:900;font-style:normal;text-align:center;font-family:'Font Awesome 5 Free';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;position:static;width:auto;margin:0;left:0;position:absolute;top:0}[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}.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)}.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}.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-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-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 .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}[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{height:100%;width:auto;max-width:none}[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;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 button span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title button 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 .sek-inner-accord-title,.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title button{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}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] button span:first-of-type,[data-sek-expanded=true] button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] button 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 button span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button 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}.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}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}[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}@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;-webkit-font-feature-settings:'liga';font-feature-settings:'liga'}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}@media (min-width:767px){[data-sek-level=location] .sek-hidden-on-desktops{display:none}}@media (min-width:575px) and (max-width:768px){[data-sek-level=location] .sek-hidden-on-tablets{display:none}}@media (max-width:575px){[data-sek-level=location] .sek-hidden-on-mobiles{display:none}}.sek-screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;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{-webkit-filter:grayscale(100%);filter:grayscale(100%);-webkit-filter:gray;filter:gray;transition:all .3s ease-in-out}#wpadminbar .sek-nimble-icon:hover img{-webkit-filter:none;filter:none;-webkit-filter:none;filter:none}#wpadminbar .sek-nimble-icon img{width:28px;position:absolute;top:2px}#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}@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}
1
+ .sektion-wrapper *,.sektion-wrapper ::after,.sektion-wrapper ::before{box-sizing:border-box}.sektion-wrapper img{max-width:100%;vertical-align:middle;border-style:none}.sektion-wrapper svg:not(:root){overflow:hidden}.sektion-wrapper figure{margin:0}.sektion-wrapper embed,.sektion-wrapper iframe,.sektion-wrapper object{max-width:100%}.sek-module-inner .sek-btn,.sek-service-font{font-family:sans-serif;letter-spacing:1px}.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-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:0}.sek-module .sek-module-inner li>ol,.sek-module .sek-module-inner li>ul{margin-bottom:0}.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}.sektion-wrapper [type=button]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=reset]::-moz-focus-inner .sek-btn,.sektion-wrapper [type=submit]::-moz-focus-inner .sek-btn,.sektion-wrapper button::-moz-focus-inner .sek-btn{padding:.5em 1em;border-style:solid}[type=button].sek-btn,[type=reset].sek-btn,[type=submit].sek-btn,button.sek-btn{-wekbit-appearance:none!important;background:0 0}.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:justify;justify-content:space-between;-ms-flex-pack:center;justify-content:center;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{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:"\f107";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;font-style:normal;font-variant:normal;text-rendering:auto;font-family:'Font Awesome 5 Free';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:.8em;top:.1em;position:relative}.sek-nav .menu-item-has-children.show>a::after,.sek-nav .page_item_has_children.show>a::after{-webkit-transform:translateZ(0) rotate(-180deg)!important;transform:translateZ(0) rotate(-180deg)!important;-ms-transform:rotate(-180deg)!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(-90deg);transform:translateZ(0) rotate(-90deg);-ms-transform:rotate(-90deg)}.sek-dropdown-submenu>a[class*=-reverse]::after{-webkit-transform:translateZ(0) rotate(-270deg);transform:translateZ(0) rotate(-270deg)}.sek-nav-toggler{-webkit-appearance:none!important;cursor:pointer;height:40px;width:40px;padding:0;vertical-align:middle}.sek-nav-toggler,.sek-nav-toggler:focus,.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}.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)}}[class*=sek__r-w]{position:relative;display:block;padding:0;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}[class*=sek__r-w]::before{display:block;content:""}.sek__r-wFP::before{padding-top:92.592593%}.sek-fp-widget{text-align:center;margin:auto!important}.sek-fp-widget .sek-fp-button-holder,.sek-fp-widget .sek-fp-text,.sek-fp-widget .sek-fp-title{width:90%;margin-left:auto;margin-right:auto}.sek-fp-widget .sek-fp-title{color:#5a5a5a;line-height:1.25em;margin-top:.625em;margin-bottom:1.25em;word-break:break-word;position:relative;font-weight:500;font-size:1.44em}.sek-fp-widget .sek-fp-title::after{content:"";position:absolute;width:1.25em;background:#5a5a5a;height:2px;top:100%;left:0;right:0;margin:.3125em auto 0;transition:all .6s ease}.sek-link-mask-p:hover .sek-fp-title::after{width:2.5em}.sek-fp-widget .sek-fp-text{color:#777;line-height:1.55em;margin:1.5em auto;word-wrap:break-word}.sek-fp-widget .sek-fp-text>a{padding:0!important;display:inline!important;line-height:1em!important}.sek-fp-widget .sek-fp-btn-link{text-transform:uppercase;margin-bottom:1.25em;white-space:normal;word-break:break-word;outline:0;background-color:#3b3b3b;color:#fff;border-color:#3b3b3b;font-size:.75em;line-height:2.5em;padding:0 2.5em}.sek-fp-widget .sek-fp-btn-link:active,.sek-fp-widget .sek-fp-btn-link:focus,.sek-fp-widget .sek-fp-btn-link:hover{color:#3b3b3b;background:0 0}.sek-fp-widget .sek-fp-thumb-wrapper{max-width:270px;margin:8px auto}.sek-fp-widget img{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-ms-transform:translate(0,0);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute;top:0;left:0;z-index:0}.js-center-images-disabled .sek-fp-widget img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-ms-transform:translate(-50%,-50%);top:50%;left:50%;max-width:100%}.sek-fp-widget img.h-centered{width:auto!important;max-width:none!important}.sek-fp-widget img.v-centered{height:auto!important;max-height:none!important;max-width:none!important;vertical-align:top}.sek-link-mask{position:absolute;border-color:#fff;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:1}.sek-link-mask.no-effect{border:none}.sek-link-mask::before{position:absolute;width:63%;padding-bottom:63%;content:'';z-index:1;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);border:150px solid;border-color:inherit;box-sizing:content-box;transition:all .3s ease}.round .sek-link-mask::before{border-radius:50%}.sek-link-mask-p:hover .sek-link-mask::before{-webkit-transform:translate(-50%,-50%) scale(1.4);transform:translate(-50%,-50%) scale(1.4);-webkit-transform:translate3d(-50%,-50%,0) scale(1.4);transform:translate3d(-50%,-50%,0) scale(1.4);-ms-transform:translate(-50%,-50%) scale(1.4)}.no-cssanimations .sek-link-mask{border:transparent}.no-cssanimations .sek-fp-thumb-wrapper{opacity:.7}.no-cssanimations .sek-fp-thumb-wrapper:hover{opacity:1}[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}.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-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;width:63%;padding-bottom:63%;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-nimble-image-wrapper.expanded .sek-nimble-image-mask::before,.sek-nimble-image-wrapper.hover .sek-nimble-image-mask::before,.sek-nimble-image-wrapper:hover .sek-nimble-image-mask::before{-webkit-transform:scale(1.4);transform:scale(1.4)}.sek-nimble-image-wrapper.round .sek-nimble-image-mask::before{border-radius:50%}.sek-nimble-image{position:absolute;width:100%;height:100%;background-position:center center;background-size:cover;z-index: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-divider{border-top:1px solid #5a5a5a;display:inline-block;width:100%;margin-top:15px;margin-bottom:15px;font-size:1rem}.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{webkit-transition:all .15s ease-in-out;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}.sek-quote p{margin:0 0 .5em;padding:0}.sek-quote .sek-cite{font-size:13px;line-height:1.5em;font-style:inherit}.sek-quote[data-sek-quote-design=none]{border-left:none}.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 + 1.3em)}.sek-quote.sek-quote-design .sek-quote-content{font-weight:400;font-size:16px;color:inherit}.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:32px}.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:'\f10d';color:#ccc;font-weight:900;font-style:normal;text-align:center;font-family:'Font Awesome 5 Free';-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;text-rendering:auto;display:-ms-flexbox;display:flex;position:static;width:auto;margin:0;left:0;position:absolute;top:0}[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}.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)}.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}.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-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-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 .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}[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{height:100%;width:auto;max-width:none}[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;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 button span{background:#1e261f}[data-sek-expanded=true] .sek-accord-title *{color:#1e261f}[data-sek-expanded=true] .sek-accord-title button 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 .sek-inner-accord-title,.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{transition:all .15s ease-in-out}.sek-accord-wrapper .sek-accord-item .sek-accord-title button{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}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span{position:absolute;transition:.3s;background:#565656;border-radius:2px}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:first-of-type{top:25%;bottom:25%;width:10%;left:45%}.sek-accord-wrapper .sek-accord-item .sek-accord-title button span:last-of-type{left:25%;right:25%;height:10%;top:45%}[data-sek-expanded=true] button span:first-of-type,[data-sek-expanded=true] button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}[data-sek-expanded=true] button 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 button span:first-of-type,.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button span:last-of-type{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.sek-accord-wrapper .sek-accord-item[data-sek-expanded=true] .sek-accord-title button 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}.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}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}[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}@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;-webkit-font-feature-settings:'liga';font-feature-settings:'liga'}.sek-module-placeholder{text-align:center}.sek-module-placeholder .material-icons{font-size:inherit;color:#cfcfcf}@media (min-width:767px){[data-sek-level=location] .sek-hidden-on-desktops{display:none}}@media (min-width:575px) and (max-width:768px){[data-sek-level=location] .sek-hidden-on-tablets{display:none}}@media (max-width:575px){[data-sek-level=location] .sek-hidden-on-mobiles{display:none}}.sek-screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;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}@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}
inc/sektions/ccat-sektions.php CHANGED
@@ -1808,8 +1808,8 @@ function sek_get_parent_theme_slug() {
1808
 
1809
  //gets the theme name (or parent if child)
1810
  $theme_data = wp_get_theme( $theme_slug );
1811
- if ( $theme_data -> parent() ) {
1812
- $theme_slug = $theme_data -> parent() -> Name;
1813
  }
1814
 
1815
  return sanitize_file_name( strtolower( $theme_slug ) );
@@ -2021,7 +2021,7 @@ function sek_sideload_img_and_return_attachment_id( $img_url ) {
2021
  //error_log( print_r( $get_attachment->posts, true ) );
2022
  if ( is_array( $get_attachment->posts ) && array_key_exists(0, $get_attachment->posts) ) {
2023
  //wp_send_json_error( __CLASS__ . '::' . __CLASS__ . '::' . __FUNCTION__ . ' => file already uploaded : ' . $relative_path );
2024
- $img_id_already_uploaded = $get_attachment->posts[0] -> ID;
2025
  }
2026
  // stop now and return the id if the attachment was already uploaded
2027
  if ( isset($img_id_already_uploaded) ) {
@@ -3084,7 +3084,7 @@ function sek_get_saved_sektion_data( $saved_section_id ) {
3084
  $sek_post = sek_get_saved_seks_post( $saved_section_id );
3085
  $section_data = array();
3086
  if ( $sek_post ) {
3087
- $section_data_decoded = maybe_unserialize( $sek_post -> post_content );
3088
  // The section data are described as an array
3089
  // array(
3090
  // 'title' => '',
@@ -13075,7 +13075,7 @@ class Sek_Dyn_CSS_Builder {
13075
 
13076
  // The parent level is set when the function is invoked recursively, from a level where we actually have a 'level' property
13077
  if ( ! empty( $parent_level ) ) {
13078
- $this -> parent_level_model = $parent_level;
13079
  }
13080
 
13081
  foreach ( $level as $key => $entry ) {
@@ -13241,7 +13241,7 @@ class Sek_Dyn_CSS_Builder {
13241
 
13242
  // Reset the parent level model because it might have been modified after walking the sublevels
13243
  if ( ! empty( $parent_level ) ) {
13244
- $this -> parent_level_model = $parent_level;
13245
  }
13246
 
13247
  }//foreach
@@ -13835,7 +13835,7 @@ class Sek_Dyn_CSS_Handler {
13835
  }
13836
  }
13837
 
13838
- if ( empty( $this -> skope_id ) ) {
13839
  sek_error_log( __CLASS__ . '::' . __FUNCTION__ .' => __construct => skope_id not provided' );
13840
  return;
13841
  }
@@ -13855,7 +13855,7 @@ class Sek_Dyn_CSS_Handler {
13855
  // the normal behaviour is that the css file is enqueued.
13856
  // It should have been written when saving in the customizer. If no file available, we try to write it. If writing a css file is not possible, we fallback on inline printing.
13857
  if ( is_customize_preview() || ! $this->_sek_dyn_css_file_exists() || $this->force_rewrite || $this->customizer_save ) {
13858
- $this->sek_model = sek_get_skoped_seks( $this -> skope_id );
13859
 
13860
  // on front, when no stylesheet is available, the fallback hook must be set to wp_head, because the hook property might be empty
13861
  // fixes https://github.com/presscustomizr/nimble-builder/issues/328
@@ -14271,7 +14271,7 @@ class Sek_Dyn_CSS_Handler {
14271
 
14272
  ?><?php
14273
  // filter declared in Sek_Dyn_CSS_Builder::sek_css_rules_sniffer_walker()
14274
- // $rules = apply_filters( "sek_add_css_rules_for_input_id", $rules, $key, $entry, $this -> parent_level );
14275
  // the rules are filtered if ( false !== strpos( $input_id_candidate, '_css') )
14276
  // Example of input id candidate filtered : 'h_alignment_css'
14277
  // @see function sek_loop_on_input_candidates_and_maybe_generate_css_rules( $params ) {}
@@ -15083,6 +15083,14 @@ if ( ! class_exists( 'SEK_Front_Construct' ) ) :
15083
  // introduced for https://github.com/presscustomizr/nimble-builder/issues/456
15084
  public $global_sections_rendered = false;
15085
 
 
 
 
 
 
 
 
 
15086
  /////////////////////////////////////////////////////////////////
15087
  // <CONSTRUCTOR>
15088
  function __construct( $params = array() ) {
@@ -15090,19 +15098,19 @@ if ( ! class_exists( 'SEK_Front_Construct' ) ) :
15090
  $this->registered_locations = $this->default_locations;
15091
 
15092
  // AJAX
15093
- $this -> _schedule_front_ajax_actions();
15094
- $this -> _schedule_img_import_ajax_actions();
15095
  if ( defined( 'NIMBLE_SAVED_SECTIONS_ENABLED' ) && NIMBLE_SAVED_SECTIONS_ENABLED ) {
15096
- $this -> _schedule_section_saving_ajax_actions();
15097
  }
15098
  // ASSETS
15099
- $this -> _schedule_front_and_preview_assets_printing();
15100
  // RENDERING
15101
- $this -> _schedule_front_rendering();
15102
  // RENDERING
15103
- $this -> _setup_hook_for_front_css_printing_or_enqueuing();
15104
  // LOADS SIMPLE FORM
15105
- $this -> _setup_simple_forms();
15106
  // REGISTER NIMBLE WIDGET ZONES
15107
  add_action( 'widgets_init', array( $this, 'sek_nimble_widgets_init' ) );
15108
  }//__construct
@@ -15173,7 +15181,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15173
 
15174
 
15175
  // This is the list of accepted actions
15176
- $this -> ajax_action_map = array(
15177
  'sek-add-section',
15178
  'sek-remove-section',
15179
  'sek-duplicate-section',
@@ -15274,6 +15282,15 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15274
  wp_send_json_error( __CLASS__ . '::' . __FUNCTION__ . ' => missing skope_id' );
15275
  }
15276
 
 
 
 
 
 
 
 
 
 
15277
  if ( ! isset( $_POST['sek_action'] ) || empty( $_POST['sek_action'] ) ) {
15278
  wp_send_json_error( __CLASS__ . '::' . __FUNCTION__ . ' => missing sek_action' );
15279
  }
@@ -15302,7 +15319,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15302
 
15303
  $html = '';
15304
  // is this action possible ?
15305
- if ( in_array( $sek_action, $this -> ajax_action_map ) ) {
15306
  $content_type = null;
15307
  if ( array_key_exists( 'content_type', $_POST ) && is_string( $_POST['content_type'] ) ) {
15308
  $content_type = $_POST['content_type'];
@@ -15326,21 +15343,21 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15326
  break;
15327
  }
15328
  foreach ( $_POST['collection_of_preset_section_id'] as $preset_section_id ) {
15329
- $html .= $this -> sek_ajax_fetch_content( $sek_action, $preset_section_id );
15330
  }
15331
  // 'module' === $content_type
15332
  } else {
15333
- $html = $this -> sek_ajax_fetch_content( $sek_action );
15334
  }
15335
 
15336
  break;
15337
 
15338
  default :
15339
- $html = $this -> sek_ajax_fetch_content( $sek_action );
15340
  break;
15341
  }
15342
  } else {
15343
- $html = $this -> sek_ajax_fetch_content( $sek_action );
15344
  }
15345
 
15346
  //sek_error_log(__CLASS__ . '::' . __FUNCTION__ , $html );
@@ -15406,7 +15423,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15406
  case 'sek-duplicate-section' :
15407
  if ( array_key_exists( 'is_nested', $_POST ) && true === json_decode( $_POST['is_nested'] ) ) {
15408
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
15409
- $this -> parent_model = sek_get_level_model( $_POST[ 'in_sektion' ], $sektion_collection );
15410
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15411
  } else {
15412
  //$level_model = sek_get_level_model( $_POST[ 'id' ], $sektion_collection );
@@ -15441,7 +15458,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15441
 
15442
  if ( array_key_exists( 'is_nested', $_POST ) && true === json_decode( $_POST['is_nested'] ) ) {
15443
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
15444
- $this -> parent_model = sek_get_level_model( $_POST[ 'in_sektion' ], $sektion_collection );
15445
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15446
  } else {
15447
  //$level_model = sek_get_level_model( $_POST[ 'id' ], $sektion_collection );
@@ -15456,7 +15473,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15456
  break;
15457
  } else {
15458
  // we need to set the parent_model here to access it later in the ::render method to calculate the column width.
15459
- $this -> parent_model = sek_get_parent_level_model( $_POST[ 'in_column' ], $sektion_collection );
15460
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15461
  }
15462
  break;
@@ -15484,9 +15501,9 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15484
  break;
15485
  }
15486
  if ( ! array_key_exists( 'in_sektion', $_POST ) || empty( $_POST[ 'in_sektion' ] ) ) {
15487
- $this -> parent_model = sek_get_parent_level_model( $_POST[ 'in_column' ], $sektion_collection );
15488
  } else {
15489
- $this -> parent_model = sek_get_level_model( $_POST[ 'in_sektion' ], $sektion_collection );
15490
  }
15491
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15492
  break;
@@ -15510,7 +15527,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15510
  }
15511
  if ( !empty( $_POST['level'] ) && 'column' === $_POST['level'] ) {
15512
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
15513
- $this -> parent_model = sek_get_parent_level_model( $_POST['id'], $sektion_collection );
15514
  }
15515
  $level_model = sek_get_level_model( $_POST[ 'id' ], $sektion_collection );
15516
  break;
@@ -15521,7 +15538,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15521
  ob_start();
15522
 
15523
  if ( $is_stylesheet ) {
15524
- $r = $this -> print_or_enqueue_seks_style( $_POST['location_skope_id'] );
15525
  } else {
15526
  if ( 'no_match' == $level_model ) {
15527
  wp_send_json_error( __CLASS__ . '::' . __FUNCTION__ . ' ' . $sek_action . ' => missing level model' );
@@ -15534,7 +15551,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15534
  return;
15535
  }
15536
  // note that in the case of a sektion nested inside a column, the parent_model has been set in the switch{ case : ... } above ,so we can access it in the ::render method to calculate the column width.
15537
- $r = $this -> render( $level_model );
15538
  }
15539
  $html = ob_get_clean();
15540
  if ( is_wp_error( $r ) ) {
@@ -15630,7 +15647,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15630
  wp_send_json_error( __FUNCTION__ . ' => error when invoking sek_update_saved_seks_post()' );
15631
  } else {
15632
  // sek_error_log( 'ALORS CE POST?', $saved_section_post );
15633
- wp_send_json_success( [ 'section_post_id' => $saved_section_post -> ID ] );
15634
  }
15635
 
15636
  //sek_error_log( __FUNCTION__ . '$_POST' , $_POST);
@@ -15921,7 +15938,7 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
15921
 
15922
  // $subsets['all-subsets'] = sprintf( '%1$s ( %2$s %3$s )',
15923
  // __( 'All languages' , 'text_doma' ),
15924
- // count($gfonts_decoded['items']) + count( $this -> get_cfonts() ),
15925
  // __('fonts' , 'text_doma' )
15926
  // );
15927
 
@@ -16008,8 +16025,8 @@ if ( ! class_exists( 'SEK_Front_Ajax' ) ) :
16008
  return;
16009
  }
16010
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
16011
- $this -> parent_model = sek_get_parent_level_model( $_POST[ 'id' ], $sektionSettingValue['collection'] );
16012
- $this -> model = sek_get_level_model( $_POST[ 'id' ], $sektionSettingValue['collection'] );
16013
 
16014
  $level = $_POST['level'];
16015
 
@@ -16218,6 +16235,14 @@ if ( ! class_exists( 'SEK_Front_Assets' ) ) :
16218
  'frontNonce' => array( 'id' => 'SEKFrontNonce', 'handle' => wp_create_nonce( 'sek-front-nonce' ) ),
16219
 
16220
  'registeredModules' => CZR_Fmk_Base()->registered_modules,
 
 
 
 
 
 
 
 
16221
  )
16222
  );
16223
 
@@ -16416,7 +16441,7 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16416
  add_filter( 'nimble_parse_for_smart_load', array( $this, 'sek_maybe_process_img_for_js_smart_load') );
16417
 
16418
  // SETUP OUR the_content FILTER for the Tiny MCE module
16419
- $this -> sek_setup_tiny_mce_content_filters();
16420
 
16421
  // REGISTER HEADER AND FOOTER GLOBAL LOCATIONS
16422
  add_action( 'nimble_front_classes_ready', array( $this, 'sek_register_nimble_global_locations') );
@@ -16561,7 +16586,7 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16561
  // return $html;
16562
 
16563
  do_action( 'sek_before_location_before_content' );
16564
- return $this -> _filter_the_content( $html, 'before_content' );
16565
  }
16566
 
16567
  // hook : 'the_content'::9999
@@ -16573,7 +16598,7 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16573
  // return $html;
16574
 
16575
  do_action( 'sek_before_location_after_content' );
16576
- return $this -> _filter_the_content( $html, 'after_content' );
16577
  }
16578
 
16579
  private function _filter_the_content( $html, $where ) {
@@ -16758,8 +16783,8 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16758
 
16759
  // Cache the parent model
16760
  // => used when calculating the width of the column to be added
16761
- $parent_model = $this -> parent_model;
16762
- $this -> model = $model;
16763
 
16764
  $collection = array_key_exists( 'collection', $model ) ? $model['collection'] : array();
16765
 
@@ -16787,16 +16812,17 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16787
  <?php
16788
  $is_header_location = true === sek_get_registered_location_property( $id, 'is_header_location' );
16789
  $is_footer_location = true === sek_get_registered_location_property( $id, 'is_footer_location' );
16790
- printf( '<div class="sektion-wrapper" data-sek-level="location" data-sek-id="%1$s" %2$s %3$s %4$s>',
16791
  $id,
16792
  sprintf('data-sek-is-global-location="%1$s"', sek_is_global_location( $id ) ? 'true' : 'false'),
16793
  $is_header_location ? 'data-sek-is-header-location="true"' : '',
16794
- $is_footer_location ? 'data-sek-is-footer-location="true"' : ''
 
16795
  );
16796
  ?>
16797
  <?php
16798
- $this -> parent_model = $model;
16799
- foreach ( $collection as $_key => $sec_model ) { $this -> render( $sec_model ); }
16800
  ?>
16801
  <?php
16802
  // empty global locations placeholders are only printed when customizing But not previewing a changeset post
@@ -16831,22 +16857,25 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16831
  }
16832
 
16833
  ?>
16834
- <?php printf('<div data-sek-level="section" data-sek-id="%1$s" %2$s class="sek-section %3$s %4$s %7$s" %5$s %6$s>',
16835
  $id,
16836
  $is_nested ? 'data-sek-is-nested="true"' : '',
16837
  $has_at_least_one_module ? 'sek-has-modules' : '',
16838
  $this->get_level_visibility_css_class( $model ),
 
 
16839
  is_null( $custom_anchor ) ? '' : 'id="' . $custom_anchor . '"',
16840
  // add smartload + parallax attributes
16841
- $this -> sek_maybe_add_bg_attributes( $model ),
16842
- is_null( $custom_css_classes ) ? '' : $custom_css_classes
 
16843
  ); ?>
16844
  <div class="<?php echo $column_container_class; ?>">
16845
  <div class="sek-row sek-sektion-inner">
16846
  <?php
16847
  // Set the parent model now
16848
- $this -> parent_model = $model;
16849
- foreach ( $collection as $col_model ) {$this -> render( $col_model ); }
16850
  ?>
16851
  </div>
16852
  </div>
@@ -16887,15 +16916,18 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16887
  }
16888
  ?>
16889
  <?php
16890
- printf('<div data-sek-level="column" data-sek-id="%1$s" class="sek-column sek-col-base %2$s %3$s %7$s" %4$s %5$s %6$s>',
16891
  $id,
16892
  $grid_column_class,
16893
  $this->get_level_visibility_css_class( $model ),
 
 
16894
  empty( $collection ) ? 'data-sek-no-modules="true"' : '',
16895
  // add smartload + parallax attributes
16896
- $this -> sek_maybe_add_bg_attributes( $model ),
16897
  is_null( $custom_anchor ) ? '' : 'id="' . $custom_anchor . '"',
16898
- is_null( $custom_css_classes ) ? '' : $custom_css_classes
 
16899
  );
16900
  ?>
16901
  <?php
@@ -16920,11 +16952,11 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16920
  <?php
16921
  } else {
16922
  // Set the parent model now
16923
- $this -> parent_model = $model;
16924
  foreach ( $collection as $module_or_nested_section_model ) {
16925
  ?>
16926
  <?php
16927
- $this -> render( $module_or_nested_section_model );
16928
  }
16929
  ?>
16930
  <?php
@@ -16943,25 +16975,28 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16943
  $module_type = $model['module_type'];
16944
  $model = sek_normalize_module_value_with_defaults( $model );
16945
  // update the current cached model
16946
- $this -> model = $model;
16947
  $title_attribute = '';
16948
  if ( skp_is_customizing() ) {
16949
  $title_attribute = __('Edit module settings', 'nimble-builder');
16950
  $title_attribute = 'title="'.$title_attribute.'"';
16951
  }
16952
  ?>
16953
- <?php printf('<div data-sek-level="module" data-sek-id="%1$s" data-sek-module-type="%2$s" class="sek-module %3$s %7$s" %4$s %5$s %6$s>',
16954
  $id,
16955
  $module_type,
16956
  $this->get_level_visibility_css_class( $model ),
 
 
16957
  $title_attribute,
16958
  // add smartload + parallax attributes
16959
- $this -> sek_maybe_add_bg_attributes( $model ),
16960
  is_null( $custom_anchor ) ? '' : 'id="' . $custom_anchor . '"',
16961
- is_null( $custom_css_classes ) ? '' : $custom_css_classes
 
16962
  );?>
16963
  <div class="sek-module-inner">
16964
- <?php $this -> sek_print_module_tmpl( $model ); ?>
16965
  </div>
16966
  </div><?php //data-sek-level="module" ?>
16967
  <?php
@@ -16972,7 +17007,7 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
16972
  break;
16973
  }
16974
 
16975
- $this -> parent_model = $parent_model;
16976
  }//render
16977
 
16978
 
@@ -17156,7 +17191,7 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
17156
  }
17157
  } else {
17158
  if ( array_key_exists( 'collection', $level_data ) && is_array( $level_data['collection'] ) ) {
17159
- $enqueuing_candidates = $this -> sek_sniff_assets_to_enqueue( $level_data['collection'], $enqueuing_candidates );
17160
  }
17161
  }
17162
  }//foreach
@@ -17490,6 +17525,35 @@ if ( ! class_exists( 'SEK_Front_Render' ) ) :
17490
  $wp_query->found_posts = $wp_query->post_count > 0;
17491
  }// sek_maybe_include_nimble_content_in_search_results
17492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17493
  }//class
17494
  endif;
17495
  ?><?php
@@ -17539,10 +17603,10 @@ if ( ! class_exists( 'SEK_Front_Render_Css' ) ) :
17539
  if ( !empty( $google_fonts_print_candidates ) ) {
17540
  // When customizing
17541
  if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
17542
- $this -> sek_gfont_print( $google_fonts_print_candidates );
17543
  } else {
17544
  if ( in_array( current_filter(), array( 'wp_footer', 'wp_head' ) ) ) {
17545
- $this -> sek_gfont_print( $google_fonts_print_candidates );
17546
  } else {
17547
  wp_enqueue_style(
17548
  'sek-gfonts-local-and-global',
@@ -18580,7 +18644,7 @@ class Sek_Mailer {
18580
  //sek_error_log( '$module_model', $module_model );
18581
  $submission_options = empty( $module_user_values['form_submission'] ) ? array() : $module_user_values['form_submission'];
18582
 
18583
- //<-allow html? -> TODO: turn into option
18584
  $allow_html = true;
18585
 
18586
  $sender_email = $this->form->get_field('nimble_email')->get_input()->get_value();
1808
 
1809
  //gets the theme name (or parent if child)
1810
  $theme_data = wp_get_theme( $theme_slug );
1811
+ if ( $theme_data->parent() ) {
1812
+ $theme_slug = $theme_data->parent()->Name;
1813
  }
1814
 
1815
  return sanitize_file_name( strtolower( $theme_slug ) );
2021
  //error_log( print_r( $get_attachment->posts, true ) );
2022
  if ( is_array( $get_attachment->posts ) && array_key_exists(0, $get_attachment->posts) ) {
2023
  //wp_send_json_error( __CLASS__ . '::' . __CLASS__ . '::' . __FUNCTION__ . ' => file already uploaded : ' . $relative_path );
2024
+ $img_id_already_uploaded = $get_attachment->posts[0]->ID;
2025
  }
2026
  // stop now and return the id if the attachment was already uploaded
2027
  if ( isset($img_id_already_uploaded) ) {
3084
  $sek_post = sek_get_saved_seks_post( $saved_section_id );
3085
  $section_data = array();
3086
  if ( $sek_post ) {
3087
+ $section_data_decoded = maybe_unserialize( $sek_post->post_content );
3088
  // The section data are described as an array
3089
  // array(
3090
  // 'title' => '',
13075
 
13076
  // The parent level is set when the function is invoked recursively, from a level where we actually have a 'level' property
13077
  if ( ! empty( $parent_level ) ) {
13078
+ $this->parent_level_model = $parent_level;
13079
  }
13080
 
13081
  foreach ( $level as $key => $entry ) {
13241
 
13242
  // Reset the parent level model because it might have been modified after walking the sublevels
13243
  if ( ! empty( $parent_level ) ) {
13244
+ $this->parent_level_model = $parent_level;
13245
  }
13246
 
13247
  }//foreach
13835
  }
13836
  }
13837
 
13838
+ if ( empty( $this->skope_id ) ) {
13839
  sek_error_log( __CLASS__ . '::' . __FUNCTION__ .' => __construct => skope_id not provided' );
13840
  return;
13841
  }
13855
  // the normal behaviour is that the css file is enqueued.
13856
  // It should have been written when saving in the customizer. If no file available, we try to write it. If writing a css file is not possible, we fallback on inline printing.
13857
  if ( is_customize_preview() || ! $this->_sek_dyn_css_file_exists() || $this->force_rewrite || $this->customizer_save ) {
13858
+ $this->sek_model = sek_get_skoped_seks( $this->skope_id );
13859
 
13860
  // on front, when no stylesheet is available, the fallback hook must be set to wp_head, because the hook property might be empty
13861
  // fixes https://github.com/presscustomizr/nimble-builder/issues/328
14271
 
14272
  ?><?php
14273
  // filter declared in Sek_Dyn_CSS_Builder::sek_css_rules_sniffer_walker()
14274
+ // $rules = apply_filters( "sek_add_css_rules_for_input_id", $rules, $key, $entry, $this->parent_level );
14275
  // the rules are filtered if ( false !== strpos( $input_id_candidate, '_css') )
14276
  // Example of input id candidate filtered : 'h_alignment_css'
14277
  // @see function sek_loop_on_input_candidates_and_maybe_generate_css_rules( $params ) {}
15083
  // introduced for https://github.com/presscustomizr/nimble-builder/issues/456
15084
  public $global_sections_rendered = false;
15085
 
15086
+ // introduced for https://github.com/presscustomizr/nimble-builder/issues/494
15087
+ // september 2019
15088
+ // this guid is used to differentiate dynamically rendered content from static content that may include a Nimble generated HTML structure
15089
+ // an attribute "data-sek-preview-level-guid" is added to each rendered level when customizing or ajaxing
15090
+ // @see ::render() method
15091
+ // otherwise the preview UI can be broken
15092
+ public $preview_level_guid = '_preview_level_guid_not_set_';
15093
+
15094
  /////////////////////////////////////////////////////////////////
15095
  // <CONSTRUCTOR>
15096
  function __construct( $params = array() ) {
15098
  $this->registered_locations = $this->default_locations;
15099
 
15100
  // AJAX
15101
+ $this->_schedule_front_ajax_actions();
15102
+ $this->_schedule_img_import_ajax_actions();
15103
  if ( defined( 'NIMBLE_SAVED_SECTIONS_ENABLED' ) && NIMBLE_SAVED_SECTIONS_ENABLED ) {
15104
+ $this->_schedule_section_saving_ajax_actions();
15105
  }
15106
  // ASSETS
15107
+ $this->_schedule_front_and_preview_assets_printing();
15108
  // RENDERING
15109
+ $this->_schedule_front_rendering();
15110
  // RENDERING
15111
+ $this->_setup_hook_for_front_css_printing_or_enqueuing();
15112
  // LOADS SIMPLE FORM
15113
+ $this->_setup_simple_forms();
15114
  // REGISTER NIMBLE WIDGET ZONES
15115
  add_action( 'widgets_init', array( $this, 'sek_nimble_widgets_init' ) );
15116
  }//__construct
15181
 
15182
 
15183
  // This is the list of accepted actions
15184
+ $this->ajax_action_map = array(
15185
  'sek-add-section',
15186
  'sek-remove-section',
15187
  'sek-duplicate-section',
15282
  wp_send_json_error( __CLASS__ . '::' . __FUNCTION__ . ' => missing skope_id' );
15283
  }
15284
 
15285
+ // introduced for https://github.com/presscustomizr/nimble-builder/issues/494
15286
+ // september 2019
15287
+ // this guid is used to differentiate dynamically rendered content from static content that may include a Nimble generated HTML structure
15288
+ // an attribute "data-sek-preview-level-guid" is added to each rendered level when customizing or ajaxing
15289
+ // otherwise the preview UI can be broken
15290
+ if ( ! isset( $_POST['preview-level-guid'] ) || empty( $_POST['preview-level-guid'] ) ) {
15291
+ wp_send_json_error( __CLASS__ . '::' . __FUNCTION__ . ' => missing preview-level-guid' );
15292
+ }
15293
+
15294
  if ( ! isset( $_POST['sek_action'] ) || empty( $_POST['sek_action'] ) ) {
15295
  wp_send_json_error( __CLASS__ . '::' . __FUNCTION__ . ' => missing sek_action' );
15296
  }
15319
 
15320
  $html = '';
15321
  // is this action possible ?
15322
+ if ( in_array( $sek_action, $this->ajax_action_map ) ) {
15323
  $content_type = null;
15324
  if ( array_key_exists( 'content_type', $_POST ) && is_string( $_POST['content_type'] ) ) {
15325
  $content_type = $_POST['content_type'];
15343
  break;
15344
  }
15345
  foreach ( $_POST['collection_of_preset_section_id'] as $preset_section_id ) {
15346
+ $html .= $this->sek_ajax_fetch_content( $sek_action, $preset_section_id );
15347
  }
15348
  // 'module' === $content_type
15349
  } else {
15350
+ $html = $this->sek_ajax_fetch_content( $sek_action );
15351
  }
15352
 
15353
  break;
15354
 
15355
  default :
15356
+ $html = $this->sek_ajax_fetch_content( $sek_action );
15357
  break;
15358
  }
15359
  } else {
15360
+ $html = $this->sek_ajax_fetch_content( $sek_action );
15361
  }
15362
 
15363
  //sek_error_log(__CLASS__ . '::' . __FUNCTION__ , $html );
15423
  case 'sek-duplicate-section' :
15424
  if ( array_key_exists( 'is_nested', $_POST ) && true === json_decode( $_POST['is_nested'] ) ) {
15425
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
15426
+ $this->parent_model = sek_get_level_model( $_POST[ 'in_sektion' ], $sektion_collection );
15427
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15428
  } else {
15429
  //$level_model = sek_get_level_model( $_POST[ 'id' ], $sektion_collection );
15458
 
15459
  if ( array_key_exists( 'is_nested', $_POST ) && true === json_decode( $_POST['is_nested'] ) ) {
15460
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
15461
+ $this->parent_model = sek_get_level_model( $_POST[ 'in_sektion' ], $sektion_collection );
15462
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15463
  } else {
15464
  //$level_model = sek_get_level_model( $_POST[ 'id' ], $sektion_collection );
15473
  break;
15474
  } else {
15475
  // we need to set the parent_model here to access it later in the ::render method to calculate the column width.
15476
+ $this->parent_model = sek_get_parent_level_model( $_POST[ 'in_column' ], $sektion_collection );
15477
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15478
  }
15479
  break;
15501
  break;
15502
  }
15503
  if ( ! array_key_exists( 'in_sektion', $_POST ) || empty( $_POST[ 'in_sektion' ] ) ) {
15504
+ $this->parent_model = sek_get_parent_level_model( $_POST[ 'in_column' ], $sektion_collection );
15505
  } else {
15506
+ $this->parent_model = sek_get_level_model( $_POST[ 'in_sektion' ], $sektion_collection );
15507
  }
15508
  $level_model = sek_get_level_model( $_POST[ 'in_column' ], $sektion_collection );
15509
  break;
15527
  }
15528
  if ( !empty( $_POST['level'] ) && 'column' === $_POST['level'] ) {
15529
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
15530
+ $this->parent_model = sek_get_parent_level_model( $_POST['id'], $sektion_collection );
15531
  }
15532
  $level_model = sek_get_level_model( $_POST[ 'id' ], $sektion_collection );
15533
  break;
15538
  ob_start();
15539
 
15540
  if ( $is_stylesheet ) {
15541
+ $r = $this->print_or_enqueue_seks_style( $_POST['location_skope_id'] );
15542
  } else {
15543
  if ( 'no_match' == $level_model ) {
15544
  wp_send_json_error( __CLASS__ . '::' . __FUNCTION__ . ' ' . $sek_action . ' => missing level model' );
15551
  return;
15552
  }
15553
  // note that in the case of a sektion nested inside a column, the parent_model has been set in the switch{ case : ... } above ,so we can access it in the ::render method to calculate the column width.
15554
+ $r = $this->render( $level_model );
15555
  }
15556
  $html = ob_get_clean();
15557
  if ( is_wp_error( $r ) ) {
15647
  wp_send_json_error( __FUNCTION__ . ' => error when invoking sek_update_saved_seks_post()' );
15648
  } else {
15649
  // sek_error_log( 'ALORS CE POST?', $saved_section_post );
15650
+ wp_send_json_success( [ 'section_post_id' => $saved_section_post->ID ] );
15651
  }
15652
 
15653
  //sek_error_log( __FUNCTION__ . '$_POST' , $_POST);
15938
 
15939
  // $subsets['all-subsets'] = sprintf( '%1$s ( %2$s %3$s )',
15940
  // __( 'All languages' , 'text_doma' ),
15941
+ // count($gfonts_decoded['items']) + count( $this->get_cfonts() ),
15942
  // __('fonts' , 'text_doma' )
15943
  // );
15944
 
16025
  return;
16026
  }
16027
  // we need to set the parent_mode here to access it later in the ::render method to calculate the column width.
16028
+ $this->parent_model = sek_get_parent_level_model( $_POST[ 'id' ], $sektionSettingValue['collection'] );
16029
+ $this->model = sek_get_level_model( $_POST[ 'id' ], $sektionSettingValue['collection'] );
16030
 
16031
  $level = $_POST['level'];
16032
 
16235
  'frontNonce' => array( 'id' => 'SEKFrontNonce', 'handle' => wp_create_nonce( 'sek-front-nonce' ) ),
16236
 
16237
  'registeredModules' => CZR_Fmk_Base()->registered_modules,
16238
+
16239
+ // introduced for https://github.com/presscustomizr/nimble-builder/issues/494
16240
+ // september 2019
16241
+ // this guid is used to differentiate dynamically rendered content from static content that may include a Nimble generated HTML structure
16242
+ // an attribute "data-sek-preview-level-guid" is added to each rendered level when customizing or ajaxing
16243
+ // when generating the ui, we check if the localized guid matches the one rendered server side
16244
+ // otherwise the preview UI can be broken
16245
+ 'previewLevelGuid' => $this->sek_get_preview_level_guid()
16246
  )
16247
  );
16248
 
16441
  add_filter( 'nimble_parse_for_smart_load', array( $this, 'sek_maybe_process_img_for_js_smart_load') );
16442
 
16443
  // SETUP OUR the_content FILTER for the Tiny MCE module
16444
+ $this->sek_setup_tiny_mce_content_filters();
16445
 
16446
  // REGISTER HEADER AND FOOTER GLOBAL LOCATIONS
16447
  add_action( 'nimble_front_classes_ready', array( $this, 'sek_register_nimble_global_locations') );
16586
  // return $html;
16587
 
16588
  do_action( 'sek_before_location_before_content' );
16589
+ return $this->_filter_the_content( $html, 'before_content' );
16590
  }
16591
 
16592
  // hook : 'the_content'::9999
16598
  // return $html;
16599
 
16600
  do_action( 'sek_before_location_after_content' );
16601
+ return $this->_filter_the_content( $html, 'after_content' );
16602
  }
16603
 
16604
  private function _filter_the_content( $html, $where ) {
16783
 
16784
  // Cache the parent model
16785
  // => used when calculating the width of the column to be added
16786
+ $parent_model = $this->parent_model;
16787
+ $this->model = $model;
16788
 
16789
  $collection = array_key_exists( 'collection', $model ) ? $model['collection'] : array();
16790
 
16812
  <?php
16813
  $is_header_location = true === sek_get_registered_location_property( $id, 'is_header_location' );
16814
  $is_footer_location = true === sek_get_registered_location_property( $id, 'is_footer_location' );
16815
+ printf( '<div class="sektion-wrapper" data-sek-level="location" data-sek-id="%1$s" %2$s %3$s %4$s %5$s>',
16816
  $id,
16817
  sprintf('data-sek-is-global-location="%1$s"', sek_is_global_location( $id ) ? 'true' : 'false'),
16818
  $is_header_location ? 'data-sek-is-header-location="true"' : '',
16819
+ $is_footer_location ? 'data-sek-is-footer-location="true"' : '',
16820
+ $this->sek_maybe_print_preview_level_guid_html()//<= added for #494
16821
  );
16822
  ?>
16823
  <?php
16824
+ $this->parent_model = $model;
16825
+ foreach ( $collection as $_key => $sec_model ) { $this->render( $sec_model ); }
16826
  ?>
16827
  <?php
16828
  // empty global locations placeholders are only printed when customizing But not previewing a changeset post
16857
  }
16858
 
16859
  ?>
16860
+ <?php printf('<div data-sek-level="section" data-sek-id="%1$s" %2$s class="sek-section %3$s %4$s %5$s" %6$s %7$s %8$s>',
16861
  $id,
16862
  $is_nested ? 'data-sek-is-nested="true"' : '',
16863
  $has_at_least_one_module ? 'sek-has-modules' : '',
16864
  $this->get_level_visibility_css_class( $model ),
16865
+ is_null( $custom_css_classes ) ? '' : $custom_css_classes,
16866
+
16867
  is_null( $custom_anchor ) ? '' : 'id="' . $custom_anchor . '"',
16868
  // add smartload + parallax attributes
16869
+ $this->sek_maybe_add_bg_attributes( $model ),
16870
+
16871
+ $this->sek_maybe_print_preview_level_guid_html()//<= added for #494
16872
  ); ?>
16873
  <div class="<?php echo $column_container_class; ?>">
16874
  <div class="sek-row sek-sektion-inner">
16875
  <?php
16876
  // Set the parent model now
16877
+ $this->parent_model = $model;
16878
+ foreach ( $collection as $col_model ) {$this->render( $col_model ); }
16879
  ?>
16880
  </div>
16881
  </div>
16916
  }
16917
  ?>
16918
  <?php
16919
+ printf('<div data-sek-level="column" data-sek-id="%1$s" class="sek-column sek-col-base %2$s %3$s %4$s" %5$s %6$s %7$s %8$s>',
16920
  $id,
16921
  $grid_column_class,
16922
  $this->get_level_visibility_css_class( $model ),
16923
+ is_null( $custom_css_classes ) ? '' : $custom_css_classes,
16924
+
16925
  empty( $collection ) ? 'data-sek-no-modules="true"' : '',
16926
  // add smartload + parallax attributes
16927
+ $this->sek_maybe_add_bg_attributes( $model ),
16928
  is_null( $custom_anchor ) ? '' : 'id="' . $custom_anchor . '"',
16929
+
16930
+ $this->sek_maybe_print_preview_level_guid_html()//<= added for #494
16931
  );
16932
  ?>
16933
  <?php
16952
  <?php
16953
  } else {
16954
  // Set the parent model now
16955
+ $this->parent_model = $model;
16956
  foreach ( $collection as $module_or_nested_section_model ) {
16957
  ?>
16958
  <?php
16959
+ $this->render( $module_or_nested_section_model );
16960
  }
16961
  ?>
16962
  <?php
16975
  $module_type = $model['module_type'];
16976
  $model = sek_normalize_module_value_with_defaults( $model );
16977
  // update the current cached model
16978
+ $this->model = $model;
16979
  $title_attribute = '';
16980
  if ( skp_is_customizing() ) {
16981
  $title_attribute = __('Edit module settings', 'nimble-builder');
16982
  $title_attribute = 'title="'.$title_attribute.'"';
16983
  }
16984
  ?>
16985
+ <?php printf('<div data-sek-level="module" data-sek-id="%1$s" data-sek-module-type="%2$s" class="sek-module %3$s %4$s" %5$s %6$s %7$s %8$s>',
16986
  $id,
16987
  $module_type,
16988
  $this->get_level_visibility_css_class( $model ),
16989
+ is_null( $custom_css_classes ) ? '' : $custom_css_classes,
16990
+
16991
  $title_attribute,
16992
  // add smartload + parallax attributes
16993
+ $this->sek_maybe_add_bg_attributes( $model ),
16994
  is_null( $custom_anchor ) ? '' : 'id="' . $custom_anchor . '"',
16995
+
16996
+ $this->sek_maybe_print_preview_level_guid_html() //<= added for #494
16997
  );?>
16998
  <div class="sek-module-inner">
16999
+ <?php $this->sek_print_module_tmpl( $model ); ?>
17000
  </div>
17001
  </div><?php //data-sek-level="module" ?>
17002
  <?php
17007
  break;
17008
  }
17009
 
17010
+ $this->parent_model = $parent_model;
17011
  }//render
17012
 
17013
 
17191
  }
17192
  } else {
17193
  if ( array_key_exists( 'collection', $level_data ) && is_array( $level_data['collection'] ) ) {
17194
+ $enqueuing_candidates = $this->sek_sniff_assets_to_enqueue( $level_data['collection'], $enqueuing_candidates );
17195
  }
17196
  }
17197
  }//foreach
17525
  $wp_query->found_posts = $wp_query->post_count > 0;
17526
  }// sek_maybe_include_nimble_content_in_search_results
17527
 
17528
+
17529
+ // @return html string
17530
+ // introduced for https://github.com/presscustomizr/nimble-builder/issues/494
17531
+ function sek_maybe_print_preview_level_guid_html() {
17532
+ if ( skp_is_customizing() || ( defined('DOING_AJAX') && DOING_AJAX ) ) {
17533
+ return sprintf( 'data-sek-preview-level-guid="%1$s"', $this->sek_get_preview_level_guid() );
17534
+ }
17535
+ return '';
17536
+ }
17537
+
17538
+ // @return unique guid()
17539
+ // inspired from https://stackoverflow.com/questions/21671179/how-to-generate-a-new-guid#26163679
17540
+ // introduced for https://github.com/presscustomizr/nimble-builder/issues/494
17541
+ function sek_get_preview_level_guid() {
17542
+ if ( '_preview_level_guid_not_set_' === $this->preview_level_guid ) {
17543
+ // When ajaxing, typically creating content, we need to make sure that we use the initial guid generated last time the preview was refreshed
17544
+ // @see preview::doAjax()
17545
+ if ( isset( $_POST['preview-level-guid'] ) ) {
17546
+ if ( empty( $_POST['preview-level-guid'] ) ) {
17547
+ sek_error_log( __CLASS__ . '::' . __FUNCTION__ . ' => error, preview-level-guid can not be empty' );
17548
+ }
17549
+ $this->preview_level_guid = $_POST['preview-level-guid'];
17550
+ } else {
17551
+ $this->preview_level_guid = sprintf('%04X%04X%04X', mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535) );
17552
+ }
17553
+
17554
+ }
17555
+ return $this->preview_level_guid;
17556
+ }
17557
  }//class
17558
  endif;
17559
  ?><?php
17603
  if ( !empty( $google_fonts_print_candidates ) ) {
17604
  // When customizing
17605
  if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
17606
+ $this->sek_gfont_print( $google_fonts_print_candidates );
17607
  } else {
17608
  if ( in_array( current_filter(), array( 'wp_footer', 'wp_head' ) ) ) {
17609
+ $this->sek_gfont_print( $google_fonts_print_candidates );
17610
  } else {
17611
  wp_enqueue_style(
17612
  'sek-gfonts-local-and-global',
18644
  //sek_error_log( '$module_model', $module_model );
18645
  $submission_options = empty( $module_user_values['form_submission'] ) ? array() : $module_user_values['form_submission'];
18646
 
18647
+ //<-allow html?->TODO: turn into option
18648
  $allow_html = true;
18649
 
18650
  $sender_email = $this->form->get_field('nimble_email')->get_input()->get_value();
nimble-builder.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Nimble Page Builder
4
  * Description: Powerful drag and drop page builder using the native WordPress customizer.
5
- * Version: 1.8.17
6
  * Text Domain: nimble-builder
7
  * Author: Press Customizr
8
  * Author URI: https://nimblebuilder.com/?utm_source=wp-plugins&utm_medium=wp-dashboard&utm_campaign=author-uri
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  /* ------------------------------------------------------------------------- *
14
  * CONSTANTS
15
  /* ------------------------------------------------------------------------- */
16
- $current_version = "1.8.17";
17
 
18
  if ( !defined( "NIMBLE_VERSION" ) ) { define( "NIMBLE_VERSION", $current_version ); }
19
  if ( !defined( 'NIMBLE_DIR_NAME' ) ) { define( 'NIMBLE_DIR_NAME' , basename( dirname( __FILE__ ) ) ); }
2
  /**
3
  * Plugin Name: Nimble Page Builder
4
  * Description: Powerful drag and drop page builder using the native WordPress customizer.
5
+ * Version: 1.8.18
6
  * Text Domain: nimble-builder
7
  * Author: Press Customizr
8
  * Author URI: https://nimblebuilder.com/?utm_source=wp-plugins&utm_medium=wp-dashboard&utm_campaign=author-uri
13
  /* ------------------------------------------------------------------------- *
14
  * CONSTANTS
15
  /* ------------------------------------------------------------------------- */
16
+ $current_version = "1.8.18";
17
 
18
  if ( !defined( "NIMBLE_VERSION" ) ) { define( "NIMBLE_VERSION", $current_version ); }
19
  if ( !defined( 'NIMBLE_DIR_NAME' ) ) { define( 'NIMBLE_DIR_NAME' , basename( dirname( __FILE__ ) ) ); }
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: page builder, visual editor, customizer, drag and drop, header, footer, la
6
  Requires at least: 4.7
7
  Requires PHP: 5.4
8
  Tested up to: 5.2.2
9
- Stable tag: 1.8.17
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8FMNQPU36U27J&source=url
@@ -121,9 +121,12 @@ If you can't troubleshoot your issue, please open a new thread in [Nimble Builde
121
 
122
  == Upgrade Notice ==
123
  = 1.8.17 =
124
- [Menu module] Fixed menu items alignment broken on mobile devices.
125
 
126
  == Changelog ==
 
 
 
127
  = 1.8.17 : August 29th 2019 =
128
  * fixed : [Menu module] menu items alignment broken on mobile devices.
129
 
6
  Requires at least: 4.7
7
  Requires PHP: 5.4
8
  Tested up to: 5.2.2
9
+ Stable tag: 1.8.18
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8FMNQPU36U27J&source=url
121
 
122
  == Upgrade Notice ==
123
  = 1.8.17 =
124
+ Fixed : using Nimble generated Html structure in a module content can break the UI generation in the preview frame when customizing.
125
 
126
  == Changelog ==
127
+ = 1.8.18 : September 3rd 2019 =
128
+ * fixed : using Nimble generated Html structure in a module content can break the UI generation in the preview frame when customizing.
129
+
130
  = 1.8.17 : August 29th 2019 =
131
  * fixed : [Menu module] menu items alignment broken on mobile devices.
132
 
tmpl/modules/accordion_tmpl.php CHANGED
@@ -55,7 +55,7 @@ if ( ! function_exists( 'Nimble\sek_print_accordion' ) ) {
55
  }
56
  }
57
 
58
- $model = Nimble_Manager() -> model;
59
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
60
  $accord_collec = !empty($value['accord_collec']) ? $value['accord_collec'] : array();
61
  $accord_opts = !empty($value['accord_opts']) ? $value['accord_opts'] : array();
55
  }
56
  }
57
 
58
+ $model = Nimble_Manager()->model;
59
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
60
  $accord_collec = !empty($value['accord_collec']) ? $value['accord_collec'] : array();
61
  $accord_opts = !empty($value['accord_opts']) ? $value['accord_opts'] : array();
tmpl/modules/button_module_tmpl.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
 
7
- $model = Nimble_Manager() -> model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
  $content_settings = $value['content'];
4
  exit;
5
  }
6
 
7
+ $model = Nimble_Manager()->model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
  $content_settings = $value['content'];
tmpl/modules/featured_pages_module_tmpl.php CHANGED
@@ -73,7 +73,7 @@ The model looks like this
73
  TO ASK: We're missing the title input
74
  */
75
 
76
- $model = Nimble_Manager() -> model;
77
  $module_type = $model['module_type'];
78
 
79
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
@@ -163,7 +163,7 @@ endif;
163
  }
164
  if ( empty( $is_custom_url ) && empty( $is_wp_post_type ) ):
165
  echo '<h2>Feature Page temporary placeholder</h2>';
166
- echo Nimble_Manager() -> sek_get_input_placeholder_content( 'upload' );
167
  else :
168
  //DEFINITION
169
 
73
  TO ASK: We're missing the title input
74
  */
75
 
76
+ $model = Nimble_Manager()->model;
77
  $module_type = $model['module_type'];
78
 
79
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
163
  }
164
  if ( empty( $is_custom_url ) && empty( $is_wp_post_type ) ):
165
  echo '<h2>Feature Page temporary placeholder</h2>';
166
+ echo Nimble_Manager()->sek_get_input_placeholder_content( 'upload' );
167
  else :
168
  //DEFINITION
169
 
tmpl/modules/heading_module_tmpl.php CHANGED
@@ -3,7 +3,7 @@ namespace Nimble;
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
- $model = Nimble_Manager() -> model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  $value = $value['main_settings'];
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
+ $model = Nimble_Manager()->model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  $value = $value['main_settings'];
tmpl/modules/icon_module_tmpl.php CHANGED
@@ -3,7 +3,7 @@ namespace Nimble;
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
- $model = Nimble_Manager() -> model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  /* $value looks like
@@ -39,7 +39,7 @@ if ( ! function_exists( 'Nimble\sek_get_icon_module_icon_html') ) {
39
  } else {
40
  //falls back on an icon if previewing
41
  if ( skp_is_customizing() ) {
42
- $html = Nimble_Manager() -> sek_get_input_placeholder_content( 'icon' );
43
  }
44
  }
45
  return $html;
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
+ $model = Nimble_Manager()->model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  /* $value looks like
39
  } else {
40
  //falls back on an icon if previewing
41
  if ( skp_is_customizing() ) {
42
+ $html = Nimble_Manager()->sek_get_input_placeholder_content( 'icon' );
43
  }
44
  }
45
  return $html;
tmpl/modules/image_module_tmpl.php CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  // 'link-target' : '',
14
  // 'lightbox' : true
15
  // };
16
- $model = Nimble_Manager() -> model;
17
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
18
  $main_settings = $value['main_settings'];
19
  //$borders_corners_settings = $value['borders_corners'];
@@ -40,7 +40,7 @@ if ( ! function_exists( 'Nimble\sek_get_img_module_img_html') ) {
40
  } else {
41
  //falls back on an icon if previewing
42
  if ( skp_is_customizing() ) {
43
- $html = Nimble_Manager() -> sek_get_input_placeholder_content( 'upload' );
44
  }
45
  }
46
 
13
  // 'link-target' : '',
14
  // 'lightbox' : true
15
  // };
16
+ $model = Nimble_Manager()->model;
17
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
18
  $main_settings = $value['main_settings'];
19
  //$borders_corners_settings = $value['borders_corners'];
40
  } else {
41
  //falls back on an icon if previewing
42
  if ( skp_is_customizing() ) {
43
+ $html = Nimble_Manager()->sek_get_input_placeholder_content( 'upload' );
44
  }
45
  }
46
 
tmpl/modules/img_slider_tmpl.php CHANGED
@@ -137,7 +137,7 @@ if ( ! function_exists( 'Nimble\sek_print_img_slider' ) ) {
137
  }
138
  }
139
 
140
- $model = Nimble_Manager() -> model;
141
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
142
  $img_collection = !empty($value['img_collection']) ? $value['img_collection'] : array();
143
  $slider_options = !empty($value['slider_options']) ? $value['slider_options'] : array();
137
  }
138
  }
139
 
140
+ $model = Nimble_Manager()->model;
141
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
142
  $img_collection = !empty($value['img_collection']) ? $value['img_collection'] : array();
143
  $slider_options = !empty($value['slider_options']) ? $value['slider_options'] : array();
tmpl/modules/map_module_tmpl.php CHANGED
@@ -3,7 +3,7 @@ namespace Nimble;
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
- $model = Nimble_Manager() -> model;
7
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
8
 
9
 
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
+ $model = Nimble_Manager()->model;
7
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
8
 
9
 
tmpl/modules/post_grid_module_tmpl.php CHANGED
@@ -3,7 +3,7 @@ namespace Nimble;
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
- $model = Nimble_Manager() -> model;
7
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
8
  $main_settings = $value['grid_main'];
9
  $metas_settings = $value['grid_metas'];
@@ -88,7 +88,7 @@ if ( ! function_exists( 'Nimble\sek_render_post') ) {
88
  // filters @hook 'excerpt_length'
89
  if ( ! function_exists( 'Nimble\sek_pg_get_excerpt_length') ) {
90
  function sek_pg_get_excerpt_length( $original_length ) {
91
- $model = Nimble_Manager() -> model;
92
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
93
  $main_settings = $value['grid_main'];
94
  $_custom = (int)$main_settings['excerpt_length'];
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
+ $model = Nimble_Manager()->model;
7
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
8
  $main_settings = $value['grid_main'];
9
  $metas_settings = $value['grid_metas'];
88
  // filters @hook 'excerpt_length'
89
  if ( ! function_exists( 'Nimble\sek_pg_get_excerpt_length') ) {
90
  function sek_pg_get_excerpt_length( $original_length ) {
91
+ $model = Nimble_Manager()->model;
92
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
93
  $main_settings = $value['grid_main'];
94
  $_custom = (int)$main_settings['excerpt_length'];
tmpl/modules/quote_module_tmpl.php CHANGED
@@ -3,7 +3,7 @@ namespace Nimble;
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
- $model = Nimble_Manager() -> model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  $quote_content_settings = $value['quote_content'];
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
+ $model = Nimble_Manager()->model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  $quote_content_settings = $value['quote_content'];
tmpl/modules/shortcode_module_tmpl.php CHANGED
@@ -13,7 +13,7 @@ if ( ! function_exists( 'Nimble\sek_print_shortcode_module_content' ) ) {
13
  }
14
  }
15
 
16
- $model = Nimble_Manager() -> model;
17
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
18
 
19
  if ( !empty( $value['text_content'] ) ) {
13
  }
14
  }
15
 
16
+ $model = Nimble_Manager()->model;
17
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
18
 
19
  if ( !empty( $value['text_content'] ) ) {
tmpl/modules/simple_form_module_tmpl.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
 
7
- $model = Nimble_Manager() -> model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
 
4
  exit;
5
  }
6
 
7
+ $model = Nimble_Manager()->model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
 
tmpl/modules/simple_html_module_tmpl.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
 
7
- $model = Nimble_Manager() -> model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
 
4
  exit;
5
  }
6
 
7
+ $model = Nimble_Manager()->model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
 
tmpl/modules/social_icons_tmpl.php CHANGED
@@ -51,7 +51,7 @@ if ( ! function_exists( 'Nimble\sek_print_social_links' ) ) {
51
  }
52
  }
53
 
54
- $model = Nimble_Manager() -> model;
55
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
56
  $icons_collection = !empty($value['icons_collection']) ? $value['icons_collection'] : array();
57
  $icons_style = !empty($value['icons_style']) ? $value['icons_style'] : array();
51
  }
52
  }
53
 
54
+ $model = Nimble_Manager()->model;
55
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
56
  $icons_collection = !empty($value['icons_collection']) ? $value['icons_collection'] : array();
57
  $icons_style = !empty($value['icons_style']) ? $value['icons_style'] : array();
tmpl/modules/special_img_module_tmpl.php CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  // 'link-target' : '',
14
  // 'lightbox' : true
15
  // };
16
- $model = Nimble_Manager() -> model;
17
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
18
  $main_settings = $value['main_settings'];
19
  //$borders_corners_settings = $value['borders_corners'];
@@ -39,7 +39,7 @@ if ( ! function_exists( 'Nimble\sek_get_img_module_img_html') ) {
39
  } else {
40
  //falls back on an icon if previewing
41
  if ( skp_is_customizing() ) {
42
- $html = Nimble_Manager() -> sek_get_input_placeholder_content( 'upload' );
43
  }
44
  }
45
 
13
  // 'link-target' : '',
14
  // 'lightbox' : true
15
  // };
16
+ $model = Nimble_Manager()->model;
17
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
18
  $main_settings = $value['main_settings'];
19
  //$borders_corners_settings = $value['borders_corners'];
39
  } else {
40
  //falls back on an icon if previewing
41
  if ( skp_is_customizing() ) {
42
+ $html = Nimble_Manager()->sek_get_input_placeholder_content( 'upload' );
43
  }
44
  }
45
 
tmpl/modules/tinymce_editor_module_tmpl.php CHANGED
@@ -3,7 +3,7 @@ namespace Nimble;
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
- $model = Nimble_Manager() -> model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  $value = $value['main_settings'];
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
+ $model = Nimble_Manager()->model;
7
  $module_type = $model['module_type'];
8
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
9
  $value = $value['main_settings'];
tmpl/modules/widget_area_module_tmpl.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
 
7
- $model = Nimble_Manager() -> model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
  $widget_area_has_at_least_one_widget = is_active_sidebar( $value['widget-area-id'] );
4
  exit;
5
  }
6
 
7
+ $model = Nimble_Manager()->model;
8
  $module_type = $model['module_type'];
9
  $value = array_key_exists( 'value', $model ) ? $model['value'] : array();
10
  $widget_area_has_at_least_one_widget = is_active_sidebar( $value['widget-area-id'] );